@wix/auto_sdk_blog_draft-posts 1.0.93 → 1.0.95
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/cjs/schemas.js +15 -15
- package/build/cjs/schemas.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/es/schemas.mjs +15 -15
- package/build/es/schemas.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/cjs/schemas.js +15 -15
- package/build/internal/cjs/schemas.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/build/internal/es/schemas.mjs +15 -15
- package/build/internal/es/schemas.mjs.map +1 -1
- package/package.json +2 -2
package/build/es/meta.d.mts
CHANGED
|
@@ -756,7 +756,7 @@ interface Animation {
|
|
|
756
756
|
/**
|
|
757
757
|
* POINTER carries its fields directly on the union member in the JTD wall, hence
|
|
758
758
|
* flat fields here (ts-proto camelCase must equal the JTD property names). A future
|
|
759
|
-
*
|
|
759
|
+
* kind that also needs an `effect` field would contend for this JSON name.
|
|
760
760
|
*/
|
|
761
761
|
effect?: PointerEffect;
|
|
762
762
|
/** How quickly the node settles toward the pointer, in milliseconds (POINTER). */
|
|
@@ -2581,6 +2581,13 @@ interface ShapeData {
|
|
|
2581
2581
|
styles?: ShapeDataStyles;
|
|
2582
2582
|
/** Node animation. */
|
|
2583
2583
|
animation?: Animation;
|
|
2584
|
+
/** Link details for shapes that are links. */
|
|
2585
|
+
link?: Link;
|
|
2586
|
+
/**
|
|
2587
|
+
* Alternate text describing the link's purpose for accessibility. Applies only when `link` is set.
|
|
2588
|
+
* @maxLength 1000
|
|
2589
|
+
*/
|
|
2590
|
+
altText?: string | null;
|
|
2584
2591
|
}
|
|
2585
2592
|
interface ShapeDataStyles {
|
|
2586
2593
|
/**
|
|
@@ -2970,12 +2977,19 @@ interface Tag {
|
|
|
2970
2977
|
/** SEO tag inner content. For example, `<title> inner content </title>`. */
|
|
2971
2978
|
children?: string;
|
|
2972
2979
|
/**
|
|
2973
|
-
* Whether the tag is a [custom tag](https://support.wix.com/en/article/adding-additional-meta-tags-to-your-sites-pages)
|
|
2980
|
+
* Whether the tag is a [custom tag](https://support.wix.com/en/article/adding-additional-meta-tags-to-your-sites-pages) —
|
|
2981
|
+
* i.e. an entry from the site's Advanced/Custom Tags list.
|
|
2982
|
+
*
|
|
2983
|
+
* This flag is scoped to that feature only. It is NOT an indicator of whether a standard tag
|
|
2984
|
+
* (`title`, `description`, Open Graph, etc.) reflects a manually configured value versus a computed
|
|
2985
|
+
* default/pattern — standard tags always resolve with `custom: false`, even when their content comes
|
|
2986
|
+
* from a page's manually saved SEO title/description override. Don't use this field to verify whether
|
|
2987
|
+
* a live page reflects a manual per-page SEO edit.
|
|
2974
2988
|
*
|
|
2975
2989
|
* Limitation: when `ResolveStaticPageSeoTags` is called without `seoData`, the per-page SEO data is read
|
|
2976
2990
|
* only from the Vibe/Wix-managed-headless override store. That store holds nothing for classic Wix Editor
|
|
2977
|
-
* or Wix Studio pages, so
|
|
2978
|
-
*
|
|
2991
|
+
* or Wix Studio pages, so even genuine Advanced/Custom Tags saved on those pages are missing from the
|
|
2992
|
+
* response entirely — there, `false` means this API could not tell, not that no custom tag exists.
|
|
2979
2993
|
* Pass `seoData` explicitly to resolve against a known set of tags.
|
|
2980
2994
|
*/
|
|
2981
2995
|
custom?: boolean;
|