initial commit
This commit is contained in:
35
packages/db/shared/schemas/objects/ClaimFileOrderByWithAggregationInput.schema.d.ts
vendored
Normal file
35
packages/db/shared/schemas/objects/ClaimFileOrderByWithAggregationInput.schema.d.ts
vendored
Normal file
@@ -0,0 +1,35 @@
|
||||
import * as z from 'zod';
|
||||
import type { Prisma } from '../../../generated/prisma';
|
||||
export declare const ClaimFileOrderByWithAggregationInputObjectSchema: z.ZodType<Prisma.ClaimFileOrderByWithAggregationInput>;
|
||||
export declare const ClaimFileOrderByWithAggregationInputObjectZodSchema: z.ZodObject<{
|
||||
id: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
||||
claimId: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
||||
filename: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
||||
mimeType: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
||||
_count: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.ClaimFileCountOrderByAggregateInput, z.ZodTypeDef, Prisma.ClaimFileCountOrderByAggregateInput>>>;
|
||||
_avg: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.ClaimFileAvgOrderByAggregateInput, z.ZodTypeDef, Prisma.ClaimFileAvgOrderByAggregateInput>>>;
|
||||
_max: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.ClaimFileMaxOrderByAggregateInput, z.ZodTypeDef, Prisma.ClaimFileMaxOrderByAggregateInput>>>;
|
||||
_min: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.ClaimFileMinOrderByAggregateInput, z.ZodTypeDef, Prisma.ClaimFileMinOrderByAggregateInput>>>;
|
||||
_sum: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.ClaimFileSumOrderByAggregateInput, z.ZodTypeDef, Prisma.ClaimFileSumOrderByAggregateInput>>>;
|
||||
}, "strict", z.ZodTypeAny, {
|
||||
id?: "asc" | "desc" | undefined;
|
||||
filename?: "asc" | "desc" | undefined;
|
||||
mimeType?: "asc" | "desc" | undefined;
|
||||
claimId?: "asc" | "desc" | undefined;
|
||||
_count?: Prisma.ClaimFileCountOrderByAggregateInput | undefined;
|
||||
_min?: Prisma.ClaimFileMinOrderByAggregateInput | undefined;
|
||||
_max?: Prisma.ClaimFileMaxOrderByAggregateInput | undefined;
|
||||
_avg?: Prisma.ClaimFileAvgOrderByAggregateInput | undefined;
|
||||
_sum?: Prisma.ClaimFileSumOrderByAggregateInput | undefined;
|
||||
}, {
|
||||
id?: "asc" | "desc" | undefined;
|
||||
filename?: "asc" | "desc" | undefined;
|
||||
mimeType?: "asc" | "desc" | undefined;
|
||||
claimId?: "asc" | "desc" | undefined;
|
||||
_count?: Prisma.ClaimFileCountOrderByAggregateInput | undefined;
|
||||
_min?: Prisma.ClaimFileMinOrderByAggregateInput | undefined;
|
||||
_max?: Prisma.ClaimFileMaxOrderByAggregateInput | undefined;
|
||||
_avg?: Prisma.ClaimFileAvgOrderByAggregateInput | undefined;
|
||||
_sum?: Prisma.ClaimFileSumOrderByAggregateInput | undefined;
|
||||
}>;
|
||||
//# sourceMappingURL=ClaimFileOrderByWithAggregationInput.schema.d.ts.map
|
||||
Reference in New Issue
Block a user