oro-sdk-apis 1.22.0 → 1.23.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 +7 -4
- 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 +7 -4
- package/dist/oro-sdk-apis.esm.js.map +1 -1
- package/dist/services/consult.d.ts +3 -2
- package/package.json +1 -1
- package/src/services/consult.ts +30 -68
|
@@ -1600,11 +1600,12 @@ var ConsultService = /*#__PURE__*/function () {
|
|
|
1600
1600
|
* @param filterAssignedDoctor the uuid of the doctor for which to filter with
|
|
1601
1601
|
* @param filterCurrentPractitioner the uuid of the current assistant assigned to filter with
|
|
1602
1602
|
* @param filterIsoLocality the of isoLocality to filter with
|
|
1603
|
+
* @param filterAssignee array of practitioner uuids with which you want to filter the consultations
|
|
1603
1604
|
* @returns a number of consult
|
|
1604
1605
|
*/
|
|
1605
1606
|
;
|
|
1606
1607
|
|
|
1607
|
-
_proto.countConsults = function countConsults(uuidPractice, uuidRequester, statusesMedical, statusesExclude, shortId, columnToSortTo, orderToSortTo, perPage, indexPage, filterAssignedDoctor, filterCurrentPractitioner, filterIsoLocality) {
|
|
1608
|
+
_proto.countConsults = function countConsults(uuidPractice, uuidRequester, statusesMedical, statusesExclude, shortId, columnToSortTo, orderToSortTo, perPage, indexPage, filterAssignedDoctor, filterCurrentPractitioner, filterIsoLocality, filterAssignee) {
|
|
1608
1609
|
return this.api.head(this.baseURL + "/v1/consults", {
|
|
1609
1610
|
params: {
|
|
1610
1611
|
uuidPractice: uuidPractice,
|
|
@@ -1618,7 +1619,8 @@ var ConsultService = /*#__PURE__*/function () {
|
|
|
1618
1619
|
orderColumns: orderToSortTo,
|
|
1619
1620
|
filterAssignedDoctor: filterAssignedDoctor,
|
|
1620
1621
|
filterCurrentPractitioner: filterCurrentPractitioner,
|
|
1621
|
-
filterIsoLocality: filterIsoLocality
|
|
1622
|
+
filterIsoLocality: filterIsoLocality,
|
|
1623
|
+
filterAssignee: filterAssignee
|
|
1622
1624
|
}
|
|
1623
1625
|
}, 'Content-Range').then(function (resContentRange) {
|
|
1624
1626
|
if (!resContentRange || typeof resContentRange !== 'string' && typeof resContentRange !== 'number') {
|
|
@@ -1650,7 +1652,7 @@ var ConsultService = /*#__PURE__*/function () {
|
|
|
1650
1652
|
*/
|
|
1651
1653
|
;
|
|
1652
1654
|
|
|
1653
|
-
_proto.getConsults = function getConsults(uuidPractice, uuidRequester, statusesMedical, statusesExclude, shortId, columnToSortTo, orderToSortTo, perPage, indexPage, filterAssignedDoctor, filterCurrentPractitioner, filterIsoLocality) {
|
|
1655
|
+
_proto.getConsults = function getConsults(uuidPractice, uuidRequester, statusesMedical, statusesExclude, shortId, columnToSortTo, orderToSortTo, perPage, indexPage, filterAssignedDoctor, filterCurrentPractitioner, filterIsoLocality, filterAssignee) {
|
|
1654
1656
|
return this.api.get(this.baseURL + "/v1/consults", {
|
|
1655
1657
|
params: {
|
|
1656
1658
|
uuidPractice: uuidPractice,
|
|
@@ -1664,7 +1666,8 @@ var ConsultService = /*#__PURE__*/function () {
|
|
|
1664
1666
|
orderColumns: orderToSortTo,
|
|
1665
1667
|
filterAssignedDoctor: filterAssignedDoctor,
|
|
1666
1668
|
filterCurrentPractitioner: filterCurrentPractitioner,
|
|
1667
|
-
filterIsoLocality: filterIsoLocality
|
|
1669
|
+
filterIsoLocality: filterIsoLocality,
|
|
1670
|
+
filterAssignee: filterAssignee
|
|
1668
1671
|
}
|
|
1669
1672
|
});
|
|
1670
1673
|
};
|