initial commit
This commit is contained in:
23
packages/db/shared/schemas/upsertOnePayment.schema.d.ts
vendored
Normal file
23
packages/db/shared/schemas/upsertOnePayment.schema.d.ts
vendored
Normal file
@@ -0,0 +1,23 @@
|
||||
import type { Prisma } from '../../generated/prisma';
|
||||
import * as z from 'zod';
|
||||
export declare const PaymentUpsertOneSchema: z.ZodType<Prisma.PaymentUpsertArgs>;
|
||||
export declare const PaymentUpsertOneZodSchema: 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>>>;
|
||||
where: z.ZodType<Prisma.PaymentWhereUniqueInput, z.ZodTypeDef, Prisma.PaymentWhereUniqueInput>;
|
||||
create: z.ZodUnion<[z.ZodType<Prisma.PaymentCreateInput, z.ZodTypeDef, Prisma.PaymentCreateInput>, z.ZodType<Prisma.PaymentUncheckedCreateInput, z.ZodTypeDef, Prisma.PaymentUncheckedCreateInput>]>;
|
||||
update: z.ZodUnion<[z.ZodType<Prisma.PaymentUpdateInput, z.ZodTypeDef, Prisma.PaymentUpdateInput>, z.ZodType<Prisma.PaymentUncheckedUpdateInput, z.ZodTypeDef, Prisma.PaymentUncheckedUpdateInput>]>;
|
||||
}, "strict", z.ZodTypeAny, {
|
||||
create: Prisma.PaymentUncheckedCreateInput | Prisma.PaymentCreateInput;
|
||||
where: Prisma.PaymentWhereUniqueInput;
|
||||
update: Prisma.PaymentUpdateInput | Prisma.PaymentUncheckedUpdateInput;
|
||||
include?: Prisma.PaymentInclude<import("../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
||||
select?: Prisma.PaymentSelect<import("../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
||||
}, {
|
||||
create: Prisma.PaymentUncheckedCreateInput | Prisma.PaymentCreateInput;
|
||||
where: Prisma.PaymentWhereUniqueInput;
|
||||
update: 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=upsertOnePayment.schema.d.ts.map
|
||||
Reference in New Issue
Block a user