@azure-devops/mcp 2.5.0-nightly.20260404 → 2.5.0-nightly.20260406
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/tools/pipelines.js +1 -1
- package/dist/version.js +1 -1
- package/package.json +1 -1
package/dist/tools/pipelines.js
CHANGED
|
@@ -226,7 +226,7 @@ function configurePipelineTools(server, tokenProvider, connectionProvider, userA
|
|
|
226
226
|
}))
|
|
227
227
|
.optional(),
|
|
228
228
|
pipelines: z.record(z.string().describe("Name of the pipeline resource."), z.object({
|
|
229
|
-
runId: z.coerce.number().min(1).describe("Id of the source pipeline run that triggered or is referenced by this pipeline run."),
|
|
229
|
+
runId: z.coerce.number().min(1).optional().describe("Id of the source pipeline run that triggered or is referenced by this pipeline run."),
|
|
230
230
|
version: z.string().optional().describe("Version of the source pipeline run."),
|
|
231
231
|
})),
|
|
232
232
|
repositories: z
|
package/dist/version.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const packageVersion = "2.5.0-nightly.
|
|
1
|
+
export const packageVersion = "2.5.0-nightly.20260406";
|