Socket
Socket
Sign inDemoInstall

@xyo-network/boundwitness-model

Package Overview
Dependencies
Maintainers
5
Versions
701
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@xyo-network/boundwitness-model - npm Package Compare versions

Comparing version 2.109.1 to 2.110.0

2

dist/browser/BoundWitness/BoundWitness.d.ts
import { Address, Hash, Hex } from '@xylabs/hex';
import { EmptyObject } from '@xylabs/object';
import { Payload, Schema } from '@xyo-network/payload-model';
import { BoundWitnessSchema } from './BoundWitnessSchema';
import { BoundWitnessSchema } from './BoundWitnessSchema.js';
export type BoundWitnessFields = {

@@ -6,0 +6,0 @@ $meta: {

@@ -1,4 +0,4 @@

export * from './BoundWitness';
export * from './BoundWitnessJsonSchema';
export * from './BoundWitnessSchema';
export * from './BoundWitness.js';
export * from './BoundWitnessJsonSchema.js';
export * from './BoundWitnessSchema.js';
//# sourceMappingURL=index.d.ts.map

@@ -1,4 +0,4 @@

export * from './BoundWitness';
export * from './isBoundWitness';
export * from './QueryBoundWitness';
export * from './BoundWitness/index.js';
export * from './isBoundWitness.js';
export * from './QueryBoundWitness.js';
//# sourceMappingURL=index.d.ts.map

@@ -0,3 +1,6 @@

var __defProp = Object.defineProperty;
var __name = (target, value) => __defProp(target, "name", { value, configurable: true });
// src/BoundWitness/BoundWitnessJsonSchema.ts
var BoundWitnessJsonSchema = () => {
var BoundWitnessJsonSchema = /* @__PURE__ */ __name(() => {
return {

@@ -7,12 +10,41 @@ $id: "https://schemas.xyo.network/2.0/boundwitness",

properties: {
addresses: { items: { type: "string" }, type: "array" },
payload_hashes: { items: { type: "string" }, type: "array" },
payload_schemas: { items: { type: "string" }, type: "array" },
previous_hashes: { items: { nullable: true, type: "string" }, type: "array" },
schema: { type: "string" }
addresses: {
items: {
type: "string"
},
type: "array"
},
payload_hashes: {
items: {
type: "string"
},
type: "array"
},
payload_schemas: {
items: {
type: "string"
},
type: "array"
},
previous_hashes: {
items: {
nullable: true,
type: "string"
},
type: "array"
},
schema: {
type: "string"
}
},
required: ["addresses", "payload_hashes", "payload_schemas", "previous_hashes", "schema"],
required: [
"addresses",
"payload_hashes",
"payload_schemas",
"previous_hashes",
"schema"
],
type: "object"
};
};
}, "BoundWitnessJsonSchema");

@@ -24,6 +56,6 @@ // src/BoundWitness/BoundWitnessSchema.ts

import { isPayloadOfSchemaType, isPayloadOfSchemaTypeWithMeta, notPayloadOfSchemaType } from "@xyo-network/payload-model";
var isBoundWitness = (value) => isPayloadOfSchemaType(BoundWitnessSchema)(value);
var isBoundWitnessWithMeta = (value) => isPayloadOfSchemaTypeWithMeta(BoundWitnessSchema)(value);
var isBoundWitness = /* @__PURE__ */ __name((value) => isPayloadOfSchemaType(BoundWitnessSchema)(value), "isBoundWitness");
var isBoundWitnessWithMeta = /* @__PURE__ */ __name((value) => isPayloadOfSchemaTypeWithMeta(BoundWitnessSchema)(value), "isBoundWitnessWithMeta");
var notBoundWitness = notPayloadOfSchemaType(BoundWitnessSchema);
var asBoundWitness = (payload) => isBoundWitness(payload) ? payload : void 0;
var asBoundWitness = /* @__PURE__ */ __name((payload) => isBoundWitness(payload) ? payload : void 0, "asBoundWitness");
var isBoundWitnessPayload = isBoundWitness;

@@ -33,4 +65,4 @@

var QueryBoundWitnessSchema = BoundWitnessSchema;
var isQueryBoundWitness = (x) => isBoundWitness(x) && x?.query !== void 0;
var isQueryBoundWitnessWithMeta = (x) => isBoundWitness(x) && isBoundWitnessWithMeta(x) && x?.query !== void 0;
var isQueryBoundWitness = /* @__PURE__ */ __name((x) => isBoundWitness(x) && x?.query !== void 0, "isQueryBoundWitness");
var isQueryBoundWitnessWithMeta = /* @__PURE__ */ __name((x) => isBoundWitness(x) && isBoundWitnessWithMeta(x) && x?.query !== void 0, "isQueryBoundWitnessWithMeta");
export {

@@ -37,0 +69,0 @@ BoundWitnessJsonSchema,

import { WithMeta } from '@xyo-network/payload-model';
import { BoundWitness } from './BoundWitness';
import { BoundWitness } from './BoundWitness/index.js';
export declare const isBoundWitness: (value: unknown) => value is BoundWitness;
export declare const isBoundWitnessWithMeta: (value: unknown) => value is WithMeta<BoundWitness>;
export declare const notBoundWitness: (x?: unknown | null) => x is import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & import("./BoundWitness").BoundWitnessFields & {
export declare const notBoundWitness: (x?: unknown | null) => x is import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & import("./BoundWitness/BoundWitness.js").BoundWitnessFields & {
schema: "network.xyo.boundwitness";

@@ -10,3 +10,3 @@ };

schema: string;
}> = import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & import("./BoundWitness").BoundWitnessFields & {
}> = import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & import("./BoundWitness/BoundWitness.js").BoundWitnessFields & {
schema: "network.xyo.boundwitness";

@@ -13,0 +13,0 @@ }>(payload?: unknown) => T | undefined;

import { Hash } from '@xylabs/hex';
import { WithMeta } from '@xyo-network/payload-model';
import { BoundWitness, BoundWitnessSchema } from './BoundWitness';
import { BoundWitness, BoundWitnessSchema } from './BoundWitness/index.js';
export type QueryBoundWitnessSchema = BoundWitnessSchema;

@@ -5,0 +5,0 @@ export declare const QueryBoundWitnessSchema: QueryBoundWitnessSchema;

import { Address, Hash, Hex } from '@xylabs/hex';
import { EmptyObject } from '@xylabs/object';
import { Payload, Schema } from '@xyo-network/payload-model';
import { BoundWitnessSchema } from './BoundWitnessSchema';
import { BoundWitnessSchema } from './BoundWitnessSchema.js';
export type BoundWitnessFields = {

@@ -6,0 +6,0 @@ $meta: {

@@ -1,4 +0,4 @@

export * from './BoundWitness';
export * from './BoundWitnessJsonSchema';
export * from './BoundWitnessSchema';
export * from './BoundWitness.js';
export * from './BoundWitnessJsonSchema.js';
export * from './BoundWitnessSchema.js';
//# sourceMappingURL=index.d.ts.map

@@ -1,4 +0,4 @@

export * from './BoundWitness';
export * from './isBoundWitness';
export * from './QueryBoundWitness';
export * from './BoundWitness/index.js';
export * from './isBoundWitness.js';
export * from './QueryBoundWitness.js';
//# sourceMappingURL=index.d.ts.map

@@ -0,3 +1,6 @@

var __defProp = Object.defineProperty;
var __name = (target, value) => __defProp(target, "name", { value, configurable: true });
// src/BoundWitness/BoundWitnessJsonSchema.ts
var BoundWitnessJsonSchema = () => {
var BoundWitnessJsonSchema = /* @__PURE__ */ __name(() => {
return {

@@ -7,12 +10,41 @@ $id: "https://schemas.xyo.network/2.0/boundwitness",

properties: {
addresses: { items: { type: "string" }, type: "array" },
payload_hashes: { items: { type: "string" }, type: "array" },
payload_schemas: { items: { type: "string" }, type: "array" },
previous_hashes: { items: { nullable: true, type: "string" }, type: "array" },
schema: { type: "string" }
addresses: {
items: {
type: "string"
},
type: "array"
},
payload_hashes: {
items: {
type: "string"
},
type: "array"
},
payload_schemas: {
items: {
type: "string"
},
type: "array"
},
previous_hashes: {
items: {
nullable: true,
type: "string"
},
type: "array"
},
schema: {
type: "string"
}
},
required: ["addresses", "payload_hashes", "payload_schemas", "previous_hashes", "schema"],
required: [
"addresses",
"payload_hashes",
"payload_schemas",
"previous_hashes",
"schema"
],
type: "object"
};
};
}, "BoundWitnessJsonSchema");

@@ -24,6 +56,6 @@ // src/BoundWitness/BoundWitnessSchema.ts

import { isPayloadOfSchemaType, isPayloadOfSchemaTypeWithMeta, notPayloadOfSchemaType } from "@xyo-network/payload-model";
var isBoundWitness = (value) => isPayloadOfSchemaType(BoundWitnessSchema)(value);
var isBoundWitnessWithMeta = (value) => isPayloadOfSchemaTypeWithMeta(BoundWitnessSchema)(value);
var isBoundWitness = /* @__PURE__ */ __name((value) => isPayloadOfSchemaType(BoundWitnessSchema)(value), "isBoundWitness");
var isBoundWitnessWithMeta = /* @__PURE__ */ __name((value) => isPayloadOfSchemaTypeWithMeta(BoundWitnessSchema)(value), "isBoundWitnessWithMeta");
var notBoundWitness = notPayloadOfSchemaType(BoundWitnessSchema);
var asBoundWitness = (payload) => isBoundWitness(payload) ? payload : void 0;
var asBoundWitness = /* @__PURE__ */ __name((payload) => isBoundWitness(payload) ? payload : void 0, "asBoundWitness");
var isBoundWitnessPayload = isBoundWitness;

@@ -33,4 +65,4 @@

var QueryBoundWitnessSchema = BoundWitnessSchema;
var isQueryBoundWitness = (x) => isBoundWitness(x) && x?.query !== void 0;
var isQueryBoundWitnessWithMeta = (x) => isBoundWitness(x) && isBoundWitnessWithMeta(x) && x?.query !== void 0;
var isQueryBoundWitness = /* @__PURE__ */ __name((x) => isBoundWitness(x) && x?.query !== void 0, "isQueryBoundWitness");
var isQueryBoundWitnessWithMeta = /* @__PURE__ */ __name((x) => isBoundWitness(x) && isBoundWitnessWithMeta(x) && x?.query !== void 0, "isQueryBoundWitnessWithMeta");
export {

@@ -37,0 +69,0 @@ BoundWitnessJsonSchema,

import { WithMeta } from '@xyo-network/payload-model';
import { BoundWitness } from './BoundWitness';
import { BoundWitness } from './BoundWitness/index.js';
export declare const isBoundWitness: (value: unknown) => value is BoundWitness;
export declare const isBoundWitnessWithMeta: (value: unknown) => value is WithMeta<BoundWitness>;
export declare const notBoundWitness: (x?: unknown | null) => x is import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & import("./BoundWitness").BoundWitnessFields & {
export declare const notBoundWitness: (x?: unknown | null) => x is import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & import("./BoundWitness/BoundWitness.js").BoundWitnessFields & {
schema: "network.xyo.boundwitness";

@@ -10,3 +10,3 @@ };

schema: string;
}> = import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & import("./BoundWitness").BoundWitnessFields & {
}> = import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & import("./BoundWitness/BoundWitness.js").BoundWitnessFields & {
schema: "network.xyo.boundwitness";

@@ -13,0 +13,0 @@ }>(payload?: unknown) => T | undefined;

import { Hash } from '@xylabs/hex';
import { WithMeta } from '@xyo-network/payload-model';
import { BoundWitness, BoundWitnessSchema } from './BoundWitness';
import { BoundWitness, BoundWitnessSchema } from './BoundWitness/index.js';
export type QueryBoundWitnessSchema = BoundWitnessSchema;

@@ -5,0 +5,0 @@ export declare const QueryBoundWitnessSchema: QueryBoundWitnessSchema;

import { Address, Hash, Hex } from '@xylabs/hex';
import { EmptyObject } from '@xylabs/object';
import { Payload, Schema } from '@xyo-network/payload-model';
import { BoundWitnessSchema } from './BoundWitnessSchema';
import { BoundWitnessSchema } from './BoundWitnessSchema.js';
export type BoundWitnessFields = {

@@ -6,0 +6,0 @@ $meta: {

@@ -1,4 +0,4 @@

export * from './BoundWitness';
export * from './BoundWitnessJsonSchema';
export * from './BoundWitnessSchema';
export * from './BoundWitness.js';
export * from './BoundWitnessJsonSchema.js';
export * from './BoundWitnessSchema.js';
//# sourceMappingURL=index.d.ts.map

@@ -1,4 +0,4 @@

export * from './BoundWitness';
export * from './isBoundWitness';
export * from './QueryBoundWitness';
export * from './BoundWitness/index.js';
export * from './isBoundWitness.js';
export * from './QueryBoundWitness.js';
//# sourceMappingURL=index.d.ts.map

@@ -0,3 +1,6 @@

var __defProp = Object.defineProperty;
var __name = (target, value) => __defProp(target, "name", { value, configurable: true });
// src/BoundWitness/BoundWitnessJsonSchema.ts
var BoundWitnessJsonSchema = () => {
var BoundWitnessJsonSchema = /* @__PURE__ */ __name(() => {
return {

@@ -7,12 +10,41 @@ $id: "https://schemas.xyo.network/2.0/boundwitness",

properties: {
addresses: { items: { type: "string" }, type: "array" },
payload_hashes: { items: { type: "string" }, type: "array" },
payload_schemas: { items: { type: "string" }, type: "array" },
previous_hashes: { items: { nullable: true, type: "string" }, type: "array" },
schema: { type: "string" }
addresses: {
items: {
type: "string"
},
type: "array"
},
payload_hashes: {
items: {
type: "string"
},
type: "array"
},
payload_schemas: {
items: {
type: "string"
},
type: "array"
},
previous_hashes: {
items: {
nullable: true,
type: "string"
},
type: "array"
},
schema: {
type: "string"
}
},
required: ["addresses", "payload_hashes", "payload_schemas", "previous_hashes", "schema"],
required: [
"addresses",
"payload_hashes",
"payload_schemas",
"previous_hashes",
"schema"
],
type: "object"
};
};
}, "BoundWitnessJsonSchema");

@@ -24,6 +56,6 @@ // src/BoundWitness/BoundWitnessSchema.ts

import { isPayloadOfSchemaType, isPayloadOfSchemaTypeWithMeta, notPayloadOfSchemaType } from "@xyo-network/payload-model";
var isBoundWitness = (value) => isPayloadOfSchemaType(BoundWitnessSchema)(value);
var isBoundWitnessWithMeta = (value) => isPayloadOfSchemaTypeWithMeta(BoundWitnessSchema)(value);
var isBoundWitness = /* @__PURE__ */ __name((value) => isPayloadOfSchemaType(BoundWitnessSchema)(value), "isBoundWitness");
var isBoundWitnessWithMeta = /* @__PURE__ */ __name((value) => isPayloadOfSchemaTypeWithMeta(BoundWitnessSchema)(value), "isBoundWitnessWithMeta");
var notBoundWitness = notPayloadOfSchemaType(BoundWitnessSchema);
var asBoundWitness = (payload) => isBoundWitness(payload) ? payload : void 0;
var asBoundWitness = /* @__PURE__ */ __name((payload) => isBoundWitness(payload) ? payload : void 0, "asBoundWitness");
var isBoundWitnessPayload = isBoundWitness;

@@ -33,4 +65,4 @@

var QueryBoundWitnessSchema = BoundWitnessSchema;
var isQueryBoundWitness = (x) => isBoundWitness(x) && (x == null ? void 0 : x.query) !== void 0;
var isQueryBoundWitnessWithMeta = (x) => isBoundWitness(x) && isBoundWitnessWithMeta(x) && (x == null ? void 0 : x.query) !== void 0;
var isQueryBoundWitness = /* @__PURE__ */ __name((x) => isBoundWitness(x) && (x == null ? void 0 : x.query) !== void 0, "isQueryBoundWitness");
var isQueryBoundWitnessWithMeta = /* @__PURE__ */ __name((x) => isBoundWitness(x) && isBoundWitnessWithMeta(x) && (x == null ? void 0 : x.query) !== void 0, "isQueryBoundWitnessWithMeta");
export {

@@ -37,0 +69,0 @@ BoundWitnessJsonSchema,

import { WithMeta } from '@xyo-network/payload-model';
import { BoundWitness } from './BoundWitness';
import { BoundWitness } from './BoundWitness/index.js';
export declare const isBoundWitness: (value: unknown) => value is BoundWitness;
export declare const isBoundWitnessWithMeta: (value: unknown) => value is WithMeta<BoundWitness>;
export declare const notBoundWitness: (x?: unknown | null) => x is import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & import("./BoundWitness").BoundWitnessFields & {
export declare const notBoundWitness: (x?: unknown | null) => x is import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & import("./BoundWitness/BoundWitness.js").BoundWitnessFields & {
schema: "network.xyo.boundwitness";

@@ -10,3 +10,3 @@ };

schema: string;
}> = import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & import("./BoundWitness").BoundWitnessFields & {
}> = import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & import("./BoundWitness/BoundWitness.js").BoundWitnessFields & {
schema: "network.xyo.boundwitness";

@@ -13,0 +13,0 @@ }>(payload?: unknown) => T | undefined;

import { Hash } from '@xylabs/hex';
import { WithMeta } from '@xyo-network/payload-model';
import { BoundWitness, BoundWitnessSchema } from './BoundWitness';
import { BoundWitness, BoundWitnessSchema } from './BoundWitness/index.js';
export type QueryBoundWitnessSchema = BoundWitnessSchema;

@@ -5,0 +5,0 @@ export declare const QueryBoundWitnessSchema: QueryBoundWitnessSchema;

@@ -19,5 +19,5 @@ {

"dependencies": {
"@xylabs/hex": "^3.5.3",
"@xylabs/object": "^3.5.3",
"@xyo-network/payload-model": "^2.109.1"
"@xylabs/hex": "^3.5.9",
"@xylabs/object": "^3.5.9",
"@xyo-network/payload-model": "^2.110.0"
},

@@ -62,4 +62,4 @@ "exports": {

"types": "dist/node/index.d.ts",
"version": "2.109.1",
"version": "2.110.0",
"type": "module"
}

@@ -5,3 +5,3 @@ import { Address, Hash, Hex } from '@xylabs/hex'

import { BoundWitnessSchema } from './BoundWitnessSchema'
import { BoundWitnessSchema } from './BoundWitnessSchema.js'

@@ -8,0 +8,0 @@ export type BoundWitnessFields = {

@@ -1,3 +0,3 @@

export * from './BoundWitness'
export * from './BoundWitnessJsonSchema'
export * from './BoundWitnessSchema'
export * from './BoundWitness.js'
export * from './BoundWitnessJsonSchema.js'
export * from './BoundWitnessSchema.js'

@@ -1,3 +0,3 @@

export * from './BoundWitness'
export * from './isBoundWitness'
export * from './QueryBoundWitness'
export * from './BoundWitness/index.js'
export * from './isBoundWitness.js'
export * from './QueryBoundWitness.js'
import { isPayloadOfSchemaType, isPayloadOfSchemaTypeWithMeta, notPayloadOfSchemaType, WithMeta } from '@xyo-network/payload-model'
import { BoundWitness, BoundWitnessSchema } from './BoundWitness'
import { BoundWitness, BoundWitnessSchema } from './BoundWitness/index.js'

@@ -5,0 +5,0 @@ export const isBoundWitness = (value: unknown): value is BoundWitness => isPayloadOfSchemaType<BoundWitness>(BoundWitnessSchema)(value)

import { Hash } from '@xylabs/hex'
import { WithMeta } from '@xyo-network/payload-model'
import { BoundWitness, BoundWitnessSchema } from './BoundWitness'
import { isBoundWitness, isBoundWitnessWithMeta } from './isBoundWitness'
import { BoundWitness, BoundWitnessSchema } from './BoundWitness/index.js'
import { isBoundWitness, isBoundWitnessWithMeta } from './isBoundWitness.js'

@@ -7,0 +7,0 @@ export type QueryBoundWitnessSchema = BoundWitnessSchema

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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