47 lines
4.1 KiB
TypeScript
47 lines
4.1 KiB
TypeScript
import * as z from 'zod';
|
|
import type { Prisma } from '../../../generated/prisma';
|
|
export declare const StaffWhereInputObjectSchema: z.ZodType<Prisma.StaffWhereInput>;
|
|
export declare const StaffWhereInputObjectZodSchema: z.ZodObject<{
|
|
AND: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.StaffWhereInput, z.ZodTypeDef, Prisma.StaffWhereInput>>, z.ZodArray<z.ZodLazy<z.ZodType<Prisma.StaffWhereInput, z.ZodTypeDef, Prisma.StaffWhereInput>>, "many">]>>;
|
|
OR: z.ZodOptional<z.ZodArray<z.ZodLazy<z.ZodType<Prisma.StaffWhereInput, z.ZodTypeDef, Prisma.StaffWhereInput>>, "many">>;
|
|
NOT: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.StaffWhereInput, z.ZodTypeDef, Prisma.StaffWhereInput>>, z.ZodArray<z.ZodLazy<z.ZodType<Prisma.StaffWhereInput, z.ZodTypeDef, Prisma.StaffWhereInput>>, "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]>>;
|
|
name: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.StringFilter<never>, z.ZodTypeDef, Prisma.StringFilter<never>>>, z.ZodString]>>;
|
|
email: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.StringNullableFilter<never>, z.ZodTypeDef, Prisma.StringNullableFilter<never>>>, z.ZodString]>>>;
|
|
role: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.StringFilter<never>, z.ZodTypeDef, Prisma.StringFilter<never>>>, z.ZodString]>>;
|
|
phone: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.StringNullableFilter<never>, z.ZodTypeDef, Prisma.StringNullableFilter<never>>>, z.ZodString]>>>;
|
|
createdAt: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.DateTimeFilter<never>, z.ZodTypeDef, Prisma.DateTimeFilter<never>>>, z.ZodDate]>>;
|
|
user: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.UserNullableScalarRelationFilter, z.ZodTypeDef, Prisma.UserNullableScalarRelationFilter>>, z.ZodLazy<z.ZodType<Prisma.UserWhereInput, z.ZodTypeDef, Prisma.UserWhereInput>>]>>;
|
|
appointments: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.AppointmentListRelationFilter, z.ZodTypeDef, Prisma.AppointmentListRelationFilter>>>;
|
|
claims: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.ClaimListRelationFilter, z.ZodTypeDef, Prisma.ClaimListRelationFilter>>>;
|
|
}, "strict", z.ZodTypeAny, {
|
|
createdAt?: Date | Prisma.DateTimeFilter<never> | undefined;
|
|
id?: number | Prisma.IntFilter<never> | undefined;
|
|
userId?: number | Prisma.IntFilter<never> | undefined;
|
|
AND?: Prisma.StaffWhereInput | Prisma.StaffWhereInput[] | undefined;
|
|
OR?: Prisma.StaffWhereInput[] | undefined;
|
|
NOT?: Prisma.StaffWhereInput | Prisma.StaffWhereInput[] | undefined;
|
|
user?: Prisma.UserNullableScalarRelationFilter | Prisma.UserWhereInput | undefined;
|
|
claims?: Prisma.ClaimListRelationFilter | undefined;
|
|
name?: string | Prisma.StringFilter<never> | undefined;
|
|
email?: string | Prisma.StringNullableFilter<never> | null | undefined;
|
|
role?: string | Prisma.StringFilter<never> | undefined;
|
|
phone?: string | Prisma.StringNullableFilter<never> | null | undefined;
|
|
appointments?: Prisma.AppointmentListRelationFilter | undefined;
|
|
}, {
|
|
createdAt?: Date | Prisma.DateTimeFilter<never> | undefined;
|
|
id?: number | Prisma.IntFilter<never> | undefined;
|
|
userId?: number | Prisma.IntFilter<never> | undefined;
|
|
AND?: Prisma.StaffWhereInput | Prisma.StaffWhereInput[] | undefined;
|
|
OR?: Prisma.StaffWhereInput[] | undefined;
|
|
NOT?: Prisma.StaffWhereInput | Prisma.StaffWhereInput[] | undefined;
|
|
user?: Prisma.UserNullableScalarRelationFilter | Prisma.UserWhereInput | undefined;
|
|
claims?: Prisma.ClaimListRelationFilter | undefined;
|
|
name?: string | Prisma.StringFilter<never> | undefined;
|
|
email?: string | Prisma.StringNullableFilter<never> | null | undefined;
|
|
role?: string | Prisma.StringFilter<never> | undefined;
|
|
phone?: string | Prisma.StringNullableFilter<never> | null | undefined;
|
|
appointments?: Prisma.AppointmentListRelationFilter | undefined;
|
|
}>;
|
|
//# sourceMappingURL=StaffWhereInput.schema.d.ts.map
|