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,13 @@
{
"name": "@aris/source-location",
"version": "0.0.0",
"type": "module",
"main": "src/index.ts",
"types": "src/index.ts",
"scripts": {
"test": "bun test src/"
},
"dependencies": {
"@aris/core": "workspace:*"
}
}