@wix/app-extensions 1.0.130 → 1.0.131

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.
@@ -26564,6 +26564,14 @@ interface WebhookConfig {
26564
26564
  /**
26565
26565
  * How a repeated delivery is recognized. Required — a connector must state how it dedupes
26566
26566
  * rather than leaving replay protection to an unset field.
26567
+ *
26568
+ * This names the policy for *deriving* a delivery identity, never the identity itself. The value
26569
+ * that policy produces is published to consumers as WebhookDelivery.idempotency_key by
26570
+ * connectors-webhooks, and the difference in naming is deliberate rather than drift: a policy
26571
+ * chosen by a connector author and a value read by a delivery consumer are different things, and
26572
+ * collapsing them onto one word would also blur the dispatch-side idempotency_key, which is a guard
26573
+ * Wix enforces — a caller retrying a dispatch under the same key is refused rather than reaching
26574
+ * the provider again — and not a value handed to a consumer to dedupe with.
26567
26575
  */
26568
26576
  replayProtection?: ReplayProtectionWithLiterals;
26569
26577
  /**