@blackcode_sa/metaestetics-api 1.6.25 → 1.7.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/admin/index.js +0 -55
- package/dist/admin/index.mjs +0 -55
- package/dist/index.d.mts +3 -2
- package/dist/index.d.ts +3 -2
- package/dist/index.js +6 -2
- package/dist/index.mjs +6 -2
- package/package.json +1 -1
- package/src/admin/booking/booking.admin.ts +43 -63
- package/src/index.ts +4 -1
- package/src/services/documentation-templates/filled-document.service.ts +6 -1
package/dist/admin/index.js
CHANGED
|
@@ -5007,7 +5007,6 @@ var BookingAdmin = class {
|
|
|
5007
5007
|
* @returns Promise resolving to an object indicating success, and appointmentId or an error message.
|
|
5008
5008
|
*/
|
|
5009
5009
|
async orchestrateAppointmentCreation(data, authenticatedUserId) {
|
|
5010
|
-
var _a;
|
|
5011
5010
|
console.log(
|
|
5012
5011
|
`[BookingAdmin] Orchestrating appointment creation for patient ${data.patientId} by user ${authenticatedUserId}`
|
|
5013
5012
|
);
|
|
@@ -5113,60 +5112,6 @@ var BookingAdmin = class {
|
|
|
5113
5112
|
dateOfBirth: (patientSensitiveData == null ? void 0 : patientSensitiveData.dateOfBirth) || patientProfileData.dateOfBirth || admin12.firestore.Timestamp.now(),
|
|
5114
5113
|
gender: (patientSensitiveData == null ? void 0 : patientSensitiveData.gender) || "other" /* OTHER */
|
|
5115
5114
|
};
|
|
5116
|
-
const procedureCategory = procedure.category;
|
|
5117
|
-
const procedureSubCategory = procedure.subcategory;
|
|
5118
|
-
const procedureTechnology = procedure.technology;
|
|
5119
|
-
const procedureProduct = procedure.product;
|
|
5120
|
-
const procedureInfo = {
|
|
5121
|
-
id: procedure.id,
|
|
5122
|
-
name: procedure.name,
|
|
5123
|
-
description: procedure.description,
|
|
5124
|
-
family: procedure.family,
|
|
5125
|
-
categoryName: (procedureCategory == null ? void 0 : procedureCategory.name) || "",
|
|
5126
|
-
subcategoryName: (procedureSubCategory == null ? void 0 : procedureSubCategory.name) || "",
|
|
5127
|
-
technologyName: (procedureTechnology == null ? void 0 : procedureTechnology.name) || "",
|
|
5128
|
-
price: procedure.price,
|
|
5129
|
-
pricingMeasure: procedure.pricingMeasure,
|
|
5130
|
-
currency: procedure.currency,
|
|
5131
|
-
duration: procedure.duration,
|
|
5132
|
-
clinicId: procedure.clinicBranchId,
|
|
5133
|
-
clinicName: clinicData.name,
|
|
5134
|
-
practitionerId: procedure.practitionerId,
|
|
5135
|
-
practitionerName: `${practitionerData.basicInfo.firstName} ${practitionerData.basicInfo.lastName}`,
|
|
5136
|
-
photo: ((_a = procedure.photos) == null ? void 0 : _a[0]) || "",
|
|
5137
|
-
brandName: (procedureProduct == null ? void 0 : procedureProduct.brandName) || "",
|
|
5138
|
-
productName: (procedureProduct == null ? void 0 : procedureProduct.name) || ""
|
|
5139
|
-
};
|
|
5140
|
-
const procedureExtendedInfo = {
|
|
5141
|
-
id: procedure.id,
|
|
5142
|
-
name: procedure.name,
|
|
5143
|
-
description: procedure.description,
|
|
5144
|
-
cost: procedure.price,
|
|
5145
|
-
duration: procedure.duration,
|
|
5146
|
-
procedureFamily: procedure.family,
|
|
5147
|
-
procedureCategoryId: (procedureCategory == null ? void 0 : procedureCategory.id) || "",
|
|
5148
|
-
procedureCategoryName: (procedureCategory == null ? void 0 : procedureCategory.name) || "",
|
|
5149
|
-
procedureSubCategoryId: (procedureSubCategory == null ? void 0 : procedureSubCategory.id) || "",
|
|
5150
|
-
procedureSubCategoryName: (procedureSubCategory == null ? void 0 : procedureSubCategory.name) || "",
|
|
5151
|
-
procedureTechnologyId: (procedureTechnology == null ? void 0 : procedureTechnology.id) || "",
|
|
5152
|
-
procedureTechnologyName: (procedureTechnology == null ? void 0 : procedureTechnology.name) || "",
|
|
5153
|
-
procedureProductBrandId: procedureProduct.brandId || "",
|
|
5154
|
-
procedureProductBrandName: procedureProduct.brandName || "",
|
|
5155
|
-
procedureProductId: procedureProduct.id || "",
|
|
5156
|
-
procedureProductName: procedureProduct.name || ""
|
|
5157
|
-
};
|
|
5158
|
-
let pendingUserFormsIds = [];
|
|
5159
|
-
let linkedFormIds = [];
|
|
5160
|
-
if (procedure.documentationTemplates && Array.isArray(procedure.documentationTemplates)) {
|
|
5161
|
-
pendingUserFormsIds = procedure.documentationTemplates.filter(
|
|
5162
|
-
(template) => template.isUserForm && template.isRequired
|
|
5163
|
-
).map(
|
|
5164
|
-
(template) => template.templateId
|
|
5165
|
-
);
|
|
5166
|
-
linkedFormIds = procedure.documentationTemplates.map(
|
|
5167
|
-
(template) => template.templateId
|
|
5168
|
-
);
|
|
5169
|
-
}
|
|
5170
5115
|
const newAppointmentId = this.db.collection(APPOINTMENTS_COLLECTION).doc().id;
|
|
5171
5116
|
const eventTimeForCalendarEvents = {
|
|
5172
5117
|
start: data.appointmentStartTime,
|
package/dist/admin/index.mjs
CHANGED
|
@@ -4952,7 +4952,6 @@ var BookingAdmin = class {
|
|
|
4952
4952
|
* @returns Promise resolving to an object indicating success, and appointmentId or an error message.
|
|
4953
4953
|
*/
|
|
4954
4954
|
async orchestrateAppointmentCreation(data, authenticatedUserId) {
|
|
4955
|
-
var _a;
|
|
4956
4955
|
console.log(
|
|
4957
4956
|
`[BookingAdmin] Orchestrating appointment creation for patient ${data.patientId} by user ${authenticatedUserId}`
|
|
4958
4957
|
);
|
|
@@ -5058,60 +5057,6 @@ var BookingAdmin = class {
|
|
|
5058
5057
|
dateOfBirth: (patientSensitiveData == null ? void 0 : patientSensitiveData.dateOfBirth) || patientProfileData.dateOfBirth || admin12.firestore.Timestamp.now(),
|
|
5059
5058
|
gender: (patientSensitiveData == null ? void 0 : patientSensitiveData.gender) || "other" /* OTHER */
|
|
5060
5059
|
};
|
|
5061
|
-
const procedureCategory = procedure.category;
|
|
5062
|
-
const procedureSubCategory = procedure.subcategory;
|
|
5063
|
-
const procedureTechnology = procedure.technology;
|
|
5064
|
-
const procedureProduct = procedure.product;
|
|
5065
|
-
const procedureInfo = {
|
|
5066
|
-
id: procedure.id,
|
|
5067
|
-
name: procedure.name,
|
|
5068
|
-
description: procedure.description,
|
|
5069
|
-
family: procedure.family,
|
|
5070
|
-
categoryName: (procedureCategory == null ? void 0 : procedureCategory.name) || "",
|
|
5071
|
-
subcategoryName: (procedureSubCategory == null ? void 0 : procedureSubCategory.name) || "",
|
|
5072
|
-
technologyName: (procedureTechnology == null ? void 0 : procedureTechnology.name) || "",
|
|
5073
|
-
price: procedure.price,
|
|
5074
|
-
pricingMeasure: procedure.pricingMeasure,
|
|
5075
|
-
currency: procedure.currency,
|
|
5076
|
-
duration: procedure.duration,
|
|
5077
|
-
clinicId: procedure.clinicBranchId,
|
|
5078
|
-
clinicName: clinicData.name,
|
|
5079
|
-
practitionerId: procedure.practitionerId,
|
|
5080
|
-
practitionerName: `${practitionerData.basicInfo.firstName} ${practitionerData.basicInfo.lastName}`,
|
|
5081
|
-
photo: ((_a = procedure.photos) == null ? void 0 : _a[0]) || "",
|
|
5082
|
-
brandName: (procedureProduct == null ? void 0 : procedureProduct.brandName) || "",
|
|
5083
|
-
productName: (procedureProduct == null ? void 0 : procedureProduct.name) || ""
|
|
5084
|
-
};
|
|
5085
|
-
const procedureExtendedInfo = {
|
|
5086
|
-
id: procedure.id,
|
|
5087
|
-
name: procedure.name,
|
|
5088
|
-
description: procedure.description,
|
|
5089
|
-
cost: procedure.price,
|
|
5090
|
-
duration: procedure.duration,
|
|
5091
|
-
procedureFamily: procedure.family,
|
|
5092
|
-
procedureCategoryId: (procedureCategory == null ? void 0 : procedureCategory.id) || "",
|
|
5093
|
-
procedureCategoryName: (procedureCategory == null ? void 0 : procedureCategory.name) || "",
|
|
5094
|
-
procedureSubCategoryId: (procedureSubCategory == null ? void 0 : procedureSubCategory.id) || "",
|
|
5095
|
-
procedureSubCategoryName: (procedureSubCategory == null ? void 0 : procedureSubCategory.name) || "",
|
|
5096
|
-
procedureTechnologyId: (procedureTechnology == null ? void 0 : procedureTechnology.id) || "",
|
|
5097
|
-
procedureTechnologyName: (procedureTechnology == null ? void 0 : procedureTechnology.name) || "",
|
|
5098
|
-
procedureProductBrandId: procedureProduct.brandId || "",
|
|
5099
|
-
procedureProductBrandName: procedureProduct.brandName || "",
|
|
5100
|
-
procedureProductId: procedureProduct.id || "",
|
|
5101
|
-
procedureProductName: procedureProduct.name || ""
|
|
5102
|
-
};
|
|
5103
|
-
let pendingUserFormsIds = [];
|
|
5104
|
-
let linkedFormIds = [];
|
|
5105
|
-
if (procedure.documentationTemplates && Array.isArray(procedure.documentationTemplates)) {
|
|
5106
|
-
pendingUserFormsIds = procedure.documentationTemplates.filter(
|
|
5107
|
-
(template) => template.isUserForm && template.isRequired
|
|
5108
|
-
).map(
|
|
5109
|
-
(template) => template.templateId
|
|
5110
|
-
);
|
|
5111
|
-
linkedFormIds = procedure.documentationTemplates.map(
|
|
5112
|
-
(template) => template.templateId
|
|
5113
|
-
);
|
|
5114
|
-
}
|
|
5115
5060
|
const newAppointmentId = this.db.collection(APPOINTMENTS_COLLECTION).doc().id;
|
|
5116
5061
|
const eventTimeForCalendarEvents = {
|
|
5117
5062
|
start: data.appointmentStartTime,
|
package/dist/index.d.mts
CHANGED
|
@@ -6504,6 +6504,7 @@ declare class FilledDocumentService extends BaseService {
|
|
|
6504
6504
|
/**
|
|
6505
6505
|
* Create a new filled document within an appointment's subcollection.
|
|
6506
6506
|
* @param templateId - ID of the template to use.
|
|
6507
|
+
* @param templateVersion - Version of the template to use.
|
|
6507
6508
|
* @param appointmentId - ID of the appointment this form belongs to.
|
|
6508
6509
|
* @param procedureId - ID of the procedure associated with this form.
|
|
6509
6510
|
* @param patientId - ID of the patient.
|
|
@@ -6513,7 +6514,7 @@ declare class FilledDocumentService extends BaseService {
|
|
|
6513
6514
|
* @param initialStatus - Optional initial status for the form.
|
|
6514
6515
|
* @returns The created filled document.
|
|
6515
6516
|
*/
|
|
6516
|
-
createFilledDocumentForAppointment(templateId: string, appointmentId: string, procedureId: string, patientId: string, practitionerId: string, // Consider if this is always available or if a placeholder is needed
|
|
6517
|
+
createFilledDocumentForAppointment(templateId: string, templateVersion: number, appointmentId: string, procedureId: string, patientId: string, practitionerId: string, // Consider if this is always available or if a placeholder is needed
|
|
6517
6518
|
clinicId: string, // Same consideration as practitionerId
|
|
6518
6519
|
initialValues?: {
|
|
6519
6520
|
[elementId: string]: any;
|
|
@@ -19172,4 +19173,4 @@ declare const createReviewSchema: z.ZodEffects<z.ZodObject<{
|
|
|
19172
19173
|
} | undefined;
|
|
19173
19174
|
}>;
|
|
19174
19175
|
|
|
19175
|
-
export { APPOINTMENTS_COLLECTION, AUTH_ERRORS, type AddAllergyData, type AddBlockingConditionData, type AddContraindicationData, type AddMedicationData, type AddressData, type AdminInfo, type AdminToken, AdminTokenStatus, type Allergy, type AllergySubtype, AllergyType, type AllergyTypeWithSubtype, type Appointment, type AppointmentReminderNotification, AppointmentService, AppointmentStatus, AuthError, AuthService, type BaseDocumentElement, type BaseNotification, type BinaryChoiceElement, BlockingCondition, type Brand, BrandService, CALENDAR_COLLECTION, CLINICS_COLLECTION, CLINIC_ADMINS_COLLECTION, CLINIC_GROUPS_COLLECTION, type CalendarEvent, CalendarEventStatus, type CalendarEventTime, CalendarEventType, CalendarServiceV2, CalendarSyncStatus, type Category, CategoryService, CertificationLevel, CertificationSpecialty, type Clinic, type ClinicAdmin, ClinicAdminService, type ClinicAdminSignupData, type ClinicBranchSetupData, type ClinicContactInfo, type ClinicGroup, ClinicGroupService, type ClinicGroupSetupData, type ClinicInfo, type ClinicLocation, ClinicPhotoTag, type ClinicReview, type ClinicReviewInfo, ClinicService, ClinicTag, type ClinicTags, type ContactPerson, Contraindication, CosmeticAllergySubtype, type CreateAdminTokenData, type CreateAppointmentData, type CreateAppointmentHttpData, type CreateAppointmentParams, type CreateCalendarEventData, type CreateClinicAdminData, type CreateClinicData, type CreateClinicGroupData, type CreateDefaultClinicGroupData, type CreateDocumentTemplateData, type CreateDraftPractitionerData, type CreatePatientLocationInfoData, type CreatePatientMedicalInfoData, type CreatePatientProfileData, type CreatePatientSensitiveInfoData, type CreatePractitionerData, type CreatePractitionerTokenData, type CreateProcedureData, type CreateSyncedCalendarData, type CreateUserData, Currency, DOCTOR_FORMS_SUBCOLLECTION, DOCUMENTATION_TEMPLATES_COLLECTION, type DatePickerElement, type DateRange, type DigitalSignatureElement, type DoctorInfo, type DocumentElement, DocumentElementType, type DocumentTemplate, DocumentationTemplateService, type DynamicTextElement, DynamicVariable, type EmergencyContact, EnvironmentalAllergySubtype, FILLED_DOCUMENTS_COLLECTION, type FileUploadElement, type FilledDocument, FilledDocumentService, FilledDocumentStatus, FirebaseErrorCode, type FirebaseUser, FoodAllergySubtype, type GamificationInfo, Gender, type HeadingElement, HeadingLevel, Language, type ListElement, ListType, type LocationData, MedicationAllergySubtype, type MultipleChoiceElement, type Notification, NotificationService, NotificationStatus, NotificationType, PATIENTS_COLLECTION, PATIENT_APPOINTMENTS_COLLECTION, PATIENT_LOCATION_INFO_COLLECTION, PATIENT_MEDICAL_HISTORY_COLLECTION, PATIENT_MEDICAL_INFO_COLLECTION, PATIENT_REQUIREMENTS_SUBCOLLECTION_NAME, PATIENT_SENSITIVE_INFO_COLLECTION, PRACTITIONERS_COLLECTION, PROCEDURES_COLLECTION, type ParagraphElement, type PatientClinic, type PatientDoctor, PatientInstructionStatus, type PatientLocationInfo, type PatientMedicalInfo, type PatientProfile, type PatientProfileComplete, type PatientProfileInfo, type PatientRequirementInstance, type PatientRequirementInstruction, PatientRequirementOverallStatus, PatientRequirementsService, type PatientSensitiveInfo, PatientService, PaymentStatus, type PostRequirementNotification, PracticeType, type Practitioner, type PractitionerBasicInfo, type PractitionerCertification, type PractitionerClinicProcedures, type PractitionerClinicWorkingHours, type PractitionerProfileInfo, type PractitionerReview, type PractitionerReviewInfo, PractitionerService, PractitionerStatus, type PractitionerToken, PractitionerTokenStatus, type PractitionerWorkingHours, type PreRequirementNotification, PricingMeasure, type Procedure, type ProcedureCategorization, ProcedureFamily, type ProcedureInfo, type ProcedureReview, type ProcedureReviewInfo, ProcedureService, type Product, ProductService, REGISTER_TOKENS_COLLECTION, REVIEWS_COLLECTION, type RatingScaleElement, type RequesterInfo, type Requirement, RequirementType, type Review, ReviewService, SYNCED_CALENDARS_COLLECTION, type SearchAppointmentsParams, type SearchCalendarEventsParams, SearchLocationEnum, type SearchPatientsParams, type SignatureElement, type SingleChoiceElement, type Subcategory, SubcategoryService, SubscriptionModel, type SyncedCalendar, type SyncedCalendarEvent, SyncedCalendarProvider, SyncedCalendarsService, type Technology, TechnologyService, type TextInputElement, type TimeSlot, TimeUnit, TreatmentBenefit, USER_ERRORS, USER_FORMS_SUBCOLLECTION, type UpdateAllergyData, type UpdateAppointmentData, type UpdateAppointmentParams, type UpdateBlockingConditionData, type UpdateCalendarEventData, type UpdateClinicAdminData, type UpdateClinicData, type UpdateClinicGroupData, type UpdateContraindicationData, type UpdateDocumentTemplateData, type UpdateMedicationData, type UpdatePatientLocationInfoData, type UpdatePatientMedicalInfoData, type UpdatePatientProfileData, type UpdatePatientSensitiveInfoData, type UpdatePractitionerData, type UpdateProcedureData, type UpdateSyncedCalendarData, type UpdateVitalStatsData, type User, UserRole, UserService, type ValidationSchema, type VitalStats, type WorkingHours, addAllergySchema, addBlockingConditionSchema, addContraindicationSchema, addMedicationSchema, addressDataSchema, adminInfoSchema, adminTokenSchema, allergySchema, allergySubtypeSchema, appointmentNotificationSchema, appointmentReminderNotificationSchema, baseNotificationSchema, blockingConditionSchema, calendarEventSchema, calendarEventTimeSchema, clinicAdminOptionsSchema, clinicAdminSchema, clinicAdminSignupSchema, clinicBranchSetupSchema, clinicContactInfoSchema, clinicGroupSchema, clinicGroupSetupSchema, clinicLocationSchema, clinicReviewInfoSchema, clinicReviewSchema, clinicSchema, clinicTagsSchema, contactPersonSchema, contraindicationSchema, createAdminTokenSchema, createAppointmentSchema, createCalendarEventSchema, createClinicAdminSchema, createClinicGroupSchema, createClinicReviewSchema, createClinicSchema, createDefaultClinicGroupSchema, createDocumentTemplateSchema, createDraftPractitionerSchema, createFilledDocumentDataSchema, createPatientLocationInfoSchema, createPatientMedicalInfoSchema, createPatientProfileSchema, createPatientSensitiveInfoSchema, createPractitionerReviewSchema, createPractitionerSchema, createPractitionerTokenSchema, createProcedureReviewSchema, createReviewSchema, createUserOptionsSchema, documentElementSchema, documentElementWithoutIdSchema, documentTemplateSchema, emailSchema, emergencyContactSchema, filledDocumentSchema, filledDocumentStatusSchema, gamificationSchema, getFirebaseApp, getFirebaseAuth, getFirebaseDB, getFirebaseInstance, initializeFirebase, locationDataSchema, medicationSchema, notificationSchema, passwordSchema, patientClinicSchema, patientDoctorSchema, patientLocationInfoSchema, patientMedicalInfoSchema, patientProfileInfoSchema, patientProfileSchema, patientSensitiveInfoSchema, postRequirementNotificationSchema, practitionerBasicInfoSchema, practitionerCertificationSchema, practitionerClinicWorkingHoursSchema, practitionerProfileInfoSchema, practitionerReviewInfoSchema, practitionerReviewSchema, practitionerSchema, practitionerSignupSchema, practitionerTokenSchema, practitionerWorkingHoursSchema, preRequirementNotificationSchema, procedureCategorizationSchema, procedureInfoSchema, procedureReviewInfoSchema, procedureReviewSchema, requesterInfoSchema, requirementInstructionDueNotificationSchema, reviewSchema, searchAppointmentsSchema, searchPatientsSchema, syncedCalendarEventSchema, timeSlotSchema, timestampSchema, updateAllergySchema, updateAppointmentSchema, updateBlockingConditionSchema, updateCalendarEventSchema, updateClinicAdminSchema, updateClinicGroupSchema, updateClinicSchema, updateContraindicationSchema, updateDocumentTemplateSchema, updateFilledDocumentDataSchema, updateMedicationSchema, updatePatientMedicalInfoSchema, updateVitalStatsSchema, userRoleSchema, userRolesSchema, userSchema, vitalStatsSchema, workingHoursSchema };
|
|
19176
|
+
export { APPOINTMENTS_COLLECTION, AUTH_ERRORS, type AddAllergyData, type AddBlockingConditionData, type AddContraindicationData, type AddMedicationData, type AddressData, type AdminInfo, type AdminToken, AdminTokenStatus, type Allergy, type AllergySubtype, AllergyType, type AllergyTypeWithSubtype, type Appointment, type AppointmentReminderNotification, AppointmentService, AppointmentStatus, AuthError, AuthService, type BaseDocumentElement, type BaseNotification, type BinaryChoiceElement, BlockingCondition, type Brand, BrandService, CALENDAR_COLLECTION, CLINICS_COLLECTION, CLINIC_ADMINS_COLLECTION, CLINIC_GROUPS_COLLECTION, type CalendarEvent, CalendarEventStatus, type CalendarEventTime, CalendarEventType, CalendarServiceV2, CalendarSyncStatus, type Category, CategoryService, CertificationLevel, CertificationSpecialty, type Clinic, type ClinicAdmin, ClinicAdminService, type ClinicAdminSignupData, type ClinicBranchSetupData, type ClinicContactInfo, type ClinicGroup, ClinicGroupService, type ClinicGroupSetupData, type ClinicInfo, type ClinicLocation, ClinicPhotoTag, type ClinicReview, type ClinicReviewInfo, ClinicService, ClinicTag, type ClinicTags, type ContactPerson, Contraindication, CosmeticAllergySubtype, type CreateAdminTokenData, type CreateAppointmentData, type CreateAppointmentHttpData, type CreateAppointmentParams, type CreateCalendarEventData, type CreateClinicAdminData, type CreateClinicData, type CreateClinicGroupData, type CreateDefaultClinicGroupData, type CreateDocumentTemplateData, type CreateDraftPractitionerData, type CreatePatientLocationInfoData, type CreatePatientMedicalInfoData, type CreatePatientProfileData, type CreatePatientSensitiveInfoData, type CreatePractitionerData, type CreatePractitionerTokenData, type CreateProcedureData, type CreateSyncedCalendarData, type CreateUserData, Currency, DOCTOR_FORMS_SUBCOLLECTION, DOCUMENTATION_TEMPLATES_COLLECTION, type DatePickerElement, type DateRange, type DigitalSignatureElement, type DoctorInfo, type DocumentElement, DocumentElementType, type DocumentTemplate, DocumentationTemplateService, type DynamicTextElement, DynamicVariable, type EmergencyContact, EnvironmentalAllergySubtype, FILLED_DOCUMENTS_COLLECTION, type FileUploadElement, type FilledDocument, FilledDocumentService, FilledDocumentStatus, FirebaseErrorCode, type FirebaseUser, FoodAllergySubtype, type GamificationInfo, Gender, type HeadingElement, HeadingLevel, Language, type ListElement, ListType, type LocationData, MedicationAllergySubtype, type MultipleChoiceElement, type Notification, NotificationService, NotificationStatus, NotificationType, PATIENTS_COLLECTION, PATIENT_APPOINTMENTS_COLLECTION, PATIENT_LOCATION_INFO_COLLECTION, PATIENT_MEDICAL_HISTORY_COLLECTION, PATIENT_MEDICAL_INFO_COLLECTION, PATIENT_REQUIREMENTS_SUBCOLLECTION_NAME, PATIENT_SENSITIVE_INFO_COLLECTION, PRACTITIONERS_COLLECTION, PROCEDURES_COLLECTION, type ParagraphElement, type PatientClinic, type PatientDoctor, PatientInstructionStatus, type PatientLocationInfo, type PatientMedicalInfo, type PatientProfile, type PatientProfileComplete, type PatientProfileInfo, type PatientRequirementInstance, type PatientRequirementInstruction, PatientRequirementOverallStatus, PatientRequirementsService, type PatientSensitiveInfo, PatientService, PaymentStatus, type PostRequirementNotification, PracticeType, type Practitioner, type PractitionerBasicInfo, type PractitionerCertification, type PractitionerClinicProcedures, type PractitionerClinicWorkingHours, type PractitionerProfileInfo, type PractitionerReview, type PractitionerReviewInfo, PractitionerService, PractitionerStatus, type PractitionerToken, PractitionerTokenStatus, type PractitionerWorkingHours, type PreRequirementNotification, PricingMeasure, type Procedure, type ProcedureCategorization, ProcedureFamily, type ProcedureInfo, type ProcedureReview, type ProcedureReviewInfo, ProcedureService, type Product, ProductService, REGISTER_TOKENS_COLLECTION, REVIEWS_COLLECTION, type RatingScaleElement, type RequesterInfo, type Requirement, RequirementType, type Review, ReviewService, SYNCED_CALENDARS_COLLECTION, type SearchAppointmentsParams, type SearchCalendarEventsParams, SearchLocationEnum, type SearchPatientsParams, type SignatureElement, type SingleChoiceElement, type Subcategory, SubcategoryService, SubscriptionModel, type SyncedCalendar, type SyncedCalendarEvent, SyncedCalendarProvider, SyncedCalendarsService, type Technology, type TechnologyDocumentationTemplate, TechnologyService, type TextInputElement, type TimeSlot, TimeUnit, TreatmentBenefit, USER_ERRORS, USER_FORMS_SUBCOLLECTION, type UpdateAllergyData, type UpdateAppointmentData, type UpdateAppointmentParams, type UpdateBlockingConditionData, type UpdateCalendarEventData, type UpdateClinicAdminData, type UpdateClinicData, type UpdateClinicGroupData, type UpdateContraindicationData, type UpdateDocumentTemplateData, type UpdateMedicationData, type UpdatePatientLocationInfoData, type UpdatePatientMedicalInfoData, type UpdatePatientProfileData, type UpdatePatientSensitiveInfoData, type UpdatePractitionerData, type UpdateProcedureData, type UpdateSyncedCalendarData, type UpdateVitalStatsData, type User, UserRole, UserService, type ValidationSchema, type VitalStats, type WorkingHours, addAllergySchema, addBlockingConditionSchema, addContraindicationSchema, addMedicationSchema, addressDataSchema, adminInfoSchema, adminTokenSchema, allergySchema, allergySubtypeSchema, appointmentNotificationSchema, appointmentReminderNotificationSchema, baseNotificationSchema, blockingConditionSchema, calendarEventSchema, calendarEventTimeSchema, clinicAdminOptionsSchema, clinicAdminSchema, clinicAdminSignupSchema, clinicBranchSetupSchema, clinicContactInfoSchema, clinicGroupSchema, clinicGroupSetupSchema, clinicLocationSchema, clinicReviewInfoSchema, clinicReviewSchema, clinicSchema, clinicTagsSchema, contactPersonSchema, contraindicationSchema, createAdminTokenSchema, createAppointmentSchema, createCalendarEventSchema, createClinicAdminSchema, createClinicGroupSchema, createClinicReviewSchema, createClinicSchema, createDefaultClinicGroupSchema, createDocumentTemplateSchema, createDraftPractitionerSchema, createFilledDocumentDataSchema, createPatientLocationInfoSchema, createPatientMedicalInfoSchema, createPatientProfileSchema, createPatientSensitiveInfoSchema, createPractitionerReviewSchema, createPractitionerSchema, createPractitionerTokenSchema, createProcedureReviewSchema, createReviewSchema, createUserOptionsSchema, documentElementSchema, documentElementWithoutIdSchema, documentTemplateSchema, emailSchema, emergencyContactSchema, filledDocumentSchema, filledDocumentStatusSchema, gamificationSchema, getFirebaseApp, getFirebaseAuth, getFirebaseDB, getFirebaseInstance, initializeFirebase, locationDataSchema, medicationSchema, notificationSchema, passwordSchema, patientClinicSchema, patientDoctorSchema, patientLocationInfoSchema, patientMedicalInfoSchema, patientProfileInfoSchema, patientProfileSchema, patientSensitiveInfoSchema, postRequirementNotificationSchema, practitionerBasicInfoSchema, practitionerCertificationSchema, practitionerClinicWorkingHoursSchema, practitionerProfileInfoSchema, practitionerReviewInfoSchema, practitionerReviewSchema, practitionerSchema, practitionerSignupSchema, practitionerTokenSchema, practitionerWorkingHoursSchema, preRequirementNotificationSchema, procedureCategorizationSchema, procedureInfoSchema, procedureReviewInfoSchema, procedureReviewSchema, requesterInfoSchema, requirementInstructionDueNotificationSchema, reviewSchema, searchAppointmentsSchema, searchPatientsSchema, syncedCalendarEventSchema, timeSlotSchema, timestampSchema, updateAllergySchema, updateAppointmentSchema, updateBlockingConditionSchema, updateCalendarEventSchema, updateClinicAdminSchema, updateClinicGroupSchema, updateClinicSchema, updateContraindicationSchema, updateDocumentTemplateSchema, updateFilledDocumentDataSchema, updateMedicationSchema, updatePatientMedicalInfoSchema, updateVitalStatsSchema, userRoleSchema, userRolesSchema, userSchema, vitalStatsSchema, workingHoursSchema };
|
package/dist/index.d.ts
CHANGED
|
@@ -6504,6 +6504,7 @@ declare class FilledDocumentService extends BaseService {
|
|
|
6504
6504
|
/**
|
|
6505
6505
|
* Create a new filled document within an appointment's subcollection.
|
|
6506
6506
|
* @param templateId - ID of the template to use.
|
|
6507
|
+
* @param templateVersion - Version of the template to use.
|
|
6507
6508
|
* @param appointmentId - ID of the appointment this form belongs to.
|
|
6508
6509
|
* @param procedureId - ID of the procedure associated with this form.
|
|
6509
6510
|
* @param patientId - ID of the patient.
|
|
@@ -6513,7 +6514,7 @@ declare class FilledDocumentService extends BaseService {
|
|
|
6513
6514
|
* @param initialStatus - Optional initial status for the form.
|
|
6514
6515
|
* @returns The created filled document.
|
|
6515
6516
|
*/
|
|
6516
|
-
createFilledDocumentForAppointment(templateId: string, appointmentId: string, procedureId: string, patientId: string, practitionerId: string, // Consider if this is always available or if a placeholder is needed
|
|
6517
|
+
createFilledDocumentForAppointment(templateId: string, templateVersion: number, appointmentId: string, procedureId: string, patientId: string, practitionerId: string, // Consider if this is always available or if a placeholder is needed
|
|
6517
6518
|
clinicId: string, // Same consideration as practitionerId
|
|
6518
6519
|
initialValues?: {
|
|
6519
6520
|
[elementId: string]: any;
|
|
@@ -19172,4 +19173,4 @@ declare const createReviewSchema: z.ZodEffects<z.ZodObject<{
|
|
|
19172
19173
|
} | undefined;
|
|
19173
19174
|
}>;
|
|
19174
19175
|
|
|
19175
|
-
export { APPOINTMENTS_COLLECTION, AUTH_ERRORS, type AddAllergyData, type AddBlockingConditionData, type AddContraindicationData, type AddMedicationData, type AddressData, type AdminInfo, type AdminToken, AdminTokenStatus, type Allergy, type AllergySubtype, AllergyType, type AllergyTypeWithSubtype, type Appointment, type AppointmentReminderNotification, AppointmentService, AppointmentStatus, AuthError, AuthService, type BaseDocumentElement, type BaseNotification, type BinaryChoiceElement, BlockingCondition, type Brand, BrandService, CALENDAR_COLLECTION, CLINICS_COLLECTION, CLINIC_ADMINS_COLLECTION, CLINIC_GROUPS_COLLECTION, type CalendarEvent, CalendarEventStatus, type CalendarEventTime, CalendarEventType, CalendarServiceV2, CalendarSyncStatus, type Category, CategoryService, CertificationLevel, CertificationSpecialty, type Clinic, type ClinicAdmin, ClinicAdminService, type ClinicAdminSignupData, type ClinicBranchSetupData, type ClinicContactInfo, type ClinicGroup, ClinicGroupService, type ClinicGroupSetupData, type ClinicInfo, type ClinicLocation, ClinicPhotoTag, type ClinicReview, type ClinicReviewInfo, ClinicService, ClinicTag, type ClinicTags, type ContactPerson, Contraindication, CosmeticAllergySubtype, type CreateAdminTokenData, type CreateAppointmentData, type CreateAppointmentHttpData, type CreateAppointmentParams, type CreateCalendarEventData, type CreateClinicAdminData, type CreateClinicData, type CreateClinicGroupData, type CreateDefaultClinicGroupData, type CreateDocumentTemplateData, type CreateDraftPractitionerData, type CreatePatientLocationInfoData, type CreatePatientMedicalInfoData, type CreatePatientProfileData, type CreatePatientSensitiveInfoData, type CreatePractitionerData, type CreatePractitionerTokenData, type CreateProcedureData, type CreateSyncedCalendarData, type CreateUserData, Currency, DOCTOR_FORMS_SUBCOLLECTION, DOCUMENTATION_TEMPLATES_COLLECTION, type DatePickerElement, type DateRange, type DigitalSignatureElement, type DoctorInfo, type DocumentElement, DocumentElementType, type DocumentTemplate, DocumentationTemplateService, type DynamicTextElement, DynamicVariable, type EmergencyContact, EnvironmentalAllergySubtype, FILLED_DOCUMENTS_COLLECTION, type FileUploadElement, type FilledDocument, FilledDocumentService, FilledDocumentStatus, FirebaseErrorCode, type FirebaseUser, FoodAllergySubtype, type GamificationInfo, Gender, type HeadingElement, HeadingLevel, Language, type ListElement, ListType, type LocationData, MedicationAllergySubtype, type MultipleChoiceElement, type Notification, NotificationService, NotificationStatus, NotificationType, PATIENTS_COLLECTION, PATIENT_APPOINTMENTS_COLLECTION, PATIENT_LOCATION_INFO_COLLECTION, PATIENT_MEDICAL_HISTORY_COLLECTION, PATIENT_MEDICAL_INFO_COLLECTION, PATIENT_REQUIREMENTS_SUBCOLLECTION_NAME, PATIENT_SENSITIVE_INFO_COLLECTION, PRACTITIONERS_COLLECTION, PROCEDURES_COLLECTION, type ParagraphElement, type PatientClinic, type PatientDoctor, PatientInstructionStatus, type PatientLocationInfo, type PatientMedicalInfo, type PatientProfile, type PatientProfileComplete, type PatientProfileInfo, type PatientRequirementInstance, type PatientRequirementInstruction, PatientRequirementOverallStatus, PatientRequirementsService, type PatientSensitiveInfo, PatientService, PaymentStatus, type PostRequirementNotification, PracticeType, type Practitioner, type PractitionerBasicInfo, type PractitionerCertification, type PractitionerClinicProcedures, type PractitionerClinicWorkingHours, type PractitionerProfileInfo, type PractitionerReview, type PractitionerReviewInfo, PractitionerService, PractitionerStatus, type PractitionerToken, PractitionerTokenStatus, type PractitionerWorkingHours, type PreRequirementNotification, PricingMeasure, type Procedure, type ProcedureCategorization, ProcedureFamily, type ProcedureInfo, type ProcedureReview, type ProcedureReviewInfo, ProcedureService, type Product, ProductService, REGISTER_TOKENS_COLLECTION, REVIEWS_COLLECTION, type RatingScaleElement, type RequesterInfo, type Requirement, RequirementType, type Review, ReviewService, SYNCED_CALENDARS_COLLECTION, type SearchAppointmentsParams, type SearchCalendarEventsParams, SearchLocationEnum, type SearchPatientsParams, type SignatureElement, type SingleChoiceElement, type Subcategory, SubcategoryService, SubscriptionModel, type SyncedCalendar, type SyncedCalendarEvent, SyncedCalendarProvider, SyncedCalendarsService, type Technology, TechnologyService, type TextInputElement, type TimeSlot, TimeUnit, TreatmentBenefit, USER_ERRORS, USER_FORMS_SUBCOLLECTION, type UpdateAllergyData, type UpdateAppointmentData, type UpdateAppointmentParams, type UpdateBlockingConditionData, type UpdateCalendarEventData, type UpdateClinicAdminData, type UpdateClinicData, type UpdateClinicGroupData, type UpdateContraindicationData, type UpdateDocumentTemplateData, type UpdateMedicationData, type UpdatePatientLocationInfoData, type UpdatePatientMedicalInfoData, type UpdatePatientProfileData, type UpdatePatientSensitiveInfoData, type UpdatePractitionerData, type UpdateProcedureData, type UpdateSyncedCalendarData, type UpdateVitalStatsData, type User, UserRole, UserService, type ValidationSchema, type VitalStats, type WorkingHours, addAllergySchema, addBlockingConditionSchema, addContraindicationSchema, addMedicationSchema, addressDataSchema, adminInfoSchema, adminTokenSchema, allergySchema, allergySubtypeSchema, appointmentNotificationSchema, appointmentReminderNotificationSchema, baseNotificationSchema, blockingConditionSchema, calendarEventSchema, calendarEventTimeSchema, clinicAdminOptionsSchema, clinicAdminSchema, clinicAdminSignupSchema, clinicBranchSetupSchema, clinicContactInfoSchema, clinicGroupSchema, clinicGroupSetupSchema, clinicLocationSchema, clinicReviewInfoSchema, clinicReviewSchema, clinicSchema, clinicTagsSchema, contactPersonSchema, contraindicationSchema, createAdminTokenSchema, createAppointmentSchema, createCalendarEventSchema, createClinicAdminSchema, createClinicGroupSchema, createClinicReviewSchema, createClinicSchema, createDefaultClinicGroupSchema, createDocumentTemplateSchema, createDraftPractitionerSchema, createFilledDocumentDataSchema, createPatientLocationInfoSchema, createPatientMedicalInfoSchema, createPatientProfileSchema, createPatientSensitiveInfoSchema, createPractitionerReviewSchema, createPractitionerSchema, createPractitionerTokenSchema, createProcedureReviewSchema, createReviewSchema, createUserOptionsSchema, documentElementSchema, documentElementWithoutIdSchema, documentTemplateSchema, emailSchema, emergencyContactSchema, filledDocumentSchema, filledDocumentStatusSchema, gamificationSchema, getFirebaseApp, getFirebaseAuth, getFirebaseDB, getFirebaseInstance, initializeFirebase, locationDataSchema, medicationSchema, notificationSchema, passwordSchema, patientClinicSchema, patientDoctorSchema, patientLocationInfoSchema, patientMedicalInfoSchema, patientProfileInfoSchema, patientProfileSchema, patientSensitiveInfoSchema, postRequirementNotificationSchema, practitionerBasicInfoSchema, practitionerCertificationSchema, practitionerClinicWorkingHoursSchema, practitionerProfileInfoSchema, practitionerReviewInfoSchema, practitionerReviewSchema, practitionerSchema, practitionerSignupSchema, practitionerTokenSchema, practitionerWorkingHoursSchema, preRequirementNotificationSchema, procedureCategorizationSchema, procedureInfoSchema, procedureReviewInfoSchema, procedureReviewSchema, requesterInfoSchema, requirementInstructionDueNotificationSchema, reviewSchema, searchAppointmentsSchema, searchPatientsSchema, syncedCalendarEventSchema, timeSlotSchema, timestampSchema, updateAllergySchema, updateAppointmentSchema, updateBlockingConditionSchema, updateCalendarEventSchema, updateClinicAdminSchema, updateClinicGroupSchema, updateClinicSchema, updateContraindicationSchema, updateDocumentTemplateSchema, updateFilledDocumentDataSchema, updateMedicationSchema, updatePatientMedicalInfoSchema, updateVitalStatsSchema, userRoleSchema, userRolesSchema, userSchema, vitalStatsSchema, workingHoursSchema };
|
|
19176
|
+
export { APPOINTMENTS_COLLECTION, AUTH_ERRORS, type AddAllergyData, type AddBlockingConditionData, type AddContraindicationData, type AddMedicationData, type AddressData, type AdminInfo, type AdminToken, AdminTokenStatus, type Allergy, type AllergySubtype, AllergyType, type AllergyTypeWithSubtype, type Appointment, type AppointmentReminderNotification, AppointmentService, AppointmentStatus, AuthError, AuthService, type BaseDocumentElement, type BaseNotification, type BinaryChoiceElement, BlockingCondition, type Brand, BrandService, CALENDAR_COLLECTION, CLINICS_COLLECTION, CLINIC_ADMINS_COLLECTION, CLINIC_GROUPS_COLLECTION, type CalendarEvent, CalendarEventStatus, type CalendarEventTime, CalendarEventType, CalendarServiceV2, CalendarSyncStatus, type Category, CategoryService, CertificationLevel, CertificationSpecialty, type Clinic, type ClinicAdmin, ClinicAdminService, type ClinicAdminSignupData, type ClinicBranchSetupData, type ClinicContactInfo, type ClinicGroup, ClinicGroupService, type ClinicGroupSetupData, type ClinicInfo, type ClinicLocation, ClinicPhotoTag, type ClinicReview, type ClinicReviewInfo, ClinicService, ClinicTag, type ClinicTags, type ContactPerson, Contraindication, CosmeticAllergySubtype, type CreateAdminTokenData, type CreateAppointmentData, type CreateAppointmentHttpData, type CreateAppointmentParams, type CreateCalendarEventData, type CreateClinicAdminData, type CreateClinicData, type CreateClinicGroupData, type CreateDefaultClinicGroupData, type CreateDocumentTemplateData, type CreateDraftPractitionerData, type CreatePatientLocationInfoData, type CreatePatientMedicalInfoData, type CreatePatientProfileData, type CreatePatientSensitiveInfoData, type CreatePractitionerData, type CreatePractitionerTokenData, type CreateProcedureData, type CreateSyncedCalendarData, type CreateUserData, Currency, DOCTOR_FORMS_SUBCOLLECTION, DOCUMENTATION_TEMPLATES_COLLECTION, type DatePickerElement, type DateRange, type DigitalSignatureElement, type DoctorInfo, type DocumentElement, DocumentElementType, type DocumentTemplate, DocumentationTemplateService, type DynamicTextElement, DynamicVariable, type EmergencyContact, EnvironmentalAllergySubtype, FILLED_DOCUMENTS_COLLECTION, type FileUploadElement, type FilledDocument, FilledDocumentService, FilledDocumentStatus, FirebaseErrorCode, type FirebaseUser, FoodAllergySubtype, type GamificationInfo, Gender, type HeadingElement, HeadingLevel, Language, type ListElement, ListType, type LocationData, MedicationAllergySubtype, type MultipleChoiceElement, type Notification, NotificationService, NotificationStatus, NotificationType, PATIENTS_COLLECTION, PATIENT_APPOINTMENTS_COLLECTION, PATIENT_LOCATION_INFO_COLLECTION, PATIENT_MEDICAL_HISTORY_COLLECTION, PATIENT_MEDICAL_INFO_COLLECTION, PATIENT_REQUIREMENTS_SUBCOLLECTION_NAME, PATIENT_SENSITIVE_INFO_COLLECTION, PRACTITIONERS_COLLECTION, PROCEDURES_COLLECTION, type ParagraphElement, type PatientClinic, type PatientDoctor, PatientInstructionStatus, type PatientLocationInfo, type PatientMedicalInfo, type PatientProfile, type PatientProfileComplete, type PatientProfileInfo, type PatientRequirementInstance, type PatientRequirementInstruction, PatientRequirementOverallStatus, PatientRequirementsService, type PatientSensitiveInfo, PatientService, PaymentStatus, type PostRequirementNotification, PracticeType, type Practitioner, type PractitionerBasicInfo, type PractitionerCertification, type PractitionerClinicProcedures, type PractitionerClinicWorkingHours, type PractitionerProfileInfo, type PractitionerReview, type PractitionerReviewInfo, PractitionerService, PractitionerStatus, type PractitionerToken, PractitionerTokenStatus, type PractitionerWorkingHours, type PreRequirementNotification, PricingMeasure, type Procedure, type ProcedureCategorization, ProcedureFamily, type ProcedureInfo, type ProcedureReview, type ProcedureReviewInfo, ProcedureService, type Product, ProductService, REGISTER_TOKENS_COLLECTION, REVIEWS_COLLECTION, type RatingScaleElement, type RequesterInfo, type Requirement, RequirementType, type Review, ReviewService, SYNCED_CALENDARS_COLLECTION, type SearchAppointmentsParams, type SearchCalendarEventsParams, SearchLocationEnum, type SearchPatientsParams, type SignatureElement, type SingleChoiceElement, type Subcategory, SubcategoryService, SubscriptionModel, type SyncedCalendar, type SyncedCalendarEvent, SyncedCalendarProvider, SyncedCalendarsService, type Technology, type TechnologyDocumentationTemplate, TechnologyService, type TextInputElement, type TimeSlot, TimeUnit, TreatmentBenefit, USER_ERRORS, USER_FORMS_SUBCOLLECTION, type UpdateAllergyData, type UpdateAppointmentData, type UpdateAppointmentParams, type UpdateBlockingConditionData, type UpdateCalendarEventData, type UpdateClinicAdminData, type UpdateClinicData, type UpdateClinicGroupData, type UpdateContraindicationData, type UpdateDocumentTemplateData, type UpdateMedicationData, type UpdatePatientLocationInfoData, type UpdatePatientMedicalInfoData, type UpdatePatientProfileData, type UpdatePatientSensitiveInfoData, type UpdatePractitionerData, type UpdateProcedureData, type UpdateSyncedCalendarData, type UpdateVitalStatsData, type User, UserRole, UserService, type ValidationSchema, type VitalStats, type WorkingHours, addAllergySchema, addBlockingConditionSchema, addContraindicationSchema, addMedicationSchema, addressDataSchema, adminInfoSchema, adminTokenSchema, allergySchema, allergySubtypeSchema, appointmentNotificationSchema, appointmentReminderNotificationSchema, baseNotificationSchema, blockingConditionSchema, calendarEventSchema, calendarEventTimeSchema, clinicAdminOptionsSchema, clinicAdminSchema, clinicAdminSignupSchema, clinicBranchSetupSchema, clinicContactInfoSchema, clinicGroupSchema, clinicGroupSetupSchema, clinicLocationSchema, clinicReviewInfoSchema, clinicReviewSchema, clinicSchema, clinicTagsSchema, contactPersonSchema, contraindicationSchema, createAdminTokenSchema, createAppointmentSchema, createCalendarEventSchema, createClinicAdminSchema, createClinicGroupSchema, createClinicReviewSchema, createClinicSchema, createDefaultClinicGroupSchema, createDocumentTemplateSchema, createDraftPractitionerSchema, createFilledDocumentDataSchema, createPatientLocationInfoSchema, createPatientMedicalInfoSchema, createPatientProfileSchema, createPatientSensitiveInfoSchema, createPractitionerReviewSchema, createPractitionerSchema, createPractitionerTokenSchema, createProcedureReviewSchema, createReviewSchema, createUserOptionsSchema, documentElementSchema, documentElementWithoutIdSchema, documentTemplateSchema, emailSchema, emergencyContactSchema, filledDocumentSchema, filledDocumentStatusSchema, gamificationSchema, getFirebaseApp, getFirebaseAuth, getFirebaseDB, getFirebaseInstance, initializeFirebase, locationDataSchema, medicationSchema, notificationSchema, passwordSchema, patientClinicSchema, patientDoctorSchema, patientLocationInfoSchema, patientMedicalInfoSchema, patientProfileInfoSchema, patientProfileSchema, patientSensitiveInfoSchema, postRequirementNotificationSchema, practitionerBasicInfoSchema, practitionerCertificationSchema, practitionerClinicWorkingHoursSchema, practitionerProfileInfoSchema, practitionerReviewInfoSchema, practitionerReviewSchema, practitionerSchema, practitionerSignupSchema, practitionerTokenSchema, practitionerWorkingHoursSchema, preRequirementNotificationSchema, procedureCategorizationSchema, procedureInfoSchema, procedureReviewInfoSchema, procedureReviewSchema, requesterInfoSchema, requirementInstructionDueNotificationSchema, reviewSchema, searchAppointmentsSchema, searchPatientsSchema, syncedCalendarEventSchema, timeSlotSchema, timestampSchema, updateAllergySchema, updateAppointmentSchema, updateBlockingConditionSchema, updateCalendarEventSchema, updateClinicAdminSchema, updateClinicGroupSchema, updateClinicSchema, updateContraindicationSchema, updateDocumentTemplateSchema, updateFilledDocumentDataSchema, updateMedicationSchema, updatePatientMedicalInfoSchema, updateVitalStatsSchema, userRoleSchema, userRolesSchema, userSchema, vitalStatsSchema, workingHoursSchema };
|
package/dist/index.js
CHANGED
|
@@ -8675,6 +8675,7 @@ var FilledDocumentService = class extends BaseService {
|
|
|
8675
8675
|
/**
|
|
8676
8676
|
* Create a new filled document within an appointment's subcollection.
|
|
8677
8677
|
* @param templateId - ID of the template to use.
|
|
8678
|
+
* @param templateVersion - Version of the template to use.
|
|
8678
8679
|
* @param appointmentId - ID of the appointment this form belongs to.
|
|
8679
8680
|
* @param procedureId - ID of the procedure associated with this form.
|
|
8680
8681
|
* @param patientId - ID of the patient.
|
|
@@ -8684,8 +8685,11 @@ var FilledDocumentService = class extends BaseService {
|
|
|
8684
8685
|
* @param initialStatus - Optional initial status for the form.
|
|
8685
8686
|
* @returns The created filled document.
|
|
8686
8687
|
*/
|
|
8687
|
-
async createFilledDocumentForAppointment(templateId, appointmentId, procedureId, patientId, practitionerId, clinicId, initialValues = {}, initialStatus = "draft" /* DRAFT */) {
|
|
8688
|
-
const template = await this.templateService.getTemplateById(
|
|
8688
|
+
async createFilledDocumentForAppointment(templateId, templateVersion, appointmentId, procedureId, patientId, practitionerId, clinicId, initialValues = {}, initialStatus = "draft" /* DRAFT */) {
|
|
8689
|
+
const template = await this.templateService.getTemplateById(
|
|
8690
|
+
templateId,
|
|
8691
|
+
templateVersion
|
|
8692
|
+
);
|
|
8689
8693
|
if (!template) {
|
|
8690
8694
|
throw new Error(`Template with ID ${templateId} not found`);
|
|
8691
8695
|
}
|
package/dist/index.mjs
CHANGED
|
@@ -8674,6 +8674,7 @@ var FilledDocumentService = class extends BaseService {
|
|
|
8674
8674
|
/**
|
|
8675
8675
|
* Create a new filled document within an appointment's subcollection.
|
|
8676
8676
|
* @param templateId - ID of the template to use.
|
|
8677
|
+
* @param templateVersion - Version of the template to use.
|
|
8677
8678
|
* @param appointmentId - ID of the appointment this form belongs to.
|
|
8678
8679
|
* @param procedureId - ID of the procedure associated with this form.
|
|
8679
8680
|
* @param patientId - ID of the patient.
|
|
@@ -8683,8 +8684,11 @@ var FilledDocumentService = class extends BaseService {
|
|
|
8683
8684
|
* @param initialStatus - Optional initial status for the form.
|
|
8684
8685
|
* @returns The created filled document.
|
|
8685
8686
|
*/
|
|
8686
|
-
async createFilledDocumentForAppointment(templateId, appointmentId, procedureId, patientId, practitionerId, clinicId, initialValues = {}, initialStatus = "draft" /* DRAFT */) {
|
|
8687
|
-
const template = await this.templateService.getTemplateById(
|
|
8687
|
+
async createFilledDocumentForAppointment(templateId, templateVersion, appointmentId, procedureId, patientId, practitionerId, clinicId, initialValues = {}, initialStatus = "draft" /* DRAFT */) {
|
|
8688
|
+
const template = await this.templateService.getTemplateById(
|
|
8689
|
+
templateId,
|
|
8690
|
+
templateVersion
|
|
8691
|
+
);
|
|
8688
8692
|
if (!template) {
|
|
8689
8693
|
throw new Error(`Template with ID ${templateId} not found`);
|
|
8690
8694
|
}
|
package/package.json
CHANGED
|
@@ -487,69 +487,49 @@ export class BookingAdmin {
|
|
|
487
487
|
admin.firestore.Timestamp.now(),
|
|
488
488
|
gender: patientSensitiveData?.gender || Gender.OTHER,
|
|
489
489
|
};
|
|
490
|
-
const procedureCategory = procedure.category as Category;
|
|
491
|
-
const procedureSubCategory = procedure.subcategory as Subcategory;
|
|
492
|
-
const procedureTechnology = procedure.technology as Technology;
|
|
493
|
-
const procedureProduct = procedure.product as Product;
|
|
494
|
-
|
|
495
|
-
const
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
|
|
499
|
-
|
|
500
|
-
|
|
501
|
-
|
|
502
|
-
|
|
503
|
-
|
|
504
|
-
|
|
505
|
-
|
|
506
|
-
|
|
507
|
-
|
|
508
|
-
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
|
|
514
|
-
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
|
|
518
|
-
|
|
519
|
-
|
|
520
|
-
|
|
521
|
-
|
|
522
|
-
|
|
523
|
-
|
|
524
|
-
|
|
525
|
-
|
|
526
|
-
|
|
527
|
-
|
|
528
|
-
|
|
529
|
-
|
|
530
|
-
|
|
531
|
-
|
|
532
|
-
}
|
|
533
|
-
|
|
534
|
-
// --- 6. Determine pendingUserFormsIds and linkedFormIds ---
|
|
535
|
-
let pendingUserFormsIds: string[] = [];
|
|
536
|
-
let linkedFormIds: string[] = [];
|
|
537
|
-
if (
|
|
538
|
-
procedure.documentationTemplates &&
|
|
539
|
-
Array.isArray(procedure.documentationTemplates)
|
|
540
|
-
) {
|
|
541
|
-
pendingUserFormsIds = procedure.documentationTemplates
|
|
542
|
-
.filter(
|
|
543
|
-
(template: TechnologyDocumentationTemplate) =>
|
|
544
|
-
template.isUserForm && template.isRequired
|
|
545
|
-
)
|
|
546
|
-
.map(
|
|
547
|
-
(template: TechnologyDocumentationTemplate) => template.templateId
|
|
548
|
-
);
|
|
549
|
-
linkedFormIds = procedure.documentationTemplates.map(
|
|
550
|
-
(template: TechnologyDocumentationTemplate) => template.templateId
|
|
551
|
-
);
|
|
552
|
-
}
|
|
490
|
+
// const procedureCategory = procedure.category as Category;
|
|
491
|
+
// const procedureSubCategory = procedure.subcategory as Subcategory;
|
|
492
|
+
// const procedureTechnology = procedure.technology as Technology;
|
|
493
|
+
// const procedureProduct = procedure.product as Product;
|
|
494
|
+
|
|
495
|
+
// const procedureExtendedInfo: ProcedureExtendedInfo = {
|
|
496
|
+
// id: procedure.id,
|
|
497
|
+
// name: procedure.name,
|
|
498
|
+
// description: procedure.description,
|
|
499
|
+
// cost: procedure.price,
|
|
500
|
+
// duration: procedure.duration,
|
|
501
|
+
// procedureFamily: procedure.family,
|
|
502
|
+
// procedureCategoryId: procedureCategory?.id || "",
|
|
503
|
+
// procedureCategoryName: procedureCategory?.name || "",
|
|
504
|
+
// procedureSubCategoryId: procedureSubCategory?.id || "",
|
|
505
|
+
// procedureSubCategoryName: procedureSubCategory?.name || "",
|
|
506
|
+
// procedureTechnologyId: procedureTechnology?.id || "",
|
|
507
|
+
// procedureTechnologyName: procedureTechnology?.name || "",
|
|
508
|
+
// procedureProductBrandId: procedureProduct.brandId || "",
|
|
509
|
+
// procedureProductBrandName: procedureProduct.brandName || "",
|
|
510
|
+
// procedureProductId: procedureProduct.id || "",
|
|
511
|
+
// procedureProductName: procedureProduct.name || "",
|
|
512
|
+
// };
|
|
513
|
+
|
|
514
|
+
// // --- 6. Determine pendingUserFormsIds and linkedFormIds ---
|
|
515
|
+
// let pendingUserFormsIds: string[] = [];
|
|
516
|
+
// let linkedFormIds: string[] = [];
|
|
517
|
+
// if (
|
|
518
|
+
// procedure.documentationTemplates &&
|
|
519
|
+
// Array.isArray(procedure.documentationTemplates)
|
|
520
|
+
// ) {
|
|
521
|
+
// pendingUserFormsIds = procedure.documentationTemplates
|
|
522
|
+
// .filter(
|
|
523
|
+
// (template: TechnologyDocumentationTemplate) =>
|
|
524
|
+
// template.isUserForm && template.isRequired
|
|
525
|
+
// )
|
|
526
|
+
// .map(
|
|
527
|
+
// (template: TechnologyDocumentationTemplate) => template.templateId
|
|
528
|
+
// );
|
|
529
|
+
// linkedFormIds = procedure.documentationTemplates.map(
|
|
530
|
+
// (template: TechnologyDocumentationTemplate) => template.templateId
|
|
531
|
+
// );
|
|
532
|
+
// }
|
|
553
533
|
|
|
554
534
|
// --- 7. Construct New Appointment Object ---
|
|
555
535
|
const newAppointmentId = this.db
|
package/src/index.ts
CHANGED
|
@@ -270,7 +270,10 @@ export type { Requirement } from "./backoffice/types/requirement.types";
|
|
|
270
270
|
export type { Subcategory } from "./backoffice/types/subcategory.types";
|
|
271
271
|
|
|
272
272
|
// Technology types
|
|
273
|
-
export type {
|
|
273
|
+
export type {
|
|
274
|
+
Technology,
|
|
275
|
+
TechnologyDocumentationTemplate,
|
|
276
|
+
} from "./backoffice/types/technology.types";
|
|
274
277
|
|
|
275
278
|
// Pricing enums
|
|
276
279
|
export {
|
|
@@ -48,6 +48,7 @@ export class FilledDocumentService extends BaseService {
|
|
|
48
48
|
/**
|
|
49
49
|
* Create a new filled document within an appointment's subcollection.
|
|
50
50
|
* @param templateId - ID of the template to use.
|
|
51
|
+
* @param templateVersion - Version of the template to use.
|
|
51
52
|
* @param appointmentId - ID of the appointment this form belongs to.
|
|
52
53
|
* @param procedureId - ID of the procedure associated with this form.
|
|
53
54
|
* @param patientId - ID of the patient.
|
|
@@ -59,6 +60,7 @@ export class FilledDocumentService extends BaseService {
|
|
|
59
60
|
*/
|
|
60
61
|
async createFilledDocumentForAppointment(
|
|
61
62
|
templateId: string,
|
|
63
|
+
templateVersion: number,
|
|
62
64
|
appointmentId: string,
|
|
63
65
|
procedureId: string,
|
|
64
66
|
patientId: string,
|
|
@@ -67,7 +69,10 @@ export class FilledDocumentService extends BaseService {
|
|
|
67
69
|
initialValues: { [elementId: string]: any } = {},
|
|
68
70
|
initialStatus: FilledDocumentStatus = FilledDocumentStatus.DRAFT
|
|
69
71
|
): Promise<FilledDocument> {
|
|
70
|
-
const template = await this.templateService.getTemplateById(
|
|
72
|
+
const template = await this.templateService.getTemplateById(
|
|
73
|
+
templateId,
|
|
74
|
+
templateVersion
|
|
75
|
+
);
|
|
71
76
|
if (!template) {
|
|
72
77
|
throw new Error(`Template with ID ${templateId} not found`);
|
|
73
78
|
}
|