@wix/auto_sdk_events_forms 1.0.105 → 1.0.107

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.
@@ -1440,12 +1440,19 @@ interface Tag {
1440
1440
  /** SEO tag inner content. For example, `<title> inner content </title>`. */
1441
1441
  children?: string;
1442
1442
  /**
1443
- * Whether the tag is a [custom tag](https://support.wix.com/en/article/adding-additional-meta-tags-to-your-sites-pages).
1443
+ * Whether the tag is a [custom tag](https://support.wix.com/en/article/adding-additional-meta-tags-to-your-sites-pages)
1444
+ * i.e. an entry from the site's Advanced/Custom Tags list.
1445
+ *
1446
+ * This flag is scoped to that feature only. It is NOT an indicator of whether a standard tag
1447
+ * (`title`, `description`, Open Graph, etc.) reflects a manually configured value versus a computed
1448
+ * default/pattern — standard tags always resolve with `custom: false`, even when their content comes
1449
+ * from a page's manually saved SEO title/description override. Don't use this field to verify whether
1450
+ * a live page reflects a manual per-page SEO edit.
1444
1451
  *
1445
1452
  * Limitation: when `ResolveStaticPageSeoTags` is called without `seoData`, the per-page SEO data is read
1446
1453
  * only from the Vibe/Wix-managed-headless override store. That store holds nothing for classic Wix Editor
1447
- * or Wix Studio pages, so custom tags saved on those pages are missing from the response entirely. For
1448
- * those pages `false` therefore does not mean "not a custom tag" — it means this API could not tell.
1454
+ * or Wix Studio pages, so even genuine Advanced/Custom Tags saved on those pages are missing from the
1455
+ * response entirely — there, `false` means this API could not tell, not that no custom tag exists.
1449
1456
  * Pass `seoData` explicitly to resolve against a known set of tags.
1450
1457
  */
1451
1458
  custom?: boolean;
@@ -2053,7 +2060,7 @@ interface Animation {
2053
2060
  /**
2054
2061
  * POINTER carries its fields directly on the union member in the JTD wall, hence
2055
2062
  * flat fields here (ts-proto camelCase must equal the JTD property names). A future
2056
- * SCROLL variant will contend for the `effect` JSON name resolve when it lands.
2063
+ * kind that also needs an `effect` field would contend for this JSON name.
2057
2064
  */
2058
2065
  effect?: PointerEffect;
2059
2066
  /** How quickly the node settles toward the pointer, in milliseconds (POINTER). */
@@ -3878,6 +3885,13 @@ interface ShapeData {
3878
3885
  styles?: ShapeDataStyles;
3879
3886
  /** Node animation. */
3880
3887
  animation?: Animation;
3888
+ /** Link details for shapes that are links. */
3889
+ link?: Link;
3890
+ /**
3891
+ * Alternate text describing the link's purpose for accessibility. Applies only when `link` is set.
3892
+ * @maxLength 1000
3893
+ */
3894
+ altText?: string | null;
3881
3895
  }
3882
3896
  interface ShapeDataStyles {
3883
3897
  /**