@wix/auto_sdk_events_wix-events-v-2 1.0.49 → 1.0.50
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 +13 -5
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +5 -5
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +13 -5
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +5 -5
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +13 -5
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +5 -5
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +13 -5
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +5 -5
- package/package.json +2 -2
|
@@ -1123,21 +1123,21 @@ interface Tag {
|
|
|
1123
1123
|
* For example: `{"name": "description", "content": "the description itself"}`.
|
|
1124
1124
|
*/
|
|
1125
1125
|
props?: Record<string, any> | null;
|
|
1126
|
-
/** SEO tag
|
|
1126
|
+
/** SEO tag metadata. For example, `{"height": 300, "width": 240}`. */
|
|
1127
1127
|
meta?: Record<string, any> | null;
|
|
1128
1128
|
/** SEO tag inner content. For example, `<title> inner content </title>`. */
|
|
1129
1129
|
children?: string;
|
|
1130
|
-
/** Whether the tag is a custom tag. */
|
|
1130
|
+
/** Whether the tag is a [custom tag](https://support.wix.com/en/article/adding-additional-meta-tags-to-your-sites-pages). */
|
|
1131
1131
|
custom?: boolean;
|
|
1132
|
-
/** Whether the tag is disabled. */
|
|
1132
|
+
/** Whether the tag is disabled. If the tag is disabled, people can't find your page when searching for this phrase in search engines. */
|
|
1133
1133
|
disabled?: boolean;
|
|
1134
1134
|
}
|
|
1135
1135
|
interface Settings {
|
|
1136
1136
|
/**
|
|
1137
|
-
* Whether the
|
|
1137
|
+
* 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.
|
|
1138
1138
|
*
|
|
1139
1139
|
*
|
|
1140
|
-
* Default: `false` (
|
|
1140
|
+
* Default: `false` (automatical redirect is enabled).
|
|
1141
1141
|
*/
|
|
1142
1142
|
preventAutoRedirect?: boolean;
|
|
1143
1143
|
/**
|
|
@@ -4727,6 +4727,7 @@ declare enum WebhookIdentityType {
|
|
|
4727
4727
|
}
|
|
4728
4728
|
/** @enumType */
|
|
4729
4729
|
type WebhookIdentityTypeWithLiterals = WebhookIdentityType | 'UNKNOWN' | 'ANONYMOUS_VISITOR' | 'MEMBER' | 'WIX_USER' | 'APP';
|
|
4730
|
+
/** @docsIgnore */
|
|
4730
4731
|
type CreateEventApplicationErrors = {
|
|
4731
4732
|
code?: 'INVALID_SLUG_FORMAT';
|
|
4732
4733
|
description?: string;
|
|
@@ -4740,9 +4741,11 @@ type CreateEventApplicationErrors = {
|
|
|
4740
4741
|
description?: string;
|
|
4741
4742
|
data?: Record<string, any>;
|
|
4742
4743
|
};
|
|
4744
|
+
/** @docsIgnore */
|
|
4743
4745
|
type CreateEventValidationErrors = {
|
|
4744
4746
|
ruleName?: 'INVALID_EVENT_CONFIGURATION';
|
|
4745
4747
|
};
|
|
4748
|
+
/** @docsIgnore */
|
|
4746
4749
|
type UpdateEventApplicationErrors = {
|
|
4747
4750
|
code?: 'INVALID_EVENT_STATUS_TRANSITION';
|
|
4748
4751
|
description?: string;
|
|
@@ -4756,9 +4759,11 @@ type UpdateEventApplicationErrors = {
|
|
|
4756
4759
|
description?: string;
|
|
4757
4760
|
data?: Record<string, any>;
|
|
4758
4761
|
};
|
|
4762
|
+
/** @docsIgnore */
|
|
4759
4763
|
type UpdateEventValidationErrors = {
|
|
4760
4764
|
ruleName?: 'INVALID_EVENT_CONFIGURATION';
|
|
4761
4765
|
};
|
|
4766
|
+
/** @docsIgnore */
|
|
4762
4767
|
type PublishDraftEventApplicationErrors = {
|
|
4763
4768
|
code?: 'INVALID_EVENT_STATUS_TRANSITION';
|
|
4764
4769
|
description?: string;
|
|
@@ -4768,16 +4773,19 @@ type PublishDraftEventApplicationErrors = {
|
|
|
4768
4773
|
description?: string;
|
|
4769
4774
|
data?: Record<string, any>;
|
|
4770
4775
|
};
|
|
4776
|
+
/** @docsIgnore */
|
|
4771
4777
|
type CancelEventApplicationErrors = {
|
|
4772
4778
|
code?: 'INVALID_EVENT_STATUS_TRANSITION';
|
|
4773
4779
|
description?: string;
|
|
4774
4780
|
data?: Record<string, any>;
|
|
4775
4781
|
};
|
|
4782
|
+
/** @docsIgnore */
|
|
4776
4783
|
type QueryEventsApplicationErrors = {
|
|
4777
4784
|
code?: 'FILTER_PARSER_ERROR';
|
|
4778
4785
|
description?: string;
|
|
4779
4786
|
data?: Record<string, any>;
|
|
4780
4787
|
};
|
|
4788
|
+
/** @docsIgnore */
|
|
4781
4789
|
type CountEventsByStatusApplicationErrors = {
|
|
4782
4790
|
code?: 'FILTER_PARSER_ERROR';
|
|
4783
4791
|
description?: string;
|