initial commit
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
import * as z from 'zod';
|
||||
import type { Prisma } from '../../../generated/prisma';
|
||||
import { IntFilterObjectSchema as IntFilterObjectSchema } from './IntFilter.schema';
|
||||
import { StringFilterObjectSchema as StringFilterObjectSchema } from './StringFilter.schema';
|
||||
import { UserScalarRelationFilterObjectSchema as UserScalarRelationFilterObjectSchema } from './UserScalarRelationFilter.schema';
|
||||
import { UserWhereInputObjectSchema as UserWhereInputObjectSchema } from './UserWhereInput.schema'
|
||||
|
||||
const insurancecredentialwhereinputSchema = z.object({
|
||||
AND: z.union([z.lazy(() => InsuranceCredentialWhereInputObjectSchema), z.lazy(() => InsuranceCredentialWhereInputObjectSchema).array()]).optional(),
|
||||
OR: z.lazy(() => InsuranceCredentialWhereInputObjectSchema).array().optional(),
|
||||
NOT: z.union([z.lazy(() => InsuranceCredentialWhereInputObjectSchema), z.lazy(() => InsuranceCredentialWhereInputObjectSchema).array()]).optional(),
|
||||
id: z.union([z.lazy(() => IntFilterObjectSchema), z.number().int()]).optional(),
|
||||
userId: z.union([z.lazy(() => IntFilterObjectSchema), z.number().int()]).optional(),
|
||||
siteKey: z.union([z.lazy(() => StringFilterObjectSchema), z.string()]).optional(),
|
||||
username: z.union([z.lazy(() => StringFilterObjectSchema), z.string()]).optional(),
|
||||
password: z.union([z.lazy(() => StringFilterObjectSchema), z.string()]).optional(),
|
||||
user: z.union([z.lazy(() => UserScalarRelationFilterObjectSchema), z.lazy(() => UserWhereInputObjectSchema)]).optional()
|
||||
}).strict();
|
||||
export const InsuranceCredentialWhereInputObjectSchema: z.ZodType<Prisma.InsuranceCredentialWhereInput> = insurancecredentialwhereinputSchema as unknown as z.ZodType<Prisma.InsuranceCredentialWhereInput>;
|
||||
export const InsuranceCredentialWhereInputObjectZodSchema = insurancecredentialwhereinputSchema;
|
||||
Reference in New Issue
Block a user