initial commit
This commit is contained in:
48
packages/db/shared/schemas/objects/PaymentCreateManyUpdatedByInput.schema.d.ts
vendored
Normal file
48
packages/db/shared/schemas/objects/PaymentCreateManyUpdatedByInput.schema.d.ts
vendored
Normal file
@@ -0,0 +1,48 @@
|
||||
import * as z from 'zod';
|
||||
import type { Prisma } from '../../../generated/prisma';
|
||||
import Decimal from "decimal.js";
|
||||
export declare const PaymentCreateManyUpdatedByInputObjectSchema: z.ZodType<Prisma.PaymentCreateManyUpdatedByInput>;
|
||||
export declare const PaymentCreateManyUpdatedByInputObjectZodSchema: z.ZodObject<{
|
||||
id: z.ZodOptional<z.ZodNumber>;
|
||||
claimId: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
||||
patientId: z.ZodNumber;
|
||||
userId: z.ZodNumber;
|
||||
totalBilled: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodString, z.ZodType<Decimal, z.ZodTypeDef, Decimal>, z.ZodType<Decimal, z.ZodTypeDef, Decimal>, z.ZodType<import("../../../generated/prisma/runtime/client").DecimalJsLike, z.ZodTypeDef, import("../../../generated/prisma/runtime/client").DecimalJsLike>]>, string | number | import("../../../generated/prisma/runtime/client").DecimalJsLike | Decimal, string | number | import("../../../generated/prisma/runtime/client").DecimalJsLike | Decimal>;
|
||||
totalPaid: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodString, z.ZodType<Decimal, z.ZodTypeDef, Decimal>, z.ZodType<Decimal, z.ZodTypeDef, Decimal>, z.ZodType<import("../../../generated/prisma/runtime/client").DecimalJsLike, z.ZodTypeDef, import("../../../generated/prisma/runtime/client").DecimalJsLike>]>, string | number | import("../../../generated/prisma/runtime/client").DecimalJsLike | Decimal, string | number | import("../../../generated/prisma/runtime/client").DecimalJsLike | Decimal>>;
|
||||
totalAdjusted: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodString, z.ZodType<Decimal, z.ZodTypeDef, Decimal>, z.ZodType<Decimal, z.ZodTypeDef, Decimal>, z.ZodType<import("../../../generated/prisma/runtime/client").DecimalJsLike, z.ZodTypeDef, import("../../../generated/prisma/runtime/client").DecimalJsLike>]>, string | number | import("../../../generated/prisma/runtime/client").DecimalJsLike | Decimal, string | number | import("../../../generated/prisma/runtime/client").DecimalJsLike | Decimal>>;
|
||||
totalDue: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodString, z.ZodType<Decimal, z.ZodTypeDef, Decimal>, z.ZodType<Decimal, z.ZodTypeDef, Decimal>, z.ZodType<import("../../../generated/prisma/runtime/client").DecimalJsLike, z.ZodTypeDef, import("../../../generated/prisma/runtime/client").DecimalJsLike>]>, string | number | import("../../../generated/prisma/runtime/client").DecimalJsLike | Decimal, string | number | import("../../../generated/prisma/runtime/client").DecimalJsLike | Decimal>;
|
||||
status: z.ZodOptional<z.ZodEnum<["PENDING", "PARTIALLY_PAID", "PAID", "OVERPAID", "DENIED", "VOID"]>>;
|
||||
notes: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
||||
icn: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
||||
createdAt: z.ZodOptional<z.ZodDate>;
|
||||
updatedAt: z.ZodOptional<z.ZodDate>;
|
||||
}, "strict", z.ZodTypeAny, {
|
||||
userId: number;
|
||||
patientId: number;
|
||||
totalBilled: string | number | import("../../../generated/prisma/runtime/client").DecimalJsLike | Decimal;
|
||||
totalDue: string | number | import("../../../generated/prisma/runtime/client").DecimalJsLike | Decimal;
|
||||
status?: "PENDING" | "VOID" | "PARTIALLY_PAID" | "PAID" | "OVERPAID" | "DENIED" | undefined;
|
||||
createdAt?: Date | undefined;
|
||||
id?: number | undefined;
|
||||
notes?: string | null | undefined;
|
||||
claimId?: number | null | undefined;
|
||||
totalPaid?: string | number | import("../../../generated/prisma/runtime/client").DecimalJsLike | Decimal | undefined;
|
||||
totalAdjusted?: string | number | import("../../../generated/prisma/runtime/client").DecimalJsLike | Decimal | undefined;
|
||||
icn?: string | null | undefined;
|
||||
updatedAt?: Date | undefined;
|
||||
}, {
|
||||
userId: number;
|
||||
patientId: number;
|
||||
totalBilled: string | number | import("../../../generated/prisma/runtime/client").DecimalJsLike | Decimal;
|
||||
totalDue: string | number | import("../../../generated/prisma/runtime/client").DecimalJsLike | Decimal;
|
||||
status?: "PENDING" | "VOID" | "PARTIALLY_PAID" | "PAID" | "OVERPAID" | "DENIED" | undefined;
|
||||
createdAt?: Date | undefined;
|
||||
id?: number | undefined;
|
||||
notes?: string | null | undefined;
|
||||
claimId?: number | null | undefined;
|
||||
totalPaid?: string | number | import("../../../generated/prisma/runtime/client").DecimalJsLike | Decimal | undefined;
|
||||
totalAdjusted?: string | number | import("../../../generated/prisma/runtime/client").DecimalJsLike | Decimal | undefined;
|
||||
icn?: string | null | undefined;
|
||||
updatedAt?: Date | undefined;
|
||||
}>;
|
||||
//# sourceMappingURL=PaymentCreateManyUpdatedByInput.schema.d.ts.map
|
||||
Reference in New Issue
Block a user