38 lines
1.7 KiB
TypeScript
38 lines
1.7 KiB
TypeScript
import * as z from 'zod';
|
|
import type { Prisma } from '../../../generated/prisma';
|
|
export declare const CommunicationCreateManyInputObjectSchema: z.ZodType<Prisma.CommunicationCreateManyInput>;
|
|
export declare const CommunicationCreateManyInputObjectZodSchema: z.ZodObject<{
|
|
id: z.ZodOptional<z.ZodNumber>;
|
|
patientId: z.ZodNumber;
|
|
userId: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
channel: z.ZodEnum<["sms", "voice"]>;
|
|
direction: z.ZodEnum<["outbound", "inbound"]>;
|
|
status: z.ZodEnum<["queued", "sent", "delivered", "failed", "completed", "busy", "no_answer"]>;
|
|
body: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
callDuration: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
twilioSid: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
createdAt: z.ZodOptional<z.ZodDate>;
|
|
}, "strict", z.ZodTypeAny, {
|
|
status: "queued" | "sent" | "delivered" | "failed" | "completed" | "busy" | "no_answer";
|
|
patientId: number;
|
|
channel: "sms" | "voice";
|
|
direction: "outbound" | "inbound";
|
|
createdAt?: Date | undefined;
|
|
id?: number | undefined;
|
|
userId?: number | null | undefined;
|
|
body?: string | null | undefined;
|
|
callDuration?: number | null | undefined;
|
|
twilioSid?: string | null | undefined;
|
|
}, {
|
|
status: "queued" | "sent" | "delivered" | "failed" | "completed" | "busy" | "no_answer";
|
|
patientId: number;
|
|
channel: "sms" | "voice";
|
|
direction: "outbound" | "inbound";
|
|
createdAt?: Date | undefined;
|
|
id?: number | undefined;
|
|
userId?: number | null | undefined;
|
|
body?: string | null | undefined;
|
|
callDuration?: number | null | undefined;
|
|
twilioSid?: string | null | undefined;
|
|
}>;
|
|
//# sourceMappingURL=CommunicationCreateManyInput.schema.d.ts.map
|