Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
feat: update input schema to use enum for versions
  • Loading branch information
sinedied committed Jul 16, 2025
commit 87ada440a67e14a92f8529c63bec47c116b4b620
4 changes: 2 additions & 2 deletions packages/angular/cli/src/commands/mcp/tools/update.ts
Original file line number Diff line number Diff line change
Expand Up @@ -89,13 +89,13 @@ export async function registerUpdateTool(server: McpServer): Promise<void> {
},
inputSchema: {
fromVersion: z
.string()
.enum(versions.map((v) => v.name) as [string, ...string[]])
.describe(
'The current Angular version to migrate from (e.g., "18.0", "19.0").' +
' Must be a valid Angular version.',
),
toVersion: z
.string()
.enum(versions.map((v) => v.name) as [string, ...string[]])
.describe(
'The target Angular version to migrate to (e.g., "19.0", "20.0").' +
' Must be a valid Angular version and higher than fromVersion.',
Expand Down