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

55 lines
3.8 KiB
TypeScript

import type { Prisma } from '../../generated/prisma';
import * as z from 'zod';
export declare const BackupDestinationFindManySelectSchema: z.ZodType<Prisma.BackupDestinationSelect>;
export declare const BackupDestinationFindManySelectZodSchema: z.ZodObject<{
id: z.ZodOptional<z.ZodBoolean>;
userId: z.ZodOptional<z.ZodBoolean>;
path: z.ZodOptional<z.ZodBoolean>;
isActive: z.ZodOptional<z.ZodBoolean>;
createdAt: z.ZodOptional<z.ZodBoolean>;
user: z.ZodOptional<z.ZodBoolean>;
}, "strict", z.ZodTypeAny, {
path?: boolean | undefined;
createdAt?: boolean | undefined;
id?: boolean | undefined;
userId?: boolean | undefined;
user?: boolean | undefined;
isActive?: boolean | undefined;
}, {
path?: boolean | undefined;
createdAt?: boolean | undefined;
id?: boolean | undefined;
userId?: boolean | undefined;
user?: boolean | undefined;
isActive?: boolean | undefined;
}>;
export declare const BackupDestinationFindManySchema: z.ZodType<Prisma.BackupDestinationFindManyArgs>;
export declare const BackupDestinationFindManyZodSchema: z.ZodObject<{
select: z.ZodOptional<z.ZodType<Prisma.BackupDestinationSelect<import("../../generated/prisma/runtime/client").DefaultArgs>, z.ZodTypeDef, Prisma.BackupDestinationSelect<import("../../generated/prisma/runtime/client").DefaultArgs>>>;
include: z.ZodLazy<z.ZodOptional<z.ZodType<Prisma.BackupDestinationInclude<import("../../generated/prisma/runtime/client").DefaultArgs>, z.ZodTypeDef, Prisma.BackupDestinationInclude<import("../../generated/prisma/runtime/client").DefaultArgs>>>>;
orderBy: z.ZodOptional<z.ZodUnion<[z.ZodType<Prisma.BackupDestinationOrderByWithRelationInput, z.ZodTypeDef, Prisma.BackupDestinationOrderByWithRelationInput>, z.ZodArray<z.ZodType<Prisma.BackupDestinationOrderByWithRelationInput, z.ZodTypeDef, Prisma.BackupDestinationOrderByWithRelationInput>, "many">]>>;
where: z.ZodOptional<z.ZodType<Prisma.BackupDestinationWhereInput, z.ZodTypeDef, Prisma.BackupDestinationWhereInput>>;
cursor: z.ZodOptional<z.ZodType<Prisma.BackupDestinationWhereUniqueInput, z.ZodTypeDef, Prisma.BackupDestinationWhereUniqueInput>>;
take: z.ZodOptional<z.ZodNumber>;
skip: z.ZodOptional<z.ZodNumber>;
distinct: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["id", "userId", "path", "isActive", "createdAt"]>, z.ZodArray<z.ZodEnum<["id", "userId", "path", "isActive", "createdAt"]>, "many">]>>;
}, "strict", z.ZodTypeAny, {
where?: Prisma.BackupDestinationWhereInput | undefined;
include?: Prisma.BackupDestinationInclude<import("../../generated/prisma/runtime/client").DefaultArgs> | undefined;
select?: Prisma.BackupDestinationSelect<import("../../generated/prisma/runtime/client").DefaultArgs> | undefined;
orderBy?: Prisma.BackupDestinationOrderByWithRelationInput | Prisma.BackupDestinationOrderByWithRelationInput[] | undefined;
cursor?: Prisma.BackupDestinationWhereUniqueInput | undefined;
take?: number | undefined;
skip?: number | undefined;
distinct?: "path" | "createdAt" | "id" | "userId" | "isActive" | ("path" | "createdAt" | "id" | "userId" | "isActive")[] | undefined;
}, {
where?: Prisma.BackupDestinationWhereInput | undefined;
include?: Prisma.BackupDestinationInclude<import("../../generated/prisma/runtime/client").DefaultArgs> | undefined;
select?: Prisma.BackupDestinationSelect<import("../../generated/prisma/runtime/client").DefaultArgs> | undefined;
orderBy?: Prisma.BackupDestinationOrderByWithRelationInput | Prisma.BackupDestinationOrderByWithRelationInput[] | undefined;
cursor?: Prisma.BackupDestinationWhereUniqueInput | undefined;
take?: number | undefined;
skip?: number | undefined;
distinct?: "path" | "createdAt" | "id" | "userId" | "isActive" | ("path" | "createdAt" | "id" | "userId" | "isActive")[] | undefined;
}>;
//# sourceMappingURL=findManyBackupDestination.schema.d.ts.map