check_type_mapping
Find all files that define or reference a specified type across all projects, so you can identify exactly what needs updating before making a change.
Instructions
Given a type name, find all files across all projects that define or reference it. Use this BEFORE changing a type to know exactly which files in which projects need updating. For example: check_type_mapping('stationId') returns all files in backend, mobile, and admin that use stationId.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| typeName | Yes | Type name to search for (e.g., 'stationId', 'StationCreateDto', 'User') |