@agoric/internal 0.3.3-dev-68fa208.0.68fa208 → 0.3.3-dev-74b2609.0.74b2609

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/internal",
3
- "version": "0.3.3-dev-68fa208.0.68fa208",
3
+ "version": "0.3.3-dev-74b2609.0.74b2609",
4
4
  "description": "Externally unsupported utilities internal to agoric-sdk",
5
5
  "type": "module",
6
6
  "main": "src/index.js",
@@ -20,7 +20,7 @@
20
20
  "lint:types": "yarn run -T tsc"
21
21
  },
22
22
  "dependencies": {
23
- "@agoric/base-zone": "0.1.1-dev-68fa208.0.68fa208",
23
+ "@agoric/base-zone": "0.1.1-dev-74b2609.0.74b2609",
24
24
  "@endo/cache-map": "^1.1.0",
25
25
  "@endo/common": "^1.2.13",
26
26
  "@endo/compartment-mapper": "^1.6.3",
@@ -39,7 +39,7 @@
39
39
  "jessie.js": "^0.3.4"
40
40
  },
41
41
  "devDependencies": {
42
- "@agoric/cosmic-proto": "0.4.1-dev-68fa208.0.68fa208",
42
+ "@agoric/cosmic-proto": "0.4.1-dev-74b2609.0.74b2609",
43
43
  "@endo/exo": "^1.5.12",
44
44
  "@endo/init": "^1.1.12",
45
45
  "@endo/ses-ava": "^1.3.2",
@@ -66,5 +66,5 @@
66
66
  "typeCoverage": {
67
67
  "atLeast": 92.84
68
68
  },
69
- "gitHead": "68fa208710c778303d4ee40649b6009dd9ed33b1"
69
+ "gitHead": "74b26099a7480a8122df808011fef9a5a2de5428"
70
70
  }
package/src/typeGuards.js CHANGED
@@ -13,8 +13,8 @@ export const StorageNodeShape = M.remotable('StorageNode');
13
13
  export const UnguardedHelperI = M.interface(
14
14
  'helper',
15
15
  {},
16
- // not exposed so sloppy okay
17
- { sloppy: true },
16
+ // not exposed so using `defaultGuards` is fine.
17
+ { defaultGuards: 'passable' },
18
18
  );
19
19
 
20
20
  /**