(type: 'pro' | 'team')
| 117 | * Get the list of valid plan names for a given category. |
| 118 | */ |
| 119 | export function getValidPlanNames(type: 'pro' | 'team'): string[] { |
| 120 | return CREDIT_TIERS.map((t) => buildPlanName(type, t.credits)) |
| 121 | } |
| 122 | |
| 123 | /** |
| 124 | * Get the user-facing display name for a plan. |
nothing calls this directly
no test coverage detected