@agoric/vat-data 0.5.3-u17.1 → 0.5.3-u18.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/CHANGELOG.md +2 -2
- package/package.json +11 -12
- package/src/exo-utils.js +4 -1
- package/src/index.test-d.ts +1 -2
package/CHANGELOG.md
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
-
### [0.5.3-
|
|
6
|
+
### [0.5.3-u18.1](https://github.com/Agoric/agoric-sdk/compare/@agoric/vat-data@0.5.3-u18.0...@agoric/vat-data@0.5.3-u18.1) (2024-12-24)
|
|
7
7
|
|
|
8
8
|
**Note:** Version bump only for package @agoric/vat-data
|
|
9
9
|
|
|
@@ -11,7 +11,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
11
11
|
|
|
12
12
|
|
|
13
13
|
|
|
14
|
-
### [0.5.3-
|
|
14
|
+
### [0.5.3-u18.0](https://github.com/Agoric/agoric-sdk/compare/@agoric/vat-data@0.5.2...@agoric/vat-data@0.5.3-u18.0) (2024-10-31)
|
|
15
15
|
|
|
16
16
|
|
|
17
17
|
### Features
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@agoric/vat-data",
|
|
3
|
-
"version": "0.5.3-
|
|
3
|
+
"version": "0.5.3-u18.1",
|
|
4
4
|
"description": "Safe access to VatData global",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"repository": "https://github.com/Agoric/agoric-sdk",
|
|
@@ -8,7 +8,6 @@
|
|
|
8
8
|
"scripts": {
|
|
9
9
|
"build": "exit 0",
|
|
10
10
|
"test": "ava",
|
|
11
|
-
"test:c8": "exit 0",
|
|
12
11
|
"test:xs": "exit 0",
|
|
13
12
|
"lint-fix": "yarn lint:eslint --fix",
|
|
14
13
|
"lint": "run-s --continue-on-error lint:*",
|
|
@@ -19,17 +18,17 @@
|
|
|
19
18
|
"author": "Agoric",
|
|
20
19
|
"license": "Apache-2.0",
|
|
21
20
|
"dependencies": {
|
|
22
|
-
"@agoric/base-zone": "^0.1.1-
|
|
23
|
-
"@agoric/store": "^0.9.3-
|
|
24
|
-
"@agoric/swingset-liveslots": "^0.10.3-
|
|
25
|
-
"@endo/errors": "^1.2.
|
|
26
|
-
"@endo/exo": "^1.5.
|
|
27
|
-
"@endo/patterns": "^1.4.
|
|
21
|
+
"@agoric/base-zone": "^0.1.1-u18.1",
|
|
22
|
+
"@agoric/store": "^0.9.3-u18.1",
|
|
23
|
+
"@agoric/swingset-liveslots": "^0.10.3-u18.1",
|
|
24
|
+
"@endo/errors": "^1.2.8",
|
|
25
|
+
"@endo/exo": "^1.5.7",
|
|
26
|
+
"@endo/patterns": "^1.4.7"
|
|
28
27
|
},
|
|
29
28
|
"devDependencies": {
|
|
30
|
-
"@endo/far": "^1.1.
|
|
31
|
-
"@endo/init": "^1.1.
|
|
32
|
-
"@endo/ses-ava": "^1.2.
|
|
29
|
+
"@endo/far": "^1.1.9",
|
|
30
|
+
"@endo/init": "^1.1.7",
|
|
31
|
+
"@endo/ses-ava": "^1.2.8",
|
|
33
32
|
"ava": "^5.3.0",
|
|
34
33
|
"tsd": "^0.31.1"
|
|
35
34
|
},
|
|
@@ -50,5 +49,5 @@
|
|
|
50
49
|
"typeCoverage": {
|
|
51
50
|
"atLeast": 99.33
|
|
52
51
|
},
|
|
53
|
-
"gitHead": "
|
|
52
|
+
"gitHead": "f8c45b8a2e29a51522a81a6692af25b2d7f6b50f"
|
|
54
53
|
}
|
package/src/exo-utils.js
CHANGED
|
@@ -289,7 +289,10 @@ export const makeExoUtils = VatData => {
|
|
|
289
289
|
* @param {Baggage} baggage
|
|
290
290
|
* @param {string} kindName
|
|
291
291
|
* @param {InterfaceGuard | undefined} interfaceGuard
|
|
292
|
-
* @param {M
|
|
292
|
+
* @param {M &
|
|
293
|
+
* ThisType<{
|
|
294
|
+
* self: RemotableObject & M;
|
|
295
|
+
* }>} methods
|
|
293
296
|
* @param {DefineKindOptions<{ self: M }>} [options]
|
|
294
297
|
* @returns {import('@endo/exo').Guarded<M>}
|
|
295
298
|
*/
|
package/src/index.test-d.ts
CHANGED
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
/* eslint-disable no-use-before-define */
|
|
2
1
|
import { expectType } from 'tsd';
|
|
3
2
|
import type {
|
|
4
3
|
KindFacets,
|
|
@@ -6,7 +5,7 @@ import type {
|
|
|
6
5
|
KindFacet,
|
|
7
6
|
FunctionsPlusContext,
|
|
8
7
|
} from '@agoric/swingset-liveslots';
|
|
9
|
-
import { VirtualObjectManager } from '@agoric/swingset-liveslots/src/virtualObjectManager.js';
|
|
8
|
+
import type { VirtualObjectManager } from '@agoric/swingset-liveslots/src/virtualObjectManager.js';
|
|
10
9
|
import {
|
|
11
10
|
defineKind,
|
|
12
11
|
defineKindMulti,
|