32 lines
3.0 KiB
TypeScript
32 lines
3.0 KiB
TypeScript
import * as z from 'zod';
|
|
import type { Prisma } from '../../../generated/prisma';
|
|
export declare const InsuranceCredentialScalarWhereInputObjectSchema: z.ZodType<Prisma.InsuranceCredentialScalarWhereInput>;
|
|
export declare const InsuranceCredentialScalarWhereInputObjectZodSchema: z.ZodObject<{
|
|
AND: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.InsuranceCredentialScalarWhereInput, z.ZodTypeDef, Prisma.InsuranceCredentialScalarWhereInput>>, z.ZodArray<z.ZodLazy<z.ZodType<Prisma.InsuranceCredentialScalarWhereInput, z.ZodTypeDef, Prisma.InsuranceCredentialScalarWhereInput>>, "many">]>>;
|
|
OR: z.ZodOptional<z.ZodArray<z.ZodLazy<z.ZodType<Prisma.InsuranceCredentialScalarWhereInput, z.ZodTypeDef, Prisma.InsuranceCredentialScalarWhereInput>>, "many">>;
|
|
NOT: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.InsuranceCredentialScalarWhereInput, z.ZodTypeDef, Prisma.InsuranceCredentialScalarWhereInput>>, z.ZodArray<z.ZodLazy<z.ZodType<Prisma.InsuranceCredentialScalarWhereInput, z.ZodTypeDef, Prisma.InsuranceCredentialScalarWhereInput>>, "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]>>;
|
|
}, "strict", z.ZodTypeAny, {
|
|
id?: number | Prisma.IntFilter<never> | undefined;
|
|
userId?: number | Prisma.IntFilter<never> | undefined;
|
|
AND?: Prisma.InsuranceCredentialScalarWhereInput | Prisma.InsuranceCredentialScalarWhereInput[] | undefined;
|
|
OR?: Prisma.InsuranceCredentialScalarWhereInput[] | undefined;
|
|
NOT?: Prisma.InsuranceCredentialScalarWhereInput | Prisma.InsuranceCredentialScalarWhereInput[] | 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.InsuranceCredentialScalarWhereInput | Prisma.InsuranceCredentialScalarWhereInput[] | undefined;
|
|
OR?: Prisma.InsuranceCredentialScalarWhereInput[] | undefined;
|
|
NOT?: Prisma.InsuranceCredentialScalarWhereInput | Prisma.InsuranceCredentialScalarWhereInput[] | undefined;
|
|
siteKey?: string | Prisma.StringFilter<never> | undefined;
|
|
username?: string | Prisma.StringFilter<never> | undefined;
|
|
password?: string | Prisma.StringFilter<never> | undefined;
|
|
}>;
|
|
//# sourceMappingURL=InsuranceCredentialScalarWhereInput.schema.d.ts.map
|