initial commit
This commit is contained in:
26
packages/db/shared/schemas/objects/StaffCreateManyUserInput.schema.d.ts
vendored
Normal file
26
packages/db/shared/schemas/objects/StaffCreateManyUserInput.schema.d.ts
vendored
Normal file
@@ -0,0 +1,26 @@
|
||||
import * as z from 'zod';
|
||||
import type { Prisma } from '../../../generated/prisma';
|
||||
export declare const StaffCreateManyUserInputObjectSchema: z.ZodType<Prisma.StaffCreateManyUserInput>;
|
||||
export declare const StaffCreateManyUserInputObjectZodSchema: z.ZodObject<{
|
||||
id: z.ZodOptional<z.ZodNumber>;
|
||||
name: z.ZodString;
|
||||
email: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
||||
role: z.ZodString;
|
||||
phone: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
||||
createdAt: z.ZodOptional<z.ZodDate>;
|
||||
}, "strict", z.ZodTypeAny, {
|
||||
name: string;
|
||||
role: string;
|
||||
createdAt?: Date | undefined;
|
||||
id?: number | undefined;
|
||||
email?: string | null | undefined;
|
||||
phone?: string | null | undefined;
|
||||
}, {
|
||||
name: string;
|
||||
role: string;
|
||||
createdAt?: Date | undefined;
|
||||
id?: number | undefined;
|
||||
email?: string | null | undefined;
|
||||
phone?: string | null | undefined;
|
||||
}>;
|
||||
//# sourceMappingURL=StaffCreateManyUserInput.schema.d.ts.map
|
||||
Reference in New Issue
Block a user