@vzeta/camunda-api-zod-schemas
Version:
Zod schemas and TypeScript types for Camunda 8 unified API
11 lines (10 loc) • 401 B
TypeScript
import { z } from 'zod';
import { Endpoint } from './common';
declare const pinClockRequestBodySchema: z.ZodObject<{
timestamp: z.ZodNumber;
}, z.core.$strip>;
type PinClockRequestBody = z.infer<typeof pinClockRequestBodySchema>;
declare const pinClock: Endpoint;
declare const resetClock: Endpoint;
export { pinClockRequestBodySchema, pinClock, resetClock };
export type { PinClockRequestBody };