add alpaca news wire across ingest api and web

This commit is contained in:
dirtydishes 2026-05-18 16:55:31 -04:00
parent 62aae70878
commit 906fe411c9
31 changed files with 1407 additions and 50 deletions

View file

@ -7,6 +7,7 @@ import {
STREAM_EQUITY_QUOTES,
STREAM_FLOW_PACKETS,
STREAM_INFERRED_DARK,
STREAM_NEWS,
STREAM_OPTION_NBBO,
STREAM_OPTION_PRINTS,
STREAM_OPTION_SIGNAL_PRINTS,
@ -19,6 +20,7 @@ import {
SUBJECT_EQUITY_QUOTES,
SUBJECT_FLOW_PACKETS,
SUBJECT_INFERRED_DARK,
SUBJECT_NEWS,
SUBJECT_OPTION_NBBO,
SUBJECT_OPTION_PRINTS,
SUBJECT_OPTION_SIGNAL_PRINTS,
@ -53,7 +55,8 @@ export const STREAM_CATALOG: readonly KnownStreamDefinition[] = [
retentionClass: "derived"
},
{ name: STREAM_CLASSIFIER_HITS, subject: SUBJECT_CLASSIFIER_HITS, retentionClass: "derived" },
{ name: STREAM_ALERTS, subject: SUBJECT_ALERTS, retentionClass: "derived" }
{ name: STREAM_ALERTS, subject: SUBJECT_ALERTS, retentionClass: "derived" },
{ name: STREAM_NEWS, subject: SUBJECT_NEWS, retentionClass: "derived" }
];
const STREAM_CATALOG_BY_NAME = new Map(STREAM_CATALOG.map((definition) => [definition.name, definition]));

View file

@ -22,3 +22,5 @@ export const STREAM_CLASSIFIER_HITS = "CLASSIFIER_HITS";
export const SUBJECT_CLASSIFIER_HITS = "flow.classifier_hits";
export const STREAM_ALERTS = "ALERTS";
export const SUBJECT_ALERTS = "flow.alerts";
export const STREAM_NEWS = "NEWS";
export const SUBJECT_NEWS = "flow.news";