- Add AI Dental Shopping to sidebar with Search/Tag and Login Info sub-pages - Build full-stack Login Info CRUD: save vendor name, website, username, password per user - Add ShoppingVendor Prisma model, run db push, regenerate client and Zod schemas - Add storage layer, REST API at /api/shopping-vendors/, and frontend table with add/edit/delete modal Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
25 lines
1.9 KiB
TypeScript
Executable File
25 lines
1.9 KiB
TypeScript
Executable File
// using this, as the browser load only the required files , not whole db/shared/schemas/ files.
|
|
export * from '../shared/schemas/objects/AppointmentUncheckedCreateInput.schema';
|
|
export * from '../shared/schemas/objects/AppointmentProcedureUncheckedCreateInput.schema';
|
|
export * from '../shared/schemas/objects/PatientUncheckedCreateInput.schema';
|
|
export * from '../shared/schemas/enums/PatientStatus.schema';
|
|
export * from '../shared/schemas/objects/UserUncheckedCreateInput.schema';
|
|
export * from '../shared/schemas/objects/StaffUncheckedCreateInput.schema'
|
|
export * from '../shared/schemas/objects/NpiProviderUncheckedCreateInput.schema'
|
|
export * from '../shared/schemas/objects/ClaimUncheckedCreateInput.schema'
|
|
export * from '../shared/schemas/objects/InsuranceCredentialUncheckedCreateInput.schema'
|
|
export * from '../shared/schemas/objects/PdfFileUncheckedCreateInput.schema'
|
|
export * from '../shared/schemas/objects/PdfGroupUncheckedCreateInput.schema'
|
|
export * from '../shared/schemas/enums/ClaimStatus.schema'
|
|
export * from '../shared/schemas/objects/PaymentUncheckedCreateInput.schema'
|
|
export * from '../shared/schemas/objects/ServiceLineTransactionCreateInput.schema'
|
|
export * from '../shared/schemas/enums/PaymentMethod.schema'
|
|
export * from '../shared/schemas/enums/PaymentStatus.schema'
|
|
export * from '../shared/schemas/enums/NotificationTypes.schema'
|
|
export * from '../shared/schemas/objects/NotificationUncheckedCreateInput.schema'
|
|
export * from '../shared/schemas/objects/DatabaseBackupUncheckedCreateInput.schema'
|
|
export * from '../shared/schemas/objects/BackupDestinationUncheckedCreateInput.schema'
|
|
export * from '../shared/schemas/objects/CloudFolderUncheckedCreateInput.schema'
|
|
export * from '../shared/schemas/objects/CloudFileUncheckedCreateInput.schema'
|
|
export * from '../shared/schemas/objects/CommunicationUncheckedCreateInput.schema'
|
|
export * from '../shared/schemas/objects/ShoppingVendorUncheckedCreateInput.schema' |