feat(source-location): add LocationSource for push-based location context

Implements FeedSource interface. Accepts external location pushes,
provides context to downstream sources, does not produce feed items.

Supports configurable history size.

Co-authored-by: Ona <no-reply@ona.com>
This commit is contained in:
2026-01-19 00:28:03 +00:00
parent a7b6232058
commit 75ce06d39b
6 changed files with 376 additions and 0 deletions

View File

@@ -0,0 +1,6 @@
export {
LocationSource,
LocationKey,
type Location,
type LocationSourceOptions,
} from "./location-source.ts"