webhookgate-sdk 1.0.2 → 1.0.3
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 +22 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -8,7 +8,25 @@ It does this by combining:
|
|
|
8
8
|
- **durable webhook intake and de-duplication** at the gateway layer, and
|
|
9
9
|
- a **consumer-side idempotency SDK** that makes duplicate side effects **structurally impossible** within the consumer.
|
|
10
10
|
|
|
11
|
-
WebhookGate sits in front of webhook consumers and ensures that each `(provider, eventId)` is **accepted exactly once**, even under retries, replays, or noisy providers
|
|
11
|
+
WebhookGate sits in front of webhook consumers and ensures that each `(provider, eventId)` is **accepted exactly once**, even under retries, replays, or noisy providers — and ensures downstream effects are never duplicated when the consumer uses the SDK.
|
|
12
|
+
|
|
13
|
+
---
|
|
14
|
+
|
|
15
|
+
## Documentation (problem-first)
|
|
16
|
+
|
|
17
|
+
If you want to understand *why* WebhookGate exists — not just how to use it — these documents explain the underlying failure modes and constraints:
|
|
18
|
+
|
|
19
|
+
- **Why Webhook Retries Cause Duplicate Side Effects**
|
|
20
|
+
https://webhookgate.com/docs/why-retries-cause-duplicates
|
|
21
|
+
|
|
22
|
+
- **Exactly-once Delivery Is a Myth**
|
|
23
|
+
https://webhookgate.com/docs/exactly-once-is-a-myth
|
|
24
|
+
|
|
25
|
+
- **What a Real Guarantee Requires**
|
|
26
|
+
https://webhookgate.com/docs/what-a-real-guarantee-requires
|
|
27
|
+
|
|
28
|
+
These explain the distributed-systems constraints that make ad-hoc idempotency fragile,
|
|
29
|
+
and the architectural boundaries required to make duplicate side effects impossible.
|
|
12
30
|
|
|
13
31
|
---
|
|
14
32
|
|
|
@@ -112,4 +130,6 @@ Crash test:
|
|
|
112
130
|
|
|
113
131
|
WebhookGate adds durable intake, replay protection, and operational safeguards for environments where local correctness is no longer sufficient.
|
|
114
132
|
|
|
115
|
-
Learn more
|
|
133
|
+
Learn more:
|
|
134
|
+
- Overview: https://webhookgate.com
|
|
135
|
+
- Technical docs: https://webhookgate.com/docs
|