Remove symmetric difference feed

This commit is contained in:
Jon Staab
2024-06-05 15:00:22 -07:00
parent e72b692a02
commit 469ad299b5
3 changed files with 3 additions and 59 deletions
-3
View File
@@ -15,7 +15,6 @@ export enum FeedType {
Relay = "relay",
Scope = "scope",
Search = "search",
SymmetricDifference = "symmetric_difference",
Tag = "tag",
Union = "union",
}
@@ -81,7 +80,6 @@ export type WOTFeed = [type: FeedType.WOT, ...items: WOTItem[]]
export type RelayFeed = [type: FeedType.Relay, ...urls: string[]]
export type ScopeFeed = [type: FeedType.Scope, ...scopes: Scope[]]
export type SearchFeed = [type: FeedType.Search, ...searches: string[]]
export type SymmetricDifferenceFeed = [type: FeedType.SymmetricDifference, ...feeds: Feed[]]
export type TagFeed = [type: FeedType.Tag, key: string, ...values: string[]]
export type UnionFeed = [type: FeedType.Union, ...feeds: Feed[]]
@@ -100,7 +98,6 @@ export type Feed =
RelayFeed |
ScopeFeed |
SearchFeed |
SymmetricDifferenceFeed |
TagFeed |
UnionFeed