Adds a new Settings → Advanced → Selenium Settings page where the office name (paymentGroupId) used in United/DentalHub portal dropdowns can be configured without touching code. Previously hardcoded as "Summit Dental Care"; now injected from DB into the three United workers at job dispatch. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
21 lines
930 B
TypeScript
21 lines
930 B
TypeScript
import * as z from 'zod';
|
|
import type { Prisma } from '../../../generated/prisma';
|
|
|
|
|
|
const makeSchema = () => z.object({
|
|
name: z.string(),
|
|
labName: z.string().optional().nullable(),
|
|
labPhone: z.string().optional().nullable(),
|
|
labFax: z.string().optional().nullable(),
|
|
labAddress: z.string().optional().nullable(),
|
|
labAccount: z.string().optional().nullable(),
|
|
caseType: z.string().optional().nullable(),
|
|
material: z.string().optional().nullable(),
|
|
instructions: z.string().optional().nullable(),
|
|
sortOrder: z.number().int().optional(),
|
|
createdAt: z.coerce.date().optional(),
|
|
updatedAt: z.coerce.date().optional()
|
|
}).strict();
|
|
export const LabRxTemplateCreateWithoutUserInputObjectSchema: z.ZodType<Prisma.LabRxTemplateCreateWithoutUserInput> = makeSchema() as unknown as z.ZodType<Prisma.LabRxTemplateCreateWithoutUserInput>;
|
|
export const LabRxTemplateCreateWithoutUserInputObjectZodSchema = makeSchema();
|