oro-sdk-apis 7.4.1 → 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
+ }
@@ -2392,6 +2392,14 @@ var TellerService = /*#__PURE__*/function () {
2392
2392
  */;
2393
2393
  _proto.sendResumeConsultEmail = function sendResumeConsultEmail(req) {
2394
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);
2395
2403
  };
2396
2404
  return TellerService;
2397
2405
  }();