UNPKG

@aot-tech/clockify-mcp-server

Version:

MCP Server for Clockify time tracking integration with AI tools

13 lines (12 loc) 405 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.CreateEntrySchema = void 0; const zod_1 = require("zod"); exports.CreateEntrySchema = zod_1.z.object({ workspaceId: zod_1.z.string(), billable: zod_1.z.boolean(), description: zod_1.z.string(), start: zod_1.z.coerce.date(), end: zod_1.z.coerce.date(), projectId: zod_1.z.string().optional(), });