23 lines
1.2 KiB
TypeScript
23 lines
1.2 KiB
TypeScript
import * as z from 'zod';
|
|
import type { Prisma } from '../../../generated/prisma';
|
|
export declare const ClaimFileOrderByWithRelationInputObjectSchema: z.ZodType<Prisma.ClaimFileOrderByWithRelationInput>;
|
|
export declare const ClaimFileOrderByWithRelationInputObjectZodSchema: 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"]>>;
|
|
claim: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.ClaimOrderByWithRelationInput, z.ZodTypeDef, Prisma.ClaimOrderByWithRelationInput>>>;
|
|
}, "strict", z.ZodTypeAny, {
|
|
id?: "asc" | "desc" | undefined;
|
|
filename?: "asc" | "desc" | undefined;
|
|
mimeType?: "asc" | "desc" | undefined;
|
|
claimId?: "asc" | "desc" | undefined;
|
|
claim?: Prisma.ClaimOrderByWithRelationInput | undefined;
|
|
}, {
|
|
id?: "asc" | "desc" | undefined;
|
|
filename?: "asc" | "desc" | undefined;
|
|
mimeType?: "asc" | "desc" | undefined;
|
|
claimId?: "asc" | "desc" | undefined;
|
|
claim?: Prisma.ClaimOrderByWithRelationInput | undefined;
|
|
}>;
|
|
//# sourceMappingURL=ClaimFileOrderByWithRelationInput.schema.d.ts.map
|