@aot-tech/clockify-mcp-server
Version:
MCP Server for Clockify time tracking integration with AI tools
18 lines (17 loc) • 485 B
TypeScript
import { z } from 'zod';
export declare const FindTaskSchema: z.ZodObject<{
workspaceId: z.ZodString;
projectId: z.ZodString;
userId: z.ZodOptional<z.ZodString>;
taskName: z.ZodOptional<z.ZodString>;
}, "strip", z.ZodTypeAny, {
workspaceId: string;
projectId: string;
userId?: string | undefined;
taskName?: string | undefined;
}, {
workspaceId: string;
projectId: string;
userId?: string | undefined;
taskName?: string | undefined;
}>;