@agoric/smart-wallet 0.5.4-u20.0 → 0.5.4-u21.0.1
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 +18 -18
- package/src/types.d.ts +2 -2
- package/src/types.d.ts.map +1 -1
- package/src/types.ts +3 -4
package/package.json
CHANGED
|
@@ -1,25 +1,25 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@agoric/smart-wallet",
|
|
3
|
-
"version": "0.5.4-
|
|
3
|
+
"version": "0.5.4-u21.0.1",
|
|
4
4
|
"description": "Wallet contract",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "src/index.js",
|
|
7
7
|
"scripts": {
|
|
8
8
|
"build": "yarn build:bundles",
|
|
9
9
|
"build:bundles": "node ./scripts/build-bundles.js",
|
|
10
|
-
"prepack": "tsc --build tsconfig.build.json",
|
|
10
|
+
"prepack": "yarn run -T tsc --build tsconfig.build.json",
|
|
11
11
|
"postpack": "git clean -f '*.d.ts*' '*.tsbuildinfo'",
|
|
12
12
|
"test": "ava",
|
|
13
13
|
"test:xs": "exit 0",
|
|
14
|
-
"lint": "run-s --continue-on-error lint:*",
|
|
14
|
+
"lint": "yarn run -T run-s --continue-on-error 'lint:*'",
|
|
15
15
|
"lint-fix": "yarn lint:eslint --fix",
|
|
16
|
-
"lint:types": "tsc",
|
|
17
|
-
"lint:eslint": "eslint ."
|
|
16
|
+
"lint:types": "yarn run -T tsc",
|
|
17
|
+
"lint:eslint": "yarn run -T eslint ."
|
|
18
18
|
},
|
|
19
19
|
"devDependencies": {
|
|
20
|
-
"@agoric/casting": "
|
|
21
|
-
"@agoric/cosmic-proto": "
|
|
22
|
-
"@agoric/swingset-vat": "
|
|
20
|
+
"@agoric/casting": "0.5.0-u21.0.1",
|
|
21
|
+
"@agoric/cosmic-proto": "0.5.0-u21.0.1",
|
|
22
|
+
"@agoric/swingset-vat": "0.33.0-u21.0.1",
|
|
23
23
|
"@endo/bundle-source": "^4.0.0",
|
|
24
24
|
"@endo/captp": "^4.4.5",
|
|
25
25
|
"@endo/init": "^1.1.9",
|
|
@@ -27,15 +27,15 @@
|
|
|
27
27
|
"import-meta-resolve": "^4.1.0"
|
|
28
28
|
},
|
|
29
29
|
"dependencies": {
|
|
30
|
-
"@agoric/ertp": "
|
|
31
|
-
"@agoric/internal": "
|
|
32
|
-
"@agoric/notifier": "
|
|
33
|
-
"@agoric/store": "
|
|
34
|
-
"@agoric/vat-data": "
|
|
35
|
-
"@agoric/vats": "
|
|
36
|
-
"@agoric/vow": "
|
|
37
|
-
"@agoric/zoe": "
|
|
38
|
-
"@agoric/zone": "
|
|
30
|
+
"@agoric/ertp": "0.16.3-u21.0.1",
|
|
31
|
+
"@agoric/internal": "0.4.0-u21.0.1",
|
|
32
|
+
"@agoric/notifier": "0.7.0-u21.0.1",
|
|
33
|
+
"@agoric/store": "0.9.3-u21.0.1",
|
|
34
|
+
"@agoric/vat-data": "0.5.3-u21.0.1",
|
|
35
|
+
"@agoric/vats": "0.16.0-u21.0.1",
|
|
36
|
+
"@agoric/vow": "0.2.0-u21.0.1",
|
|
37
|
+
"@agoric/zoe": "0.27.0-u21.0.1",
|
|
38
|
+
"@agoric/zone": "0.3.0-u21.0.1",
|
|
39
39
|
"@endo/errors": "^1.2.10",
|
|
40
40
|
"@endo/eventual-send": "^1.3.1",
|
|
41
41
|
"@endo/far": "^1.1.11",
|
|
@@ -72,5 +72,5 @@
|
|
|
72
72
|
"typeCoverage": {
|
|
73
73
|
"atLeast": 94.51
|
|
74
74
|
},
|
|
75
|
-
"gitHead": "
|
|
75
|
+
"gitHead": "16519b2de1eb2afda2b4ec866f55eadd4bb18223"
|
|
76
76
|
}
|
package/src/types.d.ts
CHANGED
|
@@ -4,10 +4,10 @@
|
|
|
4
4
|
* Similar to types.js but in TypeScript syntax because some types here need it.
|
|
5
5
|
* Downside is it can't reference any ambient types, which most of agoric-sdk type are presently.
|
|
6
6
|
*/
|
|
7
|
-
import type { AgoricNamesRemotes } from '@agoric/vats/tools/board-utils.js';
|
|
8
|
-
import type { PublicTopic } from '@agoric/zoe/src/contractSupport/topics.js';
|
|
9
7
|
import type { Payment } from '@agoric/ertp';
|
|
8
|
+
import type { AgoricNamesRemotes } from '@agoric/vats/tools/board-utils.js';
|
|
10
9
|
import type { InvitationDetails } from '@agoric/zoe';
|
|
10
|
+
import type { PublicTopic } from '@agoric/zoe/src/contractSupport/topics.js';
|
|
11
11
|
import type { OfferSpec } from './offers.js';
|
|
12
12
|
type Invitation = Payment<'set', InvitationDetails>;
|
|
13
13
|
/**
|
package/src/types.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["types.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["types.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAIH,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,cAAc,CAAC;AAC5C,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,mCAAmC,CAAC;AAC5E,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,aAAa,CAAC;AACrD,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,2CAA2C,CAAC;AAC7E,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,aAAa,CAAC;AAI7C,KAAK,UAAU,GAAG,OAAO,CAAC,KAAK,EAAE,iBAAiB,CAAC,CAAC;AAEpD;;;;;GAKG;AACH,MAAM,MAAM,OAAO,GAAG,MAAM,GAAG,MAAM,EAAE,CAAC;AAExC,MAAM,MAAM,gBAAgB,GAAG,MAAM,CACnC,MAAM,EACN,CAAC,GAAG,IAAI,EAAE,GAAG,EAAE,KAAK,OAAO,CAAC,UAAU,CAAC,CACxC,CAAC;AAEF,MAAM,MAAM,iBAAiB,GAAG,MAAM,CAAC,MAAM,EAAE,WAAW,CAAC,OAAO,CAAC,CAAC,CAAC;AAErE,MAAM,WAAW,qBAAqB;IACpC,gBAAgB,EAAE,gBAAgB,CAAC;IACnC,iBAAiB,EAAE,iBAAiB,CAAC;CACtC;AAED,MAAM,MAAM,IAAI,CAAC,CAAC,IAAI;IACpB,GAAG,EAAE,MAAM,CAAC,CAAC;IACb,GAAG,CAAC,GAAG,EAAE,CAAC,GAAG,IAAI,CAAC;CACnB,CAAC;AAEF;;;;GAIG;AACH,MAAM,MAAM,eAAe,GAAG;IAC5B,IAAI,EAAE,eAAe,CAAC;IACtB,2CAA2C;IAC3C,KAAK,EAAE,MAAM,CAAC;IACd,sCAAsC;IACtC,MAAM,EAAE,MAAM,CAAC;IACf,WAAW,EAAE,OAAO,CAAC;IACrB,SAAS,EAAE,OAAO,CAAC;CACpB,CAAC;AAEF;;;;GAIG;AACH,MAAM,MAAM,oBAAoB,GAAG;IACjC,IAAI,EAAE,qBAAqB,CAAC;IAC5B,2CAA2C;IAC3C,KAAK,EAAE,MAAM,CAAC;IACd,kCAAkC;IAClC,WAAW,EAAE,MAAM,CAAC;IACpB,WAAW,EAAE,OAAO,CAAC;IACrB,SAAS,EAAE,OAAO,CAAC;CACpB,CAAC;AAEF;;;;;;GAMG;AACH,MAAM,MAAM,eAAe,GAAG,eAAe,GAAG,oBAAoB,CAAC;AAErE;;GAEG;AACH,MAAM,MAAM,UAAU,GAAG,CACvB,WAAW,EAAE,kBAAkB,EAC/B,GAAG,IAAI,EAAE,GAAG,EAAE,KACX,SAAS,CAAC"}
|
package/src/types.ts
CHANGED
|
@@ -5,15 +5,14 @@
|
|
|
5
5
|
* Downside is it can't reference any ambient types, which most of agoric-sdk type are presently.
|
|
6
6
|
*/
|
|
7
7
|
|
|
8
|
+
// eslint-disable-next-line @typescript-eslint/no-unused-vars -- fails to notice the @see uses
|
|
8
9
|
import type { agoric } from '@agoric/cosmic-proto/agoric/bundle.js';
|
|
9
|
-
import type { AgoricNamesRemotes } from '@agoric/vats/tools/board-utils.js';
|
|
10
|
-
import type { PublicTopic } from '@agoric/zoe/src/contractSupport/topics.js';
|
|
11
10
|
import type { Payment } from '@agoric/ertp';
|
|
11
|
+
import type { AgoricNamesRemotes } from '@agoric/vats/tools/board-utils.js';
|
|
12
12
|
import type { InvitationDetails } from '@agoric/zoe';
|
|
13
|
+
import type { PublicTopic } from '@agoric/zoe/src/contractSupport/topics.js';
|
|
13
14
|
import type { OfferSpec } from './offers.js';
|
|
14
15
|
|
|
15
|
-
declare const CapDataShape: unique symbol;
|
|
16
|
-
|
|
17
16
|
// Match the type in Zoe, which can't be imported because it's ambient.
|
|
18
17
|
// This omits the parameters that aren't used in this module.
|
|
19
18
|
type Invitation = Payment<'set', InvitationDetails>;
|