oro-sdk-apis 1.23.3 → 1.24.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/index.d.ts +1 -0
- package/dist/models/teller.d.ts +5 -0
- package/dist/oro-sdk-apis.cjs.development.js +10 -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 +10 -0
- package/dist/oro-sdk-apis.esm.js.map +1 -1
- package/dist/services/teller.d.ts +7 -1
- package/package.json +1 -1
- package/src/models/index.ts +1 -0
- package/src/models/teller.ts +5 -0
- package/src/services/teller.ts +22 -11
- package/LICENSE +0 -21
package/dist/models/index.d.ts
CHANGED
|
@@ -2956,6 +2956,16 @@ var TellerService = /*#__PURE__*/function () {
|
|
|
2956
2956
|
consult: consult,
|
|
2957
2957
|
patientUuid: patientUuid
|
|
2958
2958
|
});
|
|
2959
|
+
}
|
|
2960
|
+
/**
|
|
2961
|
+
* This function will send an email to patient to allow them to resume the consult.
|
|
2962
|
+
* @param req the body of the resume consult request
|
|
2963
|
+
* @returns void
|
|
2964
|
+
*/
|
|
2965
|
+
;
|
|
2966
|
+
|
|
2967
|
+
_proto.sendResumeConsultEmail = function sendResumeConsultEmail(req) {
|
|
2968
|
+
return this.api.post(this.baseURL + "/v1/resume-consult-email", req);
|
|
2959
2969
|
};
|
|
2960
2970
|
|
|
2961
2971
|
return TellerService;
|