@wix/auto_sdk_events_ticket-definitions-v-2 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.js +1 -0
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +15 -7
- package/build/cjs/index.typings.js +1 -0
- package/build/cjs/index.typings.js.map +1 -1
- package/build/es/index.mjs +1 -0
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +15 -7
- package/build/es/index.typings.mjs +1 -0
- package/build/es/index.typings.mjs.map +1 -1
- package/build/internal/cjs/index.js +1 -0
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +15 -7
- package/build/internal/cjs/index.typings.js +1 -0
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/es/index.mjs +1 -0
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +15 -7
- package/build/internal/es/index.typings.mjs +1 -0
- 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
|
/**
|
|
@@ -4280,10 +4280,12 @@ declare enum Namespace {
|
|
|
4280
4280
|
/** Standalone events (siteless). MetaSites with this namespace will *not* be shown in a user's site list by default. */
|
|
4281
4281
|
STANDALONE_EVENTS = "STANDALONE_EVENTS",
|
|
4282
4282
|
/** MIMIR - Siteless account for MIMIR Ai Job runner. */
|
|
4283
|
-
MIMIR = "MIMIR"
|
|
4283
|
+
MIMIR = "MIMIR",
|
|
4284
|
+
/** Wix Twins platform. */
|
|
4285
|
+
TWINS = "TWINS"
|
|
4284
4286
|
}
|
|
4285
4287
|
/** @enumType */
|
|
4286
|
-
type NamespaceWithLiterals = Namespace | 'UNKNOWN_NAMESPACE' | 'WIX' | 'SHOUT_OUT' | 'ALBUMS' | 'WIX_STORES_TEST_DRIVE' | 'HOTELS' | 'CLUBS' | 'ONBOARDING_DRAFT' | 'DEV_SITE' | 'LOGOS' | 'VIDEO_MAKER' | 'PARTNER_DASHBOARD' | 'DEV_CENTER_COMPANY' | 'HTML_DRAFT' | 'SITELESS_BUSINESS' | 'CREATOR_ECONOMY' | 'DASHBOARD_FIRST' | 'ANYWHERE' | 'HEADLESS' | 'ACCOUNT_MASTER_CMS' | 'RISE' | 'BRANDED_FIRST' | 'NOWNIA' | 'UGC_TEMPLATE' | 'CODUX' | 'MEDIA_DESIGN_CREATOR' | 'SHARED_BLOG_ENTERPRISE' | 'STANDALONE_FORMS' | 'STANDALONE_EVENTS' | 'MIMIR';
|
|
4288
|
+
type NamespaceWithLiterals = Namespace | 'UNKNOWN_NAMESPACE' | 'WIX' | 'SHOUT_OUT' | 'ALBUMS' | 'WIX_STORES_TEST_DRIVE' | 'HOTELS' | 'CLUBS' | 'ONBOARDING_DRAFT' | 'DEV_SITE' | 'LOGOS' | 'VIDEO_MAKER' | 'PARTNER_DASHBOARD' | 'DEV_CENTER_COMPANY' | 'HTML_DRAFT' | 'SITELESS_BUSINESS' | 'CREATOR_ECONOMY' | 'DASHBOARD_FIRST' | 'ANYWHERE' | 'HEADLESS' | 'ACCOUNT_MASTER_CMS' | 'RISE' | 'BRANDED_FIRST' | 'NOWNIA' | 'UGC_TEMPLATE' | 'CODUX' | 'MEDIA_DESIGN_CREATOR' | 'SHARED_BLOG_ENTERPRISE' | 'STANDALONE_FORMS' | 'STANDALONE_EVENTS' | 'MIMIR' | 'TWINS';
|
|
4287
4289
|
/** Site transferred to another user. */
|
|
4288
4290
|
interface SiteTransferred {
|
|
4289
4291
|
/**
|
|
@@ -4777,6 +4779,7 @@ interface ReservationUpdated {
|
|
|
4777
4779
|
*/
|
|
4778
4780
|
counts?: ReservationCount[];
|
|
4779
4781
|
}
|
|
4782
|
+
/** @docsIgnore */
|
|
4780
4783
|
type CreateTicketDefinitionApplicationErrors = {
|
|
4781
4784
|
code?: 'INVALID_EVENT_TYPE';
|
|
4782
4785
|
description?: string;
|
|
@@ -4790,26 +4793,31 @@ type CreateTicketDefinitionApplicationErrors = {
|
|
|
4790
4793
|
description?: string;
|
|
4791
4794
|
data?: Record<string, any>;
|
|
4792
4795
|
};
|
|
4796
|
+
/** @docsIgnore */
|
|
4793
4797
|
type UpdateTicketDefinitionApplicationErrors = {
|
|
4794
4798
|
code?: 'INVALID_SALE_PERIOD';
|
|
4795
4799
|
description?: string;
|
|
4796
4800
|
data?: Record<string, any>;
|
|
4797
4801
|
};
|
|
4802
|
+
/** @docsIgnore */
|
|
4798
4803
|
type ReorderTicketDefinitionsApplicationErrors = {
|
|
4799
4804
|
code?: 'INVALID_REORDER_INSTRUCTION';
|
|
4800
4805
|
description?: string;
|
|
4801
4806
|
data?: Record<string, any>;
|
|
4802
4807
|
};
|
|
4808
|
+
/** @docsIgnore */
|
|
4803
4809
|
type CountTicketDefinitionsApplicationErrors = {
|
|
4804
4810
|
code?: 'FILTER_PARSER_ERROR';
|
|
4805
4811
|
description?: string;
|
|
4806
4812
|
data?: Record<string, any>;
|
|
4807
4813
|
};
|
|
4814
|
+
/** @docsIgnore */
|
|
4808
4815
|
type CountAvailableTicketDefinitionsApplicationErrors = {
|
|
4809
4816
|
code?: 'FILTER_PARSER_ERROR';
|
|
4810
4817
|
description?: string;
|
|
4811
4818
|
data?: Record<string, any>;
|
|
4812
4819
|
};
|
|
4820
|
+
/** @docsIgnore */
|
|
4813
4821
|
type ChangeCurrencyApplicationErrors = {
|
|
4814
4822
|
code?: 'CURRENCY_LOCKED';
|
|
4815
4823
|
description?: string;
|
|
@@ -1007,6 +1007,7 @@ var Namespace = /* @__PURE__ */ ((Namespace2) => {
|
|
|
1007
1007
|
Namespace2["STANDALONE_FORMS"] = "STANDALONE_FORMS";
|
|
1008
1008
|
Namespace2["STANDALONE_EVENTS"] = "STANDALONE_EVENTS";
|
|
1009
1009
|
Namespace2["MIMIR"] = "MIMIR";
|
|
1010
|
+
Namespace2["TWINS"] = "TWINS";
|
|
1010
1011
|
return Namespace2;
|
|
1011
1012
|
})(Namespace || {});
|
|
1012
1013
|
var DeleteStatus = /* @__PURE__ */ ((DeleteStatus2) => {
|