@wix/app-extensions 1.0.129 → 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.
@@ -19258,11 +19258,13 @@ declare enum A11yAttributes {
19258
19258
  /** The value used for aria-multiline */
19259
19259
  ariaMultiline = "ariaMultiline",
19260
19260
  /** The value used for aria-invalid */
19261
- ariaInvalid = "ariaInvalid"
19261
+ ariaInvalid = "ariaInvalid",
19262
+ /** The value used for lang attribute */
19263
+ lang = "lang"
19262
19264
  }
19263
19265
  /** @enumType */
19264
19266
  /** @internal */
19265
- type A11yAttributesWithLiterals = A11yAttributes | 'Unknown_AriaAttributes' | 'tabIndex' | 'ariaLevel' | 'ariaExpanded' | 'ariaDisabled' | 'ariaAtomic' | 'ariaHidden' | 'ariaBusy' | 'multiline' | 'ariaAutocomplete' | 'ariaPressed' | 'ariaHaspopup' | 'ariaRelevant' | 'role' | 'ariaLive' | 'ariaCurrent' | 'ariaLabel' | 'ariaRoledescription' | 'ariaDescribedby' | 'ariaLabelledby' | 'ariaErrormessage' | 'ariaOwns' | 'ariaControls' | 'tag' | 'ariaMultiline' | 'ariaInvalid';
19267
+ type A11yAttributesWithLiterals = A11yAttributes | 'Unknown_AriaAttributes' | 'tabIndex' | 'ariaLevel' | 'ariaExpanded' | 'ariaDisabled' | 'ariaAtomic' | 'ariaHidden' | 'ariaBusy' | 'multiline' | 'ariaAutocomplete' | 'ariaPressed' | 'ariaHaspopup' | 'ariaRelevant' | 'role' | 'ariaLive' | 'ariaCurrent' | 'ariaLabel' | 'ariaRoledescription' | 'ariaDescribedby' | 'ariaLabelledby' | 'ariaErrormessage' | 'ariaOwns' | 'ariaControls' | 'tag' | 'ariaMultiline' | 'ariaInvalid' | 'lang';
19266
19268
  /** @internal */
19267
19269
  interface Link {
19268
19270
  /**
@@ -26562,6 +26564,14 @@ interface WebhookConfig {
26562
26564
  /**
26563
26565
  * How a repeated delivery is recognized. Required — a connector must state how it dedupes
26564
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.
26565
26575
  */
26566
26576
  replayProtection?: ReplayProtectionWithLiterals;
26567
26577
  /**
@@ -2627,6 +2627,7 @@ var A11yAttributes = /* @__PURE__ */ ((A11yAttributes2) => {
2627
2627
  A11yAttributes2["tag"] = "tag";
2628
2628
  A11yAttributes2["ariaMultiline"] = "ariaMultiline";
2629
2629
  A11yAttributes2["ariaInvalid"] = "ariaInvalid";
2630
+ A11yAttributes2["lang"] = "lang";
2630
2631
  return A11yAttributes2;
2631
2632
  })(A11yAttributes || {});
2632
2633
  var LinkType = /* @__PURE__ */ ((LinkType2) => {