oro-sdk-apis 1.23.1 → 1.24.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.
@@ -10,3 +10,4 @@ export * from './vault';
10
10
  export * from './workflow';
11
11
  export * from './external';
12
12
  export * from './user';
13
+ export * from './teller';
@@ -96,7 +96,8 @@ export declare enum PracticeEmailKind {
96
96
  FaxFailed = "FaxFailed",
97
97
  ExamResult = "ExamResult",
98
98
  Reassigned = "Reassigned",
99
- OnlinePharmacyFaxSent = "OnlinePharmacyFaxSent"
99
+ OnlinePharmacyFaxSent = "OnlinePharmacyFaxSent",
100
+ ResumeConsult = "ResumeConsult"
100
101
  }
101
102
  export interface PracticeAccount {
102
103
  id?: number;
@@ -0,0 +1,5 @@
1
+ export interface ResumeConsultEmailRequest {
2
+ patientEmail: string;
3
+ locale: string;
4
+ resumeConsultUrl: string;
5
+ }
@@ -1522,6 +1522,7 @@ var IdentityCreationConflict = /*#__PURE__*/function (_Error7) {
1522
1522
  PracticeEmailKind["ExamResult"] = "ExamResult";
1523
1523
  PracticeEmailKind["Reassigned"] = "Reassigned";
1524
1524
  PracticeEmailKind["OnlinePharmacyFaxSent"] = "OnlinePharmacyFaxSent";
1525
+ PracticeEmailKind["ResumeConsult"] = "ResumeConsult";
1525
1526
  })(exports.PracticeEmailKind || (exports.PracticeEmailKind = {}));
1526
1527
 
1527
1528
  (function (PracticeConfigKind) {
@@ -2953,8 +2954,18 @@ var TellerService = /*#__PURE__*/function () {
2953
2954
  _proto.sendOnlineFaxSuccessfulEmail = function sendOnlineFaxSuccessfulEmail(consult, patientUuid) {
2954
2955
  return this.api.post(this.baseURL + "/v1/online-fax-notify", {
2955
2956
  consult: consult,
2956
- patient_uuid: patientUuid
2957
+ patientUuid: patientUuid
2957
2958
  });
2959
+ }
2960
+ /**
2961
+ * This function will send an email to patient to allow them to resume the consult.
2962
+ * @param req the body of the resume consult request
2963
+ * @returns void
2964
+ */
2965
+ ;
2966
+
2967
+ _proto.sendResumeConsultEmail = function sendResumeConsultEmail(req) {
2968
+ return this.api.post(this.baseURL + "/v1/resume-consult-email", req);
2958
2969
  };
2959
2970
 
2960
2971
  return TellerService;