@builtbyecho/reverbin 0.1.0 → 0.1.1

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.
Files changed (2) hide show
  1. package/README.md +2 -0
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -153,6 +153,8 @@ const valid = verifyWebhookSignature(rawBody, signatureHeader, webhookSecret);
153
153
 
154
154
  During credential-rotation grace, verify `x-echo-email-signature-previous` separately with the previous secret. The stable `x-echo-email-*` header prefix is retained for wire compatibility.
155
155
 
156
+ After signature verification succeeds, atomically claim the unique `x-echo-email-delivery` value before performing side effects, using a durable processing lease and completed state. Commit transactional business changes and the completed state together. For external side effects, enqueue a transactional outbox operation keyed by the delivery ID. A completed claim returns success without re-executing; an expired processing lease may be retried. This deduplicates concurrent and repeated deliveries without losing retryability.
157
+
156
158
  ## Retry and idempotency boundaries
157
159
 
158
160
  The SDK never retries automatically.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@builtbyecho/reverbin",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "Node.js ESM SDK for Reverbin agent inboxes, threads, messages, approvals, webhooks, credentials, billing, and account lifecycle APIs.",
5
5
  "type": "module",
6
6
  "main": "./dist/client.js",