@tiberriver256/mcp-server-azure-devops
Version:
Azure DevOps reference server for the Model Context Protocol (MCP)
18 lines (17 loc) • 507 B
TypeScript
import { z } from 'zod';
export declare const DownloadPipelineArtifactSchema: z.ZodObject<{
projectId: z.ZodOptional<z.ZodString>;
runId: z.ZodNumber;
artifactPath: z.ZodString;
pipelineId: z.ZodOptional<z.ZodNumber>;
}, "strip", z.ZodTypeAny, {
runId: number;
artifactPath: string;
projectId?: string | undefined;
pipelineId?: number | undefined;
}, {
runId: number;
artifactPath: string;
projectId?: string | undefined;
pipelineId?: number | undefined;
}>;