oro-sdk-apis 3.2.1 → 3.2.2

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.
@@ -50,6 +50,10 @@ export interface ConsultTransmission {
50
50
  tsLastStatusUpdate: string;
51
51
  keyWebhookSecret: string;
52
52
  }
53
+ export declare enum ConsultType {
54
+ Onboard = "Onboard",
55
+ Refill = "Refill"
56
+ }
53
57
  export declare enum FeeStatus {
54
58
  NoFee = "NoFee",
55
59
  Pending = "Pending",
@@ -66,9 +70,7 @@ export declare enum MedicalStatus {
66
70
  Closed = "Closed",
67
71
  Reopened = "Reopened",
68
72
  Archived = "Archived",
69
- Failed = "Failed",
70
- ToRefill = "ToRefill",
71
- Refilled = "Refilled"
73
+ Failed = "Failed"
72
74
  }
73
75
  export declare enum TaskStatus {
74
76
  None = "None",
@@ -129,6 +131,7 @@ export interface ConsultClosedReason {
129
131
  }
130
132
  export interface ConsultRequest {
131
133
  uuidPractice: string;
134
+ consultType?: ConsultType;
132
135
  tagSpecialtyRequired: string;
133
136
  idStripeInvoiceOrPaymentIntent: string;
134
137
  isoLocalityRequired?: string;
@@ -145,6 +148,7 @@ export interface Consult {
145
148
  statusFee?: FeeStatus;
146
149
  isoLocalityRequired: string;
147
150
  statusMedical?: MedicalStatus;
151
+ consultType: ConsultType;
148
152
  uuidAssignedDoctor: string;
149
153
  uuidCurrentAssigned: string;
150
154
  uuidParent?: string;
@@ -889,6 +889,11 @@ var ApisPracticeManager = /*#__PURE__*/function () {
889
889
  TransmissionStatus["ReceiverIncompatible"] = "ReceiverIncompatible";
890
890
  })(exports.TransmissionStatus || (exports.TransmissionStatus = {}));
891
891
 
892
+ (function (ConsultType) {
893
+ ConsultType["Onboard"] = "Onboard";
894
+ ConsultType["Refill"] = "Refill";
895
+ })(exports.ConsultType || (exports.ConsultType = {}));
896
+
892
897
  (function (FeeStatus) {
893
898
  FeeStatus["NoFee"] = "NoFee";
894
899
  FeeStatus["Pending"] = "Pending";
@@ -907,8 +912,6 @@ var ApisPracticeManager = /*#__PURE__*/function () {
907
912
  MedicalStatus["Reopened"] = "Reopened";
908
913
  MedicalStatus["Archived"] = "Archived";
909
914
  MedicalStatus["Failed"] = "Failed";
910
- MedicalStatus["ToRefill"] = "ToRefill";
911
- MedicalStatus["Refilled"] = "Refilled";
912
915
  })(exports.MedicalStatus || (exports.MedicalStatus = {}));
913
916
 
914
917
  (function (TaskStatus) {