- After importing a backup, run prisma migrate deploy so any schema migrations the backup is missing are applied automatically. This prevents pages from failing due to missing tables/columns when the backup was taken on an older version of the app. - Force logout and redirect to login after a successful restore so the JWT is refreshed against the restored database (prevents userId mismatch causing user-scoped queries to return empty results). - Fix getTotalPatientCount() in /status route to pass userId so it counts only the current user's patients instead of all patients. - Add prisma.$connect() after $disconnect() to ensure a clean reconnect. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
85 lines
2.6 KiB
TypeScript
85 lines
2.6 KiB
TypeScript
import * as z from 'zod';
|
|
import type { Prisma } from '../../../generated/prisma';
|
|
import { PaymentStatusSchema } from '../enums/PaymentStatus.schema'
|
|
|
|
import { DecimalJSLikeSchema, isValidDecimalInput } from '../../helpers/decimal-helpers';
|
|
|
|
import Decimal from "decimal.js";
|
|
const makeSchema = () => z.object({
|
|
id: z.number().int().optional(),
|
|
claimId: z.number().int().optional().nullable(),
|
|
patientId: z.number().int(),
|
|
userId: z.number().int(),
|
|
npiProviderId: z.number().int().optional().nullable(),
|
|
totalBilled: z.union([
|
|
z.number(),
|
|
z.string(),
|
|
z.instanceof(Decimal),
|
|
z.instanceof(Decimal),
|
|
DecimalJSLikeSchema,
|
|
]).refine((v) => isValidDecimalInput(v), {
|
|
message: "Field 'totalBilled' must be a Decimal",
|
|
}),
|
|
totalPaid: z.union([
|
|
z.number(),
|
|
z.string(),
|
|
z.instanceof(Decimal),
|
|
z.instanceof(Decimal),
|
|
DecimalJSLikeSchema,
|
|
]).refine((v) => isValidDecimalInput(v), {
|
|
message: "Field 'totalPaid' must be a Decimal",
|
|
}).optional(),
|
|
totalAdjusted: z.union([
|
|
z.number(),
|
|
z.string(),
|
|
z.instanceof(Decimal),
|
|
z.instanceof(Decimal),
|
|
DecimalJSLikeSchema,
|
|
]).refine((v) => isValidDecimalInput(v), {
|
|
message: "Field 'totalAdjusted' must be a Decimal",
|
|
}).optional(),
|
|
totalDue: z.union([
|
|
z.number(),
|
|
z.string(),
|
|
z.instanceof(Decimal),
|
|
z.instanceof(Decimal),
|
|
DecimalJSLikeSchema,
|
|
]).refine((v) => isValidDecimalInput(v), {
|
|
message: "Field 'totalDue' must be a Decimal",
|
|
}),
|
|
mhPaidAmount: z.union([
|
|
z.number(),
|
|
z.string(),
|
|
z.instanceof(Decimal),
|
|
z.instanceof(Prisma.Decimal),
|
|
DecimalJSLikeSchema,
|
|
]).refine((v) => isValidDecimalInput(v), {
|
|
message: "Field 'mhPaidAmount' must be a Decimal",
|
|
}).optional().nullable(),
|
|
copayment: z.union([
|
|
z.number(),
|
|
z.string(),
|
|
z.instanceof(Decimal),
|
|
z.instanceof(Prisma.Decimal),
|
|
DecimalJSLikeSchema,
|
|
]).refine((v) => isValidDecimalInput(v), {
|
|
message: "Field 'copayment' must be a Decimal",
|
|
}).optional(),
|
|
adjustment: z.union([
|
|
z.number(),
|
|
z.string(),
|
|
z.instanceof(Decimal),
|
|
z.instanceof(Prisma.Decimal),
|
|
DecimalJSLikeSchema,
|
|
]).refine((v) => isValidDecimalInput(v), {
|
|
message: "Field 'adjustment' must be a Decimal",
|
|
}).optional(),
|
|
status: PaymentStatusSchema.optional(),
|
|
notes: z.string().optional().nullable(),
|
|
icn: z.string().optional().nullable(),
|
|
createdAt: z.coerce.date().optional(),
|
|
updatedAt: z.coerce.date().optional()
|
|
}).strict();
|
|
export const PaymentCreateManyUpdatedByInputObjectSchema: z.ZodType<Prisma.PaymentCreateManyUpdatedByInput> = makeSchema() as unknown as z.ZodType<Prisma.PaymentCreateManyUpdatedByInput>;
|
|
export const PaymentCreateManyUpdatedByInputObjectZodSchema = makeSchema();
|