@agoric/base-zone 0.1.1-dev-9986152.0 → 0.1.1-dev-aedfac6.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/base-zone",
3
- "version": "0.1.1-dev-9986152.0+9986152",
3
+ "version": "0.1.1-dev-aedfac6.0+aedfac6",
4
4
  "description": "Allocation zone abstraction library and heap implementation",
5
5
  "type": "module",
6
6
  "repository": "https://github.com/Agoric/agoric-sdk",
@@ -27,7 +27,7 @@
27
27
  "author": "Agoric",
28
28
  "license": "Apache-2.0",
29
29
  "dependencies": {
30
- "@agoric/store": "0.9.3-dev-9986152.0+9986152",
30
+ "@agoric/store": "0.9.3-dev-aedfac6.0+aedfac6",
31
31
  "@endo/common": "^1.2.4",
32
32
  "@endo/errors": "^1.2.4",
33
33
  "@endo/exo": "^1.5.2",
@@ -59,5 +59,5 @@
59
59
  "typeCoverage": {
60
60
  "atLeast": 91.4
61
61
  },
62
- "gitHead": "9986152969a5f7df2044710e99178dbfb51e5f37"
62
+ "gitHead": "aedfac6ea5fd276a4f64a327cad18d3633901547"
63
63
  }
@@ -1,5 +1,5 @@
1
1
  export function makeOnceKit(debugName: string, stores: import("./types.js").Stores, backingStore?: globalThis.MapStore<string, any> | undefined): {
2
2
  makeOnce: <V>(key: string, maker: (key: string) => V) => V;
3
- wrapProvider: <T extends (key: string, ...rest: unknown[]) => any>(provider: T, labelToKeys?: ((label: string) => string[]) | undefined) => T;
3
+ wrapProvider: <T extends (key: string, ...rest: any[]) => any>(provider: T, labelToKeys?: ((label: string) => string[]) | undefined) => T;
4
4
  };
5
5
  //# sourceMappingURL=make-once.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"make-once.d.ts","sourceRoot":"","sources":["make-once.js"],"names":[],"mappings":"AAYO,uCAJI,MAAM,UACN,OAAO,YAAY,EAAE,MAAM;eAyDvB,CAAC,OACH,MAAM,SACN,CAAC,GAAG,EAAE,MAAM,KAAK,CAAC,KAChB,CAAC;mBAhC0C,CAAC,SAA5C,CAAE,GAAG,EAAE,MAAM,EAAE,GAAG,IAAI,EAAE,OAAO,EAAE,KAAK,GAAI,YAC5C,CAAC,yBACO,MAAM,KAAK,MAAM,EAAE,kBACzB,CAAC;EA4Cf"}
1
+ {"version":3,"file":"make-once.d.ts","sourceRoot":"","sources":["make-once.js"],"names":[],"mappings":"AAYO,uCAJI,MAAM,UACN,OAAO,YAAY,EAAE,MAAM;eAyDvB,CAAC,OACH,MAAM,SACN,CAAC,GAAG,EAAE,MAAM,KAAK,CAAC,KAChB,CAAC;mBAhCsC,CAAC,SAAxC,CAAE,GAAG,EAAE,MAAM,EAAE,GAAG,IAAI,EAAE,GAAG,EAAE,KAAK,GAAI,YACxC,CAAC,yBACO,MAAM,KAAK,MAAM,EAAE,kBACzB,CAAC;EA4Cf"}
package/src/make-once.js CHANGED
@@ -35,7 +35,7 @@ export const makeOnceKit = (debugName, stores, backingStore = undefined) => {
35
35
  * Ensure the wrapped function is only called once per incarnation. It is
36
36
  * expected to update the backing store directly.
37
37
  *
38
- * @template {(key: string, ...rest: unknown[]) => any} T
38
+ * @template {(key: string, ...rest: any[]) => any} T
39
39
  * @param {T} provider
40
40
  * @param {(label: string) => string[]} [labelToKeys]
41
41
  * @returns {T}