@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.
@@ -1423,12 +1423,19 @@ interface Tag {
1423
1423
  /** SEO tag inner content. For example, `<title> inner content </title>`. */
1424
1424
  children?: string;
1425
1425
  /**
1426
- * Whether the tag is a [custom tag](https://support.wix.com/en/article/adding-additional-meta-tags-to-your-sites-pages).
1426
+ * Whether the tag is a [custom tag](https://support.wix.com/en/article/adding-additional-meta-tags-to-your-sites-pages)
1427
+ * i.e. an entry from the site's Advanced/Custom Tags list.
1428
+ *
1429
+ * This flag is scoped to that feature only. It is NOT an indicator of whether a standard tag
1430
+ * (`title`, `description`, Open Graph, etc.) reflects a manually configured value versus a computed
1431
+ * default/pattern — standard tags always resolve with `custom: false`, even when their content comes
1432
+ * from a page's manually saved SEO title/description override. Don't use this field to verify whether
1433
+ * a live page reflects a manual per-page SEO edit.
1427
1434
  *
1428
1435
  * Limitation: when `ResolveStaticPageSeoTags` is called without `seoData`, the per-page SEO data is read
1429
1436
  * only from the Vibe/Wix-managed-headless override store. That store holds nothing for classic Wix Editor
1430
- * or Wix Studio pages, so custom tags saved on those pages are missing from the response entirely. For
1431
- * those pages `false` therefore does not mean "not a custom tag" — it means this API could not tell.
1437
+ * or Wix Studio pages, so even genuine Advanced/Custom Tags saved on those pages are missing from the
1438
+ * response entirely — there, `false` means this API could not tell, not that no custom tag exists.
1432
1439
  * Pass `seoData` explicitly to resolve against a known set of tags.
1433
1440
  */
1434
1441
  custom?: boolean;
@@ -2036,7 +2043,7 @@ interface Animation {
2036
2043
  /**
2037
2044
  * POINTER carries its fields directly on the union member in the JTD wall, hence
2038
2045
  * flat fields here (ts-proto camelCase must equal the JTD property names). A future
2039
- * SCROLL variant will contend for the `effect` JSON name resolve when it lands.
2046
+ * kind that also needs an `effect` field would contend for this JSON name.
2040
2047
  */
2041
2048
  effect?: PointerEffect;
2042
2049
  /** How quickly the node settles toward the pointer, in milliseconds (POINTER). */
@@ -3861,6 +3868,13 @@ interface ShapeData {
3861
3868
  styles?: ShapeDataStyles;
3862
3869
  /** Node animation. */
3863
3870
  animation?: Animation;
3871
+ /** Link details for shapes that are links. */
3872
+ link?: Link;
3873
+ /**
3874
+ * Alternate text describing the link's purpose for accessibility. Applies only when `link` is set.
3875
+ * @maxLength 1000
3876
+ */
3877
+ altText?: string | null;
3864
3878
  }
3865
3879
  interface ShapeDataStyles {
3866
3880
  /**