New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@agoric/base-zone

Package Overview
Dependencies
Maintainers
0
Versions
1035
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@agoric/base-zone - npm Package Compare versions

Comparing version 0.1.1-dev-8edf902.0 to 0.1.1-dev-8ef3fde.0

tsconfig.build.tsbuildinfo

27

package.json
{
"name": "@agoric/base-zone",
"version": "0.1.1-dev-8edf902.0+8edf902",
"version": "0.1.1-dev-8ef3fde.0+8ef3fde",
"description": "Allocation zone abstraction library and heap implementation",

@@ -11,5 +11,5 @@ "type": "module",

"prepack": "tsc --build tsconfig.build.json",
"postpack": "git clean -f '*.d.ts*'",
"postpack": "git clean -f '*.d.ts*' '*.tsbuildinfo'",
"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,12 +31,13 @@ "lint-fix": "yarn lint:eslint --fix",

"dependencies": {
"@agoric/store": "0.9.3-dev-8edf902.0+8edf902",
"@endo/common": "^1.2.2",
"@endo/exo": "^1.5.0",
"@endo/far": "^1.1.2",
"@endo/pass-style": "^1.4.0",
"@endo/patterns": "^1.4.0"
"@agoric/store": "0.9.3-dev-8ef3fde.0+8ef3fde",
"@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.2",
"@endo/ses-ava": "^1.2.2",
"@endo/init": "^1.1.8",
"@endo/ses-ava": "^1.2.9",
"ava": "^5.3.0"

@@ -61,5 +62,5 @@ },

"typeCoverage": {
"atLeast": 91.11
"atLeast": 91.4
},
"gitHead": "8edf90288c8a7b248ec4961d342063e2b8c52303"
"gitHead": "8ef3fde4fbbca626c84b31c1d65ad676942c9e20"
}

@@ -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: unknown[]) => 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
// @ts-check
const { Fail } = assert;
import { Fail } from '@endo/errors';

@@ -38,3 +38,3 @@ /** @param {string} label */

*
* @template {(key: string, ...rest: unknown[]) => any} T
* @template {(key: string, ...rest: any[]) => any} T
* @param {T} provider

@@ -41,0 +41,0 @@ * @param {(label: string) => string[]} [labelToKeys]

@@ -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;

@@ -0,6 +1,5 @@

import { Fail, q } from '@endo/errors';
import { fromUniqueEntries } from '@endo/common/from-unique-entries.js';
import { M } from '@endo/patterns';
import { fromUniqueEntries } from '@endo/common/from-unique-entries.js';
const { Fail, quote: q } = assert;
/** @import {Amplify} from '@endo/exo'; */

@@ -7,0 +6,0 @@

@@ -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>(

// @ts-check
import { Fail } from '@endo/errors';
import { M } from '@endo/patterns';
import { E } from '@endo/far';
const { Fail } = assert;
const { apply } = Reflect;

@@ -8,0 +7,0 @@

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc