@agoric/swingset-liveslots 0.10.3-dev-ff34bdf.0 → 0.10.3-dev-c4e4693.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/swingset-liveslots",
3
- "version": "0.10.3-dev-ff34bdf.0+ff34bdf",
3
+ "version": "0.10.3-dev-c4e4693.0+c4e4693",
4
4
  "description": "SwingSet ocap support layer",
5
5
  "type": "module",
6
6
  "main": "src/index.js",
@@ -17,9 +17,9 @@
17
17
  "lint:eslint": "eslint ."
18
18
  },
19
19
  "dependencies": {
20
- "@agoric/assert": "0.6.1-dev-ff34bdf.0+ff34bdf",
21
- "@agoric/internal": "0.3.3-dev-ff34bdf.0+ff34bdf",
22
- "@agoric/store": "0.9.3-dev-ff34bdf.0+ff34bdf",
20
+ "@agoric/assert": "0.6.1-dev-c4e4693.0+c4e4693",
21
+ "@agoric/internal": "0.3.3-dev-c4e4693.0+c4e4693",
22
+ "@agoric/store": "0.9.3-dev-c4e4693.0+c4e4693",
23
23
  "@endo/eventual-send": "^0.17.3",
24
24
  "@endo/exo": "^0.2.3",
25
25
  "@endo/far": "^0.2.19",
@@ -60,5 +60,5 @@
60
60
  "publishConfig": {
61
61
  "access": "public"
62
62
  },
63
- "gitHead": "ff34bdfa02979097e93c09badddf53547cd8d721"
63
+ "gitHead": "c4e469386a2a8c813182dc84cc63c8a660d22ecc"
64
64
  }
@@ -17,7 +17,10 @@ import type {
17
17
 
18
18
  export type { MapStore, Pattern };
19
19
 
20
- export type Baggage = MapStore<string, unknown>;
20
+ // This needs `any` values. If they were `unknown`, code that uses Baggage
21
+ // would need explicit runtime checks or casts for every fetch, which is
22
+ // onerous.
23
+ export type Baggage = MapStore<string, any>;
21
24
 
22
25
  type Tail<T extends any[]> = T extends [head: any, ...rest: infer Rest]
23
26
  ? Rest