@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.
@@ -1603,12 +1603,19 @@ interface Tag {
1603
1603
  /** SEO tag inner content. For example, `<title> inner content </title>`. */
1604
1604
  children?: string;
1605
1605
  /**
1606
- * Whether the tag is a [custom tag](https://support.wix.com/en/article/adding-additional-meta-tags-to-your-sites-pages).
1606
+ * Whether the tag is a [custom tag](https://support.wix.com/en/article/adding-additional-meta-tags-to-your-sites-pages)
1607
+ * i.e. an entry from the site's Advanced/Custom Tags list.
1608
+ *
1609
+ * This flag is scoped to that feature only. It is NOT an indicator of whether a standard tag
1610
+ * (`title`, `description`, Open Graph, etc.) reflects a manually configured value versus a computed
1611
+ * default/pattern — standard tags always resolve with `custom: false`, even when their content comes
1612
+ * from a page's manually saved SEO title/description override. Don't use this field to verify whether
1613
+ * a live page reflects a manual per-page SEO edit.
1607
1614
  *
1608
1615
  * Limitation: when `ResolveStaticPageSeoTags` is called without `seoData`, the per-page SEO data is read
1609
1616
  * only from the Vibe/Wix-managed-headless override store. That store holds nothing for classic Wix Editor
1610
- * or Wix Studio pages, so custom tags saved on those pages are missing from the response entirely. For
1611
- * those pages `false` therefore does not mean "not a custom tag" — it means this API could not tell.
1617
+ * or Wix Studio pages, so even genuine Advanced/Custom Tags saved on those pages are missing from the
1618
+ * response entirely — there, `false` means this API could not tell, not that no custom tag exists.
1612
1619
  * Pass `seoData` explicitly to resolve against a known set of tags.
1613
1620
  */
1614
1621
  custom?: boolean;
@@ -2245,7 +2252,7 @@ interface Animation {
2245
2252
  /**
2246
2253
  * POINTER carries its fields directly on the union member in the JTD wall, hence
2247
2254
  * flat fields here (ts-proto camelCase must equal the JTD property names). A future
2248
- * SCROLL variant will contend for the `effect` JSON name resolve when it lands.
2255
+ * kind that also needs an `effect` field would contend for this JSON name.
2249
2256
  */
2250
2257
  effect?: PointerEffect;
2251
2258
  /** How quickly the node settles toward the pointer, in milliseconds (POINTER). */
@@ -4070,6 +4077,13 @@ interface ShapeData {
4070
4077
  styles?: ShapeDataStyles;
4071
4078
  /** Node animation. */
4072
4079
  animation?: Animation;
4080
+ /** Link details for shapes that are links. */
4081
+ link?: Link;
4082
+ /**
4083
+ * Alternate text describing the link's purpose for accessibility. Applies only when `link` is set.
4084
+ * @maxLength 1000
4085
+ */
4086
+ altText?: string | null;
4073
4087
  }
4074
4088
  interface ShapeDataStyles {
4075
4089
  /**