@luvio/environments 0.146.0-dev4 → 0.146.0-dev5

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.
@@ -639,12 +639,12 @@ function makeDurable(environment, { durableStore, instrumentation }) {
639
639
  }
640
640
  return environment.getNode(key, ingestStagingStore);
641
641
  };
642
- const wrapNormalizedGraphNode = function (normalized) {
642
+ const wrapNormalizedGraphNode = function (normalized, key) {
643
643
  validateNotDisposed();
644
644
  if (ingestStagingStore === null) {
645
645
  ingestStagingStore = buildIngestStagingStore(environment);
646
646
  }
647
- return environment.wrapNormalizedGraphNode(normalized, ingestStagingStore);
647
+ return environment.wrapNormalizedGraphNode(normalized, key, ingestStagingStore);
648
648
  };
649
649
  const rebuildSnapshot = function (snapshot, onRebuild) {
650
650
  validateNotDisposed();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@luvio/environments",
3
- "version": "0.146.0-dev4",
3
+ "version": "0.146.0-dev5",
4
4
  "description": "Luvio Environments",
5
5
  "repository": {
6
6
  "type": "git",
@@ -27,7 +27,7 @@
27
27
  "watch": "yarn build --watch"
28
28
  },
29
29
  "dependencies": {
30
- "@luvio/engine": "0.146.0-dev4"
30
+ "@luvio/engine": "0.146.0-dev5"
31
31
  },
32
32
  "volta": {
33
33
  "extends": "../../../package.json"