@agoric/store 0.9.3-dev-776528e.0.776528e → 0.9.3-dev-cbcea8c.0.cbcea8c
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 +9 -9
- package/src/index.d.ts +1 -4
- package/src/index.d.ts.map +1 -1
- package/src/index.js +1 -10
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@agoric/store",
|
|
3
|
-
"version": "0.9.3-dev-
|
|
3
|
+
"version": "0.9.3-dev-cbcea8c.0.cbcea8c",
|
|
4
4
|
"description": "Wrapper for JavaScript map",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "src/index.js",
|
|
@@ -32,15 +32,15 @@
|
|
|
32
32
|
},
|
|
33
33
|
"homepage": "https://github.com/Agoric/agoric-sdk#readme",
|
|
34
34
|
"dependencies": {
|
|
35
|
-
"@endo/errors": "^1.
|
|
36
|
-
"@endo/exo": "^1.
|
|
37
|
-
"@endo/marshal": "^1.
|
|
38
|
-
"@endo/pass-style": "^1.
|
|
39
|
-
"@endo/patterns": "^1.
|
|
35
|
+
"@endo/errors": "^1.3.1",
|
|
36
|
+
"@endo/exo": "^1.7.0",
|
|
37
|
+
"@endo/marshal": "^1.10.0",
|
|
38
|
+
"@endo/pass-style": "^1.8.1",
|
|
39
|
+
"@endo/patterns": "^1.9.1"
|
|
40
40
|
},
|
|
41
41
|
"devDependencies": {
|
|
42
|
-
"@endo/init": "^1.1.
|
|
43
|
-
"@endo/ses-ava": "^1.
|
|
42
|
+
"@endo/init": "^1.1.13",
|
|
43
|
+
"@endo/ses-ava": "^1.4.2",
|
|
44
44
|
"ava": "^7.0.0"
|
|
45
45
|
},
|
|
46
46
|
"files": [
|
|
@@ -62,5 +62,5 @@
|
|
|
62
62
|
"typeCoverage": {
|
|
63
63
|
"atLeast": 89.98
|
|
64
64
|
},
|
|
65
|
-
"gitHead": "
|
|
65
|
+
"gitHead": "cbcea8c2415f2c9c4bc1ea9ff90730f2773bafaa"
|
|
66
66
|
}
|
package/src/index.d.ts
CHANGED
|
@@ -2,13 +2,10 @@ export { makeScalarWeakSetStore } from "./stores/scalarWeakSetStore.js";
|
|
|
2
2
|
export { makeScalarSetStore } from "./stores/scalarSetStore.js";
|
|
3
3
|
export { makeScalarWeakMapStore } from "./stores/scalarWeakMapStore.js";
|
|
4
4
|
export { makeScalarMapStore } from "./stores/scalarMapStore.js";
|
|
5
|
-
/** @type {MustMatch} */
|
|
6
|
-
export const mustMatch: MustMatch;
|
|
7
5
|
export { makeLegacyMap } from "./legacy/legacyMap.js";
|
|
8
6
|
export { makeLegacyWeakMap } from "./legacy/legacyWeakMap.js";
|
|
9
7
|
export * from "./types-index.js";
|
|
10
|
-
import type { MustMatch } from '@agoric/internal';
|
|
11
8
|
export { makeAtomicProvider, provideLazy } from "./stores/store-utils.js";
|
|
12
|
-
export { isKey, assertKey, assertScalarKey, makeCopySet, getCopySetKeys, makeCopyBag, makeCopyBagFromElements, getCopyBagEntries, makeCopyMap, getCopyMapEntries, coerceToElements, coerceToBagEntries, compareKeys, keyLT, keyLTE, keyEQ, keyGTE, keyGT, elementsIsSuperset, elementsIsDisjoint, elementsCompare, elementsUnion, elementsDisjointUnion, elementsIntersection, elementsDisjointSubtract, setIsSuperset, setIsDisjoint, setCompare, setUnion, setDisjointUnion, setIntersection, setDisjointSubtract, bagIsSuperbag, bagCompare, bagUnion, bagIntersection, bagDisjointSubtract, M, getRankCover, isPattern, assertPattern, matches, isCopySet, isCopyMap } from "@endo/patterns";
|
|
9
|
+
export { isKey, assertKey, assertScalarKey, makeCopySet, getCopySetKeys, makeCopyBag, makeCopyBagFromElements, getCopyBagEntries, makeCopyMap, getCopyMapEntries, coerceToElements, coerceToBagEntries, compareKeys, keyLT, keyLTE, keyEQ, keyGTE, keyGT, elementsIsSuperset, elementsIsDisjoint, elementsCompare, elementsUnion, elementsDisjointUnion, elementsIntersection, elementsDisjointSubtract, setIsSuperset, setIsDisjoint, setCompare, setUnion, setDisjointUnion, setIntersection, setDisjointSubtract, bagIsSuperbag, bagCompare, bagUnion, bagIntersection, bagDisjointSubtract, M, getRankCover, isPattern, assertPattern, matches, mustMatch, isCopySet, isCopyMap } from "@endo/patterns";
|
|
13
10
|
export { initEmpty, defineExoClass, defineExoClassKit, makeExo } from "@endo/exo";
|
|
14
11
|
//# sourceMappingURL=index.d.ts.map
|
package/src/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.js"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.js"],"names":[],"mappings":""}
|
package/src/index.js
CHANGED
|
@@ -1,8 +1,3 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* @import {MustMatch} from '@agoric/internal';
|
|
3
|
-
*/
|
|
4
|
-
import { mustMatch as typelessMustMatch } from '@endo/patterns';
|
|
5
|
-
|
|
6
1
|
export { makeScalarWeakSetStore } from './stores/scalarWeakSetStore.js';
|
|
7
2
|
export { makeScalarSetStore } from './stores/scalarSetStore.js';
|
|
8
3
|
export { makeScalarWeakMapStore } from './stores/scalarWeakMapStore.js';
|
|
@@ -56,15 +51,11 @@ export {
|
|
|
56
51
|
isPattern,
|
|
57
52
|
assertPattern,
|
|
58
53
|
matches,
|
|
54
|
+
mustMatch,
|
|
59
55
|
isCopySet,
|
|
60
56
|
isCopyMap,
|
|
61
57
|
} from '@endo/patterns';
|
|
62
58
|
|
|
63
|
-
// XXX @agoric/store should not depend on @agoric/internal
|
|
64
|
-
// TODO move to Endo
|
|
65
|
-
/** @type {MustMatch} */
|
|
66
|
-
export const mustMatch = typelessMustMatch;
|
|
67
|
-
|
|
68
59
|
export {
|
|
69
60
|
initEmpty,
|
|
70
61
|
defineExoClass,
|