initial commit

This commit is contained in:
2026-04-04 22:13:55 -04:00
commit 5d77e207c9
10181 changed files with 522212 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
import * as z from 'zod';
import type { Prisma } from '../../../generated/prisma';
import { IntWithAggregatesFilterObjectSchema as IntWithAggregatesFilterObjectSchema } from './IntWithAggregatesFilter.schema';
import { StringWithAggregatesFilterObjectSchema as StringWithAggregatesFilterObjectSchema } from './StringWithAggregatesFilter.schema'
const claimfilescalarwherewithaggregatesinputSchema = z.object({
AND: z.union([z.lazy(() => ClaimFileScalarWhereWithAggregatesInputObjectSchema), z.lazy(() => ClaimFileScalarWhereWithAggregatesInputObjectSchema).array()]).optional(),
OR: z.lazy(() => ClaimFileScalarWhereWithAggregatesInputObjectSchema).array().optional(),
NOT: z.union([z.lazy(() => ClaimFileScalarWhereWithAggregatesInputObjectSchema), z.lazy(() => ClaimFileScalarWhereWithAggregatesInputObjectSchema).array()]).optional(),
id: z.union([z.lazy(() => IntWithAggregatesFilterObjectSchema), z.number().int()]).optional(),
claimId: z.union([z.lazy(() => IntWithAggregatesFilterObjectSchema), z.number().int()]).optional(),
filename: z.union([z.lazy(() => StringWithAggregatesFilterObjectSchema), z.string()]).optional(),
mimeType: z.union([z.lazy(() => StringWithAggregatesFilterObjectSchema), z.string()]).optional()
}).strict();
export const ClaimFileScalarWhereWithAggregatesInputObjectSchema: z.ZodType<Prisma.ClaimFileScalarWhereWithAggregatesInput> = claimfilescalarwherewithaggregatesinputSchema as unknown as z.ZodType<Prisma.ClaimFileScalarWhereWithAggregatesInput>;
export const ClaimFileScalarWhereWithAggregatesInputObjectZodSchema = claimfilescalarwherewithaggregatesinputSchema;