@wix/auto_sdk_events_forms 1.0.45 → 1.0.47
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 +10 -6
- package/build/cjs/index.typings.js.map +1 -1
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +10 -6
- package/build/es/index.typings.mjs.map +1 -1
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +10 -6
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +10 -6
- 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;
|
|
@@ -3425,6 +3428,8 @@ interface FormEventUpdatedEnvelope {
|
|
|
3425
3428
|
* @permissionScopeId SCOPE.CHALLENGES.MANAGE
|
|
3426
3429
|
* @permissionScope Manage Portfolio
|
|
3427
3430
|
* @permissionScopeId SCOPE.PORTFOLIO.MANAGE-PORTFOLIO
|
|
3431
|
+
* @permissionScope View SEO Settings
|
|
3432
|
+
* @permissionScopeId SCOPE.PROMOTE.VIEW-SEO
|
|
3428
3433
|
* @permissionScope Manage Blog
|
|
3429
3434
|
* @permissionScopeId SCOPE.BLOG.MANAGE-BLOG
|
|
3430
3435
|
* @permissionScope Access Verticals by Automations
|
|
@@ -3452,7 +3457,6 @@ declare function onFormEventUpdated(handler: (event: FormEventUpdatedEnvelope) =
|
|
|
3452
3457
|
* @param options - Optional fields.
|
|
3453
3458
|
* @permissionId WIX_EVENTS.READ_EVENTS
|
|
3454
3459
|
* @applicableIdentity APP
|
|
3455
|
-
* @applicableIdentity VISITOR
|
|
3456
3460
|
* @returns Event form.
|
|
3457
3461
|
* Form is visible to site visitors.
|
|
3458
3462
|
* @fqn wix.events.form.FormBuilder.GetForm
|