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.
@@ -3,3 +3,8 @@ export interface ResumeConsultEmailRequest {
3
3
  locale: string;
4
4
  resumeConsultUrl: string;
5
5
  }
6
+ export interface ResumeTransmissionEmailRequest {
7
+ patientEmail: string;
8
+ locale: string;
9
+ resumeTransmissionConsultUrl: string;
10
+ }
@@ -1361,6 +1361,18 @@ var DiagnosisService = /*#__PURE__*/function () {
1361
1361
  return this.api.put(this.baseURL + "/v1/treatment-plans/" + uuidPlan + "/accept", {
1362
1362
  uuidConsult: uuidConsult
1363
1363
  });
1364
+ };
1365
+ _proto.updateTreatmentPlanStatusOnly = function updateTreatmentPlanStatusOnly(uuidPlan, uuidConsult, newStatus) {
1366
+ return this.api.put(this.baseURL + "/v1/treatment-plans/" + uuidPlan, {
1367
+ uuidConsult: uuidConsult,
1368
+ status: newStatus
1369
+ });
1370
+ };
1371
+ _proto.updateTreatmentPlanNotesOnly = function updateTreatmentPlanNotesOnly(uuidPlan, uuidConsult, newNotes) {
1372
+ return this.api.put(this.baseURL + "/v1/treatment-plans/" + uuidPlan, {
1373
+ uuidConsult: uuidConsult,
1374
+ notes: newNotes
1375
+ });
1364
1376
  }
1365
1377
  /**
1366
1378
  * retrieves all the drugs of the specified practice
@@ -2380,6 +2392,14 @@ var TellerService = /*#__PURE__*/function () {
2380
2392
  */;
2381
2393
  _proto.sendResumeConsultEmail = function sendResumeConsultEmail(req) {
2382
2394
  return this.api.post(this.baseURL + "/v1/resume-consult-email", req);
2395
+ }
2396
+ /**
2397
+ * This function will send an email to patient to allow them to resume the transmission of their prescription.
2398
+ * @param req the body of the resume consult request
2399
+ * @returns void
2400
+ */;
2401
+ _proto.sendResumeTransmissionEmail = function sendResumeTransmissionEmail(req) {
2402
+ return this.api.post(this.baseURL + "/v1/resume-transmission-email", req);
2383
2403
  };
2384
2404
  return TellerService;
2385
2405
  }();