@agoric/zoe 0.26.3-dev-accf269.0 → 0.26.3-dev-ad14428.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/zoe",
3
- "version": "0.26.3-dev-accf269.0+accf269",
3
+ "version": "0.26.3-dev-ad14428.0+ad14428",
4
4
  "description": "Zoe: the Smart Contract Framework for Offer Enforcement",
5
5
  "type": "module",
6
6
  "main": "./src/zoeService/zoe.js",
@@ -43,17 +43,17 @@
43
43
  },
44
44
  "homepage": "https://github.com/Agoric/agoric-sdk#readme",
45
45
  "dependencies": {
46
- "@agoric/assert": "0.6.1-dev-accf269.0+accf269",
47
- "@agoric/base-zone": "0.1.1-dev-accf269.0+accf269",
48
- "@agoric/ertp": "0.16.3-dev-accf269.0+accf269",
49
- "@agoric/internal": "0.3.3-dev-accf269.0+accf269",
50
- "@agoric/notifier": "0.6.3-dev-accf269.0+accf269",
51
- "@agoric/store": "0.9.3-dev-accf269.0+accf269",
52
- "@agoric/swingset-liveslots": "0.10.3-dev-accf269.0+accf269",
53
- "@agoric/swingset-vat": "0.32.3-dev-accf269.0+accf269",
54
- "@agoric/time": "0.3.3-dev-accf269.0+accf269",
55
- "@agoric/vat-data": "0.5.3-dev-accf269.0+accf269",
56
- "@agoric/zone": "0.2.3-dev-accf269.0+accf269",
46
+ "@agoric/assert": "0.6.1-dev-ad14428.0+ad14428",
47
+ "@agoric/base-zone": "0.1.1-dev-ad14428.0+ad14428",
48
+ "@agoric/ertp": "0.16.3-dev-ad14428.0+ad14428",
49
+ "@agoric/internal": "0.3.3-dev-ad14428.0+ad14428",
50
+ "@agoric/notifier": "0.6.3-dev-ad14428.0+ad14428",
51
+ "@agoric/store": "0.9.3-dev-ad14428.0+ad14428",
52
+ "@agoric/swingset-liveslots": "0.10.3-dev-ad14428.0+ad14428",
53
+ "@agoric/swingset-vat": "0.32.3-dev-ad14428.0+ad14428",
54
+ "@agoric/time": "0.3.3-dev-ad14428.0+ad14428",
55
+ "@agoric/vat-data": "0.5.3-dev-ad14428.0+ad14428",
56
+ "@agoric/zone": "0.2.3-dev-ad14428.0+ad14428",
57
57
  "@endo/bundle-source": "^3.1.0",
58
58
  "@endo/captp": "^4.0.4",
59
59
  "@endo/common": "^1.1.0",
@@ -67,7 +67,7 @@
67
67
  "yargs-parser": "^21.1.1"
68
68
  },
69
69
  "devDependencies": {
70
- "@agoric/kmarshal": "0.1.1-dev-accf269.0+accf269",
70
+ "@agoric/kmarshal": "0.1.1-dev-ad14428.0+ad14428",
71
71
  "@endo/init": "^1.0.4",
72
72
  "ava": "^5.3.0",
73
73
  "c8": "^9.1.0",
@@ -140,5 +140,5 @@
140
140
  "typeCoverage": {
141
141
  "atLeast": 84.73
142
142
  },
143
- "gitHead": "accf269881172476c07506de498adb204637884b"
143
+ "gitHead": "ad1442897e5b48ca8fe7f647c90464472ab8b373"
144
144
  }
@@ -18,7 +18,7 @@ const TransferProposalShape = M.splitRecord({
18
18
  */
19
19
 
20
20
  /**
21
- * @template {any} [U=any]
21
+ * @template {(string | symbol)[]} MN Method names
22
22
  * @param {import('@agoric/base-zone').Zone} zone
23
23
  * @param {MakeInvitation} makeInvitation
24
24
  * A function with the same behavior as `zcf.makeInvitation`.
@@ -30,11 +30,11 @@ const TransferProposalShape = M.splitRecord({
30
30
  * See ownable-counter.js for the canonical example.
31
31
  * @param {string} uKindName
32
32
  * The `kindName` of the underlying exo class
33
- * @param {(string|symbol)[]} uMethodNames
33
+ * @param {MN} uMethodNames
34
34
  * The method names of the underlying exo class that should be represented
35
35
  * by transparently-forwarding methods of the wrapping ownable object.
36
36
  * @param {OwnableOptions} [options]
37
- * @returns {(underlying: U) => U}
37
+ * @returns {<U>(underlying: U) => Pick<U, MN[number]> & {makeTransferInvitation: () => Invitation}}
38
38
  */
39
39
  export const prepareOwnable = (
40
40
  zone,