initial commit
This commit is contained in:
35
packages/db/shared/schemas/objects/InsuranceCredentialWhereInput.schema.d.ts
vendored
Normal file
35
packages/db/shared/schemas/objects/InsuranceCredentialWhereInput.schema.d.ts
vendored
Normal file
@@ -0,0 +1,35 @@
|
||||
import * as z from 'zod';
|
||||
import type { Prisma } from '../../../generated/prisma';
|
||||
export declare const InsuranceCredentialWhereInputObjectSchema: z.ZodType<Prisma.InsuranceCredentialWhereInput>;
|
||||
export declare const InsuranceCredentialWhereInputObjectZodSchema: z.ZodObject<{
|
||||
AND: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.InsuranceCredentialWhereInput, z.ZodTypeDef, Prisma.InsuranceCredentialWhereInput>>, z.ZodArray<z.ZodLazy<z.ZodType<Prisma.InsuranceCredentialWhereInput, z.ZodTypeDef, Prisma.InsuranceCredentialWhereInput>>, "many">]>>;
|
||||
OR: z.ZodOptional<z.ZodArray<z.ZodLazy<z.ZodType<Prisma.InsuranceCredentialWhereInput, z.ZodTypeDef, Prisma.InsuranceCredentialWhereInput>>, "many">>;
|
||||
NOT: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.InsuranceCredentialWhereInput, z.ZodTypeDef, Prisma.InsuranceCredentialWhereInput>>, z.ZodArray<z.ZodLazy<z.ZodType<Prisma.InsuranceCredentialWhereInput, z.ZodTypeDef, Prisma.InsuranceCredentialWhereInput>>, "many">]>>;
|
||||
id: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.IntFilter<never>, z.ZodTypeDef, Prisma.IntFilter<never>>>, z.ZodNumber]>>;
|
||||
userId: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.IntFilter<never>, z.ZodTypeDef, Prisma.IntFilter<never>>>, z.ZodNumber]>>;
|
||||
siteKey: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.StringFilter<never>, z.ZodTypeDef, Prisma.StringFilter<never>>>, z.ZodString]>>;
|
||||
username: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.StringFilter<never>, z.ZodTypeDef, Prisma.StringFilter<never>>>, z.ZodString]>>;
|
||||
password: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.StringFilter<never>, z.ZodTypeDef, Prisma.StringFilter<never>>>, z.ZodString]>>;
|
||||
user: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.UserScalarRelationFilter, z.ZodTypeDef, Prisma.UserScalarRelationFilter>>, z.ZodLazy<z.ZodType<Prisma.UserWhereInput, z.ZodTypeDef, Prisma.UserWhereInput>>]>>;
|
||||
}, "strict", z.ZodTypeAny, {
|
||||
id?: number | Prisma.IntFilter<never> | undefined;
|
||||
userId?: number | Prisma.IntFilter<never> | undefined;
|
||||
AND?: Prisma.InsuranceCredentialWhereInput | Prisma.InsuranceCredentialWhereInput[] | undefined;
|
||||
OR?: Prisma.InsuranceCredentialWhereInput[] | undefined;
|
||||
NOT?: Prisma.InsuranceCredentialWhereInput | Prisma.InsuranceCredentialWhereInput[] | undefined;
|
||||
user?: Prisma.UserWhereInput | Prisma.UserScalarRelationFilter | undefined;
|
||||
siteKey?: string | Prisma.StringFilter<never> | undefined;
|
||||
username?: string | Prisma.StringFilter<never> | undefined;
|
||||
password?: string | Prisma.StringFilter<never> | undefined;
|
||||
}, {
|
||||
id?: number | Prisma.IntFilter<never> | undefined;
|
||||
userId?: number | Prisma.IntFilter<never> | undefined;
|
||||
AND?: Prisma.InsuranceCredentialWhereInput | Prisma.InsuranceCredentialWhereInput[] | undefined;
|
||||
OR?: Prisma.InsuranceCredentialWhereInput[] | undefined;
|
||||
NOT?: Prisma.InsuranceCredentialWhereInput | Prisma.InsuranceCredentialWhereInput[] | undefined;
|
||||
user?: Prisma.UserWhereInput | Prisma.UserScalarRelationFilter | undefined;
|
||||
siteKey?: string | Prisma.StringFilter<never> | undefined;
|
||||
username?: string | Prisma.StringFilter<never> | undefined;
|
||||
password?: string | Prisma.StringFilter<never> | undefined;
|
||||
}>;
|
||||
//# sourceMappingURL=InsuranceCredentialWhereInput.schema.d.ts.map
|
||||
Reference in New Issue
Block a user