oro-sdk-apis 3.0.0 → 3.1.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.
@@ -1978,11 +1978,12 @@ var DiagnosisService = /*#__PURE__*/function () {
1978
1978
  return this.api.post(this.baseURL + "/v1/treatment-plans", plans);
1979
1979
  };
1980
1980
 
1981
- _proto.updateTreatmentPlan = function updateTreatmentPlan(uuidPlan, uuidConsult, diagnosisRequest, plan) {
1981
+ _proto.updateTreatmentPlan = function updateTreatmentPlan(uuidPlan, uuidConsult, diagnosisRequest, plan, refill) {
1982
1982
  return this.api.put(this.baseURL + "/v1/treatment-plans/" + uuidPlan, {
1983
1983
  uuidConsult: uuidConsult,
1984
1984
  diagnosis: diagnosisRequest,
1985
- plan: plan
1985
+ plan: plan,
1986
+ refill: refill
1986
1987
  });
1987
1988
  };
1988
1989