initial commit
This commit is contained in:
23
packages/db/shared/schemas/upsertOneClaim.schema.d.ts
vendored
Normal file
23
packages/db/shared/schemas/upsertOneClaim.schema.d.ts
vendored
Normal file
@@ -0,0 +1,23 @@
|
||||
import type { Prisma } from '../../generated/prisma';
|
||||
import * as z from 'zod';
|
||||
export declare const ClaimUpsertOneSchema: z.ZodType<Prisma.ClaimUpsertArgs>;
|
||||
export declare const ClaimUpsertOneZodSchema: z.ZodObject<{
|
||||
select: z.ZodOptional<z.ZodType<Prisma.ClaimSelect<import("../../generated/prisma/runtime/client").DefaultArgs>, z.ZodTypeDef, Prisma.ClaimSelect<import("../../generated/prisma/runtime/client").DefaultArgs>>>;
|
||||
include: z.ZodOptional<z.ZodType<Prisma.ClaimInclude<import("../../generated/prisma/runtime/client").DefaultArgs>, z.ZodTypeDef, Prisma.ClaimInclude<import("../../generated/prisma/runtime/client").DefaultArgs>>>;
|
||||
where: z.ZodType<Prisma.ClaimWhereUniqueInput, z.ZodTypeDef, Prisma.ClaimWhereUniqueInput>;
|
||||
create: z.ZodUnion<[z.ZodType<Prisma.ClaimCreateInput, z.ZodTypeDef, Prisma.ClaimCreateInput>, z.ZodType<Prisma.ClaimUncheckedCreateInput, z.ZodTypeDef, Prisma.ClaimUncheckedCreateInput>]>;
|
||||
update: z.ZodUnion<[z.ZodType<Prisma.ClaimUpdateInput, z.ZodTypeDef, Prisma.ClaimUpdateInput>, z.ZodType<Prisma.ClaimUncheckedUpdateInput, z.ZodTypeDef, Prisma.ClaimUncheckedUpdateInput>]>;
|
||||
}, "strict", z.ZodTypeAny, {
|
||||
create: Prisma.ClaimUncheckedCreateInput | Prisma.ClaimCreateInput;
|
||||
where: Prisma.ClaimWhereUniqueInput;
|
||||
update: Prisma.ClaimUpdateInput | Prisma.ClaimUncheckedUpdateInput;
|
||||
include?: Prisma.ClaimInclude<import("../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
||||
select?: Prisma.ClaimSelect<import("../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
||||
}, {
|
||||
create: Prisma.ClaimUncheckedCreateInput | Prisma.ClaimCreateInput;
|
||||
where: Prisma.ClaimWhereUniqueInput;
|
||||
update: Prisma.ClaimUpdateInput | Prisma.ClaimUncheckedUpdateInput;
|
||||
include?: Prisma.ClaimInclude<import("../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
||||
select?: Prisma.ClaimSelect<import("../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
||||
}>;
|
||||
//# sourceMappingURL=upsertOneClaim.schema.d.ts.map
|
||||
Reference in New Issue
Block a user