oro-sdk-apis 1.15.0 → 1.16.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.
@@ -2937,6 +2937,27 @@ var TellerService = /*#__PURE__*/function () {
2937
2937
  statusMedical: statusMedical,
2938
2938
  neverExpires: neverExpires
2939
2939
  });
2940
+ }
2941
+ /**
2942
+ * This function notifies teller that the fax sent for a specific consult did not get through
2943
+ * @param practiceUuid the practice uuid linked to the consult
2944
+ * @param consultationUuid the consultation uuid
2945
+ * @param consultationShortId the consultation short id
2946
+ * @param fax the address where to send the fax
2947
+ * @returns void
2948
+ */
2949
+ ;
2950
+
2951
+ _proto.notifyFaxFailed = function notifyFaxFailed(practiceUuid, consultationUuid, consultationShortId, fax) {
2952
+ return this.api.post(this.baseURL + "/v1/fax-failed", {
2953
+ consultationUuid: consultationUuid,
2954
+ consultationShortId: consultationShortId,
2955
+ fax: fax
2956
+ }, {
2957
+ params: {
2958
+ practice_uuid: practiceUuid
2959
+ }
2960
+ });
2940
2961
  };
2941
2962
 
2942
2963
  return TellerService;