@agoric/network 0.1.1-dev-00cccfc.0 → 0.1.1-dev-e2e36cc.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/network",
3
- "version": "0.1.1-dev-00cccfc.0+00cccfc",
3
+ "version": "0.1.1-dev-e2e36cc.0+e2e36cc",
4
4
  "description": "Agoric's network protocol API",
5
5
  "type": "module",
6
6
  "main": "./src/index.js",
@@ -21,19 +21,19 @@
21
21
  "author": "Agoric",
22
22
  "license": "Apache-2.0",
23
23
  "dependencies": {
24
- "@agoric/assert": "0.6.1-dev-00cccfc.0+00cccfc",
25
- "@agoric/internal": "0.3.3-dev-00cccfc.0+00cccfc",
26
- "@agoric/store": "0.9.3-dev-00cccfc.0+00cccfc",
27
- "@agoric/vat-data": "0.5.3-dev-00cccfc.0+00cccfc",
24
+ "@agoric/assert": "0.6.1-dev-e2e36cc.0+e2e36cc",
25
+ "@agoric/internal": "0.3.3-dev-e2e36cc.0+e2e36cc",
26
+ "@agoric/store": "0.9.3-dev-e2e36cc.0+e2e36cc",
27
+ "@agoric/vat-data": "0.5.3-dev-e2e36cc.0+e2e36cc",
28
28
  "@endo/base64": "^1.0.4",
29
29
  "@endo/far": "^1.1.1",
30
30
  "@endo/patterns": "^1.3.1",
31
31
  "@endo/promise-kit": "^1.1.1"
32
32
  },
33
33
  "devDependencies": {
34
- "@agoric/swingset-liveslots": "0.10.3-dev-00cccfc.0+00cccfc",
35
- "@agoric/swingset-vat": "0.32.3-dev-00cccfc.0+00cccfc",
36
- "@agoric/zone": "0.2.3-dev-00cccfc.0+00cccfc",
34
+ "@agoric/swingset-liveslots": "0.10.3-dev-e2e36cc.0+e2e36cc",
35
+ "@agoric/swingset-vat": "0.32.3-dev-e2e36cc.0+e2e36cc",
36
+ "@agoric/zone": "0.2.3-dev-e2e36cc.0+e2e36cc",
37
37
  "@endo/bundle-source": "^3.2.2",
38
38
  "ava": "^5.3.0",
39
39
  "c8": "^9.1.0"
@@ -68,7 +68,7 @@
68
68
  "workerThreads": false
69
69
  },
70
70
  "typeCoverage": {
71
- "atLeast": 89.74
71
+ "atLeast": 89.73
72
72
  },
73
- "gitHead": "00cccfc6fad7465b6dc611d2c861b32f07fdeaea"
73
+ "gitHead": "e2e36cc1e1c015fc517a179019184fdc81f3e809"
74
74
  }
package/src/network.d.ts CHANGED
@@ -15,7 +15,7 @@ export function prepareLoopbackProtocolHandler(zone: import('@agoric/base-zone')
15
15
  watchPromise?: ((p: PromiseLike<any>, watcher: import("@agoric/vow/src/watch-promise.js").PromiseWatcher, ...args: unknown[]) => void) | undefined;
16
16
  } | undefined) => {
17
17
  when: <T, TResult1 = import("@agoric/vow").Unwrap<T>, TResult2 = never>(specimenP: T, onFulfilled?: ((value: import("@agoric/vow").Unwrap<T>) => TResult1 | PromiseLike<TResult1>) | undefined, onRejected?: ((reason: any) => TResult2 | PromiseLike<TResult2>) | undefined) => Promise<TResult1 | TResult2>;
18
- watch: <T_1 = any, TResult1_1 = T_1, TResult2_1 = T_1>(specimenP: import("@agoric/vow").ERef<T_1 | import("@agoric/vow").Vow<T_1>>, watcher?: import("@agoric/vow").Watcher<T_1, TResult1_1, TResult2_1> | undefined, watcherContext?: unknown) => import("@agoric/vow").Vow<TResult1_1 | TResult2_1>;
18
+ watch: <T_1 = unknown, TResult1_1 = T_1, TResult2_1 = T_1, C = unknown>(specimenP: import("@agoric/vow").ERef<T_1 | import("@agoric/vow").Vow<T_1>>, watcher?: import("@agoric/vow").Watcher<T_1, TResult1_1, TResult2_1, any> | undefined, watcherContext?: C | undefined) => import("@agoric/vow").Vow<TResult1_1 | TResult2_1>;
19
19
  makeVowKit: <T_2>() => import("@agoric/vow").VowKit<T_2>;
20
20
  allVows: (vows: any) => import("@agoric/vow").Vow<any>;
21
21
  }>): (instancePrefix?: string | undefined) => import("@endo/exo").Guarded<{
@@ -52,7 +52,7 @@ export function prepareNetworkProtocol(zone: import('@agoric/base-zone').Zone, p
52
52
  watchPromise?: ((p: PromiseLike<any>, watcher: import("@agoric/vow/src/watch-promise.js").PromiseWatcher, ...args: unknown[]) => void) | undefined;
53
53
  } | undefined) => {
54
54
  when: <T, TResult1 = import("@agoric/vow").Unwrap<T>, TResult2 = never>(specimenP: T, onFulfilled?: ((value: import("@agoric/vow").Unwrap<T>) => TResult1 | PromiseLike<TResult1>) | undefined, onRejected?: ((reason: any) => TResult2 | PromiseLike<TResult2>) | undefined) => Promise<TResult1 | TResult2>;
55
- watch: <T_1 = any, TResult1_1 = T_1, TResult2_1 = T_1>(specimenP: import("@agoric/vow").ERef<T_1 | import("@agoric/vow").Vow<T_1>>, watcher?: import("@agoric/vow").Watcher<T_1, TResult1_1, TResult2_1> | undefined, watcherContext?: unknown) => import("@agoric/vow").Vow<TResult1_1 | TResult2_1>;
55
+ watch: <T_1 = unknown, TResult1_1 = T_1, TResult2_1 = T_1, C = unknown>(specimenP: import("@agoric/vow").ERef<T_1 | import("@agoric/vow").Vow<T_1>>, watcher?: import("@agoric/vow").Watcher<T_1, TResult1_1, TResult2_1, any> | undefined, watcherContext?: C | undefined) => import("@agoric/vow").Vow<TResult1_1 | TResult2_1>;
56
56
  makeVowKit: <T_2>() => import("@agoric/vow").VowKit<T_2>;
57
57
  allVows: (vows: any) => import("@agoric/vow").Vow<any>;
58
58
  }>): (protocolHandler: Remote<ProtocolHandler>) => Protocol;
package/src/router.d.ts CHANGED
@@ -32,7 +32,7 @@ export function prepareRouterProtocol(zone: import('@agoric/base-zone').Zone, po
32
32
  watchPromise?: ((p: PromiseLike<any>, watcher: import("@agoric/vow/src/watch-promise.js").PromiseWatcher, ...args: unknown[]) => void) | undefined;
33
33
  } | undefined) => {
34
34
  when: <T, TResult1 = import("@agoric/vow").Unwrap<T>, TResult2 = never>(specimenP: T, onFulfilled?: ((value: import("@agoric/vow").Unwrap<T>) => TResult1 | PromiseLike<TResult1>) | undefined, onRejected?: ((reason: any) => TResult2 | PromiseLike<TResult2>) | undefined) => Promise<TResult1 | TResult2>;
35
- watch: <T_1 = any, TResult1_1 = T_1, TResult2_1 = T_1>(specimenP: import("@agoric/vow").ERef<T_1 | import("@agoric/vow").Vow<T_1>>, watcher?: import("@agoric/vow").Watcher<T_1, TResult1_1, TResult2_1> | undefined, watcherContext?: unknown) => import("@agoric/vow").Vow<TResult1_1 | TResult2_1>;
35
+ watch: <T_1 = unknown, TResult1_1 = T_1, TResult2_1 = T_1, C = unknown>(specimenP: import("@agoric/vow").ERef<T_1 | import("@agoric/vow").Vow<T_1>>, watcher?: import("@agoric/vow").Watcher<T_1, TResult1_1, TResult2_1, any> | undefined, watcherContext?: C | undefined) => import("@agoric/vow").Vow<TResult1_1 | TResult2_1>;
36
36
  makeVowKit: <T_2>() => import("@agoric/vow").VowKit<T_2>;
37
37
  allVows: (vows: any) => import("@agoric/vow").Vow<any>;
38
38
  }>, E?: ((<T_3>(x: T_3) => import("../../../node_modules/@endo/eventual-send/src/E.js").ECallableOrMethods<import("@endo/eventual-send").RemoteFunctions<T_3>>) & {