@vzeta/camunda-api-zod-schemas
Version:
Zod schemas and TypeScript types for Camunda 8 unified API
13 lines (12 loc) • 406 B
TypeScript
import { z } from 'zod';
import { Endpoint } from './common';
declare const licenseSchema: z.ZodObject<{
validLicense: z.ZodBoolean;
licenseType: z.ZodString;
isCommercial: z.ZodBoolean;
expiresAt: z.ZodNullable<z.ZodString>;
}, z.core.$strip>;
type License = z.infer<typeof licenseSchema>;
declare const getLicense: Endpoint;
export { licenseSchema, getLicense };
export type { License };