initial commit
This commit is contained in:
20
packages/db/shared/schemas/updateOnePayment.schema.d.ts
vendored
Normal file
20
packages/db/shared/schemas/updateOnePayment.schema.d.ts
vendored
Normal file
@@ -0,0 +1,20 @@
|
||||
import type { Prisma } from '../../generated/prisma';
|
||||
import * as z from 'zod';
|
||||
export declare const PaymentUpdateOneSchema: z.ZodType<Prisma.PaymentUpdateArgs>;
|
||||
export declare const PaymentUpdateOneZodSchema: z.ZodObject<{
|
||||
select: z.ZodOptional<z.ZodType<Prisma.PaymentSelect<import("../../generated/prisma/runtime/client").DefaultArgs>, z.ZodTypeDef, Prisma.PaymentSelect<import("../../generated/prisma/runtime/client").DefaultArgs>>>;
|
||||
include: z.ZodOptional<z.ZodType<Prisma.PaymentInclude<import("../../generated/prisma/runtime/client").DefaultArgs>, z.ZodTypeDef, Prisma.PaymentInclude<import("../../generated/prisma/runtime/client").DefaultArgs>>>;
|
||||
data: z.ZodUnion<[z.ZodType<Prisma.PaymentUpdateInput, z.ZodTypeDef, Prisma.PaymentUpdateInput>, z.ZodType<Prisma.PaymentUncheckedUpdateInput, z.ZodTypeDef, Prisma.PaymentUncheckedUpdateInput>]>;
|
||||
where: z.ZodType<Prisma.PaymentWhereUniqueInput, z.ZodTypeDef, Prisma.PaymentWhereUniqueInput>;
|
||||
}, "strict", z.ZodTypeAny, {
|
||||
where: Prisma.PaymentWhereUniqueInput;
|
||||
data: Prisma.PaymentUpdateInput | Prisma.PaymentUncheckedUpdateInput;
|
||||
include?: Prisma.PaymentInclude<import("../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
||||
select?: Prisma.PaymentSelect<import("../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
||||
}, {
|
||||
where: Prisma.PaymentWhereUniqueInput;
|
||||
data: Prisma.PaymentUpdateInput | Prisma.PaymentUncheckedUpdateInput;
|
||||
include?: Prisma.PaymentInclude<import("../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
||||
select?: Prisma.PaymentSelect<import("../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
||||
}>;
|
||||
//# sourceMappingURL=updateOnePayment.schema.d.ts.map
|
||||
Reference in New Issue
Block a user