Add global feeds

This commit is contained in:
Jon Staab
2024-06-19 14:50:54 -07:00
parent a61085ff2f
commit 760e0a99b4
4 changed files with 11 additions and 1 deletions
+3
View File
@@ -8,6 +8,7 @@ export enum FeedType {
Difference = "difference",
ID = "id",
Intersection = "intersection",
Global = "global",
Kind = "kind",
List = "list",
Label = "label",
@@ -73,6 +74,7 @@ export type DVMFeed = [type: FeedType.DVM, ...items: DVMItem[]]
export type DifferenceFeed = [type: FeedType.Difference, ...feeds: Feed[]]
export type IDFeed = [type: FeedType.ID, ...ids: string[]]
export type IntersectionFeed = [type: FeedType.Intersection, ...feeds: Feed[]]
export type GlobalFeed = [type: FeedType.Global, ...feeds: Feed[]]
export type KindFeed = [type: FeedType.Kind, ...kinds: number[]]
export type ListFeed = [type: FeedType.List, ...items: ListItem[]]
export type LabelFeed = [type: FeedType.Label, ...items: LabelItem[]]
@@ -91,6 +93,7 @@ export type Feed =
DifferenceFeed |
IDFeed |
IntersectionFeed |
GlobalFeed |
KindFeed |
ListFeed |
LabelFeed |