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
package/dist/oro-sdk-apis.esm.js
CHANGED
@@ -1116,7 +1116,7 @@ var ConsultService = /*#__PURE__*/function () {
|
|
1116
1116
|
* @param filterAssignee array of practitioner uuids with which you want to filter the consultations
|
1117
1117
|
* @returns a number of consult
|
1118
1118
|
*/;
|
1119
|
-
_proto.countConsults = function countConsults(uuidPractice, uuidRequester, statusesMedical, statusesExclude, shortId, columnToSortTo, orderToSortTo, perPage, indexPage, filterAssignedDoctor, filterCurrentPractitioner, filterIsoLocality, filterAssignee) {
|
1119
|
+
_proto.countConsults = function countConsults(uuidPractice, uuidRequester, statusesMedical, statusesExclude, shortId, columnToSortTo, orderToSortTo, perPage, indexPage, filterAssignedDoctor, filterCurrentPractitioner, filterIsoLocality, filterAssignee, typesConsult, uuidParent) {
|
1120
1120
|
return this.api.head(this.baseURL + "/v1/consults", {
|
1121
1121
|
params: {
|
1122
1122
|
uuidPractice: uuidPractice,
|
@@ -1131,7 +1131,9 @@ var ConsultService = /*#__PURE__*/function () {
|
|
1131
1131
|
filterAssignedDoctor: filterAssignedDoctor,
|
1132
1132
|
filterCurrentPractitioner: filterCurrentPractitioner,
|
1133
1133
|
filterIsoLocality: filterIsoLocality,
|
1134
|
-
filterAssignee: filterAssignee
|
1134
|
+
filterAssignee: filterAssignee,
|
1135
|
+
typesConsult: typesConsult,
|
1136
|
+
uuidParent: uuidParent
|
1135
1137
|
}
|
1136
1138
|
}, 'Content-Range').then(function (resContentRange) {
|
1137
1139
|
if (!resContentRange || typeof resContentRange !== 'string' && typeof resContentRange !== 'number') {
|
@@ -1159,7 +1161,7 @@ var ConsultService = /*#__PURE__*/function () {
|
|
1159
1161
|
* @param filterIsoLocality the of isoLocality to filter with
|
1160
1162
|
* @returns a list of consult
|
1161
1163
|
*/;
|
1162
|
-
_proto.getConsults = function getConsults(uuidPractice, uuidRequester, statusesMedical, statusesExclude, shortId, columnToSortTo, orderToSortTo, perPage, indexPage, filterAssignedDoctor, filterCurrentPractitioner, filterIsoLocality, filterAssignee) {
|
1164
|
+
_proto.getConsults = function getConsults(uuidPractice, uuidRequester, statusesMedical, statusesExclude, shortId, columnToSortTo, orderToSortTo, perPage, indexPage, filterAssignedDoctor, filterCurrentPractitioner, filterIsoLocality, filterAssignee, uuidParent, typesConsult) {
|
1163
1165
|
return this.api.get(this.baseURL + "/v1/consults", {
|
1164
1166
|
params: {
|
1165
1167
|
uuidPractice: uuidPractice,
|
@@ -1174,7 +1176,9 @@ var ConsultService = /*#__PURE__*/function () {
|
|
1174
1176
|
filterAssignedDoctor: filterAssignedDoctor,
|
1175
1177
|
filterCurrentPractitioner: filterCurrentPractitioner,
|
1176
1178
|
filterIsoLocality: filterIsoLocality,
|
1177
|
-
filterAssignee: filterAssignee
|
1179
|
+
filterAssignee: filterAssignee,
|
1180
|
+
typesConsult: typesConsult,
|
1181
|
+
uuidParent: uuidParent
|
1178
1182
|
}
|
1179
1183
|
});
|
1180
1184
|
};
|