Files
DentalManagementMH06/packages/db/shared/schemas/results/PatientGroupByResult.schema.ts
ff d5bc96ff39 feat: add per-patient Local folder in Documents page backed by Cloud Storage
- Documents page shows a "Local Folder" card for each selected patient
  with an "Open in Cloud Storage" button that deep-links to their folder
- Cloud Storage page reads ?folderId URL param on mount and auto-opens
  the folder panel for seamless navigation from Documents
- Backend: GET /api/cloud-storage/patient-folder/:patientId endpoint
  that idempotently gets or creates a top-level CloudFolder per patient
- CloudFolder schema gains optional patientId field linked to Patient
- Disk directories for cloud storage folders now use the folder's name
  (e.g. "Xiaohui Wang/") instead of the opaque "folder-{id}/" path

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-06-05 23:01:56 -04:00

108 lines
3.2 KiB
TypeScript

import * as z from 'zod';
export const PatientGroupByResultSchema = z.array(z.object({
id: z.number().int(),
firstName: z.string(),
lastName: z.string(),
dateOfBirth: z.date(),
gender: z.string(),
phone: z.string(),
email: z.string(),
address: z.string(),
city: z.string(),
zipCode: z.string(),
insuranceProvider: z.string(),
insuranceId: z.string(),
groupNumber: z.string(),
policyHolder: z.string(),
allergies: z.string(),
medicalConditions: z.string(),
preferredLanguage: z.string(),
userId: z.number().int(),
createdAt: z.date(),
updatedAt: z.date(),
_count: z.object({
id: z.number(),
firstName: z.number(),
lastName: z.number(),
dateOfBirth: z.number(),
gender: z.number(),
phone: z.number(),
email: z.number(),
address: z.number(),
city: z.number(),
zipCode: z.number(),
insuranceProvider: z.number(),
insuranceId: z.number(),
groupNumber: z.number(),
policyHolder: z.number(),
allergies: z.number(),
medicalConditions: z.number(),
preferredLanguage: z.number(),
status: z.number(),
userId: z.number(),
createdAt: z.number(),
updatedAt: z.number(),
user: z.number(),
appointments: z.number(),
procedures: z.number(),
claims: z.number(),
groups: z.number(),
payment: z.number(),
communications: z.number(),
documents: z.number(),
conversation: z.number(),
cloudFolders: z.number()
}).optional(),
_sum: z.object({
id: z.number().nullable(),
userId: z.number().nullable()
}).nullable().optional(),
_avg: z.object({
id: z.number().nullable(),
userId: z.number().nullable()
}).nullable().optional(),
_min: z.object({
id: z.number().int().nullable(),
firstName: z.string().nullable(),
lastName: z.string().nullable(),
dateOfBirth: z.date().nullable(),
gender: z.string().nullable(),
phone: z.string().nullable(),
email: z.string().nullable(),
address: z.string().nullable(),
city: z.string().nullable(),
zipCode: z.string().nullable(),
insuranceProvider: z.string().nullable(),
insuranceId: z.string().nullable(),
groupNumber: z.string().nullable(),
policyHolder: z.string().nullable(),
allergies: z.string().nullable(),
medicalConditions: z.string().nullable(),
preferredLanguage: z.string().nullable(),
userId: z.number().int().nullable(),
createdAt: z.date().nullable(),
updatedAt: z.date().nullable()
}).nullable().optional(),
_max: z.object({
id: z.number().int().nullable(),
firstName: z.string().nullable(),
lastName: z.string().nullable(),
dateOfBirth: z.date().nullable(),
gender: z.string().nullable(),
phone: z.string().nullable(),
email: z.string().nullable(),
address: z.string().nullable(),
city: z.string().nullable(),
zipCode: z.string().nullable(),
insuranceProvider: z.string().nullable(),
insuranceId: z.string().nullable(),
groupNumber: z.string().nullable(),
policyHolder: z.string().nullable(),
allergies: z.string().nullable(),
medicalConditions: z.string().nullable(),
preferredLanguage: z.string().nullable(),
userId: z.number().int().nullable(),
createdAt: z.date().nullable(),
updatedAt: z.date().nullable()
}).nullable().optional()
}));