- New lab_rx_template table with sortOrder and Prisma migrations - Backend CRUD + reorder routes at /api/lab-rx/templates - Auto-seeds 3 Highland Dental Studio defaults on first use per user - LabRxModal: template picker, inline rename, up/down reorder, full template form with sections (Template Name / Lab Info / Case Details) - RX popup: Tooth Number, Shade, Due Date, Doctor (from NPI providers), Instructions pre-filled with "Please make / Thank you!", print output - lab-rx-templates.ts config file for future git-managed additions Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
24 lines
999 B
TypeScript
24 lines
999 B
TypeScript
import * as z from 'zod';
|
|
import type { Prisma } from '../../../generated/prisma';
|
|
|
|
|
|
const makeSchema = () => z.object({
|
|
id: z.literal(true).optional(),
|
|
userId: z.literal(true).optional(),
|
|
name: z.literal(true).optional(),
|
|
labName: z.literal(true).optional(),
|
|
labPhone: z.literal(true).optional(),
|
|
labFax: z.literal(true).optional(),
|
|
labAddress: z.literal(true).optional(),
|
|
labAccount: z.literal(true).optional(),
|
|
caseType: z.literal(true).optional(),
|
|
material: z.literal(true).optional(),
|
|
instructions: z.literal(true).optional(),
|
|
doctorName: z.literal(true).optional(),
|
|
sortOrder: z.literal(true).optional(),
|
|
createdAt: z.literal(true).optional(),
|
|
updatedAt: z.literal(true).optional()
|
|
}).strict();
|
|
export const LabRxTemplateMaxAggregateInputObjectSchema: z.ZodType<Prisma.LabRxTemplateMaxAggregateInputType> = makeSchema() as unknown as z.ZodType<Prisma.LabRxTemplateMaxAggregateInputType>;
|
|
export const LabRxTemplateMaxAggregateInputObjectZodSchema = makeSchema();
|