@lucern/events 0.3.0-alpha.9 → 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +14 -2
- package/dist/index.js +3456 -393
- package/dist/index.js.map +1 -1
- package/dist/outbox.js +3458 -395
- package/dist/outbox.js.map +1 -1
- package/dist/types.js +3458 -395
- package/dist/types.js.map +1 -1
- package/dist/webhooks.js +3456 -393
- package/dist/webhooks.js.map +1 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
|
-
#
|
|
1
|
+
# @lucern/events
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
Operational eventing helpers for Lucern: domain event contracts, event matching,
|
|
4
|
+
outbox helper re-exports, webhook validation, webhook signing, retry scheduling,
|
|
5
|
+
and delivery record sanitization.
|
|
4
6
|
|
|
5
7
|
## Built by: EK-13.8 (Eventing + Async Integrations)
|
|
8
|
+
|
|
9
|
+
## Replay boundary
|
|
10
|
+
|
|
11
|
+
This package is operational eventing substrate. It is not the final Campaign #4
|
|
12
|
+
bitemporal replay architecture. Source Horizons, Output Objects, Computation
|
|
13
|
+
Runs, Bitemporal Events, Replay Records, and source-horizon-bound artifact
|
|
14
|
+
replay remain roadmap contracts.
|
|
15
|
+
|
|
16
|
+
See `docs/reference/mcp-event-packages.md` for package-boundary truth and
|
|
17
|
+
`docs/development/mcp-eventing-workflows.md` for development workflow examples.
|