- 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>
16 lines
514 B
TypeScript
16 lines
514 B
TypeScript
import * as z from 'zod';
|
|
export const OfficeContactUpsertResultSchema = z.object({
|
|
id: z.number().int(),
|
|
userId: z.number().int(),
|
|
officeName: z.string().optional(),
|
|
receptionistName: z.string().optional(),
|
|
dentistName: z.string().optional(),
|
|
phoneNumber: z.string().optional(),
|
|
email: z.string().optional(),
|
|
fax: z.string().optional(),
|
|
streetAddress: z.string().optional(),
|
|
city: z.string().optional(),
|
|
state: z.string().optional(),
|
|
zipCode: z.string().optional(),
|
|
user: z.unknown()
|
|
}); |