initial commit

This commit is contained in:
2026-04-04 22:13:55 -04:00
commit 5d77e207c9
10181 changed files with 522212 additions and 0 deletions

View File

@@ -0,0 +1,38 @@
import * as z from 'zod';
import type { Prisma } from '../../../generated/prisma';
export declare const StaffScalarWhereInputObjectSchema: z.ZodType<Prisma.StaffScalarWhereInput>;
export declare const StaffScalarWhereInputObjectZodSchema: z.ZodObject<{
AND: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.StaffScalarWhereInput, z.ZodTypeDef, Prisma.StaffScalarWhereInput>>, z.ZodArray<z.ZodLazy<z.ZodType<Prisma.StaffScalarWhereInput, z.ZodTypeDef, Prisma.StaffScalarWhereInput>>, "many">]>>;
OR: z.ZodOptional<z.ZodArray<z.ZodLazy<z.ZodType<Prisma.StaffScalarWhereInput, z.ZodTypeDef, Prisma.StaffScalarWhereInput>>, "many">>;
NOT: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.StaffScalarWhereInput, z.ZodTypeDef, Prisma.StaffScalarWhereInput>>, z.ZodArray<z.ZodLazy<z.ZodType<Prisma.StaffScalarWhereInput, z.ZodTypeDef, Prisma.StaffScalarWhereInput>>, "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]>>;
}, "strict", z.ZodTypeAny, {
createdAt?: Date | Prisma.DateTimeFilter<never> | undefined;
id?: number | Prisma.IntFilter<never> | undefined;
userId?: number | Prisma.IntFilter<never> | undefined;
AND?: Prisma.StaffScalarWhereInput | Prisma.StaffScalarWhereInput[] | undefined;
OR?: Prisma.StaffScalarWhereInput[] | undefined;
NOT?: Prisma.StaffScalarWhereInput | Prisma.StaffScalarWhereInput[] | 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;
}, {
createdAt?: Date | Prisma.DateTimeFilter<never> | undefined;
id?: number | Prisma.IntFilter<never> | undefined;
userId?: number | Prisma.IntFilter<never> | undefined;
AND?: Prisma.StaffScalarWhereInput | Prisma.StaffScalarWhereInput[] | undefined;
OR?: Prisma.StaffScalarWhereInput[] | undefined;
NOT?: Prisma.StaffScalarWhereInput | Prisma.StaffScalarWhereInput[] | 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;
}>;
//# sourceMappingURL=StaffScalarWhereInput.schema.d.ts.map