@agoric/async-flow 0.1.1-dev-81ac381.0 → 0.1.1-dev-ac88da5.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 +9 -9
  2. package/src/types.d.ts +3 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agoric/async-flow",
3
- "version": "0.1.1-dev-81ac381.0+81ac381",
3
+ "version": "0.1.1-dev-ac88da5.0+ac88da5",
4
4
  "description": "Upgrade async functions at await points by replay",
5
5
  "type": "module",
6
6
  "repository": "https://github.com/Agoric/agoric-sdk",
@@ -24,10 +24,10 @@
24
24
  "author": "Agoric",
25
25
  "license": "Apache-2.0",
26
26
  "dependencies": {
27
- "@agoric/base-zone": "0.1.1-dev-81ac381.0+81ac381",
28
- "@agoric/internal": "0.3.3-dev-81ac381.0+81ac381",
29
- "@agoric/store": "0.9.3-dev-81ac381.0+81ac381",
30
- "@agoric/vow": "0.1.1-dev-81ac381.0+81ac381",
27
+ "@agoric/base-zone": "0.1.1-dev-ac88da5.0+ac88da5",
28
+ "@agoric/internal": "0.3.3-dev-ac88da5.0+ac88da5",
29
+ "@agoric/store": "0.9.3-dev-ac88da5.0+ac88da5",
30
+ "@agoric/vow": "0.1.1-dev-ac88da5.0+ac88da5",
31
31
  "@endo/common": "^1.2.2",
32
32
  "@endo/errors": "^1.2.2",
33
33
  "@endo/eventual-send": "^1.2.2",
@@ -37,8 +37,8 @@
37
37
  "@endo/promise-kit": "^1.1.2"
38
38
  },
39
39
  "devDependencies": {
40
- "@agoric/swingset-liveslots": "0.10.3-dev-81ac381.0+81ac381",
41
- "@agoric/zone": "0.2.3-dev-81ac381.0+81ac381",
40
+ "@agoric/swingset-liveslots": "0.10.3-dev-ac88da5.0+ac88da5",
41
+ "@agoric/zone": "0.2.3-dev-ac88da5.0+ac88da5",
42
42
  "@endo/env-options": "^1.1.4",
43
43
  "@endo/ses-ava": "^1.2.2",
44
44
  "ava": "^5.3.0",
@@ -61,7 +61,7 @@
61
61
  "workerThreads": false
62
62
  },
63
63
  "typeCoverage": {
64
- "atLeast": 76.94
64
+ "atLeast": 77.01
65
65
  },
66
- "gitHead": "81ac38153db929618831ac19f57c019769d3cbef"
66
+ "gitHead": "ac88da5f5661e8c366b7956edd064729dc9b86e3"
67
67
  }
package/src/types.d.ts CHANGED
@@ -31,7 +31,9 @@ export type GuestAsyncFunc = (
31
31
  ...activationArgs: Guest[]
32
32
  ) => Guest<Promise<any>>;
33
33
 
34
- export type HostAsyncFuncWrapper = (...activationArgs: Host[]) => HostVow;
34
+ export type HostAsyncFuncWrapper = (
35
+ ...activationArgs: Host<any>[]
36
+ ) => HostVow<any>;
35
37
 
36
38
  /**
37
39
  * The function from the host as it will be available in the guest.