- Add streetAddress/city/state/zipCode fields to OfficeContact (schema + storage + UI)
- Support {officeAddress} variable in batch reminder SMS
- Replace single SMS template field with full CRUD template list (add/rename/edit/delete)
- Store SMS template list under _sms_template_list; first template synced to batch reminder
- Hardcode all AI chat template defaults into codebase (reminder SMS, greetings, fallback)
- Add seed-templates.ts that auto-seeds default templates for all users on server boot
- Update README: note that templates are auto-configured on first boot
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
20 lines
1.1 KiB
TypeScript
20 lines
1.1 KiB
TypeScript
import * as z from 'zod';
|
|
import type { Prisma } from '../../../generated/prisma';
|
|
import { UserCreateNestedOneWithoutOfficeContactInputObjectSchema as UserCreateNestedOneWithoutOfficeContactInputObjectSchema } from './UserCreateNestedOneWithoutOfficeContactInput.schema'
|
|
|
|
const makeSchema = () => z.object({
|
|
officeName: z.string().optional().nullable(),
|
|
receptionistName: z.string().optional().nullable(),
|
|
dentistName: z.string().optional().nullable(),
|
|
phoneNumber: z.string().optional().nullable(),
|
|
email: z.string().optional().nullable(),
|
|
fax: z.string().optional().nullable(),
|
|
streetAddress: z.string().optional().nullable(),
|
|
city: z.string().optional().nullable(),
|
|
state: z.string().optional().nullable(),
|
|
zipCode: z.string().optional().nullable(),
|
|
user: z.lazy(() => UserCreateNestedOneWithoutOfficeContactInputObjectSchema)
|
|
}).strict();
|
|
export const OfficeContactCreateInputObjectSchema: z.ZodType<Prisma.OfficeContactCreateInput> = makeSchema() as unknown as z.ZodType<Prisma.OfficeContactCreateInput>;
|
|
export const OfficeContactCreateInputObjectZodSchema = makeSchema();
|