20 lines
958 B
TypeScript
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
|