@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.
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +18 -4
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +18 -4
- package/build/cjs/meta.js.map +1 -1
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +18 -4
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +18 -4
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +18 -4
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +18 -4
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +18 -4
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +18 -4
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -1581,12 +1581,19 @@ interface Tag {
|
|
|
1581
1581
|
/** SEO tag inner content. For example, `<title> inner content </title>`. */
|
|
1582
1582
|
children?: string;
|
|
1583
1583
|
/**
|
|
1584
|
-
* Whether the tag is a [custom tag](https://support.wix.com/en/article/adding-additional-meta-tags-to-your-sites-pages)
|
|
1584
|
+
* Whether the tag is a [custom tag](https://support.wix.com/en/article/adding-additional-meta-tags-to-your-sites-pages) —
|
|
1585
|
+
* i.e. an entry from the site's Advanced/Custom Tags list.
|
|
1586
|
+
*
|
|
1587
|
+
* This flag is scoped to that feature only. It is NOT an indicator of whether a standard tag
|
|
1588
|
+
* (`title`, `description`, Open Graph, etc.) reflects a manually configured value versus a computed
|
|
1589
|
+
* default/pattern — standard tags always resolve with `custom: false`, even when their content comes
|
|
1590
|
+
* from a page's manually saved SEO title/description override. Don't use this field to verify whether
|
|
1591
|
+
* a live page reflects a manual per-page SEO edit.
|
|
1585
1592
|
*
|
|
1586
1593
|
* Limitation: when `ResolveStaticPageSeoTags` is called without `seoData`, the per-page SEO data is read
|
|
1587
1594
|
* only from the Vibe/Wix-managed-headless override store. That store holds nothing for classic Wix Editor
|
|
1588
|
-
* or Wix Studio pages, so
|
|
1589
|
-
*
|
|
1595
|
+
* or Wix Studio pages, so even genuine Advanced/Custom Tags saved on those pages are missing from the
|
|
1596
|
+
* response entirely — there, `false` means this API could not tell, not that no custom tag exists.
|
|
1590
1597
|
* Pass `seoData` explicitly to resolve against a known set of tags.
|
|
1591
1598
|
*/
|
|
1592
1599
|
custom?: boolean;
|
|
@@ -2223,7 +2230,7 @@ interface Animation {
|
|
|
2223
2230
|
/**
|
|
2224
2231
|
* POINTER carries its fields directly on the union member in the JTD wall, hence
|
|
2225
2232
|
* flat fields here (ts-proto camelCase must equal the JTD property names). A future
|
|
2226
|
-
*
|
|
2233
|
+
* kind that also needs an `effect` field would contend for this JSON name.
|
|
2227
2234
|
*/
|
|
2228
2235
|
effect?: PointerEffect;
|
|
2229
2236
|
/** How quickly the node settles toward the pointer, in milliseconds (POINTER). */
|
|
@@ -4048,6 +4055,13 @@ interface ShapeData {
|
|
|
4048
4055
|
styles?: ShapeDataStyles;
|
|
4049
4056
|
/** Node animation. */
|
|
4050
4057
|
animation?: Animation;
|
|
4058
|
+
/** Link details for shapes that are links. */
|
|
4059
|
+
link?: Link;
|
|
4060
|
+
/**
|
|
4061
|
+
* Alternate text describing the link's purpose for accessibility. Applies only when `link` is set.
|
|
4062
|
+
* @maxLength 1000
|
|
4063
|
+
*/
|
|
4064
|
+
altText?: string | null;
|
|
4051
4065
|
}
|
|
4052
4066
|
interface ShapeDataStyles {
|
|
4053
4067
|
/**
|