oro-sdk-apis 1.15.0 → 1.17.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.
- package/dist/models/guard.d.ts +4 -0
- package/dist/models/practice.d.ts +13 -4
- package/dist/oro-sdk-apis.cjs.development.js +33 -0
- package/dist/oro-sdk-apis.cjs.development.js.map +1 -1
- package/dist/oro-sdk-apis.cjs.production.min.js +1 -1
- package/dist/oro-sdk-apis.cjs.production.min.js.map +1 -1
- package/dist/oro-sdk-apis.esm.js +33 -0
- package/dist/oro-sdk-apis.esm.js.map +1 -1
- package/dist/services/practice.d.ts +2 -2
- package/dist/services/teller.d.ts +15 -0
- package/package.json +1 -1
- package/src/models/guard.ts +7 -1
- package/src/models/practice.ts +13 -3
- package/src/services/practice.ts +2 -1
- package/src/services/teller.ts +43 -17
package/dist/oro-sdk-apis.esm.js
CHANGED
|
@@ -2937,6 +2937,39 @@ 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
|
+
});
|
|
2961
|
+
}
|
|
2962
|
+
/**
|
|
2963
|
+
* This function let's you reassign a practictioner to a consult and send a notification email
|
|
2964
|
+
* @param uuidConsult the uuid of the consult to reassign
|
|
2965
|
+
* @param newPractitionerUuid the uuid of the practitioner that will get reassigned
|
|
2966
|
+
*/
|
|
2967
|
+
;
|
|
2968
|
+
|
|
2969
|
+
_proto.reassignmentEmail = function reassignmentEmail(uuidConsult, newPractitionerUuid) {
|
|
2970
|
+
return this.api.post(this.baseURL + "/v1/consult/" + uuidConsult + "/reassignment-email", {
|
|
2971
|
+
newPractitionerUuid: newPractitionerUuid
|
|
2972
|
+
});
|
|
2940
2973
|
};
|
|
2941
2974
|
|
|
2942
2975
|
return TellerService;
|