@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.
@@ -4059,8 +4059,12 @@ function findExpertGradesRequest(_ref) {
4059
4059
  var ids = [];
4060
4060
  var byId = {};
4061
4061
  data.data.forEach(function (entity) {
4062
- byId[entity.id] = entity;
4063
- ids.push(entity.id);
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,