@aot-tech/clockify-mcp-server
Version:
MCP Server for Clockify time tracking integration with AI tools
24 lines (23 loc) • 571 B
TypeScript
import { z } from "zod";
export declare const CreateEntrySchema: z.ZodObject<{
workspaceId: z.ZodString;
billable: z.ZodBoolean;
description: z.ZodString;
start: z.ZodDate;
end: z.ZodDate;
projectId: z.ZodOptional<z.ZodString>;
}, "strip", z.ZodTypeAny, {
workspaceId: string;
billable: boolean;
description: string;
start: Date;
end: Date;
projectId?: string | undefined;
}, {
workspaceId: string;
billable: boolean;
description: string;
start: Date;
end: Date;
projectId?: string | undefined;
}>;