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

38 lines
2.5 KiB
TypeScript

import * as z from 'zod';
import type { Prisma } from '../../../generated/prisma';
export declare const CloudFolderOrderByWithRelationInputObjectSchema: z.ZodType<Prisma.CloudFolderOrderByWithRelationInput>;
export declare const CloudFolderOrderByWithRelationInputObjectZodSchema: z.ZodObject<{
id: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
userId: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
name: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
parentId: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["asc", "desc"]>, z.ZodLazy<z.ZodType<Prisma.SortOrderInput, z.ZodTypeDef, Prisma.SortOrderInput>>]>>;
createdAt: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
updatedAt: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
parent: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.CloudFolderOrderByWithRelationInput, z.ZodTypeDef, Prisma.CloudFolderOrderByWithRelationInput>>>;
children: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.CloudFolderOrderByRelationAggregateInput, z.ZodTypeDef, Prisma.CloudFolderOrderByRelationAggregateInput>>>;
user: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.UserOrderByWithRelationInput, z.ZodTypeDef, Prisma.UserOrderByWithRelationInput>>>;
files: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.CloudFileOrderByRelationAggregateInput, z.ZodTypeDef, Prisma.CloudFileOrderByRelationAggregateInput>>>;
}, "strict", z.ZodTypeAny, {
createdAt?: "asc" | "desc" | undefined;
id?: "asc" | "desc" | undefined;
userId?: "asc" | "desc" | undefined;
user?: Prisma.UserOrderByWithRelationInput | undefined;
name?: "asc" | "desc" | undefined;
updatedAt?: "asc" | "desc" | undefined;
children?: Prisma.CloudFolderOrderByRelationAggregateInput | undefined;
files?: Prisma.CloudFileOrderByRelationAggregateInput | undefined;
parentId?: "asc" | "desc" | Prisma.SortOrderInput | undefined;
parent?: Prisma.CloudFolderOrderByWithRelationInput | undefined;
}, {
createdAt?: "asc" | "desc" | undefined;
id?: "asc" | "desc" | undefined;
userId?: "asc" | "desc" | undefined;
user?: Prisma.UserOrderByWithRelationInput | undefined;
name?: "asc" | "desc" | undefined;
updatedAt?: "asc" | "desc" | undefined;
children?: Prisma.CloudFolderOrderByRelationAggregateInput | undefined;
files?: Prisma.CloudFileOrderByRelationAggregateInput | undefined;
parentId?: "asc" | "desc" | Prisma.SortOrderInput | undefined;
parent?: Prisma.CloudFolderOrderByWithRelationInput | undefined;
}>;
//# sourceMappingURL=CloudFolderOrderByWithRelationInput.schema.d.ts.map