38 lines
2.3 KiB
TypeScript
38 lines
2.3 KiB
TypeScript
import * as z from 'zod';
|
|
import type { Prisma } from '../../../generated/prisma';
|
|
export declare const ClaimFileSelectObjectSchema: z.ZodType<Prisma.ClaimFileSelect>;
|
|
export declare const ClaimFileSelectObjectZodSchema: z.ZodObject<{
|
|
id: z.ZodOptional<z.ZodBoolean>;
|
|
claimId: z.ZodOptional<z.ZodBoolean>;
|
|
filename: z.ZodOptional<z.ZodBoolean>;
|
|
mimeType: z.ZodOptional<z.ZodBoolean>;
|
|
claim: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodLazy<z.ZodObject<{
|
|
select: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.ClaimSelect<import("../../../generated/prisma/runtime/client").DefaultArgs>, z.ZodTypeDef, Prisma.ClaimSelect<import("../../../generated/prisma/runtime/client").DefaultArgs>>>>;
|
|
include: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.ClaimInclude<import("../../../generated/prisma/runtime/client").DefaultArgs>, z.ZodTypeDef, Prisma.ClaimInclude<import("../../../generated/prisma/runtime/client").DefaultArgs>>>>;
|
|
}, "strict", z.ZodTypeAny, {
|
|
include?: Prisma.ClaimInclude<import("../../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
|
select?: Prisma.ClaimSelect<import("../../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
|
}, {
|
|
include?: Prisma.ClaimInclude<import("../../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
|
select?: Prisma.ClaimSelect<import("../../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
|
}>>]>>;
|
|
}, "strict", z.ZodTypeAny, {
|
|
id?: boolean | undefined;
|
|
filename?: boolean | undefined;
|
|
mimeType?: boolean | undefined;
|
|
claimId?: boolean | undefined;
|
|
claim?: boolean | {
|
|
include?: Prisma.ClaimInclude<import("../../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
|
select?: Prisma.ClaimSelect<import("../../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
|
} | undefined;
|
|
}, {
|
|
id?: boolean | undefined;
|
|
filename?: boolean | undefined;
|
|
mimeType?: boolean | undefined;
|
|
claimId?: boolean | undefined;
|
|
claim?: boolean | {
|
|
include?: Prisma.ClaimInclude<import("../../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
|
select?: Prisma.ClaimSelect<import("../../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
|
} | undefined;
|
|
}>;
|
|
//# sourceMappingURL=ClaimFileSelect.schema.d.ts.map
|