mirror of
https://github.com/fluencelabs/js-libp2p-interfaces
synced 2025-07-10 02:01:36 +00:00
Compare commits
3 Commits
Author | SHA1 | Date | |
---|---|---|---|
b75f2cab48 | |||
8512997e76 | |||
269a6f5e0a |
10
CHANGELOG.md
10
CHANGELOG.md
@ -1,3 +1,13 @@
|
||||
<a name="0.7.1"></a>
|
||||
## [0.7.1](https://github.com/libp2p/js-interfaces/compare/v0.7.0...v0.7.1) (2020-11-03)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* typescript types ([#69](https://github.com/libp2p/js-interfaces/issues/69)) ([269a6f5](https://github.com/libp2p/js-interfaces/commit/269a6f5))
|
||||
|
||||
|
||||
|
||||
<a name="0.7.0"></a>
|
||||
# [0.7.0](https://github.com/libp2p/js-interfaces/compare/v0.5.2...v0.7.0) (2020-11-03)
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "libp2p-interfaces",
|
||||
"version": "0.7.0",
|
||||
"version": "0.7.1",
|
||||
"description": "Interfaces for JS Libp2p",
|
||||
"leadMaintainer": "Jacob Heun <jacobheun@gmail.com>",
|
||||
"main": "src/index.js",
|
||||
|
7
src/pubsub/errors.d.ts
vendored
7
src/pubsub/errors.d.ts
vendored
@ -1,4 +1,11 @@
|
||||
export namespace codes {
|
||||
export const ERR_INVALID_SIGNATURE_POLICY: string;
|
||||
export const ERR_UNHANDLED_SIGNATURE_POLICY: string;
|
||||
export const ERR_MISSING_SIGNATURE: string;
|
||||
export const ERR_MISSING_SEQNO: string;
|
||||
export const ERR_INVALID_SIGNATURE: string;
|
||||
export const ERR_UNEXPECTED_FROM: string;
|
||||
export const ERR_UNEXPECTED_SIGNATURE: string;
|
||||
export const ERR_UNEXPECTED_KEY: string;
|
||||
export const ERR_UNEXPECTED_SEQNO: string;
|
||||
}
|
||||
|
22
src/pubsub/index.d.ts
vendored
22
src/pubsub/index.d.ts
vendored
@ -22,18 +22,16 @@ declare class PubsubBaseProtocol {
|
||||
* @param {String} props.debugName log namespace
|
||||
* @param {Array<string>|string} props.multicodecs protocol identificers to connect
|
||||
* @param {Libp2p} props.libp2p
|
||||
* @param {boolean} [props.signMessages = true] if messages should be signed
|
||||
* @param {boolean} [props.strictSigning = true] if message signing should be required
|
||||
* @param {SignaturePolicy} [props.globalSignaturePolicy = SignaturePolicy.StrictSign] defines how signatures should be handled
|
||||
* @param {boolean} [props.canRelayMessage = false] if can relay messages not subscribed
|
||||
* @param {boolean} [props.emitSelf = false] if publish should emit to self, if subscribed
|
||||
* @abstract
|
||||
*/
|
||||
constructor({ debugName, multicodecs, libp2p, signMessages, strictSigning, canRelayMessage, emitSelf }: {
|
||||
constructor({ debugName, multicodecs, libp2p, globalSignaturePolicy, canRelayMessage, emitSelf }: {
|
||||
debugName: string;
|
||||
multicodecs: string | string[];
|
||||
libp2p: any;
|
||||
signMessages?: boolean;
|
||||
strictSigning?: boolean;
|
||||
globalSignaturePolicy?: any;
|
||||
canRelayMessage?: boolean;
|
||||
emitSelf?: boolean;
|
||||
});
|
||||
@ -66,12 +64,12 @@ declare class PubsubBaseProtocol {
|
||||
* @type {Map<string, import('./peer-streams')>}
|
||||
*/
|
||||
peers: Map<string, import('./peer-streams')>;
|
||||
signMessages: boolean;
|
||||
/**
|
||||
* If message signing should be required for incoming messages
|
||||
* @type {boolean}
|
||||
* The signature policy to follow by default
|
||||
*
|
||||
* @type {string}
|
||||
*/
|
||||
strictSigning: boolean;
|
||||
globalSignaturePolicy: string;
|
||||
/**
|
||||
* If router can relay received messages, even if not subscribed
|
||||
* @type {boolean}
|
||||
@ -284,7 +282,7 @@ declare class PubsubBaseProtocol {
|
||||
getTopics(): string[];
|
||||
}
|
||||
declare namespace PubsubBaseProtocol {
|
||||
export { message, utils, InMessage, PeerId };
|
||||
export { message, utils, SignaturePolicy, InMessage, PeerId };
|
||||
}
|
||||
type PeerId = import("peer-id");
|
||||
/**
|
||||
@ -305,3 +303,7 @@ type InMessage = {
|
||||
*/
|
||||
declare const message: typeof import('./message');
|
||||
declare const utils: typeof import("./utils");
|
||||
declare const SignaturePolicy: {
|
||||
StrictSign: string;
|
||||
StrictNoSign: string;
|
||||
};
|
||||
|
@ -116,7 +116,7 @@ class PubsubBaseProtocol extends EventEmitter {
|
||||
/**
|
||||
* The signature policy to follow by default
|
||||
*
|
||||
* @type {SignaturePolicy}
|
||||
* @type {string}
|
||||
*/
|
||||
this.globalSignaturePolicy = globalSignaturePolicy
|
||||
|
||||
|
4
src/pubsub/signature-policy.d.ts
vendored
Normal file
4
src/pubsub/signature-policy.d.ts
vendored
Normal file
@ -0,0 +1,4 @@
|
||||
export namespace SignaturePolicy {
|
||||
export const StrictSign: string;
|
||||
export const StrictNoSign: string;
|
||||
}
|
1
src/pubsub/utils.d.ts
vendored
1
src/pubsub/utils.d.ts
vendored
@ -1,5 +1,6 @@
|
||||
export function randomSeqno(): Uint8Array;
|
||||
export function msgId(from: string, seqno: Uint8Array): Uint8Array;
|
||||
export function noSignMsgId(data: Uint8Array): Uint8Array;
|
||||
export function anyMatch(a: any[] | Set<any>, b: any[] | Set<any>): boolean;
|
||||
export function ensureArray(maybeArray: any): any[];
|
||||
export function normalizeInRpcMessage(message: any, peerId: string): any;
|
||||
|
Reference in New Issue
Block a user