feat(domain): add native-feed detector (Atom/RSS/JSON)

This commit is contained in:
Julien Herr
2026-05-25 17:05:39 +02:00
parent 021aeabd05
commit df5546fedd
3 changed files with 126 additions and 0 deletions
+7
View File
@@ -69,6 +69,13 @@ export interface FeedMetadata {
pendingConfirmation?: boolean;
}
// A syndication feed a newsletter advertises about itself (via
// <link rel="alternate">), as opposed to the KTN-generated feed.
export interface NativeFeed {
url: string;
type: "rss" | "atom" | "json";
}
// Email metadata interface (summary info for listing)
export interface EmailMetadata {
key: string;