@agoric/zone 0.2.3-dev-aa68d8f.0 → 0.2.3-dev-96c9ff5.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agoric/zone",
3
- "version": "0.2.3-dev-aa68d8f.0+aa68d8f",
3
+ "version": "0.2.3-dev-96c9ff5.0+96c9ff5",
4
4
  "description": "Allocation zone abstraction for objects on the heap, persistent stores, etc.",
5
5
  "type": "module",
6
6
  "repository": "https://github.com/Agoric/agoric-sdk",
@@ -27,14 +27,14 @@
27
27
  "author": "Agoric",
28
28
  "license": "Apache-2.0",
29
29
  "dependencies": {
30
- "@agoric/base-zone": "0.1.1-dev-aa68d8f.0+aa68d8f",
31
- "@agoric/vat-data": "0.5.3-dev-aa68d8f.0+aa68d8f",
32
- "@endo/far": "^1.1.1",
33
- "@endo/pass-style": "^1.3.1"
30
+ "@agoric/base-zone": "0.1.1-dev-96c9ff5.0+96c9ff5",
31
+ "@agoric/vat-data": "0.5.3-dev-96c9ff5.0+96c9ff5",
32
+ "@endo/far": "^1.1.2",
33
+ "@endo/pass-style": "^1.4.0"
34
34
  },
35
35
  "devDependencies": {
36
- "@agoric/swingset-liveslots": "0.10.3-dev-aa68d8f.0+aa68d8f",
37
- "@endo/patterns": "^1.3.1",
36
+ "@agoric/swingset-liveslots": "0.10.3-dev-96c9ff5.0+96c9ff5",
37
+ "@endo/patterns": "^1.4.0",
38
38
  "ava": "^5.3.0"
39
39
  },
40
40
  "publishConfig": {
@@ -56,5 +56,5 @@
56
56
  "typeCoverage": {
57
57
  "atLeast": 96.66
58
58
  },
59
- "gitHead": "aa68d8fba19087b3a2c72bd59f6f9e47e34ffe1b"
59
+ "gitHead": "96c9ff577fe14cebeb5a38543ba7f8598ffcd0c7"
60
60
  }
@@ -1 +1 @@
1
- {"version":3,"file":"durable.d.ts","sourceRoot":"","sources":["durable.js"],"names":[],"mappings":"AA0EO,yCAJI,OAAO,kBAAkB,EAAE,OAAO,mCAEhC,OAAO,GAAG,EAAE,IAAI,CA8C5B"}
1
+ {"version":3,"file":"durable.d.ts","sourceRoot":"","sources":["durable.js"],"names":[],"mappings":"AA0EO,yCAJI,OAAO,kBAAkB,EAAE,OAAO,mCAEhC,OAAO,GAAG,EAAE,IAAI,CA+C5B"}
package/src/durable.js CHANGED
@@ -96,6 +96,7 @@ export const makeDurableZone = (baggage, baseLabel = 'durableZone') => {
96
96
 
97
97
  /** @type {import('.').Zone['subZone']} */
98
98
  const subZone = (label, options = {}) => {
99
+ /** @type {import('@agoric/swingset-liveslots').Baggage} */
99
100
  const subBaggage = subZoneStore(label, options);
100
101
  return makeDurableZone(subBaggage, `${baseLabel}.${label}`);
101
102
  };