@agoric/base-zone
Advanced tools
Comparing version 0.1.1-dev-c9ce088.0 to 0.1.1-dev-c9e286a.0
{ | ||
"name": "@agoric/base-zone", | ||
"version": "0.1.1-dev-c9ce088.0+c9ce088", | ||
"version": "0.1.1-dev-c9e286a.0+c9e286a", | ||
"description": "Allocation zone abstraction library and heap implementation", | ||
@@ -13,3 +13,3 @@ "type": "module", | ||
"test": "ava", | ||
"test:c8": "c8 $C8_OPTIONS ava --config=ava-nesm.config.js", | ||
"test:c8": "c8 --all $C8_OPTIONS ava", | ||
"test:xs": "exit 0", | ||
@@ -31,13 +31,13 @@ "lint-fix": "yarn lint:eslint --fix", | ||
"dependencies": { | ||
"@agoric/store": "0.9.3-dev-c9ce088.0+c9ce088", | ||
"@endo/common": "^1.2.5", | ||
"@endo/errors": "^1.2.5", | ||
"@endo/exo": "^1.5.3", | ||
"@endo/far": "^1.1.5", | ||
"@endo/pass-style": "^1.4.3", | ||
"@endo/patterns": "^1.4.3" | ||
"@agoric/store": "0.9.3-dev-c9e286a.0+c9e286a", | ||
"@endo/common": "^1.2.9", | ||
"@endo/errors": "^1.2.9", | ||
"@endo/exo": "^1.5.8", | ||
"@endo/far": "^1.1.10", | ||
"@endo/pass-style": "^1.4.8", | ||
"@endo/patterns": "^1.4.8" | ||
}, | ||
"devDependencies": { | ||
"@endo/init": "^1.1.4", | ||
"@endo/ses-ava": "^1.2.5", | ||
"@endo/init": "^1.1.8", | ||
"@endo/ses-ava": "^1.2.9", | ||
"ava": "^5.3.0" | ||
@@ -64,3 +64,3 @@ }, | ||
}, | ||
"gitHead": "c9ce08800ded20a0dc4039b64f470cafbbd96277" | ||
"gitHead": "c9e286aca7ed0f0dcfe78d5960ea04cc2cf54213" | ||
} |
@@ -1,2 +0,2 @@ | ||
export function makeHeapZone(baseLabel?: string | undefined): import("./types.js").Zone; | ||
export function makeHeapZone(baseLabel?: string): import("./types.js").Zone; | ||
//# sourceMappingURL=heap.d.ts.map |
@@ -1,5 +0,5 @@ | ||
export function makeOnceKit(debugName: string, stores: import("./types.js").Stores, backingStore?: globalThis.MapStore<string, any> | undefined): { | ||
export function makeOnceKit(debugName: string, stores: import("./types.js").Stores, backingStore?: import("@agoric/swingset-liveslots").MapStore<string, any>): { | ||
makeOnce: <V>(key: string, maker: (key: string) => V) => V; | ||
wrapProvider: <T extends (key: string, ...rest: any[]) => any>(provider: T, labelToKeys?: ((label: string) => string[]) | undefined) => T; | ||
wrapProvider: <T extends (key: string, ...rest: any[]) => any>(provider: T, labelToKeys?: (label: string) => string[]) => T; | ||
}; | ||
//# sourceMappingURL=make-once.d.ts.map |
@@ -1,2 +0,2 @@ | ||
export function prepareRevocableMakerKit<U = any>(zone: import("@agoric/base-zone").Zone, uKindName: string, uMethodNames: (string | symbol)[], options?: RevocableKitOptions<any> | undefined): RevocableMakerKit<U>; | ||
export function prepareRevocableMakerKit<U = any>(zone: import("@agoric/base-zone").Zone, uKindName: string, uMethodNames: (string | symbol)[], options?: RevocableKitOptions): RevocableMakerKit<U>; | ||
export type RevocableMakerKit<U = any> = { | ||
@@ -3,0 +3,0 @@ revoke: (revocable: U) => boolean; |
@@ -46,3 +46,3 @@ export type KeyCategories = "exoClass" | "exoClassKit" | "exo" | "store" | "zone"; | ||
*/ | ||
mapStore: (label: string, options?: StoreOptions) => MapStore<any, any>; | ||
mapStore: <K, V>(label: string, options?: StoreOptions) => MapStore<K, V>; | ||
/** | ||
@@ -49,0 +49,0 @@ * provide a Set-like store named `label` in the zone |
@@ -36,3 +36,3 @@ // eslint-disable-next-line no-unused-vars | ||
* @property {(specimen: unknown) => boolean} isStorable return true if the specimen can be stored in the zone, whether as exo-object state or in a store | ||
* @property {(label: string, options?: StoreOptions) => MapStore<any, any>} mapStore provide a Map-like store named `label` in the zone | ||
* @property {<K, V>(label: string, options?: StoreOptions) => MapStore<K, V>} mapStore provide a Map-like store named `label` in the zone | ||
* @property {<K>(label: string, options?: StoreOptions) => SetStore<K>} setStore provide a Set-like store named `label` in the zone | ||
@@ -39,0 +39,0 @@ * @property {<K, V>( |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Manifest confusion
Supply chain riskThis package has inconsistent metadata. This could be malicious or caused by an error when publishing the package.
Found 1 instance in 1 package
Manifest confusion
Supply chain riskThis package has inconsistent metadata. This could be malicious or caused by an error when publishing the package.
Found 1 instance in 1 package
49507
Updated@endo/common@^1.2.9
Updated@endo/errors@^1.2.9
Updated@endo/exo@^1.5.8
Updated@endo/far@^1.1.10
Updated@endo/pass-style@^1.4.8
Updated@endo/patterns@^1.4.8