initial commit
This commit is contained in:
44
packages/db/shared/schemas/objects/CommunicationOrderByWithRelationInput.schema.d.ts
vendored
Normal file
44
packages/db/shared/schemas/objects/CommunicationOrderByWithRelationInput.schema.d.ts
vendored
Normal file
@@ -0,0 +1,44 @@
|
||||
import * as z from 'zod';
|
||||
import type { Prisma } from '../../../generated/prisma';
|
||||
export declare const CommunicationOrderByWithRelationInputObjectSchema: z.ZodType<Prisma.CommunicationOrderByWithRelationInput>;
|
||||
export declare const CommunicationOrderByWithRelationInputObjectZodSchema: z.ZodObject<{
|
||||
id: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
||||
patientId: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
||||
userId: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["asc", "desc"]>, z.ZodLazy<z.ZodType<Prisma.SortOrderInput, z.ZodTypeDef, Prisma.SortOrderInput>>]>>;
|
||||
channel: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
||||
direction: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
||||
status: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
||||
body: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["asc", "desc"]>, z.ZodLazy<z.ZodType<Prisma.SortOrderInput, z.ZodTypeDef, Prisma.SortOrderInput>>]>>;
|
||||
callDuration: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["asc", "desc"]>, z.ZodLazy<z.ZodType<Prisma.SortOrderInput, z.ZodTypeDef, Prisma.SortOrderInput>>]>>;
|
||||
twilioSid: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["asc", "desc"]>, z.ZodLazy<z.ZodType<Prisma.SortOrderInput, z.ZodTypeDef, Prisma.SortOrderInput>>]>>;
|
||||
createdAt: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
||||
patient: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.PatientOrderByWithRelationInput, z.ZodTypeDef, Prisma.PatientOrderByWithRelationInput>>>;
|
||||
user: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.UserOrderByWithRelationInput, z.ZodTypeDef, Prisma.UserOrderByWithRelationInput>>>;
|
||||
}, "strict", z.ZodTypeAny, {
|
||||
status?: "asc" | "desc" | undefined;
|
||||
createdAt?: "asc" | "desc" | undefined;
|
||||
id?: "asc" | "desc" | undefined;
|
||||
userId?: "asc" | "desc" | Prisma.SortOrderInput | undefined;
|
||||
user?: Prisma.UserOrderByWithRelationInput | undefined;
|
||||
patientId?: "asc" | "desc" | undefined;
|
||||
patient?: Prisma.PatientOrderByWithRelationInput | undefined;
|
||||
channel?: "asc" | "desc" | undefined;
|
||||
direction?: "asc" | "desc" | undefined;
|
||||
body?: "asc" | "desc" | Prisma.SortOrderInput | undefined;
|
||||
callDuration?: "asc" | "desc" | Prisma.SortOrderInput | undefined;
|
||||
twilioSid?: "asc" | "desc" | Prisma.SortOrderInput | undefined;
|
||||
}, {
|
||||
status?: "asc" | "desc" | undefined;
|
||||
createdAt?: "asc" | "desc" | undefined;
|
||||
id?: "asc" | "desc" | undefined;
|
||||
userId?: "asc" | "desc" | Prisma.SortOrderInput | undefined;
|
||||
user?: Prisma.UserOrderByWithRelationInput | undefined;
|
||||
patientId?: "asc" | "desc" | undefined;
|
||||
patient?: Prisma.PatientOrderByWithRelationInput | undefined;
|
||||
channel?: "asc" | "desc" | undefined;
|
||||
direction?: "asc" | "desc" | undefined;
|
||||
body?: "asc" | "desc" | Prisma.SortOrderInput | undefined;
|
||||
callDuration?: "asc" | "desc" | Prisma.SortOrderInput | undefined;
|
||||
twilioSid?: "asc" | "desc" | Prisma.SortOrderInput | undefined;
|
||||
}>;
|
||||
//# sourceMappingURL=CommunicationOrderByWithRelationInput.schema.d.ts.map
|
||||
Reference in New Issue
Block a user