oro-sdk-apis 3.2.6 → 3.2.7
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 +8 -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 +8 -4
- package/dist/oro-sdk-apis.esm.js.map +1 -1
- package/dist/services/consult.d.ts +3 -3
- package/package.json +1 -1
- package/src/services/consult.ts +12 -3
@@ -1073,7 +1073,7 @@ var ConsultService = /*#__PURE__*/function () {
|
|
1073
1073
|
* @param filterAssignee array of practitioner uuids with which you want to filter the consultations
|
1074
1074
|
* @returns a number of consult
|
1075
1075
|
*/;
|
1076
|
-
_proto.countConsults = function countConsults(uuidPractice, uuidRequester, statusesMedical, statusesExclude, shortId, columnToSortTo, orderToSortTo, perPage, indexPage, filterAssignedDoctor, filterCurrentPractitioner, filterIsoLocality, filterAssignee) {
|
1076
|
+
_proto.countConsults = function countConsults(uuidPractice, uuidRequester, statusesMedical, statusesExclude, shortId, columnToSortTo, orderToSortTo, perPage, indexPage, filterAssignedDoctor, filterCurrentPractitioner, filterIsoLocality, filterAssignee, typesConsult, uuidParent) {
|
1077
1077
|
return this.api.head(this.baseURL + "/v1/consults", {
|
1078
1078
|
params: {
|
1079
1079
|
uuidPractice: uuidPractice,
|
@@ -1088,7 +1088,9 @@ var ConsultService = /*#__PURE__*/function () {
|
|
1088
1088
|
filterAssignedDoctor: filterAssignedDoctor,
|
1089
1089
|
filterCurrentPractitioner: filterCurrentPractitioner,
|
1090
1090
|
filterIsoLocality: filterIsoLocality,
|
1091
|
-
filterAssignee: filterAssignee
|
1091
|
+
filterAssignee: filterAssignee,
|
1092
|
+
typesConsult: typesConsult,
|
1093
|
+
uuidParent: uuidParent
|
1092
1094
|
}
|
1093
1095
|
}, 'Content-Range').then(function (resContentRange) {
|
1094
1096
|
if (!resContentRange || typeof resContentRange !== 'string' && typeof resContentRange !== 'number') {
|
@@ -1116,7 +1118,7 @@ var ConsultService = /*#__PURE__*/function () {
|
|
1116
1118
|
* @param filterIsoLocality the of isoLocality to filter with
|
1117
1119
|
* @returns a list of consult
|
1118
1120
|
*/;
|
1119
|
-
_proto.getConsults = function getConsults(uuidPractice, uuidRequester, statusesMedical, statusesExclude, shortId, columnToSortTo, orderToSortTo, perPage, indexPage, filterAssignedDoctor, filterCurrentPractitioner, filterIsoLocality, filterAssignee) {
|
1121
|
+
_proto.getConsults = function getConsults(uuidPractice, uuidRequester, statusesMedical, statusesExclude, shortId, columnToSortTo, orderToSortTo, perPage, indexPage, filterAssignedDoctor, filterCurrentPractitioner, filterIsoLocality, filterAssignee, uuidParent, typesConsult) {
|
1120
1122
|
return this.api.get(this.baseURL + "/v1/consults", {
|
1121
1123
|
params: {
|
1122
1124
|
uuidPractice: uuidPractice,
|
@@ -1131,7 +1133,9 @@ var ConsultService = /*#__PURE__*/function () {
|
|
1131
1133
|
filterAssignedDoctor: filterAssignedDoctor,
|
1132
1134
|
filterCurrentPractitioner: filterCurrentPractitioner,
|
1133
1135
|
filterIsoLocality: filterIsoLocality,
|
1134
|
-
filterAssignee: filterAssignee
|
1136
|
+
filterAssignee: filterAssignee,
|
1137
|
+
typesConsult: typesConsult,
|
1138
|
+
uuidParent: uuidParent
|
1135
1139
|
}
|
1136
1140
|
});
|
1137
1141
|
};
|