@agoric/swingset-liveslots 0.10.3-dev-0001c49.0 → 0.10.3-dev-a0953fe.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/README.md ADDED
@@ -0,0 +1,2 @@
1
+ # SwingSet Liveslots
2
+
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agoric/swingset-liveslots",
3
- "version": "0.10.3-dev-0001c49.0+0001c49",
3
+ "version": "0.10.3-dev-a0953fe.0+a0953fe",
4
4
  "description": "SwingSet ocap support layer",
5
5
  "type": "module",
6
6
  "main": "src/index.js",
@@ -17,9 +17,9 @@
17
17
  "lint:eslint": "eslint ."
18
18
  },
19
19
  "dependencies": {
20
- "@agoric/assert": "0.6.1-dev-0001c49.0+0001c49",
21
- "@agoric/internal": "0.3.3-dev-0001c49.0+0001c49",
22
- "@agoric/store": "0.9.3-dev-0001c49.0+0001c49",
20
+ "@agoric/assert": "0.6.1-dev-a0953fe.0+a0953fe",
21
+ "@agoric/internal": "0.3.3-dev-a0953fe.0+a0953fe",
22
+ "@agoric/store": "0.9.3-dev-a0953fe.0+a0953fe",
23
23
  "@endo/eventual-send": "^0.17.5",
24
24
  "@endo/exo": "^0.2.5",
25
25
  "@endo/far": "^0.2.21",
@@ -31,7 +31,7 @@
31
31
  "@endo/promise-kit": "^0.2.59"
32
32
  },
33
33
  "devDependencies": {
34
- "@agoric/kmarshal": "0.1.1-dev-0001c49.0+0001c49",
34
+ "@agoric/kmarshal": "0.1.1-dev-a0953fe.0+a0953fe",
35
35
  "ava": "^5.3.0"
36
36
  },
37
37
  "files": [
@@ -67,5 +67,5 @@
67
67
  "typeCoverage": {
68
68
  "atLeast": 71.48
69
69
  },
70
- "gitHead": "0001c4901ee1e256c46e7c1647a674330f63dc0c"
70
+ "gitHead": "a0953fe7d6d64fb37d426f69c087aa2d0a7ca4fe"
71
71
  }
package/src/message.js CHANGED
@@ -32,7 +32,7 @@ export function insistMessage(message) {
32
32
 
33
33
  /**
34
34
  * @param {unknown} vdo
35
- * @returns {asserts vdo is VatDeliveryObject}
35
+ * @returns {asserts vdo is import('./types').VatDeliveryObject}
36
36
  */
37
37
 
38
38
  export function insistVatDeliveryObject(vdo) {
@@ -114,7 +114,7 @@ export function insistVatDeliveryResult(vdr) {
114
114
 
115
115
  /**
116
116
  * @param {unknown} vso
117
- * @returns {asserts vso is VatSyscallObject}
117
+ * @returns {asserts vso is import('./types').VatSyscallObject}
118
118
  */
119
119
 
120
120
  export function insistVatSyscallObject(vso) {
@@ -194,7 +194,7 @@ export function insistVatSyscallObject(vso) {
194
194
 
195
195
  /**
196
196
  * @param {unknown} vsr
197
- * @returns {asserts vsr is VatSyscallResult}
197
+ * @returns {asserts vsr is import('./types').VatSyscallResult}
198
198
  */
199
199
 
200
200
  export function insistVatSyscallResult(vsr) {