initial commit
This commit is contained in:
44
packages/db/shared/schemas/objects/StaffOrderByWithAggregationInput.schema.d.ts
vendored
Normal file
44
packages/db/shared/schemas/objects/StaffOrderByWithAggregationInput.schema.d.ts
vendored
Normal file
@@ -0,0 +1,44 @@
|
||||
import * as z from 'zod';
|
||||
import type { Prisma } from '../../../generated/prisma';
|
||||
export declare const StaffOrderByWithAggregationInputObjectSchema: z.ZodType<Prisma.StaffOrderByWithAggregationInput>;
|
||||
export declare const StaffOrderByWithAggregationInputObjectZodSchema: z.ZodObject<{
|
||||
id: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
||||
userId: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
||||
name: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
||||
email: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["asc", "desc"]>, z.ZodLazy<z.ZodType<Prisma.SortOrderInput, z.ZodTypeDef, Prisma.SortOrderInput>>]>>;
|
||||
role: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
||||
phone: 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.StaffCountOrderByAggregateInput, z.ZodTypeDef, Prisma.StaffCountOrderByAggregateInput>>>;
|
||||
_avg: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.StaffAvgOrderByAggregateInput, z.ZodTypeDef, Prisma.StaffAvgOrderByAggregateInput>>>;
|
||||
_max: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.StaffMaxOrderByAggregateInput, z.ZodTypeDef, Prisma.StaffMaxOrderByAggregateInput>>>;
|
||||
_min: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.StaffMinOrderByAggregateInput, z.ZodTypeDef, Prisma.StaffMinOrderByAggregateInput>>>;
|
||||
_sum: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.StaffSumOrderByAggregateInput, z.ZodTypeDef, Prisma.StaffSumOrderByAggregateInput>>>;
|
||||
}, "strict", z.ZodTypeAny, {
|
||||
createdAt?: "asc" | "desc" | undefined;
|
||||
id?: "asc" | "desc" | undefined;
|
||||
userId?: "asc" | "desc" | undefined;
|
||||
name?: "asc" | "desc" | undefined;
|
||||
email?: "asc" | "desc" | Prisma.SortOrderInput | undefined;
|
||||
role?: "asc" | "desc" | undefined;
|
||||
phone?: "asc" | "desc" | Prisma.SortOrderInput | undefined;
|
||||
_count?: Prisma.StaffCountOrderByAggregateInput | undefined;
|
||||
_min?: Prisma.StaffMinOrderByAggregateInput | undefined;
|
||||
_max?: Prisma.StaffMaxOrderByAggregateInput | undefined;
|
||||
_avg?: Prisma.StaffAvgOrderByAggregateInput | undefined;
|
||||
_sum?: Prisma.StaffSumOrderByAggregateInput | undefined;
|
||||
}, {
|
||||
createdAt?: "asc" | "desc" | undefined;
|
||||
id?: "asc" | "desc" | undefined;
|
||||
userId?: "asc" | "desc" | undefined;
|
||||
name?: "asc" | "desc" | undefined;
|
||||
email?: "asc" | "desc" | Prisma.SortOrderInput | undefined;
|
||||
role?: "asc" | "desc" | undefined;
|
||||
phone?: "asc" | "desc" | Prisma.SortOrderInput | undefined;
|
||||
_count?: Prisma.StaffCountOrderByAggregateInput | undefined;
|
||||
_min?: Prisma.StaffMinOrderByAggregateInput | undefined;
|
||||
_max?: Prisma.StaffMaxOrderByAggregateInput | undefined;
|
||||
_avg?: Prisma.StaffAvgOrderByAggregateInput | undefined;
|
||||
_sum?: Prisma.StaffSumOrderByAggregateInput | undefined;
|
||||
}>;
|
||||
//# sourceMappingURL=StaffOrderByWithAggregationInput.schema.d.ts.map
|
||||
Reference in New Issue
Block a user