26 lines
1.7 KiB
TypeScript
26 lines
1.7 KiB
TypeScript
import type { Prisma } from '../../generated/prisma';
|
|
import * as z from 'zod';
|
|
export declare const PaymentCountSchema: z.ZodType<Prisma.PaymentCountArgs>;
|
|
export declare const PaymentCountZodSchema: z.ZodObject<{
|
|
orderBy: z.ZodOptional<z.ZodUnion<[z.ZodType<Prisma.PaymentOrderByWithRelationInput, z.ZodTypeDef, Prisma.PaymentOrderByWithRelationInput>, z.ZodArray<z.ZodType<Prisma.PaymentOrderByWithRelationInput, z.ZodTypeDef, Prisma.PaymentOrderByWithRelationInput>, "many">]>>;
|
|
where: z.ZodOptional<z.ZodType<Prisma.PaymentWhereInput, z.ZodTypeDef, Prisma.PaymentWhereInput>>;
|
|
cursor: z.ZodOptional<z.ZodType<Prisma.PaymentWhereUniqueInput, z.ZodTypeDef, Prisma.PaymentWhereUniqueInput>>;
|
|
take: z.ZodOptional<z.ZodNumber>;
|
|
skip: z.ZodOptional<z.ZodNumber>;
|
|
select: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<true>, z.ZodType<Prisma.PaymentCountAggregateInputType, z.ZodTypeDef, Prisma.PaymentCountAggregateInputType>]>>;
|
|
}, "strict", z.ZodTypeAny, {
|
|
where?: Prisma.PaymentWhereInput | undefined;
|
|
select?: true | Prisma.PaymentCountAggregateInputType | undefined;
|
|
orderBy?: Prisma.PaymentOrderByWithRelationInput | Prisma.PaymentOrderByWithRelationInput[] | undefined;
|
|
cursor?: Prisma.PaymentWhereUniqueInput | undefined;
|
|
take?: number | undefined;
|
|
skip?: number | undefined;
|
|
}, {
|
|
where?: Prisma.PaymentWhereInput | undefined;
|
|
select?: true | Prisma.PaymentCountAggregateInputType | undefined;
|
|
orderBy?: Prisma.PaymentOrderByWithRelationInput | Prisma.PaymentOrderByWithRelationInput[] | undefined;
|
|
cursor?: Prisma.PaymentWhereUniqueInput | undefined;
|
|
take?: number | undefined;
|
|
skip?: number | undefined;
|
|
}>;
|
|
//# sourceMappingURL=countPayment.schema.d.ts.map
|