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

49 lines
3.5 KiB
TypeScript

import type { Prisma } from '../../generated/prisma';
import * as z from 'zod';
export declare const DatabaseBackupFindFirstOrThrowSelectSchema: z.ZodType<Prisma.DatabaseBackupSelect>;
export declare const DatabaseBackupFindFirstOrThrowSelectZodSchema: z.ZodObject<{
id: z.ZodOptional<z.ZodBoolean>;
userId: z.ZodOptional<z.ZodBoolean>;
createdAt: z.ZodOptional<z.ZodBoolean>;
user: z.ZodOptional<z.ZodBoolean>;
}, "strict", z.ZodTypeAny, {
createdAt?: boolean | undefined;
id?: boolean | undefined;
userId?: boolean | undefined;
user?: boolean | undefined;
}, {
createdAt?: boolean | undefined;
id?: boolean | undefined;
userId?: boolean | undefined;
user?: boolean | undefined;
}>;
export declare const DatabaseBackupFindFirstOrThrowSchema: z.ZodType<Prisma.DatabaseBackupFindFirstOrThrowArgs>;
export declare const DatabaseBackupFindFirstOrThrowZodSchema: z.ZodObject<{
select: z.ZodOptional<z.ZodType<Prisma.DatabaseBackupSelect<import("../../generated/prisma/runtime/client").DefaultArgs>, z.ZodTypeDef, Prisma.DatabaseBackupSelect<import("../../generated/prisma/runtime/client").DefaultArgs>>>;
include: z.ZodLazy<z.ZodOptional<z.ZodType<Prisma.DatabaseBackupInclude<import("../../generated/prisma/runtime/client").DefaultArgs>, z.ZodTypeDef, Prisma.DatabaseBackupInclude<import("../../generated/prisma/runtime/client").DefaultArgs>>>>;
orderBy: z.ZodOptional<z.ZodUnion<[z.ZodType<Prisma.DatabaseBackupOrderByWithRelationInput, z.ZodTypeDef, Prisma.DatabaseBackupOrderByWithRelationInput>, z.ZodArray<z.ZodType<Prisma.DatabaseBackupOrderByWithRelationInput, z.ZodTypeDef, Prisma.DatabaseBackupOrderByWithRelationInput>, "many">]>>;
where: z.ZodOptional<z.ZodType<Prisma.DatabaseBackupWhereInput, z.ZodTypeDef, Prisma.DatabaseBackupWhereInput>>;
cursor: z.ZodOptional<z.ZodType<Prisma.DatabaseBackupWhereUniqueInput, z.ZodTypeDef, Prisma.DatabaseBackupWhereUniqueInput>>;
take: z.ZodOptional<z.ZodNumber>;
skip: z.ZodOptional<z.ZodNumber>;
distinct: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["id", "userId", "createdAt"]>, z.ZodArray<z.ZodEnum<["id", "userId", "createdAt"]>, "many">]>>;
}, "strict", z.ZodTypeAny, {
where?: Prisma.DatabaseBackupWhereInput | undefined;
include?: Prisma.DatabaseBackupInclude<import("../../generated/prisma/runtime/client").DefaultArgs> | undefined;
select?: Prisma.DatabaseBackupSelect<import("../../generated/prisma/runtime/client").DefaultArgs> | undefined;
orderBy?: Prisma.DatabaseBackupOrderByWithRelationInput | Prisma.DatabaseBackupOrderByWithRelationInput[] | undefined;
cursor?: Prisma.DatabaseBackupWhereUniqueInput | undefined;
take?: number | undefined;
skip?: number | undefined;
distinct?: "createdAt" | "id" | "userId" | ("createdAt" | "id" | "userId")[] | undefined;
}, {
where?: Prisma.DatabaseBackupWhereInput | undefined;
include?: Prisma.DatabaseBackupInclude<import("../../generated/prisma/runtime/client").DefaultArgs> | undefined;
select?: Prisma.DatabaseBackupSelect<import("../../generated/prisma/runtime/client").DefaultArgs> | undefined;
orderBy?: Prisma.DatabaseBackupOrderByWithRelationInput | Prisma.DatabaseBackupOrderByWithRelationInput[] | undefined;
cursor?: Prisma.DatabaseBackupWhereUniqueInput | undefined;
take?: number | undefined;
skip?: number | undefined;
distinct?: "createdAt" | "id" | "userId" | ("createdAt" | "id" | "userId")[] | undefined;
}>;
//# sourceMappingURL=findFirstOrThrowDatabaseBackup.schema.d.ts.map