42 lines
1.2 KiB
TypeScript
42 lines
1.2 KiB
TypeScript
import * as z from 'zod';
|
|
export declare const CommunicationUpdateResultSchema: z.ZodNullable<z.ZodObject<{
|
|
id: z.ZodNumber;
|
|
patientId: z.ZodNumber;
|
|
userId: z.ZodOptional<z.ZodNumber>;
|
|
channel: z.ZodUnknown;
|
|
direction: z.ZodUnknown;
|
|
status: z.ZodUnknown;
|
|
body: z.ZodOptional<z.ZodString>;
|
|
callDuration: z.ZodOptional<z.ZodNumber>;
|
|
twilioSid: z.ZodOptional<z.ZodString>;
|
|
createdAt: z.ZodDate;
|
|
patient: z.ZodUnknown;
|
|
user: z.ZodOptional<z.ZodUnknown>;
|
|
}, "strip", z.ZodTypeAny, {
|
|
createdAt: Date;
|
|
id: number;
|
|
patientId: number;
|
|
status?: unknown;
|
|
userId?: number | undefined;
|
|
user?: unknown;
|
|
patient?: unknown;
|
|
channel?: unknown;
|
|
direction?: unknown;
|
|
body?: string | undefined;
|
|
callDuration?: number | undefined;
|
|
twilioSid?: string | undefined;
|
|
}, {
|
|
createdAt: Date;
|
|
id: number;
|
|
patientId: number;
|
|
status?: unknown;
|
|
userId?: number | undefined;
|
|
user?: unknown;
|
|
patient?: unknown;
|
|
channel?: unknown;
|
|
direction?: unknown;
|
|
body?: string | undefined;
|
|
callDuration?: number | undefined;
|
|
twilioSid?: string | undefined;
|
|
}>>;
|
|
//# sourceMappingURL=CommunicationUpdateResult.schema.d.ts.map
|