Files
DentalManagementMHAprilgg/packages/db/shared/schemas/objects/BackupDestinationCreateInput.schema.d.ts
2026-04-04 22:13:55 -04:00

20 lines
958 B
TypeScript

import * as z from 'zod';
import type { Prisma } from '../../../generated/prisma';
export declare const BackupDestinationCreateInputObjectSchema: z.ZodType<Prisma.BackupDestinationCreateInput>;
export declare const BackupDestinationCreateInputObjectZodSchema: z.ZodObject<{
path: z.ZodString;
isActive: z.ZodOptional<z.ZodBoolean>;
createdAt: z.ZodOptional<z.ZodDate>;
user: z.ZodLazy<z.ZodType<Prisma.UserCreateNestedOneWithoutBackupDestinationsInput, z.ZodTypeDef, Prisma.UserCreateNestedOneWithoutBackupDestinationsInput>>;
}, "strict", z.ZodTypeAny, {
path: string;
user: Prisma.UserCreateNestedOneWithoutBackupDestinationsInput;
createdAt?: Date | undefined;
isActive?: boolean | undefined;
}, {
path: string;
user: Prisma.UserCreateNestedOneWithoutBackupDestinationsInput;
createdAt?: Date | undefined;
isActive?: boolean | undefined;
}>;
//# sourceMappingURL=BackupDestinationCreateInput.schema.d.ts.map