@wix/auto_sdk_events_forms 1.0.46 → 1.0.48
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 +1 -1
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +8 -5
- package/build/cjs/index.typings.js.map +1 -1
- package/build/es/index.d.mts +1 -1
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +8 -5
- package/build/es/index.typings.mjs.map +1 -1
- package/build/internal/cjs/index.d.ts +1 -1
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +8 -5
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/es/index.d.mts +1 -1
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +8 -5
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -1379,21 +1379,21 @@ interface Tag {
|
|
|
1379
1379
|
* For example: `{"name": "description", "content": "the description itself"}`.
|
|
1380
1380
|
*/
|
|
1381
1381
|
props?: Record<string, any> | null;
|
|
1382
|
-
/** SEO tag
|
|
1382
|
+
/** SEO tag metadata. For example, `{"height": 300, "width": 240}`. */
|
|
1383
1383
|
meta?: Record<string, any> | null;
|
|
1384
1384
|
/** SEO tag inner content. For example, `<title> inner content </title>`. */
|
|
1385
1385
|
children?: string;
|
|
1386
|
-
/** Whether the tag is a custom tag. */
|
|
1386
|
+
/** Whether the tag is a [custom tag](https://support.wix.com/en/article/adding-additional-meta-tags-to-your-sites-pages). */
|
|
1387
1387
|
custom?: boolean;
|
|
1388
|
-
/** Whether the tag is disabled. */
|
|
1388
|
+
/** Whether the tag is disabled. If the tag is disabled, people can't find your page when searching for this phrase in search engines. */
|
|
1389
1389
|
disabled?: boolean;
|
|
1390
1390
|
}
|
|
1391
1391
|
interface Settings {
|
|
1392
1392
|
/**
|
|
1393
|
-
* Whether the
|
|
1393
|
+
* Whether the [automatical redirect visits](https://support.wix.com/en/article/customizing-your-pages-seo-settings-in-the-seo-panel) from the old URL to the new one is enabled.
|
|
1394
1394
|
*
|
|
1395
1395
|
*
|
|
1396
|
-
* Default: `false` (
|
|
1396
|
+
* Default: `false` (automatical redirect is enabled).
|
|
1397
1397
|
*/
|
|
1398
1398
|
preventAutoRedirect?: boolean;
|
|
1399
1399
|
/**
|
|
@@ -3370,11 +3370,13 @@ declare enum WebhookIdentityType {
|
|
|
3370
3370
|
}
|
|
3371
3371
|
/** @enumType */
|
|
3372
3372
|
type WebhookIdentityTypeWithLiterals = WebhookIdentityType | 'UNKNOWN' | 'ANONYMOUS_VISITOR' | 'MEMBER' | 'WIX_USER' | 'APP';
|
|
3373
|
+
/** @docsIgnore */
|
|
3373
3374
|
type AddControlApplicationErrors = {
|
|
3374
3375
|
code?: 'INVALID_EVENT_CONFIGURATION';
|
|
3375
3376
|
description?: string;
|
|
3376
3377
|
data?: Record<string, any>;
|
|
3377
3378
|
};
|
|
3379
|
+
/** @docsIgnore */
|
|
3378
3380
|
type UpdateControlApplicationErrors = {
|
|
3379
3381
|
code?: 'INVALID_EVENT_CONFIGURATION';
|
|
3380
3382
|
description?: string;
|
|
@@ -3384,6 +3386,7 @@ type UpdateControlApplicationErrors = {
|
|
|
3384
3386
|
description?: string;
|
|
3385
3387
|
data?: Record<string, any>;
|
|
3386
3388
|
};
|
|
3389
|
+
/** @docsIgnore */
|
|
3387
3390
|
type DeleteControlApplicationErrors = {
|
|
3388
3391
|
code?: 'CONTROL_NOT_FOUND';
|
|
3389
3392
|
description?: string;
|