@edicarlos.lds/businessmap-mcp
Version:
Model Context Protocol server for BusinessMap (Kanbanize) integration
12 lines • 572 B
JavaScript
import { z } from 'zod/v3';
// Schema para obter colunas de cycle time do workflow
export const getWorkflowCycleTimeColumnsSchema = z.object({
board_id: z.number().describe('The ID of the board'),
workflow_id: z.number().describe('The ID of the workflow'),
});
// Schema para obter colunas efetivas de cycle time do workflow
export const getWorkflowEffectiveCycleTimeColumnsSchema = z.object({
board_id: z.number().describe('The ID of the board'),
workflow_id: z.number().describe('The ID of the workflow'),
});
//# sourceMappingURL=workflow-schemas.js.map