oro-sdk-apis 3.2.0 → 3.2.2

Sign up to get free protection for your applications and to get access to all the features.
@@ -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,10 +131,12 @@ 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;
135
138
  isoLanguageRequired: string;
139
+ uuidParent?: string;
136
140
  }
137
141
  export interface Consult {
138
142
  uuid: string;
@@ -144,6 +148,7 @@ export interface Consult {
144
148
  statusFee?: FeeStatus;
145
149
  isoLocalityRequired: string;
146
150
  statusMedical?: MedicalStatus;
151
+ consultType: ConsultType;
147
152
  uuidAssignedDoctor: string;
148
153
  uuidCurrentAssigned: string;
149
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) {