@wix/auto_sdk_events_ticket-definitions-v-2 1.0.46 → 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 +11 -5
- package/build/cjs/index.typings.js.map +1 -1
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +11 -5
- 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 +11 -5
- 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 +11 -5
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -2033,21 +2033,21 @@ interface Tag {
|
|
|
2033
2033
|
* For example: `{"name": "description", "content": "the description itself"}`.
|
|
2034
2034
|
*/
|
|
2035
2035
|
props?: Record<string, any> | null;
|
|
2036
|
-
/** SEO tag
|
|
2036
|
+
/** SEO tag metadata. For example, `{"height": 300, "width": 240}`. */
|
|
2037
2037
|
meta?: Record<string, any> | null;
|
|
2038
2038
|
/** SEO tag inner content. For example, `<title> inner content </title>`. */
|
|
2039
2039
|
children?: string;
|
|
2040
|
-
/** Whether the tag is a custom tag. */
|
|
2040
|
+
/** Whether the tag is a [custom tag](https://support.wix.com/en/article/adding-additional-meta-tags-to-your-sites-pages). */
|
|
2041
2041
|
custom?: boolean;
|
|
2042
|
-
/** Whether the tag is disabled. */
|
|
2042
|
+
/** Whether the tag is disabled. If the tag is disabled, people can't find your page when searching for this phrase in search engines. */
|
|
2043
2043
|
disabled?: boolean;
|
|
2044
2044
|
}
|
|
2045
2045
|
interface Settings {
|
|
2046
2046
|
/**
|
|
2047
|
-
* Whether the
|
|
2047
|
+
* 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.
|
|
2048
2048
|
*
|
|
2049
2049
|
*
|
|
2050
|
-
* Default: `false` (
|
|
2050
|
+
* Default: `false` (automatical redirect is enabled).
|
|
2051
2051
|
*/
|
|
2052
2052
|
preventAutoRedirect?: boolean;
|
|
2053
2053
|
/**
|
|
@@ -4777,6 +4777,7 @@ interface ReservationUpdated {
|
|
|
4777
4777
|
*/
|
|
4778
4778
|
counts?: ReservationCount[];
|
|
4779
4779
|
}
|
|
4780
|
+
/** @docsIgnore */
|
|
4780
4781
|
type CreateTicketDefinitionApplicationErrors = {
|
|
4781
4782
|
code?: 'INVALID_EVENT_TYPE';
|
|
4782
4783
|
description?: string;
|
|
@@ -4790,26 +4791,31 @@ type CreateTicketDefinitionApplicationErrors = {
|
|
|
4790
4791
|
description?: string;
|
|
4791
4792
|
data?: Record<string, any>;
|
|
4792
4793
|
};
|
|
4794
|
+
/** @docsIgnore */
|
|
4793
4795
|
type UpdateTicketDefinitionApplicationErrors = {
|
|
4794
4796
|
code?: 'INVALID_SALE_PERIOD';
|
|
4795
4797
|
description?: string;
|
|
4796
4798
|
data?: Record<string, any>;
|
|
4797
4799
|
};
|
|
4800
|
+
/** @docsIgnore */
|
|
4798
4801
|
type ReorderTicketDefinitionsApplicationErrors = {
|
|
4799
4802
|
code?: 'INVALID_REORDER_INSTRUCTION';
|
|
4800
4803
|
description?: string;
|
|
4801
4804
|
data?: Record<string, any>;
|
|
4802
4805
|
};
|
|
4806
|
+
/** @docsIgnore */
|
|
4803
4807
|
type CountTicketDefinitionsApplicationErrors = {
|
|
4804
4808
|
code?: 'FILTER_PARSER_ERROR';
|
|
4805
4809
|
description?: string;
|
|
4806
4810
|
data?: Record<string, any>;
|
|
4807
4811
|
};
|
|
4812
|
+
/** @docsIgnore */
|
|
4808
4813
|
type CountAvailableTicketDefinitionsApplicationErrors = {
|
|
4809
4814
|
code?: 'FILTER_PARSER_ERROR';
|
|
4810
4815
|
description?: string;
|
|
4811
4816
|
data?: Record<string, any>;
|
|
4812
4817
|
};
|
|
4818
|
+
/** @docsIgnore */
|
|
4813
4819
|
type ChangeCurrencyApplicationErrors = {
|
|
4814
4820
|
code?: 'CURRENCY_LOCKED';
|
|
4815
4821
|
description?: string;
|