ssb-typescript
Advanced tools
Comparing version 2.5.0 to 2.6.0
{ | ||
"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; |
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
17745
2
435