@agoric/vow 0.1.1-dev-c5dea1c.0.c5dea1c → 0.1.1-dev-4ea2a82.0.4ea2a82
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 +7 -7
- package/src/types.d.ts +1 -1
- package/src/types.js +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@agoric/vow",
|
|
3
|
-
"version": "0.1.1-dev-
|
|
3
|
+
"version": "0.1.1-dev-4ea2a82.0.4ea2a82",
|
|
4
4
|
"description": "Remote (shortening and disconnection-tolerant) Promise-likes",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "src/index.js",
|
|
@@ -16,12 +16,12 @@
|
|
|
16
16
|
"test:xs:ci": "npm run test:xs",
|
|
17
17
|
"lint-fix": "yarn lint:eslint --fix",
|
|
18
18
|
"lint": "yarn run -T run-s --continue-on-error 'lint:*'",
|
|
19
|
-
"lint:eslint": "
|
|
19
|
+
"lint:eslint": "node ../../scripts/eslint-repo.mjs .",
|
|
20
20
|
"lint:types": "yarn run -T tsc"
|
|
21
21
|
},
|
|
22
22
|
"dependencies": {
|
|
23
|
-
"@agoric/base-zone": "0.1.1-dev-
|
|
24
|
-
"@agoric/internal": "0.3.3-dev-
|
|
23
|
+
"@agoric/base-zone": "0.1.1-dev-4ea2a82.0.4ea2a82",
|
|
24
|
+
"@agoric/internal": "0.3.3-dev-4ea2a82.0.4ea2a82",
|
|
25
25
|
"@endo/env-options": "^1.1.11",
|
|
26
26
|
"@endo/errors": "^1.2.13",
|
|
27
27
|
"@endo/eventual-send": "^1.3.4",
|
|
@@ -31,8 +31,8 @@
|
|
|
31
31
|
},
|
|
32
32
|
"devDependencies": {
|
|
33
33
|
"@agoric/internal": "workspace:*",
|
|
34
|
-
"@agoric/swingset-vat": "0.32.3-dev-
|
|
35
|
-
"@agoric/zone": "0.2.3-dev-
|
|
34
|
+
"@agoric/swingset-vat": "0.32.3-dev-4ea2a82.0.4ea2a82",
|
|
35
|
+
"@agoric/zone": "0.2.3-dev-4ea2a82.0.4ea2a82",
|
|
36
36
|
"@endo/far": "^1.1.14",
|
|
37
37
|
"@endo/init": "^1.1.12",
|
|
38
38
|
"ava": "^6.4.1",
|
|
@@ -58,5 +58,5 @@
|
|
|
58
58
|
"typeCoverage": {
|
|
59
59
|
"atLeast": 92.06
|
|
60
60
|
},
|
|
61
|
-
"gitHead": "
|
|
61
|
+
"gitHead": "4ea2a829ab7a251c14fa872a0c7ac3e85b178eeb"
|
|
62
62
|
}
|
package/src/types.d.ts
CHANGED
|
@@ -130,7 +130,7 @@ export type VowTools = {
|
|
|
130
130
|
*
|
|
131
131
|
* Does not survive upgrade (even if specimenP is a durable Vow).
|
|
132
132
|
*
|
|
133
|
-
* Use only if the Vow will resolve _promptly_ {@
|
|
133
|
+
* Use only if the Vow will resolve _promptly_ {@link @agoric/swingset-vat/docs/async.md}.
|
|
134
134
|
*/
|
|
135
135
|
when: <T, TResult1 = EUnwrap<T>, TResult2 = never>(specimenP: T, onFulfilled?: ((value: EUnwrap<T>) => TResult1 | PromiseLike<TResult1>) | undefined, onRejected?: ((reason: any) => TResult2 | PromiseLike<TResult2>) | undefined) => Promise<TResult1 | TResult2>;
|
|
136
136
|
};
|