Socket
Socket
Sign inDemoInstall

@xyo-network/boundwitness-model

Package Overview
Dependencies
Maintainers
0
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.106.0 to 2.107.0

3

dist/browser/BoundWitness/BoundWitness.d.ts

@@ -7,6 +7,4 @@ import { Address, Hash, Hex } from '@xylabs/hex';

$meta: {
/** @field Array of signatures by the accounts that are listed in addresses */
signatures: Hex[];
};
/** @field Array of signatures by the accounts that are listed in addresses */
addresses: Address[];

@@ -18,3 +16,2 @@ blockNumber?: number;

previous_hashes: (Hash | null)[];
/** @field Hash of the QueryBoundWitness that caused this BoundWitness to be created */
sourceQuery?: Hash;

@@ -21,0 +18,0 @@ timestamp: number;

@@ -1,45 +0,2 @@

// src/BoundWitness/BoundWitnessJsonSchema.ts
var BoundWitnessJsonSchema = () => {
return {
$id: "https://schemas.xyo.network/2.0/boundwitness",
additionalProperties: false,
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" }
},
required: ["addresses", "payload_hashes", "payload_schemas", "previous_hashes", "schema"],
type: "object"
};
};
// src/BoundWitness/BoundWitnessSchema.ts
var BoundWitnessSchema = "network.xyo.boundwitness";
// src/isBoundWitness.ts
import { isPayloadOfSchemaType, isPayloadOfSchemaTypeWithMeta, notPayloadOfSchemaType } from "@xyo-network/payload-model";
var isBoundWitness = (value) => isPayloadOfSchemaType(BoundWitnessSchema)(value);
var isBoundWitnessWithMeta = (value) => isPayloadOfSchemaTypeWithMeta(BoundWitnessSchema)(value);
var notBoundWitness = notPayloadOfSchemaType(BoundWitnessSchema);
var asBoundWitness = (payload) => isBoundWitness(payload) ? payload : void 0;
var isBoundWitnessPayload = isBoundWitness;
// src/QueryBoundWitness.ts
var QueryBoundWitnessSchema = BoundWitnessSchema;
var isQueryBoundWitness = (x) => isBoundWitness(x) && x?.query !== void 0;
var isQueryBoundWitnessWithMeta = (x) => isBoundWitness(x) && isBoundWitnessWithMeta(x) && x?.query !== void 0;
export {
BoundWitnessJsonSchema,
BoundWitnessSchema,
QueryBoundWitnessSchema,
asBoundWitness,
isBoundWitness,
isBoundWitnessPayload,
isBoundWitnessWithMeta,
isQueryBoundWitness,
isQueryBoundWitnessWithMeta,
notBoundWitness
};
var a=()=>({$id:"https://schemas.xyo.network/2.0/boundwitness",additionalProperties:!1,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:!0,type:"string"},type:"array"},schema:{type:"string"}},required:["addresses","payload_hashes","payload_schemas","previous_hashes","schema"],type:"object"});var s="network.xyo.boundwitness";import{isPayloadOfSchemaType as o,isPayloadOfSchemaTypeWithMeta as i,notPayloadOfSchemaType as r}from"@xyo-network/payload-model";var t=e=>o(s)(e),n=e=>i(s)(e),m=r(s),B=e=>t(e)?e:void 0,c=t;var w=s,Q=e=>t(e)&&e?.query!==void 0,M=e=>t(e)&&n(e)&&e?.query!==void 0;export{a as BoundWitnessJsonSchema,s as BoundWitnessSchema,w as QueryBoundWitnessSchema,B as asBoundWitness,t as isBoundWitness,c as isBoundWitnessPayload,n as isBoundWitnessWithMeta,Q as isQueryBoundWitness,M as isQueryBoundWitnessWithMeta,m as notBoundWitness};
//# sourceMappingURL=index.js.map

22

dist/browser/isBoundWitness.d.ts
import { WithMeta } from '@xyo-network/payload-model';
export declare const isBoundWitness: (value: unknown) => value is import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & import("./BoundWitness").BoundWitnessFields & {
import { BoundWitness } from './BoundWitness';
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 & {
schema: "network.xyo.boundwitness";
};
export declare const isBoundWitnessWithMeta: (value: unknown) => value is WithMeta<import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & import("./BoundWitness").BoundWitnessFields & {
schema: "network.xyo.boundwitness";
}>;
export declare const notBoundWitness: (x?: unknown) => x is import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & import("./BoundWitness").BoundWitnessFields & {
schema: "network.xyo.boundwitness";
};
export declare const asBoundWitness: <T extends import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<import("./BoundWitness").BoundWitnessFields & {
export declare const asBoundWitness: <T extends BoundWitness<{
schema: string;
}, "schema"> & {
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").BoundWitnessFields & {
schema: "network.xyo.boundwitness";
}>(payload?: unknown) => T | undefined;
/** @deprecated use isBoundWitness instead*/
export declare const isBoundWitnessPayload: (value: unknown) => value is import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & import("./BoundWitness").BoundWitnessFields & {
schema: "network.xyo.boundwitness";
};
export declare const isBoundWitnessPayload: (value: unknown) => value is BoundWitness;
//# sourceMappingURL=isBoundWitness.d.ts.map

@@ -12,18 +12,4 @@ import { Hash } from '@xylabs/hex';

}>;
export declare const isQueryBoundWitness: (x?: unknown) => x is import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<import("./BoundWitness").BoundWitnessFields & {
additional?: Lowercase<string>[] | undefined;
query: Hash;
resultSet?: string | undefined;
schema: QueryBoundWitnessSchema;
}, "schema"> & {
schema: "network.xyo.boundwitness";
};
export declare const isQueryBoundWitnessWithMeta: (x?: unknown) => x is WithMeta<import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<import("./BoundWitness").BoundWitnessFields & {
additional?: Lowercase<string>[] | undefined;
query: Hash;
resultSet?: string | undefined;
schema: QueryBoundWitnessSchema;
}, "schema"> & {
schema: "network.xyo.boundwitness";
}>;
export declare const isQueryBoundWitness: (x?: unknown) => x is QueryBoundWitness;
export declare const isQueryBoundWitnessWithMeta: (x?: unknown) => x is WithMeta<QueryBoundWitness>;
//# sourceMappingURL=QueryBoundWitness.d.ts.map

@@ -7,6 +7,4 @@ import { Address, Hash, Hex } from '@xylabs/hex';

$meta: {
/** @field Array of signatures by the accounts that are listed in addresses */
signatures: Hex[];
};
/** @field Array of signatures by the accounts that are listed in addresses */
addresses: Address[];

@@ -18,3 +16,2 @@ blockNumber?: number;

previous_hashes: (Hash | null)[];
/** @field Hash of the QueryBoundWitness that caused this BoundWitness to be created */
sourceQuery?: Hash;

@@ -21,0 +18,0 @@ timestamp: number;

@@ -1,45 +0,2 @@

// src/BoundWitness/BoundWitnessJsonSchema.ts
var BoundWitnessJsonSchema = () => {
return {
$id: "https://schemas.xyo.network/2.0/boundwitness",
additionalProperties: false,
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" }
},
required: ["addresses", "payload_hashes", "payload_schemas", "previous_hashes", "schema"],
type: "object"
};
};
// src/BoundWitness/BoundWitnessSchema.ts
var BoundWitnessSchema = "network.xyo.boundwitness";
// src/isBoundWitness.ts
import { isPayloadOfSchemaType, isPayloadOfSchemaTypeWithMeta, notPayloadOfSchemaType } from "@xyo-network/payload-model";
var isBoundWitness = (value) => isPayloadOfSchemaType(BoundWitnessSchema)(value);
var isBoundWitnessWithMeta = (value) => isPayloadOfSchemaTypeWithMeta(BoundWitnessSchema)(value);
var notBoundWitness = notPayloadOfSchemaType(BoundWitnessSchema);
var asBoundWitness = (payload) => isBoundWitness(payload) ? payload : void 0;
var isBoundWitnessPayload = isBoundWitness;
// src/QueryBoundWitness.ts
var QueryBoundWitnessSchema = BoundWitnessSchema;
var isQueryBoundWitness = (x) => isBoundWitness(x) && x?.query !== void 0;
var isQueryBoundWitnessWithMeta = (x) => isBoundWitness(x) && isBoundWitnessWithMeta(x) && x?.query !== void 0;
export {
BoundWitnessJsonSchema,
BoundWitnessSchema,
QueryBoundWitnessSchema,
asBoundWitness,
isBoundWitness,
isBoundWitnessPayload,
isBoundWitnessWithMeta,
isQueryBoundWitness,
isQueryBoundWitnessWithMeta,
notBoundWitness
};
var a=()=>({$id:"https://schemas.xyo.network/2.0/boundwitness",additionalProperties:!1,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:!0,type:"string"},type:"array"},schema:{type:"string"}},required:["addresses","payload_hashes","payload_schemas","previous_hashes","schema"],type:"object"});var s="network.xyo.boundwitness";import{isPayloadOfSchemaType as o,isPayloadOfSchemaTypeWithMeta as i,notPayloadOfSchemaType as r}from"@xyo-network/payload-model";var t=e=>o(s)(e),n=e=>i(s)(e),m=r(s),B=e=>t(e)?e:void 0,c=t;var w=s,Q=e=>t(e)&&e?.query!==void 0,M=e=>t(e)&&n(e)&&e?.query!==void 0;export{a as BoundWitnessJsonSchema,s as BoundWitnessSchema,w as QueryBoundWitnessSchema,B as asBoundWitness,t as isBoundWitness,c as isBoundWitnessPayload,n as isBoundWitnessWithMeta,Q as isQueryBoundWitness,M as isQueryBoundWitnessWithMeta,m as notBoundWitness};
//# sourceMappingURL=index.js.map
import { WithMeta } from '@xyo-network/payload-model';
export declare const isBoundWitness: (value: unknown) => value is import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & import("./BoundWitness").BoundWitnessFields & {
import { BoundWitness } from './BoundWitness';
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 & {
schema: "network.xyo.boundwitness";
};
export declare const isBoundWitnessWithMeta: (value: unknown) => value is WithMeta<import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & import("./BoundWitness").BoundWitnessFields & {
schema: "network.xyo.boundwitness";
}>;
export declare const notBoundWitness: (x?: unknown) => x is import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & import("./BoundWitness").BoundWitnessFields & {
schema: "network.xyo.boundwitness";
};
export declare const asBoundWitness: <T extends import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<import("./BoundWitness").BoundWitnessFields & {
export declare const asBoundWitness: <T extends BoundWitness<{
schema: string;
}, "schema"> & {
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").BoundWitnessFields & {
schema: "network.xyo.boundwitness";
}>(payload?: unknown) => T | undefined;
/** @deprecated use isBoundWitness instead*/
export declare const isBoundWitnessPayload: (value: unknown) => value is import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & import("./BoundWitness").BoundWitnessFields & {
schema: "network.xyo.boundwitness";
};
export declare const isBoundWitnessPayload: (value: unknown) => value is BoundWitness;
//# sourceMappingURL=isBoundWitness.d.ts.map

@@ -12,18 +12,4 @@ import { Hash } from '@xylabs/hex';

}>;
export declare const isQueryBoundWitness: (x?: unknown) => x is import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<import("./BoundWitness").BoundWitnessFields & {
additional?: Lowercase<string>[] | undefined;
query: Hash;
resultSet?: string | undefined;
schema: QueryBoundWitnessSchema;
}, "schema"> & {
schema: "network.xyo.boundwitness";
};
export declare const isQueryBoundWitnessWithMeta: (x?: unknown) => x is WithMeta<import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<import("./BoundWitness").BoundWitnessFields & {
additional?: Lowercase<string>[] | undefined;
query: Hash;
resultSet?: string | undefined;
schema: QueryBoundWitnessSchema;
}, "schema"> & {
schema: "network.xyo.boundwitness";
}>;
export declare const isQueryBoundWitness: (x?: unknown) => x is QueryBoundWitness;
export declare const isQueryBoundWitnessWithMeta: (x?: unknown) => x is WithMeta<QueryBoundWitness>;
//# sourceMappingURL=QueryBoundWitness.d.ts.map

@@ -7,6 +7,4 @@ import { Address, Hash, Hex } from '@xylabs/hex';

$meta: {
/** @field Array of signatures by the accounts that are listed in addresses */
signatures: Hex[];
};
/** @field Array of signatures by the accounts that are listed in addresses */
addresses: Address[];

@@ -18,3 +16,2 @@ blockNumber?: number;

previous_hashes: (Hash | null)[];
/** @field Hash of the QueryBoundWitness that caused this BoundWitness to be created */
sourceQuery?: Hash;

@@ -21,0 +18,0 @@ timestamp: number;

@@ -1,45 +0,2 @@

// src/BoundWitness/BoundWitnessJsonSchema.ts
var BoundWitnessJsonSchema = () => {
return {
$id: "https://schemas.xyo.network/2.0/boundwitness",
additionalProperties: false,
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" }
},
required: ["addresses", "payload_hashes", "payload_schemas", "previous_hashes", "schema"],
type: "object"
};
};
// src/BoundWitness/BoundWitnessSchema.ts
var BoundWitnessSchema = "network.xyo.boundwitness";
// src/isBoundWitness.ts
import { isPayloadOfSchemaType, isPayloadOfSchemaTypeWithMeta, notPayloadOfSchemaType } from "@xyo-network/payload-model";
var isBoundWitness = (value) => isPayloadOfSchemaType(BoundWitnessSchema)(value);
var isBoundWitnessWithMeta = (value) => isPayloadOfSchemaTypeWithMeta(BoundWitnessSchema)(value);
var notBoundWitness = notPayloadOfSchemaType(BoundWitnessSchema);
var asBoundWitness = (payload) => isBoundWitness(payload) ? payload : void 0;
var isBoundWitnessPayload = isBoundWitness;
// src/QueryBoundWitness.ts
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;
export {
BoundWitnessJsonSchema,
BoundWitnessSchema,
QueryBoundWitnessSchema,
asBoundWitness,
isBoundWitness,
isBoundWitnessPayload,
isBoundWitnessWithMeta,
isQueryBoundWitness,
isQueryBoundWitnessWithMeta,
notBoundWitness
};
var a=()=>({$id:"https://schemas.xyo.network/2.0/boundwitness",additionalProperties:!1,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:!0,type:"string"},type:"array"},schema:{type:"string"}},required:["addresses","payload_hashes","payload_schemas","previous_hashes","schema"],type:"object"});var s="network.xyo.boundwitness";import{isPayloadOfSchemaType as o,isPayloadOfSchemaTypeWithMeta as i,notPayloadOfSchemaType as r}from"@xyo-network/payload-model";var t=e=>o(s)(e),n=e=>i(s)(e),m=r(s),B=e=>t(e)?e:void 0,c=t;var x=s,Q=e=>t(e)&&(e==null?void 0:e.query)!==void 0,M=e=>t(e)&&n(e)&&(e==null?void 0:e.query)!==void 0;export{a as BoundWitnessJsonSchema,s as BoundWitnessSchema,x as QueryBoundWitnessSchema,B as asBoundWitness,t as isBoundWitness,c as isBoundWitnessPayload,n as isBoundWitnessWithMeta,Q as isQueryBoundWitness,M as isQueryBoundWitnessWithMeta,m as notBoundWitness};
//# sourceMappingURL=index.js.map
import { WithMeta } from '@xyo-network/payload-model';
export declare const isBoundWitness: (value: unknown) => value is import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & import("./BoundWitness").BoundWitnessFields & {
import { BoundWitness } from './BoundWitness';
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 & {
schema: "network.xyo.boundwitness";
};
export declare const isBoundWitnessWithMeta: (value: unknown) => value is WithMeta<import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & import("./BoundWitness").BoundWitnessFields & {
schema: "network.xyo.boundwitness";
}>;
export declare const notBoundWitness: (x?: unknown) => x is import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & import("./BoundWitness").BoundWitnessFields & {
schema: "network.xyo.boundwitness";
};
export declare const asBoundWitness: <T extends import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<import("./BoundWitness").BoundWitnessFields & {
export declare const asBoundWitness: <T extends BoundWitness<{
schema: string;
}, "schema"> & {
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").BoundWitnessFields & {
schema: "network.xyo.boundwitness";
}>(payload?: unknown) => T | undefined;
/** @deprecated use isBoundWitness instead*/
export declare const isBoundWitnessPayload: (value: unknown) => value is import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & import("./BoundWitness").BoundWitnessFields & {
schema: "network.xyo.boundwitness";
};
export declare const isBoundWitnessPayload: (value: unknown) => value is BoundWitness;
//# sourceMappingURL=isBoundWitness.d.ts.map

@@ -12,18 +12,4 @@ import { Hash } from '@xylabs/hex';

}>;
export declare const isQueryBoundWitness: (x?: unknown) => x is import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<import("./BoundWitness").BoundWitnessFields & {
additional?: Lowercase<string>[] | undefined;
query: Hash;
resultSet?: string | undefined;
schema: QueryBoundWitnessSchema;
}, "schema"> & {
schema: "network.xyo.boundwitness";
};
export declare const isQueryBoundWitnessWithMeta: (x?: unknown) => x is WithMeta<import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<import("./BoundWitness").BoundWitnessFields & {
additional?: Lowercase<string>[] | undefined;
query: Hash;
resultSet?: string | undefined;
schema: QueryBoundWitnessSchema;
}, "schema"> & {
schema: "network.xyo.boundwitness";
}>;
export declare const isQueryBoundWitness: (x?: unknown) => x is QueryBoundWitness;
export declare const isQueryBoundWitnessWithMeta: (x?: unknown) => x is WithMeta<QueryBoundWitness>;
//# sourceMappingURL=QueryBoundWitness.d.ts.map

@@ -14,5 +14,5 @@ {

"devDependencies": {
"@xylabs/ts-scripts-yarn3": "^3.11.2",
"@xylabs/tsconfig": "^3.11.2",
"typescript": "^5.4.5"
"@xylabs/ts-scripts-yarn3": "^3.11.8",
"@xylabs/tsconfig": "^3.11.8",
"typescript": "^5.5.2"
},

@@ -22,3 +22,3 @@ "dependencies": {

"@xylabs/object": "^3.5.1",
"@xyo-network/payload-model": "~2.106.0"
"@xyo-network/payload-model": "~2.107.0"
},

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

"types": "dist/node/index.d.ts",
"version": "2.106.0",
"version": "2.107.0",
"type": "module"
}

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