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
package/dist/oro-sdk-apis.esm.js
CHANGED
|
@@ -2958,6 +2958,18 @@ var TellerService = /*#__PURE__*/function () {
|
|
|
2958
2958
|
practice_uuid: practiceUuid
|
|
2959
2959
|
}
|
|
2960
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
|
+
});
|
|
2961
2973
|
};
|
|
2962
2974
|
|
|
2963
2975
|
return TellerService;
|