@tiberriver256/mcp-server-azure-devops
Version:
Azure DevOps reference server for the Model Context Protocol (MCP)
27 lines (26 loc) • 869 B
TypeScript
import { z } from 'zod';
/**
* Schema for creating a new wiki page in Azure DevOps
*/
export declare const CreateWikiPageSchema: z.ZodObject<{
organizationId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
projectId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
wikiId: z.ZodString;
pagePath: z.ZodDefault<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
content: z.ZodString;
comment: z.ZodOptional<z.ZodString>;
}, "strip", z.ZodTypeAny, {
content: string;
wikiId: string;
pagePath: string | null;
projectId?: string | null | undefined;
organizationId?: string | null | undefined;
comment?: string | undefined;
}, {
content: string;
wikiId: string;
projectId?: string | null | undefined;
organizationId?: string | null | undefined;
comment?: string | undefined;
pagePath?: string | null | undefined;
}>;