initial commit
This commit is contained in:
42
packages/db/shared/schemas/results/CommunicationDeleteResult.schema.d.ts
vendored
Normal file
42
packages/db/shared/schemas/results/CommunicationDeleteResult.schema.d.ts
vendored
Normal file
@@ -0,0 +1,42 @@
|
||||
import * as z from 'zod';
|
||||
export declare const CommunicationDeleteResultSchema: 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=CommunicationDeleteResult.schema.d.ts.map
|
||||
Reference in New Issue
Block a user