@wix/auto_sdk_table-reservations_experiences 1.0.53 → 1.0.55
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.d.ts +2 -2
- package/build/cjs/index.js +46 -13
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +2 -2
- package/build/cjs/index.typings.js +39 -6
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +112 -2
- package/build/cjs/meta.js +37 -0
- package/build/cjs/meta.js.map +1 -1
- package/build/cjs/schemas.js +42 -42
- package/build/cjs/schemas.js.map +1 -1
- package/build/cjs/{table-reservations-v1-experience-experiences.universal-CQEGusXL.d.ts → table-reservations-v1-experience-experiences.universal-IWOANhQE.d.ts} +117 -17
- package/build/es/index.d.mts +2 -2
- package/build/es/index.mjs +44 -13
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +2 -2
- package/build/es/index.typings.mjs +37 -6
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +112 -2
- package/build/es/meta.mjs +35 -0
- package/build/es/meta.mjs.map +1 -1
- package/build/es/schemas.mjs +42 -42
- package/build/es/schemas.mjs.map +1 -1
- package/build/es/{table-reservations-v1-experience-experiences.universal-CQEGusXL.d.mts → table-reservations-v1-experience-experiences.universal-IWOANhQE.d.mts} +117 -17
- package/build/internal/cjs/index.d.ts +2 -2
- package/build/internal/cjs/index.js +46 -13
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +2 -2
- package/build/internal/cjs/index.typings.js +39 -6
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +112 -2
- package/build/internal/cjs/meta.js +37 -0
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/cjs/schemas.js +42 -42
- package/build/internal/cjs/schemas.js.map +1 -1
- package/build/internal/cjs/{table-reservations-v1-experience-experiences.universal-CK8DH5zA.d.ts → table-reservations-v1-experience-experiences.universal-DTD8OqnY.d.ts} +117 -17
- package/build/internal/es/index.d.mts +2 -2
- package/build/internal/es/index.mjs +44 -13
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +2 -2
- package/build/internal/es/index.typings.mjs +37 -6
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +112 -2
- package/build/internal/es/meta.mjs +35 -0
- package/build/internal/es/meta.mjs.map +1 -1
- package/build/internal/es/schemas.mjs +42 -42
- package/build/internal/es/schemas.mjs.map +1 -1
- package/build/internal/es/{table-reservations-v1-experience-experiences.universal-CK8DH5zA.d.mts → table-reservations-v1-experience-experiences.universal-DTD8OqnY.d.mts} +117 -17
- package/package.json +3 -3
package/build/cjs/schemas.js
CHANGED
|
@@ -57,7 +57,7 @@ module.exports = __toCommonJS(schemas_exports);
|
|
|
57
57
|
|
|
58
58
|
// src/table-reservations-v1-experience-experiences.schemas.ts
|
|
59
59
|
var z = __toESM(require("zod"));
|
|
60
|
-
var CreateExperienceRequest = z.object({
|
|
60
|
+
var CreateExperienceRequest = /* @__PURE__ */ z.object({
|
|
61
61
|
experience: z.object({
|
|
62
62
|
_id: z.string().describe("Experience ID.").regex(
|
|
63
63
|
/^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,
|
|
@@ -282,7 +282,7 @@ var CreateExperienceRequest = z.object({
|
|
|
282
282
|
tags: z.array(
|
|
283
283
|
z.object({
|
|
284
284
|
type: z.string().describe(
|
|
285
|
-
"SEO tag type.\n\n\nSupported values: `title`, `meta`, `script`, `link
|
|
285
|
+
"SEO tag type.\n\n\nSupported values: `title`, `meta`, `script`, `link`.\n\nWhich of these an API actually accepts depends on where the tag is being set: this\nlist is not a blanket guarantee across every API that reuses this message. Site SEO\nTags in particular accepts only `meta` (see `SiteSeoTags.tags`) and rejects\n`title`/`script`/`link` with a validation error even though they appear here \u2014\ncheck the field description of the specific `tags`-typed field you're writing to\nfor the types it actually supports and the error it returns."
|
|
286
286
|
).optional(),
|
|
287
287
|
props: z.record(z.string(), z.any()).describe(
|
|
288
288
|
'A `{"key": "value"}` pair object where each SEO tag property (`"name"`, `"content"`, `"rel"`, `"href"`) contains a value.\nFor example: `{"name": "description", "content": "the description itself"}`.'
|
|
@@ -294,7 +294,7 @@ var CreateExperienceRequest = z.object({
|
|
|
294
294
|
"SEO tag inner content. For example, `<title> inner content </title>`."
|
|
295
295
|
).optional(),
|
|
296
296
|
custom: z.boolean().describe(
|
|
297
|
-
"Whether the tag is a [custom tag](https://support.wix.com/en/article/adding-additional-meta-tags-to-your-sites-pages) \u2014\ni.e. an entry from the site's Advanced/Custom Tags list.\n\nThis flag is scoped to that feature only. It is NOT an indicator of whether a standard tag\n(`title`, `description`, Open Graph, etc.) reflects a manually configured value versus a computed\ndefault/pattern \u2014 standard tags always resolve with `custom: false`, even when their content comes\nfrom a page's manually saved SEO title/description override. Don't use this field to verify whether\na live page reflects a manual per-page SEO edit.\n\nLimitation: when `ResolveStaticPageSeoTags` is called without `seoData`, the per-page SEO data is read\nonly from the Vibe/Wix-managed-headless override store. That store holds nothing for classic Wix Editor\nor Wix Studio pages, so even genuine Advanced/Custom Tags saved on those pages are missing from the\nresponse entirely \u2014 there, `false` means this API could not tell, not that no custom tag exists.\nPass `seoData` explicitly to resolve against a known set of tags."
|
|
297
|
+
"Whether the tag is a [custom tag](https://support.wix.com/en/article/adding-additional-meta-tags-to-your-sites-pages) \u2014\ni.e. an entry from the site's Advanced/Custom Tags list.\n\nNote this is a separate restriction from Site SEO Tags' own type restriction on\n`SiteSeoTags.tags`: even with `custom` unset, Site SEO Tags rejects `script` (e.g.\nfor site-wide structured data) unconditionally. There is currently no way to set\nsite-wide, every-page structured data through any of these APIs \u2014 write a per-page\n`script` tag through the Item SEO Tags API instead.\n\nThis flag is scoped to that feature only. It is NOT an indicator of whether a standard tag\n(`title`, `description`, Open Graph, etc.) reflects a manually configured value versus a computed\ndefault/pattern \u2014 standard tags always resolve with `custom: false`, even when their content comes\nfrom a page's manually saved SEO title/description override. Don't use this field to verify whether\na live page reflects a manual per-page SEO edit.\n\nLimitation: when `ResolveStaticPageSeoTags` is called without `seoData`, the per-page SEO data is read\nonly from the Vibe/Wix-managed-headless override store. That store holds nothing for classic Wix Editor\nor Wix Studio pages, so even genuine Advanced/Custom Tags saved on those pages are missing from the\nresponse entirely \u2014 there, `false` means this API could not tell, not that no custom tag exists.\nPass `seoData` explicitly to resolve against a known set of tags."
|
|
298
298
|
).optional(),
|
|
299
299
|
disabled: z.boolean().describe(
|
|
300
300
|
"Whether the tag is disabled. If the tag is disabled, people can't find your page when searching for this phrase in search engines."
|
|
@@ -323,7 +323,7 @@ var CreateExperienceRequest = z.object({
|
|
|
323
323
|
}).describe("SEO settings for the experience page.").optional()
|
|
324
324
|
}).describe("Experience to create.")
|
|
325
325
|
});
|
|
326
|
-
var CreateExperienceResponse = z.object({
|
|
326
|
+
var CreateExperienceResponse = /* @__PURE__ */ z.object({
|
|
327
327
|
_id: z.string().describe("Experience ID.").regex(
|
|
328
328
|
/^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,
|
|
329
329
|
"Must be a valid GUID"
|
|
@@ -545,7 +545,7 @@ var CreateExperienceResponse = z.object({
|
|
|
545
545
|
tags: z.array(
|
|
546
546
|
z.object({
|
|
547
547
|
type: z.string().describe(
|
|
548
|
-
"SEO tag type.\n\n\nSupported values: `title`, `meta`, `script`, `link
|
|
548
|
+
"SEO tag type.\n\n\nSupported values: `title`, `meta`, `script`, `link`.\n\nWhich of these an API actually accepts depends on where the tag is being set: this\nlist is not a blanket guarantee across every API that reuses this message. Site SEO\nTags in particular accepts only `meta` (see `SiteSeoTags.tags`) and rejects\n`title`/`script`/`link` with a validation error even though they appear here \u2014\ncheck the field description of the specific `tags`-typed field you're writing to\nfor the types it actually supports and the error it returns."
|
|
549
549
|
).optional(),
|
|
550
550
|
props: z.record(z.string(), z.any()).describe(
|
|
551
551
|
'A `{"key": "value"}` pair object where each SEO tag property (`"name"`, `"content"`, `"rel"`, `"href"`) contains a value.\nFor example: `{"name": "description", "content": "the description itself"}`.'
|
|
@@ -557,7 +557,7 @@ var CreateExperienceResponse = z.object({
|
|
|
557
557
|
"SEO tag inner content. For example, `<title> inner content </title>`."
|
|
558
558
|
).optional(),
|
|
559
559
|
custom: z.boolean().describe(
|
|
560
|
-
"Whether the tag is a [custom tag](https://support.wix.com/en/article/adding-additional-meta-tags-to-your-sites-pages) \u2014\ni.e. an entry from the site's Advanced/Custom Tags list.\n\nThis flag is scoped to that feature only. It is NOT an indicator of whether a standard tag\n(`title`, `description`, Open Graph, etc.) reflects a manually configured value versus a computed\ndefault/pattern \u2014 standard tags always resolve with `custom: false`, even when their content comes\nfrom a page's manually saved SEO title/description override. Don't use this field to verify whether\na live page reflects a manual per-page SEO edit.\n\nLimitation: when `ResolveStaticPageSeoTags` is called without `seoData`, the per-page SEO data is read\nonly from the Vibe/Wix-managed-headless override store. That store holds nothing for classic Wix Editor\nor Wix Studio pages, so even genuine Advanced/Custom Tags saved on those pages are missing from the\nresponse entirely \u2014 there, `false` means this API could not tell, not that no custom tag exists.\nPass `seoData` explicitly to resolve against a known set of tags."
|
|
560
|
+
"Whether the tag is a [custom tag](https://support.wix.com/en/article/adding-additional-meta-tags-to-your-sites-pages) \u2014\ni.e. an entry from the site's Advanced/Custom Tags list.\n\nNote this is a separate restriction from Site SEO Tags' own type restriction on\n`SiteSeoTags.tags`: even with `custom` unset, Site SEO Tags rejects `script` (e.g.\nfor site-wide structured data) unconditionally. There is currently no way to set\nsite-wide, every-page structured data through any of these APIs \u2014 write a per-page\n`script` tag through the Item SEO Tags API instead.\n\nThis flag is scoped to that feature only. It is NOT an indicator of whether a standard tag\n(`title`, `description`, Open Graph, etc.) reflects a manually configured value versus a computed\ndefault/pattern \u2014 standard tags always resolve with `custom: false`, even when their content comes\nfrom a page's manually saved SEO title/description override. Don't use this field to verify whether\na live page reflects a manual per-page SEO edit.\n\nLimitation: when `ResolveStaticPageSeoTags` is called without `seoData`, the per-page SEO data is read\nonly from the Vibe/Wix-managed-headless override store. That store holds nothing for classic Wix Editor\nor Wix Studio pages, so even genuine Advanced/Custom Tags saved on those pages are missing from the\nresponse entirely \u2014 there, `false` means this API could not tell, not that no custom tag exists.\nPass `seoData` explicitly to resolve against a known set of tags."
|
|
561
561
|
).optional(),
|
|
562
562
|
disabled: z.boolean().describe(
|
|
563
563
|
"Whether the tag is disabled. If the tag is disabled, people can't find your page when searching for this phrase in search engines."
|
|
@@ -585,13 +585,13 @@ var CreateExperienceResponse = z.object({
|
|
|
585
585
|
).optional()
|
|
586
586
|
}).describe("SEO settings for the experience page.").optional()
|
|
587
587
|
});
|
|
588
|
-
var GetExperienceRequest = z.object({
|
|
588
|
+
var GetExperienceRequest = /* @__PURE__ */ z.object({
|
|
589
589
|
experienceId: z.string().describe("ID of the experience to retrieve.").regex(
|
|
590
590
|
/^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,
|
|
591
591
|
"Must be a valid GUID"
|
|
592
592
|
)
|
|
593
593
|
});
|
|
594
|
-
var GetExperienceResponse = z.object({
|
|
594
|
+
var GetExperienceResponse = /* @__PURE__ */ z.object({
|
|
595
595
|
_id: z.string().describe("Experience ID.").regex(
|
|
596
596
|
/^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,
|
|
597
597
|
"Must be a valid GUID"
|
|
@@ -813,7 +813,7 @@ var GetExperienceResponse = z.object({
|
|
|
813
813
|
tags: z.array(
|
|
814
814
|
z.object({
|
|
815
815
|
type: z.string().describe(
|
|
816
|
-
"SEO tag type.\n\n\nSupported values: `title`, `meta`, `script`, `link
|
|
816
|
+
"SEO tag type.\n\n\nSupported values: `title`, `meta`, `script`, `link`.\n\nWhich of these an API actually accepts depends on where the tag is being set: this\nlist is not a blanket guarantee across every API that reuses this message. Site SEO\nTags in particular accepts only `meta` (see `SiteSeoTags.tags`) and rejects\n`title`/`script`/`link` with a validation error even though they appear here \u2014\ncheck the field description of the specific `tags`-typed field you're writing to\nfor the types it actually supports and the error it returns."
|
|
817
817
|
).optional(),
|
|
818
818
|
props: z.record(z.string(), z.any()).describe(
|
|
819
819
|
'A `{"key": "value"}` pair object where each SEO tag property (`"name"`, `"content"`, `"rel"`, `"href"`) contains a value.\nFor example: `{"name": "description", "content": "the description itself"}`.'
|
|
@@ -825,7 +825,7 @@ var GetExperienceResponse = z.object({
|
|
|
825
825
|
"SEO tag inner content. For example, `<title> inner content </title>`."
|
|
826
826
|
).optional(),
|
|
827
827
|
custom: z.boolean().describe(
|
|
828
|
-
"Whether the tag is a [custom tag](https://support.wix.com/en/article/adding-additional-meta-tags-to-your-sites-pages) \u2014\ni.e. an entry from the site's Advanced/Custom Tags list.\n\nThis flag is scoped to that feature only. It is NOT an indicator of whether a standard tag\n(`title`, `description`, Open Graph, etc.) reflects a manually configured value versus a computed\ndefault/pattern \u2014 standard tags always resolve with `custom: false`, even when their content comes\nfrom a page's manually saved SEO title/description override. Don't use this field to verify whether\na live page reflects a manual per-page SEO edit.\n\nLimitation: when `ResolveStaticPageSeoTags` is called without `seoData`, the per-page SEO data is read\nonly from the Vibe/Wix-managed-headless override store. That store holds nothing for classic Wix Editor\nor Wix Studio pages, so even genuine Advanced/Custom Tags saved on those pages are missing from the\nresponse entirely \u2014 there, `false` means this API could not tell, not that no custom tag exists.\nPass `seoData` explicitly to resolve against a known set of tags."
|
|
828
|
+
"Whether the tag is a [custom tag](https://support.wix.com/en/article/adding-additional-meta-tags-to-your-sites-pages) \u2014\ni.e. an entry from the site's Advanced/Custom Tags list.\n\nNote this is a separate restriction from Site SEO Tags' own type restriction on\n`SiteSeoTags.tags`: even with `custom` unset, Site SEO Tags rejects `script` (e.g.\nfor site-wide structured data) unconditionally. There is currently no way to set\nsite-wide, every-page structured data through any of these APIs \u2014 write a per-page\n`script` tag through the Item SEO Tags API instead.\n\nThis flag is scoped to that feature only. It is NOT an indicator of whether a standard tag\n(`title`, `description`, Open Graph, etc.) reflects a manually configured value versus a computed\ndefault/pattern \u2014 standard tags always resolve with `custom: false`, even when their content comes\nfrom a page's manually saved SEO title/description override. Don't use this field to verify whether\na live page reflects a manual per-page SEO edit.\n\nLimitation: when `ResolveStaticPageSeoTags` is called without `seoData`, the per-page SEO data is read\nonly from the Vibe/Wix-managed-headless override store. That store holds nothing for classic Wix Editor\nor Wix Studio pages, so even genuine Advanced/Custom Tags saved on those pages are missing from the\nresponse entirely \u2014 there, `false` means this API could not tell, not that no custom tag exists.\nPass `seoData` explicitly to resolve against a known set of tags."
|
|
829
829
|
).optional(),
|
|
830
830
|
disabled: z.boolean().describe(
|
|
831
831
|
"Whether the tag is disabled. If the tag is disabled, people can't find your page when searching for this phrase in search engines."
|
|
@@ -853,10 +853,10 @@ var GetExperienceResponse = z.object({
|
|
|
853
853
|
).optional()
|
|
854
854
|
}).describe("SEO settings for the experience page.").optional()
|
|
855
855
|
});
|
|
856
|
-
var GetExperienceBySlugRequest = z.object({
|
|
856
|
+
var GetExperienceBySlugRequest = /* @__PURE__ */ z.object({
|
|
857
857
|
slug: z.string().describe("Slug of the experience to retrieve.").max(200)
|
|
858
858
|
});
|
|
859
|
-
var GetExperienceBySlugResponse = z.object({
|
|
859
|
+
var GetExperienceBySlugResponse = /* @__PURE__ */ z.object({
|
|
860
860
|
experience: z.object({
|
|
861
861
|
_id: z.string().describe("Experience ID.").regex(
|
|
862
862
|
/^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,
|
|
@@ -1085,7 +1085,7 @@ var GetExperienceBySlugResponse = z.object({
|
|
|
1085
1085
|
tags: z.array(
|
|
1086
1086
|
z.object({
|
|
1087
1087
|
type: z.string().describe(
|
|
1088
|
-
"SEO tag type.\n\n\nSupported values: `title`, `meta`, `script`, `link
|
|
1088
|
+
"SEO tag type.\n\n\nSupported values: `title`, `meta`, `script`, `link`.\n\nWhich of these an API actually accepts depends on where the tag is being set: this\nlist is not a blanket guarantee across every API that reuses this message. Site SEO\nTags in particular accepts only `meta` (see `SiteSeoTags.tags`) and rejects\n`title`/`script`/`link` with a validation error even though they appear here \u2014\ncheck the field description of the specific `tags`-typed field you're writing to\nfor the types it actually supports and the error it returns."
|
|
1089
1089
|
).optional(),
|
|
1090
1090
|
props: z.record(z.string(), z.any()).describe(
|
|
1091
1091
|
'A `{"key": "value"}` pair object where each SEO tag property (`"name"`, `"content"`, `"rel"`, `"href"`) contains a value.\nFor example: `{"name": "description", "content": "the description itself"}`.'
|
|
@@ -1097,7 +1097,7 @@ var GetExperienceBySlugResponse = z.object({
|
|
|
1097
1097
|
"SEO tag inner content. For example, `<title> inner content </title>`."
|
|
1098
1098
|
).optional(),
|
|
1099
1099
|
custom: z.boolean().describe(
|
|
1100
|
-
"Whether the tag is a [custom tag](https://support.wix.com/en/article/adding-additional-meta-tags-to-your-sites-pages) \u2014\ni.e. an entry from the site's Advanced/Custom Tags list.\n\nThis flag is scoped to that feature only. It is NOT an indicator of whether a standard tag\n(`title`, `description`, Open Graph, etc.) reflects a manually configured value versus a computed\ndefault/pattern \u2014 standard tags always resolve with `custom: false`, even when their content comes\nfrom a page's manually saved SEO title/description override. Don't use this field to verify whether\na live page reflects a manual per-page SEO edit.\n\nLimitation: when `ResolveStaticPageSeoTags` is called without `seoData`, the per-page SEO data is read\nonly from the Vibe/Wix-managed-headless override store. That store holds nothing for classic Wix Editor\nor Wix Studio pages, so even genuine Advanced/Custom Tags saved on those pages are missing from the\nresponse entirely \u2014 there, `false` means this API could not tell, not that no custom tag exists.\nPass `seoData` explicitly to resolve against a known set of tags."
|
|
1100
|
+
"Whether the tag is a [custom tag](https://support.wix.com/en/article/adding-additional-meta-tags-to-your-sites-pages) \u2014\ni.e. an entry from the site's Advanced/Custom Tags list.\n\nNote this is a separate restriction from Site SEO Tags' own type restriction on\n`SiteSeoTags.tags`: even with `custom` unset, Site SEO Tags rejects `script` (e.g.\nfor site-wide structured data) unconditionally. There is currently no way to set\nsite-wide, every-page structured data through any of these APIs \u2014 write a per-page\n`script` tag through the Item SEO Tags API instead.\n\nThis flag is scoped to that feature only. It is NOT an indicator of whether a standard tag\n(`title`, `description`, Open Graph, etc.) reflects a manually configured value versus a computed\ndefault/pattern \u2014 standard tags always resolve with `custom: false`, even when their content comes\nfrom a page's manually saved SEO title/description override. Don't use this field to verify whether\na live page reflects a manual per-page SEO edit.\n\nLimitation: when `ResolveStaticPageSeoTags` is called without `seoData`, the per-page SEO data is read\nonly from the Vibe/Wix-managed-headless override store. That store holds nothing for classic Wix Editor\nor Wix Studio pages, so even genuine Advanced/Custom Tags saved on those pages are missing from the\nresponse entirely \u2014 there, `false` means this API could not tell, not that no custom tag exists.\nPass `seoData` explicitly to resolve against a known set of tags."
|
|
1101
1101
|
).optional(),
|
|
1102
1102
|
disabled: z.boolean().describe(
|
|
1103
1103
|
"Whether the tag is disabled. If the tag is disabled, people can't find your page when searching for this phrase in search engines."
|
|
@@ -1126,7 +1126,7 @@ var GetExperienceBySlugResponse = z.object({
|
|
|
1126
1126
|
}).describe("SEO settings for the experience page.").optional()
|
|
1127
1127
|
}).describe("Retrieved experience.").optional()
|
|
1128
1128
|
});
|
|
1129
|
-
var UpdateExperienceRequest = z.object({
|
|
1129
|
+
var UpdateExperienceRequest = /* @__PURE__ */ z.object({
|
|
1130
1130
|
_id: z.string().describe("Experience ID.").regex(
|
|
1131
1131
|
/^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,
|
|
1132
1132
|
"Must be a valid GUID"
|
|
@@ -1357,7 +1357,7 @@ var UpdateExperienceRequest = z.object({
|
|
|
1357
1357
|
tags: z.array(
|
|
1358
1358
|
z.object({
|
|
1359
1359
|
type: z.string().describe(
|
|
1360
|
-
"SEO tag type.\n\n\nSupported values: `title`, `meta`, `script`, `link
|
|
1360
|
+
"SEO tag type.\n\n\nSupported values: `title`, `meta`, `script`, `link`.\n\nWhich of these an API actually accepts depends on where the tag is being set: this\nlist is not a blanket guarantee across every API that reuses this message. Site SEO\nTags in particular accepts only `meta` (see `SiteSeoTags.tags`) and rejects\n`title`/`script`/`link` with a validation error even though they appear here \u2014\ncheck the field description of the specific `tags`-typed field you're writing to\nfor the types it actually supports and the error it returns."
|
|
1361
1361
|
).optional(),
|
|
1362
1362
|
props: z.record(z.string(), z.any()).describe(
|
|
1363
1363
|
'A `{"key": "value"}` pair object where each SEO tag property (`"name"`, `"content"`, `"rel"`, `"href"`) contains a value.\nFor example: `{"name": "description", "content": "the description itself"}`.'
|
|
@@ -1369,7 +1369,7 @@ var UpdateExperienceRequest = z.object({
|
|
|
1369
1369
|
"SEO tag inner content. For example, `<title> inner content </title>`."
|
|
1370
1370
|
).optional(),
|
|
1371
1371
|
custom: z.boolean().describe(
|
|
1372
|
-
"Whether the tag is a [custom tag](https://support.wix.com/en/article/adding-additional-meta-tags-to-your-sites-pages) \u2014\ni.e. an entry from the site's Advanced/Custom Tags list.\n\nThis flag is scoped to that feature only. It is NOT an indicator of whether a standard tag\n(`title`, `description`, Open Graph, etc.) reflects a manually configured value versus a computed\ndefault/pattern \u2014 standard tags always resolve with `custom: false`, even when their content comes\nfrom a page's manually saved SEO title/description override. Don't use this field to verify whether\na live page reflects a manual per-page SEO edit.\n\nLimitation: when `ResolveStaticPageSeoTags` is called without `seoData`, the per-page SEO data is read\nonly from the Vibe/Wix-managed-headless override store. That store holds nothing for classic Wix Editor\nor Wix Studio pages, so even genuine Advanced/Custom Tags saved on those pages are missing from the\nresponse entirely \u2014 there, `false` means this API could not tell, not that no custom tag exists.\nPass `seoData` explicitly to resolve against a known set of tags."
|
|
1372
|
+
"Whether the tag is a [custom tag](https://support.wix.com/en/article/adding-additional-meta-tags-to-your-sites-pages) \u2014\ni.e. an entry from the site's Advanced/Custom Tags list.\n\nNote this is a separate restriction from Site SEO Tags' own type restriction on\n`SiteSeoTags.tags`: even with `custom` unset, Site SEO Tags rejects `script` (e.g.\nfor site-wide structured data) unconditionally. There is currently no way to set\nsite-wide, every-page structured data through any of these APIs \u2014 write a per-page\n`script` tag through the Item SEO Tags API instead.\n\nThis flag is scoped to that feature only. It is NOT an indicator of whether a standard tag\n(`title`, `description`, Open Graph, etc.) reflects a manually configured value versus a computed\ndefault/pattern \u2014 standard tags always resolve with `custom: false`, even when their content comes\nfrom a page's manually saved SEO title/description override. Don't use this field to verify whether\na live page reflects a manual per-page SEO edit.\n\nLimitation: when `ResolveStaticPageSeoTags` is called without `seoData`, the per-page SEO data is read\nonly from the Vibe/Wix-managed-headless override store. That store holds nothing for classic Wix Editor\nor Wix Studio pages, so even genuine Advanced/Custom Tags saved on those pages are missing from the\nresponse entirely \u2014 there, `false` means this API could not tell, not that no custom tag exists.\nPass `seoData` explicitly to resolve against a known set of tags."
|
|
1373
1373
|
).optional(),
|
|
1374
1374
|
disabled: z.boolean().describe(
|
|
1375
1375
|
"Whether the tag is disabled. If the tag is disabled, people can't find your page when searching for this phrase in search engines."
|
|
@@ -1398,7 +1398,7 @@ var UpdateExperienceRequest = z.object({
|
|
|
1398
1398
|
}).describe("SEO settings for the experience page.").optional()
|
|
1399
1399
|
}).describe("Experience to update. May be partial.")
|
|
1400
1400
|
});
|
|
1401
|
-
var UpdateExperienceResponse = z.object({
|
|
1401
|
+
var UpdateExperienceResponse = /* @__PURE__ */ z.object({
|
|
1402
1402
|
_id: z.string().describe("Experience ID.").regex(
|
|
1403
1403
|
/^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,
|
|
1404
1404
|
"Must be a valid GUID"
|
|
@@ -1620,7 +1620,7 @@ var UpdateExperienceResponse = z.object({
|
|
|
1620
1620
|
tags: z.array(
|
|
1621
1621
|
z.object({
|
|
1622
1622
|
type: z.string().describe(
|
|
1623
|
-
"SEO tag type.\n\n\nSupported values: `title`, `meta`, `script`, `link
|
|
1623
|
+
"SEO tag type.\n\n\nSupported values: `title`, `meta`, `script`, `link`.\n\nWhich of these an API actually accepts depends on where the tag is being set: this\nlist is not a blanket guarantee across every API that reuses this message. Site SEO\nTags in particular accepts only `meta` (see `SiteSeoTags.tags`) and rejects\n`title`/`script`/`link` with a validation error even though they appear here \u2014\ncheck the field description of the specific `tags`-typed field you're writing to\nfor the types it actually supports and the error it returns."
|
|
1624
1624
|
).optional(),
|
|
1625
1625
|
props: z.record(z.string(), z.any()).describe(
|
|
1626
1626
|
'A `{"key": "value"}` pair object where each SEO tag property (`"name"`, `"content"`, `"rel"`, `"href"`) contains a value.\nFor example: `{"name": "description", "content": "the description itself"}`.'
|
|
@@ -1632,7 +1632,7 @@ var UpdateExperienceResponse = z.object({
|
|
|
1632
1632
|
"SEO tag inner content. For example, `<title> inner content </title>`."
|
|
1633
1633
|
).optional(),
|
|
1634
1634
|
custom: z.boolean().describe(
|
|
1635
|
-
"Whether the tag is a [custom tag](https://support.wix.com/en/article/adding-additional-meta-tags-to-your-sites-pages) \u2014\ni.e. an entry from the site's Advanced/Custom Tags list.\n\nThis flag is scoped to that feature only. It is NOT an indicator of whether a standard tag\n(`title`, `description`, Open Graph, etc.) reflects a manually configured value versus a computed\ndefault/pattern \u2014 standard tags always resolve with `custom: false`, even when their content comes\nfrom a page's manually saved SEO title/description override. Don't use this field to verify whether\na live page reflects a manual per-page SEO edit.\n\nLimitation: when `ResolveStaticPageSeoTags` is called without `seoData`, the per-page SEO data is read\nonly from the Vibe/Wix-managed-headless override store. That store holds nothing for classic Wix Editor\nor Wix Studio pages, so even genuine Advanced/Custom Tags saved on those pages are missing from the\nresponse entirely \u2014 there, `false` means this API could not tell, not that no custom tag exists.\nPass `seoData` explicitly to resolve against a known set of tags."
|
|
1635
|
+
"Whether the tag is a [custom tag](https://support.wix.com/en/article/adding-additional-meta-tags-to-your-sites-pages) \u2014\ni.e. an entry from the site's Advanced/Custom Tags list.\n\nNote this is a separate restriction from Site SEO Tags' own type restriction on\n`SiteSeoTags.tags`: even with `custom` unset, Site SEO Tags rejects `script` (e.g.\nfor site-wide structured data) unconditionally. There is currently no way to set\nsite-wide, every-page structured data through any of these APIs \u2014 write a per-page\n`script` tag through the Item SEO Tags API instead.\n\nThis flag is scoped to that feature only. It is NOT an indicator of whether a standard tag\n(`title`, `description`, Open Graph, etc.) reflects a manually configured value versus a computed\ndefault/pattern \u2014 standard tags always resolve with `custom: false`, even when their content comes\nfrom a page's manually saved SEO title/description override. Don't use this field to verify whether\na live page reflects a manual per-page SEO edit.\n\nLimitation: when `ResolveStaticPageSeoTags` is called without `seoData`, the per-page SEO data is read\nonly from the Vibe/Wix-managed-headless override store. That store holds nothing for classic Wix Editor\nor Wix Studio pages, so even genuine Advanced/Custom Tags saved on those pages are missing from the\nresponse entirely \u2014 there, `false` means this API could not tell, not that no custom tag exists.\nPass `seoData` explicitly to resolve against a known set of tags."
|
|
1636
1636
|
).optional(),
|
|
1637
1637
|
disabled: z.boolean().describe(
|
|
1638
1638
|
"Whether the tag is disabled. If the tag is disabled, people can't find your page when searching for this phrase in search engines."
|
|
@@ -1660,7 +1660,7 @@ var UpdateExperienceResponse = z.object({
|
|
|
1660
1660
|
).optional()
|
|
1661
1661
|
}).describe("SEO settings for the experience page.").optional()
|
|
1662
1662
|
});
|
|
1663
|
-
var QueryExperiencesRequest = z.object({
|
|
1663
|
+
var QueryExperiencesRequest = /* @__PURE__ */ z.object({
|
|
1664
1664
|
query: z.intersection(
|
|
1665
1665
|
z.object({
|
|
1666
1666
|
filter: z.record(z.string(), z.any()).describe(
|
|
@@ -1688,7 +1688,7 @@ var QueryExperiencesRequest = z.object({
|
|
|
1688
1688
|
])
|
|
1689
1689
|
).describe("Query criteria for filtering and sorting experiences.")
|
|
1690
1690
|
});
|
|
1691
|
-
var QueryExperiencesResponse = z.object({
|
|
1691
|
+
var QueryExperiencesResponse = /* @__PURE__ */ z.object({
|
|
1692
1692
|
experiences: z.array(
|
|
1693
1693
|
z.object({
|
|
1694
1694
|
_id: z.string().describe("Experience ID.").regex(
|
|
@@ -1918,7 +1918,7 @@ var QueryExperiencesResponse = z.object({
|
|
|
1918
1918
|
tags: z.array(
|
|
1919
1919
|
z.object({
|
|
1920
1920
|
type: z.string().describe(
|
|
1921
|
-
"SEO tag type.\n\n\nSupported values: `title`, `meta`, `script`, `link
|
|
1921
|
+
"SEO tag type.\n\n\nSupported values: `title`, `meta`, `script`, `link`.\n\nWhich of these an API actually accepts depends on where the tag is being set: this\nlist is not a blanket guarantee across every API that reuses this message. Site SEO\nTags in particular accepts only `meta` (see `SiteSeoTags.tags`) and rejects\n`title`/`script`/`link` with a validation error even though they appear here \u2014\ncheck the field description of the specific `tags`-typed field you're writing to\nfor the types it actually supports and the error it returns."
|
|
1922
1922
|
).optional(),
|
|
1923
1923
|
props: z.record(z.string(), z.any()).describe(
|
|
1924
1924
|
'A `{"key": "value"}` pair object where each SEO tag property (`"name"`, `"content"`, `"rel"`, `"href"`) contains a value.\nFor example: `{"name": "description", "content": "the description itself"}`.'
|
|
@@ -1930,7 +1930,7 @@ var QueryExperiencesResponse = z.object({
|
|
|
1930
1930
|
"SEO tag inner content. For example, `<title> inner content </title>`."
|
|
1931
1931
|
).optional(),
|
|
1932
1932
|
custom: z.boolean().describe(
|
|
1933
|
-
"Whether the tag is a [custom tag](https://support.wix.com/en/article/adding-additional-meta-tags-to-your-sites-pages) \u2014\ni.e. an entry from the site's Advanced/Custom Tags list.\n\nThis flag is scoped to that feature only. It is NOT an indicator of whether a standard tag\n(`title`, `description`, Open Graph, etc.) reflects a manually configured value versus a computed\ndefault/pattern \u2014 standard tags always resolve with `custom: false`, even when their content comes\nfrom a page's manually saved SEO title/description override. Don't use this field to verify whether\na live page reflects a manual per-page SEO edit.\n\nLimitation: when `ResolveStaticPageSeoTags` is called without `seoData`, the per-page SEO data is read\nonly from the Vibe/Wix-managed-headless override store. That store holds nothing for classic Wix Editor\nor Wix Studio pages, so even genuine Advanced/Custom Tags saved on those pages are missing from the\nresponse entirely \u2014 there, `false` means this API could not tell, not that no custom tag exists.\nPass `seoData` explicitly to resolve against a known set of tags."
|
|
1933
|
+
"Whether the tag is a [custom tag](https://support.wix.com/en/article/adding-additional-meta-tags-to-your-sites-pages) \u2014\ni.e. an entry from the site's Advanced/Custom Tags list.\n\nNote this is a separate restriction from Site SEO Tags' own type restriction on\n`SiteSeoTags.tags`: even with `custom` unset, Site SEO Tags rejects `script` (e.g.\nfor site-wide structured data) unconditionally. There is currently no way to set\nsite-wide, every-page structured data through any of these APIs \u2014 write a per-page\n`script` tag through the Item SEO Tags API instead.\n\nThis flag is scoped to that feature only. It is NOT an indicator of whether a standard tag\n(`title`, `description`, Open Graph, etc.) reflects a manually configured value versus a computed\ndefault/pattern \u2014 standard tags always resolve with `custom: false`, even when their content comes\nfrom a page's manually saved SEO title/description override. Don't use this field to verify whether\na live page reflects a manual per-page SEO edit.\n\nLimitation: when `ResolveStaticPageSeoTags` is called without `seoData`, the per-page SEO data is read\nonly from the Vibe/Wix-managed-headless override store. That store holds nothing for classic Wix Editor\nor Wix Studio pages, so even genuine Advanced/Custom Tags saved on those pages are missing from the\nresponse entirely \u2014 there, `false` means this API could not tell, not that no custom tag exists.\nPass `seoData` explicitly to resolve against a known set of tags."
|
|
1934
1934
|
).optional(),
|
|
1935
1935
|
disabled: z.boolean().describe(
|
|
1936
1936
|
"Whether the tag is disabled. If the tag is disabled, people can't find your page when searching for this phrase in search engines."
|
|
@@ -1976,7 +1976,7 @@ var QueryExperiencesResponse = z.object({
|
|
|
1976
1976
|
).optional().nullable()
|
|
1977
1977
|
}).describe("Pagination information for the query results.").optional()
|
|
1978
1978
|
});
|
|
1979
|
-
var SearchExperiencesRequest = z.object({
|
|
1979
|
+
var SearchExperiencesRequest = /* @__PURE__ */ z.object({
|
|
1980
1980
|
search: z.intersection(
|
|
1981
1981
|
z.object({
|
|
1982
1982
|
filter: z.record(z.string(), z.any()).describe(
|
|
@@ -2259,7 +2259,7 @@ var SearchExperiencesRequest = z.object({
|
|
|
2259
2259
|
])
|
|
2260
2260
|
).describe("Search query.")
|
|
2261
2261
|
});
|
|
2262
|
-
var SearchExperiencesResponse = z.object({
|
|
2262
|
+
var SearchExperiencesResponse = /* @__PURE__ */ z.object({
|
|
2263
2263
|
experiences: z.array(
|
|
2264
2264
|
z.object({
|
|
2265
2265
|
_id: z.string().describe("Experience ID.").regex(
|
|
@@ -2489,7 +2489,7 @@ var SearchExperiencesResponse = z.object({
|
|
|
2489
2489
|
tags: z.array(
|
|
2490
2490
|
z.object({
|
|
2491
2491
|
type: z.string().describe(
|
|
2492
|
-
"SEO tag type.\n\n\nSupported values: `title`, `meta`, `script`, `link
|
|
2492
|
+
"SEO tag type.\n\n\nSupported values: `title`, `meta`, `script`, `link`.\n\nWhich of these an API actually accepts depends on where the tag is being set: this\nlist is not a blanket guarantee across every API that reuses this message. Site SEO\nTags in particular accepts only `meta` (see `SiteSeoTags.tags`) and rejects\n`title`/`script`/`link` with a validation error even though they appear here \u2014\ncheck the field description of the specific `tags`-typed field you're writing to\nfor the types it actually supports and the error it returns."
|
|
2493
2493
|
).optional(),
|
|
2494
2494
|
props: z.record(z.string(), z.any()).describe(
|
|
2495
2495
|
'A `{"key": "value"}` pair object where each SEO tag property (`"name"`, `"content"`, `"rel"`, `"href"`) contains a value.\nFor example: `{"name": "description", "content": "the description itself"}`.'
|
|
@@ -2501,7 +2501,7 @@ var SearchExperiencesResponse = z.object({
|
|
|
2501
2501
|
"SEO tag inner content. For example, `<title> inner content </title>`."
|
|
2502
2502
|
).optional(),
|
|
2503
2503
|
custom: z.boolean().describe(
|
|
2504
|
-
"Whether the tag is a [custom tag](https://support.wix.com/en/article/adding-additional-meta-tags-to-your-sites-pages) \u2014\ni.e. an entry from the site's Advanced/Custom Tags list.\n\nThis flag is scoped to that feature only. It is NOT an indicator of whether a standard tag\n(`title`, `description`, Open Graph, etc.) reflects a manually configured value versus a computed\ndefault/pattern \u2014 standard tags always resolve with `custom: false`, even when their content comes\nfrom a page's manually saved SEO title/description override. Don't use this field to verify whether\na live page reflects a manual per-page SEO edit.\n\nLimitation: when `ResolveStaticPageSeoTags` is called without `seoData`, the per-page SEO data is read\nonly from the Vibe/Wix-managed-headless override store. That store holds nothing for classic Wix Editor\nor Wix Studio pages, so even genuine Advanced/Custom Tags saved on those pages are missing from the\nresponse entirely \u2014 there, `false` means this API could not tell, not that no custom tag exists.\nPass `seoData` explicitly to resolve against a known set of tags."
|
|
2504
|
+
"Whether the tag is a [custom tag](https://support.wix.com/en/article/adding-additional-meta-tags-to-your-sites-pages) \u2014\ni.e. an entry from the site's Advanced/Custom Tags list.\n\nNote this is a separate restriction from Site SEO Tags' own type restriction on\n`SiteSeoTags.tags`: even with `custom` unset, Site SEO Tags rejects `script` (e.g.\nfor site-wide structured data) unconditionally. There is currently no way to set\nsite-wide, every-page structured data through any of these APIs \u2014 write a per-page\n`script` tag through the Item SEO Tags API instead.\n\nThis flag is scoped to that feature only. It is NOT an indicator of whether a standard tag\n(`title`, `description`, Open Graph, etc.) reflects a manually configured value versus a computed\ndefault/pattern \u2014 standard tags always resolve with `custom: false`, even when their content comes\nfrom a page's manually saved SEO title/description override. Don't use this field to verify whether\na live page reflects a manual per-page SEO edit.\n\nLimitation: when `ResolveStaticPageSeoTags` is called without `seoData`, the per-page SEO data is read\nonly from the Vibe/Wix-managed-headless override store. That store holds nothing for classic Wix Editor\nor Wix Studio pages, so even genuine Advanced/Custom Tags saved on those pages are missing from the\nresponse entirely \u2014 there, `false` means this API could not tell, not that no custom tag exists.\nPass `seoData` explicitly to resolve against a known set of tags."
|
|
2505
2505
|
).optional(),
|
|
2506
2506
|
disabled: z.boolean().describe(
|
|
2507
2507
|
"Whether the tag is disabled. If the tag is disabled, people can't find your page when searching for this phrase in search engines."
|
|
@@ -2805,7 +2805,7 @@ var SearchExperiencesResponse = z.object({
|
|
|
2805
2805
|
).max(1e3).optional()
|
|
2806
2806
|
}).describe("Aggregation data.").optional()
|
|
2807
2807
|
});
|
|
2808
|
-
var BulkUpdateExperiencesRequest = z.object({
|
|
2808
|
+
var BulkUpdateExperiencesRequest = /* @__PURE__ */ z.object({
|
|
2809
2809
|
experiences: z.array(
|
|
2810
2810
|
z.object({
|
|
2811
2811
|
experience: z.object({
|
|
@@ -3038,7 +3038,7 @@ var BulkUpdateExperiencesRequest = z.object({
|
|
|
3038
3038
|
tags: z.array(
|
|
3039
3039
|
z.object({
|
|
3040
3040
|
type: z.string().describe(
|
|
3041
|
-
"SEO tag type.\n\n\nSupported values: `title`, `meta`, `script`, `link
|
|
3041
|
+
"SEO tag type.\n\n\nSupported values: `title`, `meta`, `script`, `link`.\n\nWhich of these an API actually accepts depends on where the tag is being set: this\nlist is not a blanket guarantee across every API that reuses this message. Site SEO\nTags in particular accepts only `meta` (see `SiteSeoTags.tags`) and rejects\n`title`/`script`/`link` with a validation error even though they appear here \u2014\ncheck the field description of the specific `tags`-typed field you're writing to\nfor the types it actually supports and the error it returns."
|
|
3042
3042
|
).optional(),
|
|
3043
3043
|
props: z.record(z.string(), z.any()).describe(
|
|
3044
3044
|
'A `{"key": "value"}` pair object where each SEO tag property (`"name"`, `"content"`, `"rel"`, `"href"`) contains a value.\nFor example: `{"name": "description", "content": "the description itself"}`.'
|
|
@@ -3050,7 +3050,7 @@ var BulkUpdateExperiencesRequest = z.object({
|
|
|
3050
3050
|
"SEO tag inner content. For example, `<title> inner content </title>`."
|
|
3051
3051
|
).optional(),
|
|
3052
3052
|
custom: z.boolean().describe(
|
|
3053
|
-
"Whether the tag is a [custom tag](https://support.wix.com/en/article/adding-additional-meta-tags-to-your-sites-pages) \u2014\ni.e. an entry from the site's Advanced/Custom Tags list.\n\nThis flag is scoped to that feature only. It is NOT an indicator of whether a standard tag\n(`title`, `description`, Open Graph, etc.) reflects a manually configured value versus a computed\ndefault/pattern \u2014 standard tags always resolve with `custom: false`, even when their content comes\nfrom a page's manually saved SEO title/description override. Don't use this field to verify whether\na live page reflects a manual per-page SEO edit.\n\nLimitation: when `ResolveStaticPageSeoTags` is called without `seoData`, the per-page SEO data is read\nonly from the Vibe/Wix-managed-headless override store. That store holds nothing for classic Wix Editor\nor Wix Studio pages, so even genuine Advanced/Custom Tags saved on those pages are missing from the\nresponse entirely \u2014 there, `false` means this API could not tell, not that no custom tag exists.\nPass `seoData` explicitly to resolve against a known set of tags."
|
|
3053
|
+
"Whether the tag is a [custom tag](https://support.wix.com/en/article/adding-additional-meta-tags-to-your-sites-pages) \u2014\ni.e. an entry from the site's Advanced/Custom Tags list.\n\nNote this is a separate restriction from Site SEO Tags' own type restriction on\n`SiteSeoTags.tags`: even with `custom` unset, Site SEO Tags rejects `script` (e.g.\nfor site-wide structured data) unconditionally. There is currently no way to set\nsite-wide, every-page structured data through any of these APIs \u2014 write a per-page\n`script` tag through the Item SEO Tags API instead.\n\nThis flag is scoped to that feature only. It is NOT an indicator of whether a standard tag\n(`title`, `description`, Open Graph, etc.) reflects a manually configured value versus a computed\ndefault/pattern \u2014 standard tags always resolve with `custom: false`, even when their content comes\nfrom a page's manually saved SEO title/description override. Don't use this field to verify whether\na live page reflects a manual per-page SEO edit.\n\nLimitation: when `ResolveStaticPageSeoTags` is called without `seoData`, the per-page SEO data is read\nonly from the Vibe/Wix-managed-headless override store. That store holds nothing for classic Wix Editor\nor Wix Studio pages, so even genuine Advanced/Custom Tags saved on those pages are missing from the\nresponse entirely \u2014 there, `false` means this API could not tell, not that no custom tag exists.\nPass `seoData` explicitly to resolve against a known set of tags."
|
|
3054
3054
|
).optional(),
|
|
3055
3055
|
disabled: z.boolean().describe(
|
|
3056
3056
|
"Whether the tag is disabled. If the tag is disabled, people can't find your page when searching for this phrase in search engines."
|
|
@@ -3086,7 +3086,7 @@ var BulkUpdateExperiencesRequest = z.object({
|
|
|
3086
3086
|
).optional()
|
|
3087
3087
|
}).optional()
|
|
3088
3088
|
});
|
|
3089
|
-
var BulkUpdateExperiencesResponse = z.object({
|
|
3089
|
+
var BulkUpdateExperiencesResponse = /* @__PURE__ */ z.object({
|
|
3090
3090
|
results: z.array(
|
|
3091
3091
|
z.object({
|
|
3092
3092
|
itemMetadata: z.object({
|
|
@@ -3342,7 +3342,7 @@ var BulkUpdateExperiencesResponse = z.object({
|
|
|
3342
3342
|
tags: z.array(
|
|
3343
3343
|
z.object({
|
|
3344
3344
|
type: z.string().describe(
|
|
3345
|
-
"SEO tag type.\n\n\nSupported values: `title`, `meta`, `script`, `link
|
|
3345
|
+
"SEO tag type.\n\n\nSupported values: `title`, `meta`, `script`, `link`.\n\nWhich of these an API actually accepts depends on where the tag is being set: this\nlist is not a blanket guarantee across every API that reuses this message. Site SEO\nTags in particular accepts only `meta` (see `SiteSeoTags.tags`) and rejects\n`title`/`script`/`link` with a validation error even though they appear here \u2014\ncheck the field description of the specific `tags`-typed field you're writing to\nfor the types it actually supports and the error it returns."
|
|
3346
3346
|
).optional(),
|
|
3347
3347
|
props: z.record(z.string(), z.any()).describe(
|
|
3348
3348
|
'A `{"key": "value"}` pair object where each SEO tag property (`"name"`, `"content"`, `"rel"`, `"href"`) contains a value.\nFor example: `{"name": "description", "content": "the description itself"}`.'
|
|
@@ -3354,7 +3354,7 @@ var BulkUpdateExperiencesResponse = z.object({
|
|
|
3354
3354
|
"SEO tag inner content. For example, `<title> inner content </title>`."
|
|
3355
3355
|
).optional(),
|
|
3356
3356
|
custom: z.boolean().describe(
|
|
3357
|
-
"Whether the tag is a [custom tag](https://support.wix.com/en/article/adding-additional-meta-tags-to-your-sites-pages) \u2014\ni.e. an entry from the site's Advanced/Custom Tags list.\n\nThis flag is scoped to that feature only. It is NOT an indicator of whether a standard tag\n(`title`, `description`, Open Graph, etc.) reflects a manually configured value versus a computed\ndefault/pattern \u2014 standard tags always resolve with `custom: false`, even when their content comes\nfrom a page's manually saved SEO title/description override. Don't use this field to verify whether\na live page reflects a manual per-page SEO edit.\n\nLimitation: when `ResolveStaticPageSeoTags` is called without `seoData`, the per-page SEO data is read\nonly from the Vibe/Wix-managed-headless override store. That store holds nothing for classic Wix Editor\nor Wix Studio pages, so even genuine Advanced/Custom Tags saved on those pages are missing from the\nresponse entirely \u2014 there, `false` means this API could not tell, not that no custom tag exists.\nPass `seoData` explicitly to resolve against a known set of tags."
|
|
3357
|
+
"Whether the tag is a [custom tag](https://support.wix.com/en/article/adding-additional-meta-tags-to-your-sites-pages) \u2014\ni.e. an entry from the site's Advanced/Custom Tags list.\n\nNote this is a separate restriction from Site SEO Tags' own type restriction on\n`SiteSeoTags.tags`: even with `custom` unset, Site SEO Tags rejects `script` (e.g.\nfor site-wide structured data) unconditionally. There is currently no way to set\nsite-wide, every-page structured data through any of these APIs \u2014 write a per-page\n`script` tag through the Item SEO Tags API instead.\n\nThis flag is scoped to that feature only. It is NOT an indicator of whether a standard tag\n(`title`, `description`, Open Graph, etc.) reflects a manually configured value versus a computed\ndefault/pattern \u2014 standard tags always resolve with `custom: false`, even when their content comes\nfrom a page's manually saved SEO title/description override. Don't use this field to verify whether\na live page reflects a manual per-page SEO edit.\n\nLimitation: when `ResolveStaticPageSeoTags` is called without `seoData`, the per-page SEO data is read\nonly from the Vibe/Wix-managed-headless override store. That store holds nothing for classic Wix Editor\nor Wix Studio pages, so even genuine Advanced/Custom Tags saved on those pages are missing from the\nresponse entirely \u2014 there, `false` means this API could not tell, not that no custom tag exists.\nPass `seoData` explicitly to resolve against a known set of tags."
|
|
3358
3358
|
).optional(),
|
|
3359
3359
|
disabled: z.boolean().describe(
|
|
3360
3360
|
"Whether the tag is disabled. If the tag is disabled, people can't find your page when searching for this phrase in search engines."
|
|
@@ -3396,7 +3396,7 @@ var BulkUpdateExperiencesResponse = z.object({
|
|
|
3396
3396
|
"Metadata for the bulk update, including the total number of successful and failed updates."
|
|
3397
3397
|
).optional()
|
|
3398
3398
|
});
|
|
3399
|
-
var BulkUpdateExperienceTagsRequest = z.object({
|
|
3399
|
+
var BulkUpdateExperienceTagsRequest = /* @__PURE__ */ z.object({
|
|
3400
3400
|
experienceIds: z.array(z.string()).min(1).max(100),
|
|
3401
3401
|
options: z.object({
|
|
3402
3402
|
assignTags: z.object({
|
|
@@ -3417,7 +3417,7 @@ var BulkUpdateExperienceTagsRequest = z.object({
|
|
|
3417
3417
|
}).describe("Tags to unassign from the experiences.").optional()
|
|
3418
3418
|
}).optional()
|
|
3419
3419
|
});
|
|
3420
|
-
var BulkUpdateExperienceTagsResponse = z.object({
|
|
3420
|
+
var BulkUpdateExperienceTagsResponse = /* @__PURE__ */ z.object({
|
|
3421
3421
|
results: z.array(
|
|
3422
3422
|
z.object({
|
|
3423
3423
|
itemMetadata: z.object({
|
|
@@ -3451,7 +3451,7 @@ var BulkUpdateExperienceTagsResponse = z.object({
|
|
|
3451
3451
|
).min(0).optional()
|
|
3452
3452
|
}).describe("Metadata about the bulk update operation.").optional()
|
|
3453
3453
|
});
|
|
3454
|
-
var BulkUpdateExperienceTagsByFilterRequest = z.object({
|
|
3454
|
+
var BulkUpdateExperienceTagsByFilterRequest = /* @__PURE__ */ z.object({
|
|
3455
3455
|
filter: z.record(z.string(), z.any()).describe("Filter criteria to select experiences for tag updates."),
|
|
3456
3456
|
options: z.object({
|
|
3457
3457
|
assignTags: z.object({
|
|
@@ -3472,16 +3472,16 @@ var BulkUpdateExperienceTagsByFilterRequest = z.object({
|
|
|
3472
3472
|
}).describe("Tags to unassign from the filtered experiences.").optional()
|
|
3473
3473
|
}).optional()
|
|
3474
3474
|
});
|
|
3475
|
-
var BulkUpdateExperienceTagsByFilterResponse = z.object({
|
|
3475
|
+
var BulkUpdateExperienceTagsByFilterResponse = /* @__PURE__ */ z.object({
|
|
3476
3476
|
jobId: z.string().describe("Job ID for tracking the asynchronous bulk update operation.").regex(
|
|
3477
3477
|
/^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,
|
|
3478
3478
|
"Must be a valid GUID"
|
|
3479
3479
|
).optional()
|
|
3480
3480
|
});
|
|
3481
|
-
var BulkArchiveExperiencesRequest = z.object({
|
|
3481
|
+
var BulkArchiveExperiencesRequest = /* @__PURE__ */ z.object({
|
|
3482
3482
|
experienceIds: z.array(z.string()).min(1).max(100)
|
|
3483
3483
|
});
|
|
3484
|
-
var BulkArchiveExperiencesResponse = z.object({
|
|
3484
|
+
var BulkArchiveExperiencesResponse = /* @__PURE__ */ z.object({
|
|
3485
3485
|
results: z.array(
|
|
3486
3486
|
z.object({
|
|
3487
3487
|
itemMetadata: z.object({
|
|
@@ -3513,10 +3513,10 @@ var BulkArchiveExperiencesResponse = z.object({
|
|
|
3513
3513
|
).min(0).optional()
|
|
3514
3514
|
}).describe("Bulk action metadata.").optional()
|
|
3515
3515
|
});
|
|
3516
|
-
var BulkUnarchiveExperiencesRequest = z.object({
|
|
3516
|
+
var BulkUnarchiveExperiencesRequest = /* @__PURE__ */ z.object({
|
|
3517
3517
|
experienceIds: z.array(z.string()).min(1).max(100)
|
|
3518
3518
|
});
|
|
3519
|
-
var BulkUnarchiveExperiencesResponse = z.object({
|
|
3519
|
+
var BulkUnarchiveExperiencesResponse = /* @__PURE__ */ z.object({
|
|
3520
3520
|
results: z.array(
|
|
3521
3521
|
z.object({
|
|
3522
3522
|
itemMetadata: z.object({
|