oro-sdk-apis 3.0.0 → 3.1.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -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