@hapl/api-queries 1.0.0 → 1.0.1--canary.231.8b1452d.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/api-queries.cjs.development.js +6 -2
- package/dist/api-queries.cjs.development.js.map +1 -1
- package/dist/api-queries.cjs.production.min.js +1 -1
- package/dist/api-queries.cjs.production.min.js.map +1 -1
- package/dist/api-queries.esm.js +6 -2
- package/dist/api-queries.esm.js.map +1 -1
- package/dist/clients/v1/api/expertGrade/findExpertGrades.d.ts +6 -3
- package/dist/clients/v1/types/ExpertGrade.d.ts +4 -1
- package/package.json +1 -1
- package/src/clients/v1/api/expertGrade/findExpertGrades.ts +9 -5
- package/src/clients/v1/types/ExpertGrade.ts +6 -1
|
@@ -4059,8 +4059,12 @@ function findExpertGradesRequest(_ref) {
|
|
|
4059
4059
|
var ids = [];
|
|
4060
4060
|
var byId = {};
|
|
4061
4061
|
data.data.forEach(function (entity) {
|
|
4062
|
-
|
|
4063
|
-
|
|
4062
|
+
var _id = nonSecure.nanoid();
|
|
4063
|
+
|
|
4064
|
+
byId[_id] = _extends({}, entity, {
|
|
4065
|
+
_id: _id
|
|
4066
|
+
});
|
|
4067
|
+
ids.push(_id);
|
|
4064
4068
|
});
|
|
4065
4069
|
return {
|
|
4066
4070
|
ids: ids,
|