@agoric/network 0.1.1-dev-ae21a7e.0 → 0.1.1-dev-afcbcd7.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-ae21a7e.0+ae21a7e",
3
+ "version": "0.1.1-dev-afcbcd7.0+afcbcd7",
4
4
  "description": "Agoric's network protocol API",
5
5
  "type": "module",
6
6
  "main": "./src/index.js",
@@ -21,15 +21,15 @@
21
21
  "author": "Agoric",
22
22
  "license": "Apache-2.0",
23
23
  "dependencies": {
24
- "@agoric/assert": "0.6.1-dev-ae21a7e.0+ae21a7e",
25
- "@agoric/internal": "0.3.3-dev-ae21a7e.0+ae21a7e",
26
- "@agoric/store": "0.9.3-dev-ae21a7e.0+ae21a7e",
24
+ "@agoric/assert": "0.6.1-dev-afcbcd7.0+afcbcd7",
25
+ "@agoric/internal": "0.3.3-dev-afcbcd7.0+afcbcd7",
26
+ "@agoric/store": "0.9.3-dev-afcbcd7.0+afcbcd7",
27
27
  "@endo/base64": "^0.2.34",
28
28
  "@endo/far": "^0.2.21",
29
29
  "@endo/promise-kit": "^0.2.59"
30
30
  },
31
31
  "devDependencies": {
32
- "@agoric/swingset-vat": "0.32.3-dev-ae21a7e.0+ae21a7e",
32
+ "@agoric/swingset-vat": "0.32.3-dev-afcbcd7.0+afcbcd7",
33
33
  "@endo/bundle-source": "^2.7.0",
34
34
  "ava": "^5.3.0",
35
35
  "c8": "^7.13.0"
@@ -63,5 +63,8 @@
63
63
  "timeout": "20m",
64
64
  "workerThreads": false
65
65
  },
66
- "gitHead": "ae21a7ea4f28e41bab2278e38458a746abc4114f"
66
+ "typeCoverage": {
67
+ "atLeast": 76.57
68
+ },
69
+ "gitHead": "afcbcd727d7c9a4c6330d619c7846c9963b1e25a"
67
70
  }
package/src/bytes.js CHANGED
@@ -1,4 +1,4 @@
1
- import './types.js';
1
+ /// <reference path="./types.js" />
2
2
  import { encodeBase64, decodeBase64 } from '@endo/base64';
3
3
 
4
4
  /* eslint-disable no-bitwise */
package/src/network.js CHANGED
@@ -6,7 +6,7 @@ import { whileTrue } from '@agoric/internal';
6
6
  import { toBytes } from './bytes.js';
7
7
 
8
8
  import '@agoric/store/exported.js';
9
- import './types.js';
9
+ /// <reference path="./types.js" />
10
10
 
11
11
  /**
12
12
  * Compatibility note: this must match what our peers use, so don't change it
package/src/router.js CHANGED
@@ -4,7 +4,7 @@ import { Fail } from '@agoric/assert';
4
4
  import { makeNetworkProtocol, ENDPOINT_SEPARATOR } from './network.js';
5
5
 
6
6
  import '@agoric/store/exported.js';
7
- import './types.js';
7
+ /// <reference path="./types.js" />
8
8
 
9
9
  /**
10
10
  * @template T