oro-sdk-apis 1.16.1 → 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/oro-sdk-apis.cjs.development.js +12 -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 +12 -0
- package/dist/oro-sdk-apis.esm.js.map +1 -1
- package/dist/services/teller.d.ts +6 -0
- package/package.json +1 -1
- package/src/services/teller.ts +11 -0
|
@@ -2912,6 +2912,18 @@ var TellerService = /*#__PURE__*/function () {
|
|
|
2912
2912
|
practice_uuid: practiceUuid
|
|
2913
2913
|
}
|
|
2914
2914
|
});
|
|
2915
|
+
}
|
|
2916
|
+
/**
|
|
2917
|
+
* This function let's you reassign a practictioner to a consult and send a notification email
|
|
2918
|
+
* @param uuidConsult the uuid of the consult to reassign
|
|
2919
|
+
* @param newPractitionerUuid the uuid of the practitioner that will get reassigned
|
|
2920
|
+
*/
|
|
2921
|
+
;
|
|
2922
|
+
|
|
2923
|
+
_proto.reassignmentEmail = function reassignmentEmail(uuidConsult, newPractitionerUuid) {
|
|
2924
|
+
return this.api.post(this.baseURL + "/v1/consult/" + uuidConsult + "/reassignment-email", {
|
|
2925
|
+
newPractitionerUuid: newPractitionerUuid
|
|
2926
|
+
});
|
|
2915
2927
|
};
|
|
2916
2928
|
|
|
2917
2929
|
return TellerService;
|