@taphealth/kafka 1.1.18 → 1.2.1
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/types/appointment.d.ts +26 -1
- package/dist/types/appointment.js +27 -1
- package/package.json +1 -1
|
@@ -7,5 +7,30 @@ export declare enum AppointmentStatus {
|
|
|
7
7
|
Confirmed = "confirmed",
|
|
8
8
|
Cancelled = "cancelled",
|
|
9
9
|
Completed = "completed",
|
|
10
|
-
Ongoing = "ongoing"
|
|
10
|
+
Ongoing = "ongoing",
|
|
11
|
+
PatientMissed = "patient_missed",
|
|
12
|
+
DoctorMissed = "doctor_missed"
|
|
13
|
+
}
|
|
14
|
+
export declare enum AppointmentSubStatus {
|
|
15
|
+
LanguageBarrier = "language_barrier",
|
|
16
|
+
InvalidNumber = "invalid_number",
|
|
17
|
+
PatientRefusedToShareInformation = "patient_refused_to_share_information",
|
|
18
|
+
LabReportsRequired = "lab_reports_required",
|
|
19
|
+
PatientIsBusy = "patient_is_busy",
|
|
20
|
+
NoAttemptMadeWithin30Mins = "no_attempt_made_within_30_mins",
|
|
21
|
+
PatientAskedToReschedule = "patient_asked_to_reschedule",
|
|
22
|
+
NotAudible = "not_audible",
|
|
23
|
+
NotInterested = "not_interested",
|
|
24
|
+
MedicalHistoryCaptured = "medical_history_captured",
|
|
25
|
+
PatientSaidDidntBookAnyAppointment = "patient_said_didnt_book_any_appointment",
|
|
26
|
+
PrescriptionIssued = "prescription_issued",
|
|
27
|
+
DuplicateAppointment = "duplicate_appointment",
|
|
28
|
+
PhysicalVisitRequired = "physical_visit_required",
|
|
29
|
+
TestingThePlatform = "testing_the_platform",
|
|
30
|
+
RingingOrNotAnswering = "ringing_or_not_answering",
|
|
31
|
+
PatientRequestedForFurtherAssistance = "patient_requested_for_further_assistance",
|
|
32
|
+
SwitchedOffOrNotReachable = "switched_off_or_not_reachable",
|
|
33
|
+
NotApplicable = "not_applicable",
|
|
34
|
+
Other = "other",
|
|
35
|
+
Busy = "busy"
|
|
11
36
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.AppointmentStatus = exports.AppointmentType = void 0;
|
|
3
|
+
exports.AppointmentSubStatus = exports.AppointmentStatus = exports.AppointmentType = void 0;
|
|
4
4
|
var AppointmentType;
|
|
5
5
|
(function (AppointmentType) {
|
|
6
6
|
AppointmentType["Offline"] = "offline";
|
|
@@ -13,4 +13,30 @@ var AppointmentStatus;
|
|
|
13
13
|
AppointmentStatus["Cancelled"] = "cancelled";
|
|
14
14
|
AppointmentStatus["Completed"] = "completed";
|
|
15
15
|
AppointmentStatus["Ongoing"] = "ongoing";
|
|
16
|
+
AppointmentStatus["PatientMissed"] = "patient_missed";
|
|
17
|
+
AppointmentStatus["DoctorMissed"] = "doctor_missed";
|
|
16
18
|
})(AppointmentStatus || (exports.AppointmentStatus = AppointmentStatus = {}));
|
|
19
|
+
var AppointmentSubStatus;
|
|
20
|
+
(function (AppointmentSubStatus) {
|
|
21
|
+
AppointmentSubStatus["LanguageBarrier"] = "language_barrier";
|
|
22
|
+
AppointmentSubStatus["InvalidNumber"] = "invalid_number";
|
|
23
|
+
AppointmentSubStatus["PatientRefusedToShareInformation"] = "patient_refused_to_share_information";
|
|
24
|
+
AppointmentSubStatus["LabReportsRequired"] = "lab_reports_required";
|
|
25
|
+
AppointmentSubStatus["PatientIsBusy"] = "patient_is_busy";
|
|
26
|
+
AppointmentSubStatus["NoAttemptMadeWithin30Mins"] = "no_attempt_made_within_30_mins";
|
|
27
|
+
AppointmentSubStatus["PatientAskedToReschedule"] = "patient_asked_to_reschedule";
|
|
28
|
+
AppointmentSubStatus["NotAudible"] = "not_audible";
|
|
29
|
+
AppointmentSubStatus["NotInterested"] = "not_interested";
|
|
30
|
+
AppointmentSubStatus["MedicalHistoryCaptured"] = "medical_history_captured";
|
|
31
|
+
AppointmentSubStatus["PatientSaidDidntBookAnyAppointment"] = "patient_said_didnt_book_any_appointment";
|
|
32
|
+
AppointmentSubStatus["PrescriptionIssued"] = "prescription_issued";
|
|
33
|
+
AppointmentSubStatus["DuplicateAppointment"] = "duplicate_appointment";
|
|
34
|
+
AppointmentSubStatus["PhysicalVisitRequired"] = "physical_visit_required";
|
|
35
|
+
AppointmentSubStatus["TestingThePlatform"] = "testing_the_platform";
|
|
36
|
+
AppointmentSubStatus["RingingOrNotAnswering"] = "ringing_or_not_answering";
|
|
37
|
+
AppointmentSubStatus["PatientRequestedForFurtherAssistance"] = "patient_requested_for_further_assistance";
|
|
38
|
+
AppointmentSubStatus["SwitchedOffOrNotReachable"] = "switched_off_or_not_reachable";
|
|
39
|
+
AppointmentSubStatus["NotApplicable"] = "not_applicable";
|
|
40
|
+
AppointmentSubStatus["Other"] = "other";
|
|
41
|
+
AppointmentSubStatus["Busy"] = "busy";
|
|
42
|
+
})(AppointmentSubStatus || (exports.AppointmentSubStatus = AppointmentSubStatus = {}));
|