@agoric/zone 0.2.3-dev-4f72580.0 → 0.2.3-dev-bef63e5.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 +5 -5
- package/src/durable.d.ts.map +1 -1
- package/src/durable.js +0 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@agoric/zone",
|
|
3
|
-
"version": "0.2.3-dev-
|
|
3
|
+
"version": "0.2.3-dev-bef63e5.0+bef63e5",
|
|
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,13 +27,13 @@
|
|
|
27
27
|
"author": "Agoric",
|
|
28
28
|
"license": "Apache-2.0",
|
|
29
29
|
"dependencies": {
|
|
30
|
-
"@agoric/base-zone": "0.1.1-dev-
|
|
31
|
-
"@agoric/vat-data": "0.5.3-dev-
|
|
30
|
+
"@agoric/base-zone": "0.1.1-dev-bef63e5.0+bef63e5",
|
|
31
|
+
"@agoric/vat-data": "0.5.3-dev-bef63e5.0+bef63e5",
|
|
32
32
|
"@endo/far": "^1.0.1",
|
|
33
33
|
"@endo/pass-style": "^1.0.1"
|
|
34
34
|
},
|
|
35
35
|
"devDependencies": {
|
|
36
|
-
"@agoric/swingset-liveslots": "0.10.3-dev-
|
|
36
|
+
"@agoric/swingset-liveslots": "0.10.3-dev-bef63e5.0+bef63e5",
|
|
37
37
|
"@endo/patterns": "^1.0.1",
|
|
38
38
|
"ava": "^5.3.0"
|
|
39
39
|
},
|
|
@@ -56,5 +56,5 @@
|
|
|
56
56
|
"typeCoverage": {
|
|
57
57
|
"atLeast": 96.33
|
|
58
58
|
},
|
|
59
|
-
"gitHead": "
|
|
59
|
+
"gitHead": "bef63e5f0c6ad6a553b3eef69d722c060995a247"
|
|
60
60
|
}
|
package/src/durable.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"durable.d.ts","sourceRoot":"","sources":["durable.js"],"names":[],"mappings":"AA6EO,yCAJI,OAAO,kBAAkB,EAAE,OAAO,mCAEhC,OAAO,GAAG,EAAE,IAAI,
|
|
1
|
+
{"version":3,"file":"durable.d.ts","sourceRoot":"","sources":["durable.js"],"names":[],"mappings":"AA6EO,yCAJI,OAAO,kBAAkB,EAAE,OAAO,mCAEhC,OAAO,GAAG,EAAE,IAAI,CA2C5B"}
|
package/src/durable.js
CHANGED
|
@@ -89,10 +89,6 @@ export const makeDurableZone = (baggage, baseLabel = 'durableZone') => {
|
|
|
89
89
|
/** @type {import('.').Zone['exoClass']} */
|
|
90
90
|
const exoClass = (...args) => prepareExoClass(baggage, ...args);
|
|
91
91
|
/** @type {import('.').Zone['exoClassKit']} */
|
|
92
|
-
// @ts-ignore This type check regressed inexplicably with the release
|
|
93
|
-
// following after @endo/exo@0.2.6.
|
|
94
|
-
// The lint error does not occur in local lint, but does in integration with
|
|
95
|
-
// @agoric/vats, so can not be suppressed with ts-expect-error.
|
|
96
92
|
const exoClassKit = (...args) => prepareExoClassKit(baggage, ...args);
|
|
97
93
|
/** @type {import('.').Zone['exo']} */
|
|
98
94
|
const exo = (...args) => prepareExo(baggage, ...args);
|