oro-sdk-apis 7.4.0 → 7.4.2

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.
@@ -1405,6 +1405,18 @@ var DiagnosisService = /*#__PURE__*/function () {
1405
1405
  return this.api.put(this.baseURL + "/v1/treatment-plans/" + uuidPlan + "/accept", {
1406
1406
  uuidConsult: uuidConsult
1407
1407
  });
1408
+ };
1409
+ _proto.updateTreatmentPlanStatusOnly = function updateTreatmentPlanStatusOnly(uuidPlan, uuidConsult, newStatus) {
1410
+ return this.api.put(this.baseURL + "/v1/treatment-plans/" + uuidPlan, {
1411
+ uuidConsult: uuidConsult,
1412
+ status: newStatus
1413
+ });
1414
+ };
1415
+ _proto.updateTreatmentPlanNotesOnly = function updateTreatmentPlanNotesOnly(uuidPlan, uuidConsult, newNotes) {
1416
+ return this.api.put(this.baseURL + "/v1/treatment-plans/" + uuidPlan, {
1417
+ uuidConsult: uuidConsult,
1418
+ notes: newNotes
1419
+ });
1408
1420
  }
1409
1421
  /**
1410
1422
  * retrieves all the drugs of the specified practice
@@ -2424,6 +2436,14 @@ var TellerService = /*#__PURE__*/function () {
2424
2436
  */;
2425
2437
  _proto.sendResumeConsultEmail = function sendResumeConsultEmail(req) {
2426
2438
  return this.api.post(this.baseURL + "/v1/resume-consult-email", req);
2439
+ }
2440
+ /**
2441
+ * This function will send an email to patient to allow them to resume the transmission of their prescription.
2442
+ * @param req the body of the resume consult request
2443
+ * @returns void
2444
+ */;
2445
+ _proto.sendResumeTransmissionEmail = function sendResumeTransmissionEmail(req) {
2446
+ return this.api.post(this.baseURL + "/v1/resume-transmission-email", req);
2427
2447
  };
2428
2448
  return TellerService;
2429
2449
  }();