11 lines
779 B
TypeScript
11 lines
779 B
TypeScript
import * as z from 'zod';
|
|
import type { Prisma } from '../../../generated/prisma';
|
|
export declare const EnumCommunicationStatusFieldUpdateOperationsInputObjectSchema: z.ZodType<Prisma.EnumCommunicationStatusFieldUpdateOperationsInput>;
|
|
export declare const EnumCommunicationStatusFieldUpdateOperationsInputObjectZodSchema: z.ZodObject<{
|
|
set: z.ZodOptional<z.ZodEnum<["queued", "sent", "delivered", "failed", "completed", "busy", "no_answer"]>>;
|
|
}, "strict", z.ZodTypeAny, {
|
|
set?: "queued" | "sent" | "delivered" | "failed" | "completed" | "busy" | "no_answer" | undefined;
|
|
}, {
|
|
set?: "queued" | "sent" | "delivered" | "failed" | "completed" | "busy" | "no_answer" | undefined;
|
|
}>;
|
|
//# sourceMappingURL=EnumCommunicationStatusFieldUpdateOperationsInput.schema.d.ts.map
|