oro-sdk-apis 7.4.0 → 7.4.1
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/diagnosis.d.ts +3 -1
- package/package.json +1 -1
- package/src/services/diagnosis.ts +20 -2
package/dist/oro-sdk-apis.esm.js
CHANGED
@@ -1405,6 +1405,18 @@ var DiagnosisService = /*#__PURE__*/function () {
|
|
1405
1405
|
return this.api.put(this.baseURL + "/v1/treatment-plans/" + uuidPlan + "/accept", {
|
1406
1406
|
uuidConsult: uuidConsult
|
1407
1407
|
});
|
1408
|
+
};
|
1409
|
+
_proto.updateTreatmentPlanStatusOnly = function updateTreatmentPlanStatusOnly(uuidPlan, uuidConsult, newStatus) {
|
1410
|
+
return this.api.put(this.baseURL + "/v1/treatment-plans/" + uuidPlan, {
|
1411
|
+
uuidConsult: uuidConsult,
|
1412
|
+
status: newStatus
|
1413
|
+
});
|
1414
|
+
};
|
1415
|
+
_proto.updateTreatmentPlanNotesOnly = function updateTreatmentPlanNotesOnly(uuidPlan, uuidConsult, newNotes) {
|
1416
|
+
return this.api.put(this.baseURL + "/v1/treatment-plans/" + uuidPlan, {
|
1417
|
+
uuidConsult: uuidConsult,
|
1418
|
+
notes: newNotes
|
1419
|
+
});
|
1408
1420
|
}
|
1409
1421
|
/**
|
1410
1422
|
* retrieves all the drugs of the specified practice
|