@agoric/zone 0.2.3-dev-115adc4.0 → 0.2.3-dev-62ea793.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.
Files changed (2) hide show
  1. package/package.json +5 -5
  2. package/src/durable.js +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agoric/zone",
3
- "version": "0.2.3-dev-115adc4.0+115adc4",
3
+ "version": "0.2.3-dev-62ea793.0+62ea793",
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-115adc4.0+115adc4",
31
- "@agoric/vat-data": "0.5.3-dev-115adc4.0+115adc4",
30
+ "@agoric/base-zone": "0.1.1-dev-62ea793.0+62ea793",
31
+ "@agoric/vat-data": "0.5.3-dev-62ea793.0+62ea793",
32
32
  "@endo/errors": "^1.2.2",
33
33
  "@endo/far": "^1.1.2",
34
34
  "@endo/pass-style": "^1.4.0"
35
35
  },
36
36
  "devDependencies": {
37
- "@agoric/swingset-liveslots": "0.10.3-dev-115adc4.0+115adc4",
37
+ "@agoric/swingset-liveslots": "0.10.3-dev-62ea793.0+62ea793",
38
38
  "@endo/patterns": "^1.4.0",
39
39
  "ava": "^5.3.0"
40
40
  },
@@ -57,5 +57,5 @@
57
57
  "typeCoverage": {
58
58
  "atLeast": 96.68
59
59
  },
60
- "gitHead": "115adc43d43da84e64a8f0046a9fd5e4e577bb06"
60
+ "gitHead": "62ea79368de79a697b8ef04ea9946cf621c81239"
61
61
  }
package/src/durable.js CHANGED
@@ -86,7 +86,7 @@ export const makeDurableZone = (baggage, baseLabel = 'durableZone') => {
86
86
  /** @type {import('.').Zone['exoClass']} */
87
87
  const exoClass = (...args) => prepareExoClass(baggage, ...args);
88
88
  /** @type {import('.').Zone['exoClassKit']} */
89
- // eslint-disable-next-line @typescript-eslint/prefer-ts-expect-error -- happens only integrating with Endo master
89
+ // eslint-disable-next-line @typescript-eslint/ban-ts-comment -- happens only integrating with Endo master
90
90
  // @ts-ignore FIXME in Endo
91
91
  const exoClassKit = (...args) => prepareExoClassKit(baggage, ...args);
92
92
  /** @type {import('.').Zone['exo']} */