74 lines
4.6 KiB
TypeScript
74 lines
4.6 KiB
TypeScript
import * as z from 'zod';
|
|
import type { Prisma } from '../../../generated/prisma';
|
|
export declare const CommunicationSelectObjectSchema: z.ZodType<Prisma.CommunicationSelect>;
|
|
export declare const CommunicationSelectObjectZodSchema: z.ZodObject<{
|
|
id: z.ZodOptional<z.ZodBoolean>;
|
|
patientId: z.ZodOptional<z.ZodBoolean>;
|
|
userId: z.ZodOptional<z.ZodBoolean>;
|
|
channel: z.ZodOptional<z.ZodBoolean>;
|
|
direction: z.ZodOptional<z.ZodBoolean>;
|
|
status: z.ZodOptional<z.ZodBoolean>;
|
|
body: z.ZodOptional<z.ZodBoolean>;
|
|
callDuration: z.ZodOptional<z.ZodBoolean>;
|
|
twilioSid: z.ZodOptional<z.ZodBoolean>;
|
|
createdAt: z.ZodOptional<z.ZodBoolean>;
|
|
patient: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodLazy<z.ZodObject<{
|
|
select: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.PatientSelect<import("../../../generated/prisma/runtime/client").DefaultArgs>, z.ZodTypeDef, Prisma.PatientSelect<import("../../../generated/prisma/runtime/client").DefaultArgs>>>>;
|
|
include: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.PatientInclude<import("../../../generated/prisma/runtime/client").DefaultArgs>, z.ZodTypeDef, Prisma.PatientInclude<import("../../../generated/prisma/runtime/client").DefaultArgs>>>>;
|
|
}, "strict", z.ZodTypeAny, {
|
|
include?: Prisma.PatientInclude<import("../../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
|
select?: Prisma.PatientSelect<import("../../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
|
}, {
|
|
include?: Prisma.PatientInclude<import("../../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
|
select?: Prisma.PatientSelect<import("../../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
|
}>>]>>;
|
|
user: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodLazy<z.ZodObject<{
|
|
select: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.UserSelect<import("../../../generated/prisma/runtime/client").DefaultArgs>, z.ZodTypeDef, Prisma.UserSelect<import("../../../generated/prisma/runtime/client").DefaultArgs>>>>;
|
|
include: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.UserInclude<import("../../../generated/prisma/runtime/client").DefaultArgs>, z.ZodTypeDef, Prisma.UserInclude<import("../../../generated/prisma/runtime/client").DefaultArgs>>>>;
|
|
}, "strict", z.ZodTypeAny, {
|
|
include?: Prisma.UserInclude<import("../../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
|
select?: Prisma.UserSelect<import("../../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
|
}, {
|
|
include?: Prisma.UserInclude<import("../../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
|
select?: Prisma.UserSelect<import("../../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
|
}>>]>>;
|
|
}, "strict", z.ZodTypeAny, {
|
|
status?: boolean | undefined;
|
|
createdAt?: boolean | undefined;
|
|
id?: boolean | undefined;
|
|
userId?: boolean | undefined;
|
|
user?: boolean | {
|
|
include?: Prisma.UserInclude<import("../../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
|
select?: Prisma.UserSelect<import("../../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
|
} | undefined;
|
|
patientId?: boolean | undefined;
|
|
patient?: boolean | {
|
|
include?: Prisma.PatientInclude<import("../../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
|
select?: Prisma.PatientSelect<import("../../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
|
} | undefined;
|
|
channel?: boolean | undefined;
|
|
direction?: boolean | undefined;
|
|
body?: boolean | undefined;
|
|
callDuration?: boolean | undefined;
|
|
twilioSid?: boolean | undefined;
|
|
}, {
|
|
status?: boolean | undefined;
|
|
createdAt?: boolean | undefined;
|
|
id?: boolean | undefined;
|
|
userId?: boolean | undefined;
|
|
user?: boolean | {
|
|
include?: Prisma.UserInclude<import("../../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
|
select?: Prisma.UserSelect<import("../../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
|
} | undefined;
|
|
patientId?: boolean | undefined;
|
|
patient?: boolean | {
|
|
include?: Prisma.PatientInclude<import("../../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
|
select?: Prisma.PatientSelect<import("../../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
|
} | undefined;
|
|
channel?: boolean | undefined;
|
|
direction?: boolean | undefined;
|
|
body?: boolean | undefined;
|
|
callDuration?: boolean | undefined;
|
|
twilioSid?: boolean | undefined;
|
|
}>;
|
|
//# sourceMappingURL=CommunicationSelect.schema.d.ts.map
|