(value?: string)
| 71 | } |
| 72 | |
| 73 | private normalizeType(value?: string): ItemType | undefined { |
| 74 | if (!value) return undefined; |
| 75 | const v = value.toLowerCase(); |
| 76 | if (v === 'change' || v === 'spec') return v; |
| 77 | return undefined; |
| 78 | } |
| 79 | |
| 80 | private async runInteractiveSelector(root: ResolvedOpenSpecRoot, opts: { strict: boolean; json: boolean; concurrency?: string }): Promise<void> { |
| 81 | const { select } = await import('@inquirer/prompts'); |