initial commit
This commit is contained in:
26
packages/db/shared/schemas/countPatient.schema.d.ts
vendored
Normal file
26
packages/db/shared/schemas/countPatient.schema.d.ts
vendored
Normal file
@@ -0,0 +1,26 @@
|
||||
import type { Prisma } from '../../generated/prisma';
|
||||
import * as z from 'zod';
|
||||
export declare const PatientCountSchema: z.ZodType<Prisma.PatientCountArgs>;
|
||||
export declare const PatientCountZodSchema: z.ZodObject<{
|
||||
orderBy: z.ZodOptional<z.ZodUnion<[z.ZodType<Prisma.PatientOrderByWithRelationInput, z.ZodTypeDef, Prisma.PatientOrderByWithRelationInput>, z.ZodArray<z.ZodType<Prisma.PatientOrderByWithRelationInput, z.ZodTypeDef, Prisma.PatientOrderByWithRelationInput>, "many">]>>;
|
||||
where: z.ZodOptional<z.ZodType<Prisma.PatientWhereInput, z.ZodTypeDef, Prisma.PatientWhereInput>>;
|
||||
cursor: z.ZodOptional<z.ZodType<Prisma.PatientWhereUniqueInput, z.ZodTypeDef, Prisma.PatientWhereUniqueInput>>;
|
||||
take: z.ZodOptional<z.ZodNumber>;
|
||||
skip: z.ZodOptional<z.ZodNumber>;
|
||||
select: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<true>, z.ZodType<Prisma.PatientCountAggregateInputType, z.ZodTypeDef, Prisma.PatientCountAggregateInputType>]>>;
|
||||
}, "strict", z.ZodTypeAny, {
|
||||
where?: Prisma.PatientWhereInput | undefined;
|
||||
select?: true | Prisma.PatientCountAggregateInputType | undefined;
|
||||
orderBy?: Prisma.PatientOrderByWithRelationInput | Prisma.PatientOrderByWithRelationInput[] | undefined;
|
||||
cursor?: Prisma.PatientWhereUniqueInput | undefined;
|
||||
take?: number | undefined;
|
||||
skip?: number | undefined;
|
||||
}, {
|
||||
where?: Prisma.PatientWhereInput | undefined;
|
||||
select?: true | Prisma.PatientCountAggregateInputType | undefined;
|
||||
orderBy?: Prisma.PatientOrderByWithRelationInput | Prisma.PatientOrderByWithRelationInput[] | undefined;
|
||||
cursor?: Prisma.PatientWhereUniqueInput | undefined;
|
||||
take?: number | undefined;
|
||||
skip?: number | undefined;
|
||||
}>;
|
||||
//# sourceMappingURL=countPatient.schema.d.ts.map
|
||||
Reference in New Issue
Block a user