@shardus/types
Advanced tools
Comparing version 1.2.10 to 1.2.11
@@ -14,2 +14,3 @@ import * as Types from './P2PTypes'; | ||
active: number; | ||
standby: number; | ||
activated: string[]; | ||
@@ -16,0 +17,0 @@ activatedPublicKeys: string[]; |
{ | ||
"name": "@shardus/types", | ||
"version": "1.2.10", | ||
"version": "1.2.11", | ||
"description": "", | ||
@@ -5,0 +5,0 @@ "main": "build/src/index.js", |
@@ -1,2 +0,2 @@ | ||
import * as Types from './P2PTypes' | ||
import * as Types from './P2PTypes'; | ||
@@ -6,18 +6,19 @@ /** TYPES */ | ||
export interface ActiveRequest { | ||
nodeId: string | ||
status: string | ||
timestamp: number | ||
nodeId: string; | ||
status: string; | ||
timestamp: number; | ||
} | ||
export type SignedActiveRequest = ActiveRequest & Types.SignedObject | ||
export type SignedActiveRequest = ActiveRequest & Types.SignedObject; | ||
export interface Txs { | ||
active: SignedActiveRequest[] | ||
active: SignedActiveRequest[]; | ||
} | ||
export interface Record { | ||
active: number | ||
activated: string[] | ||
activatedPublicKeys: string[] | ||
maxSyncTime: number | ||
active: number; | ||
standby: number; | ||
activated: string[]; | ||
activatedPublicKeys: string[]; | ||
maxSyncTime: number; | ||
} |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
63235
1999