- 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>
16 lines
1.7 KiB
TypeScript
16 lines
1.7 KiB
TypeScript
import * as z from 'zod';
|
|
import type { Prisma } from '../../../generated/prisma';
|
|
import { LabRxTemplateWhereUniqueInputObjectSchema as LabRxTemplateWhereUniqueInputObjectSchema } from './LabRxTemplateWhereUniqueInput.schema';
|
|
import { LabRxTemplateUpdateWithoutUserInputObjectSchema as LabRxTemplateUpdateWithoutUserInputObjectSchema } from './LabRxTemplateUpdateWithoutUserInput.schema';
|
|
import { LabRxTemplateUncheckedUpdateWithoutUserInputObjectSchema as LabRxTemplateUncheckedUpdateWithoutUserInputObjectSchema } from './LabRxTemplateUncheckedUpdateWithoutUserInput.schema';
|
|
import { LabRxTemplateCreateWithoutUserInputObjectSchema as LabRxTemplateCreateWithoutUserInputObjectSchema } from './LabRxTemplateCreateWithoutUserInput.schema';
|
|
import { LabRxTemplateUncheckedCreateWithoutUserInputObjectSchema as LabRxTemplateUncheckedCreateWithoutUserInputObjectSchema } from './LabRxTemplateUncheckedCreateWithoutUserInput.schema'
|
|
|
|
const makeSchema = () => z.object({
|
|
where: z.lazy(() => LabRxTemplateWhereUniqueInputObjectSchema),
|
|
update: z.union([z.lazy(() => LabRxTemplateUpdateWithoutUserInputObjectSchema), z.lazy(() => LabRxTemplateUncheckedUpdateWithoutUserInputObjectSchema)]),
|
|
create: z.union([z.lazy(() => LabRxTemplateCreateWithoutUserInputObjectSchema), z.lazy(() => LabRxTemplateUncheckedCreateWithoutUserInputObjectSchema)])
|
|
}).strict();
|
|
export const LabRxTemplateUpsertWithWhereUniqueWithoutUserInputObjectSchema: z.ZodType<Prisma.LabRxTemplateUpsertWithWhereUniqueWithoutUserInput> = makeSchema() as unknown as z.ZodType<Prisma.LabRxTemplateUpsertWithWhereUniqueWithoutUserInput>;
|
|
export const LabRxTemplateUpsertWithWhereUniqueWithoutUserInputObjectZodSchema = makeSchema();
|