initial commit
This commit is contained in:
53
packages/db/shared/schemas/objects/CommunicationOrderByWithAggregationInput.schema.d.ts
vendored
Normal file
53
packages/db/shared/schemas/objects/CommunicationOrderByWithAggregationInput.schema.d.ts
vendored
Normal file
@@ -0,0 +1,53 @@
|
||||
import * as z from 'zod';
|
||||
import type { Prisma } from '../../../generated/prisma';
|
||||
export declare const CommunicationOrderByWithAggregationInputObjectSchema: z.ZodType<Prisma.CommunicationOrderByWithAggregationInput>;
|
||||
export declare const CommunicationOrderByWithAggregationInputObjectZodSchema: 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"]>>;
|
||||
_count: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.CommunicationCountOrderByAggregateInput, z.ZodTypeDef, Prisma.CommunicationCountOrderByAggregateInput>>>;
|
||||
_avg: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.CommunicationAvgOrderByAggregateInput, z.ZodTypeDef, Prisma.CommunicationAvgOrderByAggregateInput>>>;
|
||||
_max: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.CommunicationMaxOrderByAggregateInput, z.ZodTypeDef, Prisma.CommunicationMaxOrderByAggregateInput>>>;
|
||||
_min: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.CommunicationMinOrderByAggregateInput, z.ZodTypeDef, Prisma.CommunicationMinOrderByAggregateInput>>>;
|
||||
_sum: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.CommunicationSumOrderByAggregateInput, z.ZodTypeDef, Prisma.CommunicationSumOrderByAggregateInput>>>;
|
||||
}, "strict", z.ZodTypeAny, {
|
||||
status?: "asc" | "desc" | undefined;
|
||||
createdAt?: "asc" | "desc" | undefined;
|
||||
id?: "asc" | "desc" | undefined;
|
||||
userId?: "asc" | "desc" | Prisma.SortOrderInput | undefined;
|
||||
patientId?: "asc" | "desc" | 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;
|
||||
_count?: Prisma.CommunicationCountOrderByAggregateInput | undefined;
|
||||
_min?: Prisma.CommunicationMinOrderByAggregateInput | undefined;
|
||||
_max?: Prisma.CommunicationMaxOrderByAggregateInput | undefined;
|
||||
_avg?: Prisma.CommunicationAvgOrderByAggregateInput | undefined;
|
||||
_sum?: Prisma.CommunicationSumOrderByAggregateInput | undefined;
|
||||
}, {
|
||||
status?: "asc" | "desc" | undefined;
|
||||
createdAt?: "asc" | "desc" | undefined;
|
||||
id?: "asc" | "desc" | undefined;
|
||||
userId?: "asc" | "desc" | Prisma.SortOrderInput | undefined;
|
||||
patientId?: "asc" | "desc" | 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;
|
||||
_count?: Prisma.CommunicationCountOrderByAggregateInput | undefined;
|
||||
_min?: Prisma.CommunicationMinOrderByAggregateInput | undefined;
|
||||
_max?: Prisma.CommunicationMaxOrderByAggregateInput | undefined;
|
||||
_avg?: Prisma.CommunicationAvgOrderByAggregateInput | undefined;
|
||||
_sum?: Prisma.CommunicationSumOrderByAggregateInput | undefined;
|
||||
}>;
|
||||
//# sourceMappingURL=CommunicationOrderByWithAggregationInput.schema.d.ts.map
|
||||
Reference in New Issue
Block a user