- 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>
24 lines
672 B
TypeScript
24 lines
672 B
TypeScript
import * as z from 'zod';
|
|
export const NpiProviderFindManyResultSchema = z.object({
|
|
data: z.array(z.object({
|
|
id: z.number().int(),
|
|
userId: z.number().int(),
|
|
npiNumber: z.string(),
|
|
providerName: z.string(),
|
|
sortOrder: z.number().int(),
|
|
createdAt: z.date(),
|
|
user: z.unknown(),
|
|
claims: z.array(z.unknown()),
|
|
payments: z.array(z.unknown()),
|
|
commissionBatches: z.array(z.unknown()),
|
|
appointmentProcedures: z.array(z.unknown())
|
|
})),
|
|
pagination: z.object({
|
|
page: z.number().int().min(1),
|
|
pageSize: z.number().int().min(1),
|
|
total: z.number().int().min(0),
|
|
totalPages: z.number().int().min(0),
|
|
hasNext: z.boolean(),
|
|
hasPrev: z.boolean()
|
|
})
|
|
}); |