- AI chat extracts 'with provider <name>' and routes claim to that provider - Claim form reads provider from sessionStorage before any async effects run, preventing saved claim/procedure data from overriding the chatbot selection - NPI provider settings table shows Provider #1 / #2 labels with up/down reorder buttons; Provider #1 is always the default for claims - Default provider now uses sortOrder instead of hardcoded 'Mary Scannell' - Added sortOrder column to NpiProvider schema with migration Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
22 lines
2.0 KiB
TypeScript
22 lines
2.0 KiB
TypeScript
import * as z from 'zod';
|
|
import type { Prisma } from '../../../generated/prisma';
|
|
import { UserCreateNestedOneWithoutNpiProvidersInputObjectSchema as UserCreateNestedOneWithoutNpiProvidersInputObjectSchema } from './UserCreateNestedOneWithoutNpiProvidersInput.schema';
|
|
import { ClaimCreateNestedManyWithoutNpiProviderInputObjectSchema as ClaimCreateNestedManyWithoutNpiProviderInputObjectSchema } from './ClaimCreateNestedManyWithoutNpiProviderInput.schema';
|
|
import { PaymentCreateNestedManyWithoutNpiProviderInputObjectSchema as PaymentCreateNestedManyWithoutNpiProviderInputObjectSchema } from './PaymentCreateNestedManyWithoutNpiProviderInput.schema';
|
|
import { CommissionBatchCreateNestedManyWithoutNpiProviderInputObjectSchema as CommissionBatchCreateNestedManyWithoutNpiProviderInputObjectSchema } from './CommissionBatchCreateNestedManyWithoutNpiProviderInput.schema';
|
|
import { AppointmentProcedureCreateNestedManyWithoutNpiProviderInputObjectSchema as AppointmentProcedureCreateNestedManyWithoutNpiProviderInputObjectSchema } from './AppointmentProcedureCreateNestedManyWithoutNpiProviderInput.schema'
|
|
|
|
const makeSchema = () => z.object({
|
|
npiNumber: z.string(),
|
|
providerName: z.string(),
|
|
sortOrder: z.number().int().optional(),
|
|
createdAt: z.coerce.date().optional(),
|
|
user: z.lazy(() => UserCreateNestedOneWithoutNpiProvidersInputObjectSchema),
|
|
claims: z.lazy(() => ClaimCreateNestedManyWithoutNpiProviderInputObjectSchema).optional(),
|
|
payments: z.lazy(() => PaymentCreateNestedManyWithoutNpiProviderInputObjectSchema).optional(),
|
|
commissionBatches: z.lazy(() => CommissionBatchCreateNestedManyWithoutNpiProviderInputObjectSchema).optional(),
|
|
appointmentProcedures: z.lazy(() => AppointmentProcedureCreateNestedManyWithoutNpiProviderInputObjectSchema).optional()
|
|
}).strict();
|
|
export const NpiProviderCreateInputObjectSchema: z.ZodType<Prisma.NpiProviderCreateInput> = makeSchema() as unknown as z.ZodType<Prisma.NpiProviderCreateInput>;
|
|
export const NpiProviderCreateInputObjectZodSchema = makeSchema();
|