- 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>
34 lines
1.9 KiB
TypeScript
34 lines
1.9 KiB
TypeScript
import * as z from 'zod';
|
|
import type { Prisma } from '../../../generated/prisma';
|
|
import { ProcedureSourceSchema } from '../enums/ProcedureSource.schema';
|
|
import { PatientCreateNestedOneWithoutProceduresInputObjectSchema as PatientCreateNestedOneWithoutProceduresInputObjectSchema } from './PatientCreateNestedOneWithoutProceduresInput.schema';
|
|
import { NpiProviderCreateNestedOneWithoutAppointmentProceduresInputObjectSchema as NpiProviderCreateNestedOneWithoutAppointmentProceduresInputObjectSchema } from './NpiProviderCreateNestedOneWithoutAppointmentProceduresInput.schema'
|
|
|
|
import { DecimalJSLikeSchema, isValidDecimalInput } from '../../helpers/decimal-helpers';
|
|
|
|
import Decimal from "decimal.js";
|
|
const makeSchema = () => z.object({
|
|
procedureCode: z.string(),
|
|
procedureLabel: z.string().optional().nullable(),
|
|
fee: z.union([
|
|
z.number(),
|
|
z.string(),
|
|
z.instanceof(Decimal),
|
|
z.instanceof(Decimal),
|
|
DecimalJSLikeSchema,
|
|
]).refine((v) => isValidDecimalInput(v), {
|
|
message: "Field 'fee' must be a Decimal",
|
|
}).optional().nullable(),
|
|
category: z.string().optional().nullable(),
|
|
toothNumber: z.string().optional().nullable(),
|
|
toothSurface: z.string().optional().nullable(),
|
|
oralCavityArea: z.string().optional().nullable(),
|
|
source: ProcedureSourceSchema.optional(),
|
|
comboKey: z.string().optional().nullable(),
|
|
createdAt: z.coerce.date().optional(),
|
|
patient: z.lazy(() => PatientCreateNestedOneWithoutProceduresInputObjectSchema),
|
|
npiProvider: z.lazy(() => NpiProviderCreateNestedOneWithoutAppointmentProceduresInputObjectSchema).optional()
|
|
}).strict();
|
|
export const AppointmentProcedureCreateWithoutAppointmentInputObjectSchema: z.ZodType<Prisma.AppointmentProcedureCreateWithoutAppointmentInput> = makeSchema() as unknown as z.ZodType<Prisma.AppointmentProcedureCreateWithoutAppointmentInput>;
|
|
export const AppointmentProcedureCreateWithoutAppointmentInputObjectZodSchema = makeSchema();
|