Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

ssb-typescript

Package Overview
Dependencies
Maintainers
1
Versions
21
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ssb-typescript - npm Package Compare versions

Comparing version 2.5.0 to 2.6.0

11

package.json
{
"name": "ssb-typescript",
"version": "2.5.0",
"version": "2.6.0",
"description": "TypeScript type definitions for Secure Scuttlebutt",

@@ -15,11 +15,10 @@ "repository": {

],
"devDependencies": {
"tsd": "~0.19.0",
"typescript": "~4.5.4"
},
"scripts": {
"prepublish": "tsc",
"test": "tsc --noEmit test.ts"
},
"devDependencies": {
"tsd":"~0.15.1",
"ts-node": "^9.1.1",
"typescript": "~4.2.2"
}
}

@@ -57,3 +57,3 @@ /**

};
export declare type Content = Privatable<PostContent> | Privatable<ContactContent> | Privatable<VoteContent> | Privatable<AboutContent> | Privatable<BlogContent> | Privatable<AliasContent> | null;
export declare type Content = Privatable<PostContent> | Privatable<ContactContent> | Privatable<VoteContent> | Privatable<AboutContent> | Privatable<BlogContent> | Privatable<AliasContent> | Privatable<GatheringContent> | null;
export interface PostContent {

@@ -114,2 +114,7 @@ type: 'post';

}
export interface GatheringContent {
type: 'gathering';
progenitor?: MsgId;
mentions?: Array<FeedId>;
}
export interface About {

@@ -116,0 +121,0 @@ name?: string;

@@ -70,2 +70,3 @@ /**

| Privatable<AliasContent>
| Privatable<GatheringContent>
| null;

@@ -138,2 +139,8 @@

export interface GatheringContent {
type: 'gathering',
progenitor?: MsgId // (optional) the thing that spawned this gathering
mentions?: Array<FeedId>, // (optional) people to notify
}
export interface About {

@@ -140,0 +147,0 @@ name?: string;

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