@startinblox/core 0.19.0-beta.16 → 0.19.0-beta.17

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/index.js CHANGED
@@ -11438,7 +11438,7 @@ class Store {
11438
11438
  if (serverSearch)
11439
11439
  key = appendServerSearchToIri(key, serverSearch);
11440
11440
  }
11441
- const resourceProxy = new CustomGetter(key, resource2, clientContext, parentContext, parentId, serverPagination, serverSearch).getProxy();
11441
+ const resourceProxy = new CustomGetter(key, resource2, clientContext, parentContext, void 0, serverPagination, serverSearch).getProxy();
11442
11442
  if (resourceProxy.isContainer())
11443
11443
  this.subscribeChildren(resourceProxy, id2);
11444
11444
  if (this.get(key)) {
@@ -12090,7 +12090,7 @@ const StoreMixin = {
12090
12090
  return;
12091
12091
  this.resourceId = value;
12092
12092
  if (this.nestedField) {
12093
- const resource = await store.getData(value, this.context);
12093
+ const resource = await store.getData(value, this.context, this.resourceId, void 0, true);
12094
12094
  const nestedResource = resource ? await resource[this.nestedField] : null;
12095
12095
  this.resourceId = nestedResource ? nestedResource["@id"] : null;
12096
12096
  if (resource && !this.resourceId)