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.
@@ -911,6 +911,8 @@ var MedicalStatus;
911
911
  MedicalStatus["Reopened"] = "Reopened";
912
912
  MedicalStatus["Archived"] = "Archived";
913
913
  MedicalStatus["Failed"] = "Failed";
914
+ MedicalStatus["ToRefill"] = "ToRefill";
915
+ MedicalStatus["Refilled"] = "Refilled";
914
916
  })(MedicalStatus || (MedicalStatus = {}));
915
917
 
916
918
  var TaskStatus;
@@ -1561,11 +1563,12 @@ var DiagnosisService = /*#__PURE__*/function () {
1561
1563
  return this.api.post(this.baseURL + "/v1/treatment-plans", plans);
1562
1564
  };
1563
1565
 
1564
- _proto.updateTreatmentPlan = function updateTreatmentPlan(uuidPlan, uuidConsult, diagnosisRequest, plan) {
1566
+ _proto.updateTreatmentPlan = function updateTreatmentPlan(uuidPlan, uuidConsult, diagnosisRequest, plan, refill) {
1565
1567
  return this.api.put(this.baseURL + "/v1/treatment-plans/" + uuidPlan, {
1566
1568
  uuidConsult: uuidConsult,
1567
1569
  diagnosis: diagnosisRequest,
1568
- plan: plan
1570
+ plan: plan,
1571
+ refill: refill
1569
1572
  });
1570
1573
  };
1571
1574