@agoric/wallet-backend 0.14.4-dev-37d3a13.0.37d3a13 → 0.14.4-dev-503ac8b.0.503ac8b

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-37d3a13.0.37d3a13",
3
+ "version": "0.14.4-dev-503ac8b.0.503ac8b",
4
4
  "description": "Wallet backend",
5
5
  "type": "module",
6
6
  "scripts": {
@@ -14,23 +14,23 @@
14
14
  "lint:eslint": "yarn run -T eslint ."
15
15
  },
16
16
  "devDependencies": {
17
- "@agoric/vats": "0.15.2-dev-37d3a13.0.37d3a13",
17
+ "@agoric/vats": "0.15.2-dev-503ac8b.0.503ac8b",
18
18
  "@endo/bundle-source": "^4.1.2",
19
19
  "@endo/far": "^1.1.14",
20
20
  "@endo/init": "^1.1.12",
21
21
  "ava": "^6.4.1"
22
22
  },
23
23
  "dependencies": {
24
- "@agoric/cache": "0.3.3-dev-37d3a13.0.37d3a13",
25
- "@agoric/ertp": "0.16.3-dev-37d3a13.0.37d3a13",
26
- "@agoric/internal": "0.3.3-dev-37d3a13.0.37d3a13",
27
- "@agoric/notifier": "0.6.3-dev-37d3a13.0.37d3a13",
28
- "@agoric/smart-wallet": "0.5.4-dev-37d3a13.0.37d3a13",
29
- "@agoric/store": "0.9.3-dev-37d3a13.0.37d3a13",
30
- "@agoric/time": "0.3.3-dev-37d3a13.0.37d3a13",
31
- "@agoric/vat-data": "0.5.3-dev-37d3a13.0.37d3a13",
32
- "@agoric/zoe": "0.26.3-dev-37d3a13.0.37d3a13",
33
- "@agoric/zone": "0.2.3-dev-37d3a13.0.37d3a13",
24
+ "@agoric/cache": "0.3.3-dev-503ac8b.0.503ac8b",
25
+ "@agoric/ertp": "0.16.3-dev-503ac8b.0.503ac8b",
26
+ "@agoric/internal": "0.3.3-dev-503ac8b.0.503ac8b",
27
+ "@agoric/notifier": "0.6.3-dev-503ac8b.0.503ac8b",
28
+ "@agoric/smart-wallet": "0.5.4-dev-503ac8b.0.503ac8b",
29
+ "@agoric/store": "0.9.3-dev-503ac8b.0.503ac8b",
30
+ "@agoric/time": "0.3.3-dev-503ac8b.0.503ac8b",
31
+ "@agoric/vat-data": "0.5.3-dev-503ac8b.0.503ac8b",
32
+ "@agoric/zoe": "0.26.3-dev-503ac8b.0.503ac8b",
33
+ "@agoric/zone": "0.2.3-dev-503ac8b.0.503ac8b",
34
34
  "@endo/errors": "^1.2.13",
35
35
  "@endo/eventual-send": "^1.3.4",
36
36
  "@endo/marshal": "^1.8.0",
@@ -70,5 +70,5 @@
70
70
  "engines": {
71
71
  "node": "^20.9 || ^22.11"
72
72
  },
73
- "gitHead": "37d3a131d05b62f1e1353b69cf49f599c96011cc"
73
+ "gitHead": "503ac8b7585b631d47e3de876b5621ef7ce7d940"
74
74
  }
@@ -1,7 +1,7 @@
1
1
  // @ts-check
2
2
 
3
3
  /**
4
- * @import {PursesJSONState, RecordMetadata} from './types-ambient.js';
4
+ * @import {PursesJSONState, RecordMetadata} from './types.js';
5
5
  * @import {ERef} from '@agoric/vow';
6
6
  * @import {LegacyWeakMap} from '@agoric/store';
7
7
  * @import {WeakMapStore} from '@agoric/store';
@@ -7,7 +7,7 @@ import { makeScalarWeakMapStore } from '@agoric/store';
7
7
 
8
8
  /**
9
9
  * @import {ZoeIssuerRecord} from '@agoric/zoe';
10
- * @import {IssuerTable} from './types-ambient.js';
10
+ * @import {IssuerTable} from './types.js';
11
11
  * @import {WeakMapStore} from '@agoric/store';
12
12
  * @import {Brand} from '@agoric/ertp';
13
13
  * @import {Issuer} from '@agoric/ertp';
package/src/lib-wallet.js CHANGED
@@ -47,7 +47,7 @@ import { makePaymentActions } from './actions.js';
47
47
  * @import {Handle, UserSeat, ZoeService} from '@agoric/zoe';
48
48
  * @import {Purse} from '@agoric/ertp';
49
49
  * @import {BrandRecord, Contact, DappRecord, Mapping, PaymentRecord, PursesFullState} from './internal-types.js';
50
- * @import {InstallationManager, InstanceManager, IssuerManager, OfferState, PursesJSONState, RecordMetadata} from './types-ambient.js';
50
+ * @import {InstallationManager, InstanceManager, IssuerManager, OfferState, PursesJSONState, RecordMetadata} from './types.js';
51
51
  * @import {ERef} from '@agoric/vow';
52
52
  * @import {Brand} from '@agoric/ertp';
53
53
  * @import {Instance} from '@agoric/zoe/src/zoeService/utils.js';
@@ -1,5 +1,4 @@
1
1
  // @ts-check
2
- // @file @deprecated, not ambient anymore
3
2
 
4
3
  /**
5
4
  * @import {Coordinator} from '@agoric/cache';
package/src/wallet.js CHANGED
@@ -21,7 +21,7 @@ import { makeTimerDeviceDateNow, makeTimerServiceDateNow } from './date-now.js';
21
21
  /**
22
22
  * @import {Petname} from '@agoric/deploy-script-support/src/externalTypes.js';
23
23
  * @import {WalletAdminFacet} from './internal-types.js';
24
- * @import {OfferState, PursesJSONState, WalletAdmin, WalletBridge} from './types-ambient.js';
24
+ * @import {OfferState, PursesJSONState, WalletAdmin, WalletBridge} from './types.js';
25
25
  * @import {ERef} from '@agoric/vow';
26
26
  * @import {StorageNode} from '@agoric/internal/src/lib-chainStorage.js';
27
27
  * @import {ZoeService} from '@agoric/zoe';