oro-sdk-apis 1.17.1 → 1.18.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.
@@ -1552,6 +1552,12 @@ var PracticeEmailKind;
1552
1552
  PracticeEmailKind["FollowedUp"] = "FollowedUp";
1553
1553
  PracticeEmailKind["Renewed"] = "Renewed";
1554
1554
  PracticeEmailKind["DataRetrieved"] = "DataRetrieved";
1555
+ PracticeEmailKind["Closed"] = "Closed";
1556
+ PracticeEmailKind["PasswordRecovery"] = "PasswordRecovery";
1557
+ PracticeEmailKind["FaxFailed"] = "FaxFailed";
1558
+ PracticeEmailKind["ExamResult"] = "ExamResult";
1559
+ PracticeEmailKind["Reassigned"] = "Reassigned";
1560
+ PracticeEmailKind["OnlinePharmacyFaxSent"] = "OnlinePharmacyFaxSent";
1555
1561
  })(PracticeEmailKind || (PracticeEmailKind = {}));
1556
1562
 
1557
1563
  var PracticeConfigKind;
@@ -2945,6 +2951,7 @@ var TellerService = /*#__PURE__*/function () {
2945
2951
  }
2946
2952
  /**
2947
2953
  * This function notifies teller that the fax sent for a specific consult did not get through
2954
+ * @todo - Make service only exposed route
2948
2955
  * @param practiceUuid the practice uuid linked to the consult
2949
2956
  * @param consultationUuid the consultation uuid
2950
2957
  * @param consultationShortId the consultation short id
@@ -2966,6 +2973,7 @@ var TellerService = /*#__PURE__*/function () {
2966
2973
  }
2967
2974
  /**
2968
2975
  * This function let's you reassign a practictioner to a consult and send a notification email
2976
+ * @todo - Make service only exposed route
2969
2977
  * @param uuidConsult the uuid of the consult to reassign
2970
2978
  * @param newPractitionerUuid the uuid of the practitioner that will get reassigned
2971
2979
  */
@@ -2975,6 +2983,21 @@ var TellerService = /*#__PURE__*/function () {
2975
2983
  return this.api.post(this.baseURL + "/v1/consult/" + uuidConsult + "/reassignment-email", {
2976
2984
  newPractitionerUuid: newPractitionerUuid
2977
2985
  });
2986
+ }
2987
+ /**
2988
+ * This function will send an email to the patientUuid, saying that the online practice has been sent a fax successfully
2989
+ * @todo - Make service only exposed route
2990
+ * @param consult
2991
+ * @param patientUuid
2992
+ * @returns void
2993
+ */
2994
+ ;
2995
+
2996
+ _proto.sendOnlineFaxSuccessfulEmail = function sendOnlineFaxSuccessfulEmail(consult, patientUuid) {
2997
+ return this.api.post(this.baseURL + "/v1/online-fax-notify", {
2998
+ consult: consult,
2999
+ patient_uuid: patientUuid
3000
+ });
2978
3001
  };
2979
3002
 
2980
3003
  return TellerService;