@agoric/wallet-backend 0.14.4-dev-f1638f9.0 → 0.14.4-dev-fa844b5.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/wallet-backend",
3
- "version": "0.14.4-dev-f1638f9.0+f1638f9",
3
+ "version": "0.14.4-dev-fa844b5.0+fa844b5",
4
4
  "description": "Wallet backend",
5
5
  "type": "module",
6
6
  "scripts": {
@@ -14,24 +14,24 @@
14
14
  "lint:eslint": "eslint ."
15
15
  },
16
16
  "devDependencies": {
17
- "@agoric/vats": "0.15.2-dev-f1638f9.0+f1638f9",
17
+ "@agoric/vats": "0.15.2-dev-fa844b5.0+fa844b5",
18
18
  "@endo/bundle-source": "^3.2.1",
19
19
  "@endo/far": "^1.1.0",
20
20
  "@endo/init": "^1.1.0",
21
21
  "ava": "^5.3.0"
22
22
  },
23
23
  "dependencies": {
24
- "@agoric/assert": "0.6.1-dev-f1638f9.0+f1638f9",
25
- "@agoric/cache": "0.3.3-dev-f1638f9.0+f1638f9",
26
- "@agoric/ertp": "0.16.3-dev-f1638f9.0+f1638f9",
27
- "@agoric/internal": "0.3.3-dev-f1638f9.0+f1638f9",
28
- "@agoric/notifier": "0.6.3-dev-f1638f9.0+f1638f9",
29
- "@agoric/smart-wallet": "0.5.4-dev-f1638f9.0+f1638f9",
30
- "@agoric/store": "0.9.3-dev-f1638f9.0+f1638f9",
31
- "@agoric/time": "0.3.3-dev-f1638f9.0+f1638f9",
32
- "@agoric/vat-data": "0.5.3-dev-f1638f9.0+f1638f9",
33
- "@agoric/zoe": "0.26.3-dev-f1638f9.0+f1638f9",
34
- "@agoric/zone": "0.2.3-dev-f1638f9.0+f1638f9",
24
+ "@agoric/assert": "0.6.1-dev-fa844b5.0+fa844b5",
25
+ "@agoric/cache": "0.3.3-dev-fa844b5.0+fa844b5",
26
+ "@agoric/ertp": "0.16.3-dev-fa844b5.0+fa844b5",
27
+ "@agoric/internal": "0.3.3-dev-fa844b5.0+fa844b5",
28
+ "@agoric/notifier": "0.6.3-dev-fa844b5.0+fa844b5",
29
+ "@agoric/smart-wallet": "0.5.4-dev-fa844b5.0+fa844b5",
30
+ "@agoric/store": "0.9.3-dev-fa844b5.0+fa844b5",
31
+ "@agoric/time": "0.3.3-dev-fa844b5.0+fa844b5",
32
+ "@agoric/vat-data": "0.5.3-dev-fa844b5.0+fa844b5",
33
+ "@agoric/zoe": "0.26.3-dev-fa844b5.0+fa844b5",
34
+ "@agoric/zone": "0.2.3-dev-fa844b5.0+fa844b5",
35
35
  "@endo/eventual-send": "^1.2.0",
36
36
  "@endo/marshal": "^1.4.0",
37
37
  "@endo/nat": "^5.0.5",
@@ -65,5 +65,5 @@
65
65
  "typeCoverage": {
66
66
  "atLeast": 0
67
67
  },
68
- "gitHead": "f1638f95424a0f3851e6e1d880c2a38dd14eca3d"
68
+ "gitHead": "fa844b51a10ab02af61af19207c164c99c2d8d8c"
69
69
  }
@@ -15,7 +15,7 @@
15
15
 
16
16
  /**
17
17
  * @typedef {object} PurseActions
18
- * @property {(receiverP: ERef<{ receive: (payment: Payment) => void }>, valueToSend: AmountValue) => Promise<void>} send
18
+ * @property {(receiverP: ERef<{ receive: (payment: Payment) => void }>, valueToSend: import('@agoric/ertp/exported.js').AmountValue) => Promise<void>} send
19
19
  * @property {(payment: Payment) => Promise<Amount>} receive
20
20
  * @property {(payment: Payment, amount?: Amount) => Promise<Amount>} deposit
21
21
  */
@@ -82,7 +82,7 @@
82
82
  * @property {string} [issuerBoardId]
83
83
  *
84
84
  * @typedef {object} PaymentActions
85
- * @property {(purseOrPetname?: (Purse | Petname)) => Promise<AmountValue>} deposit
85
+ * @property {(purseOrPetname?: (Purse | Petname)) => Promise<import('@agoric/ertp/exported.js').AmountValue>} deposit
86
86
  * @property {() => Promise<boolean>} refresh
87
87
  * @property {() => Promise<boolean>} getAmountOf
88
88
  */