autumn-js
Version:
Autumn JS Library
20 lines (17 loc) • 797 B
TypeScript
import { z } from 'zod/v4';
declare const CreateEntityParamsSchema: z.ZodObject<{
id: z.ZodString;
name: z.ZodOptional<z.ZodString>;
featureId: z.ZodString;
}, z.core.$strip>;
type CreateEntityParams = z.infer<typeof CreateEntityParamsSchema>;
declare const GetEntityParamsSchema: z.ZodObject<{
expand: z.ZodOptional<z.ZodArray<z.ZodString>>;
}, z.core.$strip>;
type GetEntityParams = z.infer<typeof GetEntityParamsSchema>;
declare const EntityDataParamsSchema: z.ZodObject<{
name: z.ZodOptional<z.ZodString>;
featureId: z.ZodString;
}, z.core.$strip>;
type EntityDataParams = z.infer<typeof EntityDataParamsSchema>;
export { type CreateEntityParams, CreateEntityParamsSchema, type EntityDataParams, EntityDataParamsSchema, type GetEntityParams, GetEntityParamsSchema };