UNPKG

@aot-tech/clockify-mcp-server

Version:

MCP Server for Clockify time tracking integration with AI tools

33 lines (32 loc) 1.01 kB
import { z } from "zod"; export declare const FindEntrySchema: z.ZodObject<{ workspaceId: z.ZodString; userId: z.ZodString; description: z.ZodOptional<z.ZodString>; start: z.ZodOptional<z.ZodDate>; end: z.ZodOptional<z.ZodDate>; project: z.ZodOptional<z.ZodString>; hasNextPage: z.ZodOptional<z.ZodBoolean>; page: z.ZodOptional<z.ZodNumber>; pageSize: z.ZodOptional<z.ZodNumber>; }, "strip", z.ZodTypeAny, { workspaceId: string; userId: string; description?: string | undefined; start?: Date | undefined; end?: Date | undefined; project?: string | undefined; hasNextPage?: boolean | undefined; page?: number | undefined; pageSize?: number | undefined; }, { workspaceId: string; userId: string; description?: string | undefined; start?: Date | undefined; end?: Date | undefined; project?: string | undefined; hasNextPage?: boolean | undefined; page?: number | undefined; pageSize?: number | undefined; }>;