oro-sdk-apis 3.0.1 → 3.2.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.
@@ -66,7 +66,9 @@ export declare enum MedicalStatus {
66
66
  Closed = "Closed",
67
67
  Reopened = "Reopened",
68
68
  Archived = "Archived",
69
- Failed = "Failed"
69
+ Failed = "Failed",
70
+ ToRefill = "ToRefill",
71
+ Refilled = "Refilled"
70
72
  }
71
73
  export declare enum TaskStatus {
72
74
  None = "None",
@@ -144,6 +146,7 @@ export interface Consult {
144
146
  statusMedical?: MedicalStatus;
145
147
  uuidAssignedDoctor: string;
146
148
  uuidCurrentAssigned: string;
149
+ uuidParent?: string;
147
150
  statusTask?: TaskStatus;
148
151
  hasTransmissions?: boolean;
149
152
  assignedAssistant?: ConsultAssignedAssistant[];
@@ -907,6 +907,8 @@ var ApisPracticeManager = /*#__PURE__*/function () {
907
907
  MedicalStatus["Reopened"] = "Reopened";
908
908
  MedicalStatus["Archived"] = "Archived";
909
909
  MedicalStatus["Failed"] = "Failed";
910
+ MedicalStatus["ToRefill"] = "ToRefill";
911
+ MedicalStatus["Refilled"] = "Refilled";
910
912
  })(exports.MedicalStatus || (exports.MedicalStatus = {}));
911
913
 
912
914
  (function (TaskStatus) {
@@ -1486,11 +1488,12 @@ var DiagnosisService = /*#__PURE__*/function () {
1486
1488
  return this.api.post(this.baseURL + "/v1/treatment-plans", plans);
1487
1489
  };
1488
1490
 
1489
- _proto.updateTreatmentPlan = function updateTreatmentPlan(uuidPlan, uuidConsult, diagnosisRequest, plan) {
1491
+ _proto.updateTreatmentPlan = function updateTreatmentPlan(uuidPlan, uuidConsult, diagnosisRequest, plan, refill) {
1490
1492
  return this.api.put(this.baseURL + "/v1/treatment-plans/" + uuidPlan, {
1491
1493
  uuidConsult: uuidConsult,
1492
1494
  diagnosis: diagnosisRequest,
1493
- plan: plan
1495
+ plan: plan,
1496
+ refill: refill
1494
1497
  });
1495
1498
  };
1496
1499