@agoric/kmarshal 0.1.1-dev-d6fae11.0.d6fae11 → 0.1.1-dev-64cee5a.0.64cee5a

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.
Files changed (2) hide show
  1. package/package.json +2 -2
  2. package/src/kmarshal.js +2 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agoric/kmarshal",
3
- "version": "0.1.1-dev-d6fae11.0.d6fae11",
3
+ "version": "0.1.1-dev-64cee5a.0.64cee5a",
4
4
  "description": "Token-only marshaller for kernel and tests",
5
5
  "type": "module",
6
6
  "main": "./src/kmarshal.js",
@@ -42,5 +42,5 @@
42
42
  "engines": {
43
43
  "node": "^20.9 || ^22.11"
44
44
  },
45
- "gitHead": "d6fae11a6db28b1122089468183eccd4d47b83c9"
45
+ "gitHead": "64cee5ae5d1a3488a30ce042d6f3f561ac2a6e82"
46
46
  }
package/src/kmarshal.js CHANGED
@@ -4,6 +4,7 @@ import { makeMarshal } from '@endo/marshal';
4
4
 
5
5
  /**
6
6
  * @import {ConvertSlotToVal} from '@endo/marshal';
7
+ * @import {CapData} from '@endo/marshal';
7
8
  */
8
9
 
9
10
  // Simple wrapper for serializing and unserializing marshalled values inside the
@@ -96,7 +97,7 @@ const kmarshal = makeMarshal(krefOf, kslot, {
96
97
  export const kser = value => kmarshal.serialize(harden(value));
97
98
 
98
99
  /**
99
- * @param {import('@endo/marshal').CapData<string>} serializedValue
100
+ * @param {CapData<string>} serializedValue
100
101
  * @returns {any}
101
102
  */
102
103
  export const kunser = serializedValue => kmarshal.unserialize(serializedValue);