35 lines
3.3 KiB
TypeScript
35 lines
3.3 KiB
TypeScript
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
|