@voyant-travel/webhook-delivery 0.2.0 → 0.2.2
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 +7 -0
- package/dist/.tsbuildinfo +1 -1
- package/dist/index.d.ts +2 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +1 -0
- package/dist/postgres-store.d.ts +6 -0
- package/dist/postgres-store.d.ts.map +1 -1
- package/dist/postgres-store.js +15 -2
- package/dist/provider.d.ts +13 -0
- package/dist/provider.d.ts.map +1 -0
- package/dist/provider.js +22 -0
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -8,3 +8,10 @@ dead-letter state, and delivery audit outcomes.
|
|
|
8
8
|
The audit tables intentionally contain only redacted, bounded excerpts. The
|
|
9
9
|
original event payload remains at the host enqueue boundary and is never used
|
|
10
10
|
as an audit-storage surrogate.
|
|
11
|
+
|
|
12
|
+
Deployment graphs select enqueue authority explicitly through
|
|
13
|
+
`deployment.providers.outboundWebhooks`: `postgres` uses this package's durable
|
|
14
|
+
Postgres adapter, `host` delegates to an injected host callback, and `none`
|
|
15
|
+
omits outbound subscriber composition. Enqueue selection does not schedule the
|
|
16
|
+
HTTP delivery worker; worker triggering remains a separate Node deployment
|
|
17
|
+
responsibility.
|