feat: add Lab RX feature with template management and auto-seed defaults
- 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>
This commit is contained in:
@@ -0,0 +1,27 @@
|
||||
import * as z from 'zod';
|
||||
import type { Prisma } from '../../../generated/prisma';
|
||||
import { LabRxTemplateCreateWithoutUserInputObjectSchema as LabRxTemplateCreateWithoutUserInputObjectSchema } from './LabRxTemplateCreateWithoutUserInput.schema';
|
||||
import { LabRxTemplateUncheckedCreateWithoutUserInputObjectSchema as LabRxTemplateUncheckedCreateWithoutUserInputObjectSchema } from './LabRxTemplateUncheckedCreateWithoutUserInput.schema';
|
||||
import { LabRxTemplateCreateOrConnectWithoutUserInputObjectSchema as LabRxTemplateCreateOrConnectWithoutUserInputObjectSchema } from './LabRxTemplateCreateOrConnectWithoutUserInput.schema';
|
||||
import { LabRxTemplateUpsertWithWhereUniqueWithoutUserInputObjectSchema as LabRxTemplateUpsertWithWhereUniqueWithoutUserInputObjectSchema } from './LabRxTemplateUpsertWithWhereUniqueWithoutUserInput.schema';
|
||||
import { LabRxTemplateCreateManyUserInputEnvelopeObjectSchema as LabRxTemplateCreateManyUserInputEnvelopeObjectSchema } from './LabRxTemplateCreateManyUserInputEnvelope.schema';
|
||||
import { LabRxTemplateWhereUniqueInputObjectSchema as LabRxTemplateWhereUniqueInputObjectSchema } from './LabRxTemplateWhereUniqueInput.schema';
|
||||
import { LabRxTemplateUpdateWithWhereUniqueWithoutUserInputObjectSchema as LabRxTemplateUpdateWithWhereUniqueWithoutUserInputObjectSchema } from './LabRxTemplateUpdateWithWhereUniqueWithoutUserInput.schema';
|
||||
import { LabRxTemplateUpdateManyWithWhereWithoutUserInputObjectSchema as LabRxTemplateUpdateManyWithWhereWithoutUserInputObjectSchema } from './LabRxTemplateUpdateManyWithWhereWithoutUserInput.schema';
|
||||
import { LabRxTemplateScalarWhereInputObjectSchema as LabRxTemplateScalarWhereInputObjectSchema } from './LabRxTemplateScalarWhereInput.schema'
|
||||
|
||||
const makeSchema = () => z.object({
|
||||
create: z.union([z.lazy(() => LabRxTemplateCreateWithoutUserInputObjectSchema), z.lazy(() => LabRxTemplateCreateWithoutUserInputObjectSchema).array(), z.lazy(() => LabRxTemplateUncheckedCreateWithoutUserInputObjectSchema), z.lazy(() => LabRxTemplateUncheckedCreateWithoutUserInputObjectSchema).array()]).optional(),
|
||||
connectOrCreate: z.union([z.lazy(() => LabRxTemplateCreateOrConnectWithoutUserInputObjectSchema), z.lazy(() => LabRxTemplateCreateOrConnectWithoutUserInputObjectSchema).array()]).optional(),
|
||||
upsert: z.union([z.lazy(() => LabRxTemplateUpsertWithWhereUniqueWithoutUserInputObjectSchema), z.lazy(() => LabRxTemplateUpsertWithWhereUniqueWithoutUserInputObjectSchema).array()]).optional(),
|
||||
createMany: z.lazy(() => LabRxTemplateCreateManyUserInputEnvelopeObjectSchema).optional(),
|
||||
set: z.union([z.lazy(() => LabRxTemplateWhereUniqueInputObjectSchema), z.lazy(() => LabRxTemplateWhereUniqueInputObjectSchema).array()]).optional(),
|
||||
disconnect: z.union([z.lazy(() => LabRxTemplateWhereUniqueInputObjectSchema), z.lazy(() => LabRxTemplateWhereUniqueInputObjectSchema).array()]).optional(),
|
||||
delete: z.union([z.lazy(() => LabRxTemplateWhereUniqueInputObjectSchema), z.lazy(() => LabRxTemplateWhereUniqueInputObjectSchema).array()]).optional(),
|
||||
connect: z.union([z.lazy(() => LabRxTemplateWhereUniqueInputObjectSchema), z.lazy(() => LabRxTemplateWhereUniqueInputObjectSchema).array()]).optional(),
|
||||
update: z.union([z.lazy(() => LabRxTemplateUpdateWithWhereUniqueWithoutUserInputObjectSchema), z.lazy(() => LabRxTemplateUpdateWithWhereUniqueWithoutUserInputObjectSchema).array()]).optional(),
|
||||
updateMany: z.union([z.lazy(() => LabRxTemplateUpdateManyWithWhereWithoutUserInputObjectSchema), z.lazy(() => LabRxTemplateUpdateManyWithWhereWithoutUserInputObjectSchema).array()]).optional(),
|
||||
deleteMany: z.union([z.lazy(() => LabRxTemplateScalarWhereInputObjectSchema), z.lazy(() => LabRxTemplateScalarWhereInputObjectSchema).array()]).optional()
|
||||
}).strict();
|
||||
export const LabRxTemplateUncheckedUpdateManyWithoutUserNestedInputObjectSchema: z.ZodType<Prisma.LabRxTemplateUncheckedUpdateManyWithoutUserNestedInput> = makeSchema() as unknown as z.ZodType<Prisma.LabRxTemplateUncheckedUpdateManyWithoutUserNestedInput>;
|
||||
export const LabRxTemplateUncheckedUpdateManyWithoutUserNestedInputObjectZodSchema = makeSchema();
|
||||
Reference in New Issue
Block a user