@wix/app-extensions 1.0.20 → 1.0.22
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 +3 -2
- package/build/cjs/index.js +36 -0
- package/build/cjs/index.js.map +1 -1
- package/build/es/index.d.mts +3 -2
- package/build/es/index.mjs +33 -0
- package/build/es/index.mjs.map +1 -1
- package/build/trusted/cjs/index.d.ts +100 -7
- package/build/trusted/cjs/index.js +36 -0
- package/build/trusted/cjs/index.js.map +1 -1
- package/build/trusted/es/index.d.mts +100 -7
- package/build/trusted/es/index.mjs +33 -0
- package/build/trusted/es/index.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -1102,6 +1102,11 @@ interface ComponentData extends ComponentDataDataOneOf {
|
|
|
1102
1102
|
* @internal
|
|
1103
1103
|
*/
|
|
1104
1104
|
serviceTagsConfiguration?: ServiceTagsConfig;
|
|
1105
|
+
/**
|
|
1106
|
+
* Loyalty Points Adjustment SPI - allows Functions to adjust loyalty points before assignment
|
|
1107
|
+
* @internal
|
|
1108
|
+
*/
|
|
1109
|
+
loyaltyPointsAdjustment?: PointsAdjustmentProviderConfig;
|
|
1105
1110
|
}
|
|
1106
1111
|
/** @oneof */
|
|
1107
1112
|
/** @internal */
|
|
@@ -2208,6 +2213,11 @@ interface ComponentDataDataOneOf {
|
|
|
2208
2213
|
* @internal
|
|
2209
2214
|
*/
|
|
2210
2215
|
serviceTagsConfiguration?: ServiceTagsConfig;
|
|
2216
|
+
/**
|
|
2217
|
+
* Loyalty Points Adjustment SPI - allows Functions to adjust loyalty points before assignment
|
|
2218
|
+
* @internal
|
|
2219
|
+
*/
|
|
2220
|
+
loyaltyPointsAdjustment?: PointsAdjustmentProviderConfig;
|
|
2211
2221
|
}
|
|
2212
2222
|
/** An iframe to be displayed on the user’s site */
|
|
2213
2223
|
interface WidgetComponentData {
|
|
@@ -7741,6 +7751,8 @@ interface Node extends NodeDataOneOf {
|
|
|
7741
7751
|
shapeData?: ShapeData;
|
|
7742
7752
|
/** Data for a card node. */
|
|
7743
7753
|
cardData?: CardData;
|
|
7754
|
+
/** Data for a table of contents node. */
|
|
7755
|
+
tocData?: TocData;
|
|
7744
7756
|
/** Node type. Use `APP_EMBED` for nodes that embed content from other Wix apps. Use `EMBED` to embed content in [oEmbed](https://oembed.com/) format. */
|
|
7745
7757
|
type?: NodeTypeWithLiterals;
|
|
7746
7758
|
/** Node ID. */
|
|
@@ -7813,6 +7825,8 @@ interface NodeDataOneOf {
|
|
|
7813
7825
|
shapeData?: ShapeData;
|
|
7814
7826
|
/** Data for a card node. */
|
|
7815
7827
|
cardData?: CardData;
|
|
7828
|
+
/** Data for a table of contents node. */
|
|
7829
|
+
tocData?: TocData;
|
|
7816
7830
|
}
|
|
7817
7831
|
/** @internal */
|
|
7818
7832
|
declare enum NodeType {
|
|
@@ -7851,11 +7865,12 @@ declare enum NodeType {
|
|
|
7851
7865
|
LAYOUT = "LAYOUT",
|
|
7852
7866
|
LAYOUT_CELL = "LAYOUT_CELL",
|
|
7853
7867
|
SHAPE = "SHAPE",
|
|
7854
|
-
CARD = "CARD"
|
|
7868
|
+
CARD = "CARD",
|
|
7869
|
+
TOC = "TOC"
|
|
7855
7870
|
}
|
|
7856
7871
|
/** @enumType */
|
|
7857
7872
|
/** @internal */
|
|
7858
|
-
type NodeTypeWithLiterals = NodeType | 'PARAGRAPH' | 'TEXT' | 'HEADING' | 'BULLETED_LIST' | 'ORDERED_LIST' | 'LIST_ITEM' | 'BLOCKQUOTE' | 'CODE_BLOCK' | 'VIDEO' | 'DIVIDER' | 'FILE' | 'GALLERY' | 'GIF' | 'HTML' | 'IMAGE' | 'LINK_PREVIEW' | 'MAP' | 'POLL' | 'APP_EMBED' | 'BUTTON' | 'COLLAPSIBLE_LIST' | 'TABLE' | 'EMBED' | 'COLLAPSIBLE_ITEM' | 'COLLAPSIBLE_ITEM_TITLE' | 'COLLAPSIBLE_ITEM_BODY' | 'TABLE_CELL' | 'TABLE_ROW' | 'EXTERNAL' | 'AUDIO' | 'CAPTION' | 'LAYOUT' | 'LAYOUT_CELL' | 'SHAPE' | 'CARD';
|
|
7873
|
+
type NodeTypeWithLiterals = NodeType | 'PARAGRAPH' | 'TEXT' | 'HEADING' | 'BULLETED_LIST' | 'ORDERED_LIST' | 'LIST_ITEM' | 'BLOCKQUOTE' | 'CODE_BLOCK' | 'VIDEO' | 'DIVIDER' | 'FILE' | 'GALLERY' | 'GIF' | 'HTML' | 'IMAGE' | 'LINK_PREVIEW' | 'MAP' | 'POLL' | 'APP_EMBED' | 'BUTTON' | 'COLLAPSIBLE_LIST' | 'TABLE' | 'EMBED' | 'COLLAPSIBLE_ITEM' | 'COLLAPSIBLE_ITEM_TITLE' | 'COLLAPSIBLE_ITEM_BODY' | 'TABLE_CELL' | 'TABLE_ROW' | 'EXTERNAL' | 'AUDIO' | 'CAPTION' | 'LAYOUT' | 'LAYOUT_CELL' | 'SHAPE' | 'CARD' | 'TOC';
|
|
7859
7874
|
/** @internal */
|
|
7860
7875
|
interface NodeStyle {
|
|
7861
7876
|
/** The top padding value in pixels. */
|
|
@@ -8553,6 +8568,8 @@ interface HTMLData extends HTMLDataDataOneOf {
|
|
|
8553
8568
|
* @deprecated
|
|
8554
8569
|
*/
|
|
8555
8570
|
isAdsense?: boolean | null;
|
|
8571
|
+
/** The WixelWidget ID for AI_WIDGET source nodes. */
|
|
8572
|
+
widgetId?: string;
|
|
8556
8573
|
/** Styling for the HTML node's container. Height property is irrelevant for HTML embeds when autoHeight is set to `true`. */
|
|
8557
8574
|
containerData?: PluginContainerData;
|
|
8558
8575
|
/** The type of HTML code. */
|
|
@@ -8572,16 +8589,19 @@ interface HTMLDataDataOneOf {
|
|
|
8572
8589
|
* @deprecated
|
|
8573
8590
|
*/
|
|
8574
8591
|
isAdsense?: boolean | null;
|
|
8592
|
+
/** The WixelWidget ID for AI_WIDGET source nodes. */
|
|
8593
|
+
widgetId?: string;
|
|
8575
8594
|
}
|
|
8576
8595
|
/** @internal */
|
|
8577
8596
|
declare enum HTMLDataSource {
|
|
8578
8597
|
HTML = "HTML",
|
|
8579
8598
|
ADSENSE = "ADSENSE",
|
|
8580
|
-
AI = "AI"
|
|
8599
|
+
AI = "AI",
|
|
8600
|
+
AI_WIDGET = "AI_WIDGET"
|
|
8581
8601
|
}
|
|
8582
8602
|
/** @enumType */
|
|
8583
8603
|
/** @internal */
|
|
8584
|
-
type HTMLDataSourceWithLiterals = HTMLDataSource | 'HTML' | 'ADSENSE' | 'AI';
|
|
8604
|
+
type HTMLDataSourceWithLiterals = HTMLDataSource | 'HTML' | 'ADSENSE' | 'AI' | 'AI_WIDGET';
|
|
8585
8605
|
/** @internal */
|
|
8586
8606
|
interface ImageData {
|
|
8587
8607
|
/** Styling for the image's container. */
|
|
@@ -9943,6 +9963,56 @@ interface CardDataBackgroundImage {
|
|
|
9943
9963
|
position?: ImagePositionPositionWithLiterals;
|
|
9944
9964
|
}
|
|
9945
9965
|
/** @internal */
|
|
9966
|
+
interface TocData {
|
|
9967
|
+
/** Heading levels included in the table of contents. Default: [1, 2, 3, 4, 5, 6]. */
|
|
9968
|
+
includedHeadings?: number[];
|
|
9969
|
+
/** List style. Default: PLAIN. */
|
|
9970
|
+
listStyle?: ListStyleWithLiterals;
|
|
9971
|
+
/** Optional override for the font size in pixels. */
|
|
9972
|
+
fontSize?: number | null;
|
|
9973
|
+
/** Optional override for the vertical spacing between items in pixels. */
|
|
9974
|
+
itemSpacing?: number | null;
|
|
9975
|
+
/**
|
|
9976
|
+
* Optional override for the text color.
|
|
9977
|
+
* @format COLOR_HEX
|
|
9978
|
+
*/
|
|
9979
|
+
color?: string | null;
|
|
9980
|
+
/** Indentation style. Default: NESTED. */
|
|
9981
|
+
indentation?: IndentationWithLiterals;
|
|
9982
|
+
}
|
|
9983
|
+
/** List style. */
|
|
9984
|
+
/** @internal */
|
|
9985
|
+
declare enum ListStyle {
|
|
9986
|
+
/** No markers (default) */
|
|
9987
|
+
PLAIN = "PLAIN",
|
|
9988
|
+
/** Numbered list */
|
|
9989
|
+
NUMBERED = "NUMBERED",
|
|
9990
|
+
/** Alphabetic letters */
|
|
9991
|
+
LETTERS = "LETTERS",
|
|
9992
|
+
/** Roman numerals */
|
|
9993
|
+
ROMAN = "ROMAN",
|
|
9994
|
+
/** Bulleted list */
|
|
9995
|
+
BULLETED = "BULLETED",
|
|
9996
|
+
/** Alphabetical index */
|
|
9997
|
+
ALPHABETICAL_INDEX = "ALPHABETICAL_INDEX",
|
|
9998
|
+
/** Alphabetical index (compact top-row only) */
|
|
9999
|
+
ALPHABETICAL_INDEX_COMPACT = "ALPHABETICAL_INDEX_COMPACT"
|
|
10000
|
+
}
|
|
10001
|
+
/** @enumType */
|
|
10002
|
+
/** @internal */
|
|
10003
|
+
type ListStyleWithLiterals = ListStyle | 'PLAIN' | 'NUMBERED' | 'LETTERS' | 'ROMAN' | 'BULLETED' | 'ALPHABETICAL_INDEX' | 'ALPHABETICAL_INDEX_COMPACT';
|
|
10004
|
+
/** Indentation style. */
|
|
10005
|
+
/** @internal */
|
|
10006
|
+
declare enum Indentation {
|
|
10007
|
+
/** Sub-headings indented under parents (default) */
|
|
10008
|
+
NESTED = "NESTED",
|
|
10009
|
+
/** All items at the same level */
|
|
10010
|
+
FLAT = "FLAT"
|
|
10011
|
+
}
|
|
10012
|
+
/** @enumType */
|
|
10013
|
+
/** @internal */
|
|
10014
|
+
type IndentationWithLiterals = Indentation | 'NESTED' | 'FLAT';
|
|
10015
|
+
/** @internal */
|
|
9946
10016
|
interface V1Metadata {
|
|
9947
10017
|
/** Schema version. */
|
|
9948
10018
|
version?: number;
|
|
@@ -10278,10 +10348,11 @@ declare enum ComponentType {
|
|
|
10278
10348
|
PREMIUM_ACTION = "PREMIUM_ACTION",
|
|
10279
10349
|
AUTOMATION_TEMPLATE = "AUTOMATION_TEMPLATE",
|
|
10280
10350
|
AGENT_MAKER_APPROVAL_PROVIDER = "AGENT_MAKER_APPROVAL_PROVIDER",
|
|
10281
|
-
SERVICE_TAGS_CONFIGURATION = "SERVICE_TAGS_CONFIGURATION"
|
|
10351
|
+
SERVICE_TAGS_CONFIGURATION = "SERVICE_TAGS_CONFIGURATION",
|
|
10352
|
+
LOYALTY_POINTS_ADJUSTMENT = "LOYALTY_POINTS_ADJUSTMENT"
|
|
10282
10353
|
}
|
|
10283
10354
|
/** @enumType */
|
|
10284
|
-
type ComponentTypeWithLiterals = ComponentType | 'NONE' | 'STUDIO' | 'PLATFORM' | 'WORKER' | 'DASHBOARD' | 'WIDGET' | 'PAGE' | 'DASHBOARD_PLATFORM' | 'STUDIO_WIDGET' | 'EMBEDDED_SCRIPT' | 'EXTENSION' | 'SNIPPET_SOLUTION' | 'DATA_COMPONENT' | 'WEB' | 'DC_CONFIG' | 'WIDGET_OUT_OF_IFRAME' | 'PAGE_OUT_OF_IFRAME' | 'STATIC_FILE' | 'APP_CONFIG' | 'MULTIPLE_DASHBOARDS' | 'PAYMENTS_GATEWAY' | 'CODE_PACKAGE' | 'AUTOMATION_TRIGGER' | 'INVOICES_ACTIONS' | 'DASHBOARD_APPLICATION' | 'CONTACT_LABELS' | 'WIDGET_PLUGIN' | 'CROSS_SELL' | 'LOCAL_DELIVERY' | 'PAYMENT_PROVIDER' | 'ECOM_MEMBERSHIPS' | 'ECOM_LINE_ITEMS_ENRICHER' | 'ECOM_SHIPPING_RATES' | 'SHIPPING_LABEL_CARRIER' | 'RESTAURANTS_POS' | 'FICTIONAL_SHIPPING_PROVIDER' | 'ALERT_ENRICHER' | 'DATA_EXTENSIONS' | 'GENERIC_HOOKS' | 'AUTOMATIONS_ACTION_PROVIDER' | 'ECOM_CATALOG' | 'BACK_OFFICE_EXTENSION_CONTAINER' | 'BACK_OFFICE_EXTENSION' | 'AUTOMATIONS_TRIGGER_PROVIDER' | 'IDENTITY_PRE_REGISTRATION' | 'PREMIUM_PRODUCTS_PATHS' | 'ECOM_CUSTOM_SCOPE' | 'GIFT_CARDS_PROVIDER' | 'DEALER_EXTERNAL_FILTER_PROVIDER' | 'ECOM_DROPSHIPPING_PROVIDER' | 'INVOICES_PROVIDER' | 'SEO_KEYWORDS_SUGGESTIONS' | 'ECOM_DISCOUNTS_TRIGGER' | 'MULTILINGUAL_CONTENT_PROVIDER' | 'APPLICATION_AUTOMATION' | 'BACK_OFFICE_SIDEBAR_CATEGORY' | 'BACK_OFFICE_PAGE' | 'ECOM_ADDITIONAL_FEES' | 'PING_USER_NOTIFICATION' | 'ECOM_RECOMMENDATIONS_PROVIDER' | 'BOOKINGS_PRICING_PROVIDER' | 'IDENTITY_AUTHENTICATOR' | 'IDENTITY_IDP_CONNECTOR' | 'ITEMS_SELECTION_PROVIDER' | 'PORTFOLIO_SYNCED_PROJECTS_PROVIDER' | 'COMMUNICATION_CHANNEL' | 'IDENTITY_POST_LOGIN' | 'BACK_OFFICE_WIDGET' | 'SOCIAL_MARKETING_DESIGN' | 'FORMS_SUBMISSIONS_PROVIDER' | 'WIX_OFFERING' | 'DEV_CENTER_TESTING_COMPONENT' | 'COMPONENTS_VALIDATOR_PROVIDER' | 'COMPONENTS_TRANSLATIONS_ADDITIONAL_FIELDS_PROVIDER' | 'FORMS_SCHEMA_PROVIDER' | 'BOOKINGS_EXTERNAL_CALENDAR_PROVIDER' | 'ECOM_DEFAULT_TAXATION_CATEGORY' | 'VIEWER_DYNAMIC_SITE_STRUCTURE_PROVIDER' | 'PING_UOU_NOTIFICATION' | 'HEADLESS_OAUTH' | 'ECOM_TAX_CALCULATOR_SPI' | 'COMMENTS_MODERATION_PROVIDER' | 'GRID_APP_FILES_TRANSFORMER' | 'BENEFIT_PROGRAMS_POLICY_PROVIDER' | 'PREMIUM_CUSTOM_CHARGES' | 'ECOM_VALIDATIONS' | 'COMPONENT_REFERENCE_DATA_PROVIDER' | 'WIX_REVIEWS_PRODUCT_CATALOG' | 'SOCIAL_MARKETING_DESIGNS_PROVIDER' | 'GOOGLE_BUSINESS_PROFILE_FEATURE_PROVIDER' | 'COMMENTS_FILTER_PROVIDER' | 'BILLING_TAX_ID_VALIDATOR' | 'PING_SETTINGS_GROUP' | 'FORMS_SPAM_SUBMISSIONS_PROVIDER' | 'EDITOR_ADDON' | 'EXTERNAL_DATABASE_PROVIDER' | 'ECOM_PAYMENT_SETTINGS' | 'NOTIFICATION_TOPIC' | 'NOTIFICATION_PREFERENCES_FILTER_PROVIDER' | 'BOOKINGS_RESOURCE_TYPES_PROVIDER' | 'PRICING_PLANS_FORM_CONFIGURATION' | 'USER_NOTIFICATION' | 'CONTACT_NOTIFICATION' | 'UNIFIED_PAGE' | 'AVAILABILITY_TIME_SLOTS_CONFIGURATION_PROVIDER' | 'PROPOSAL_EDITOR_PROVIDER' | 'CUSTOM_TABLE_RESERVATIONS_PROVIDER' | 'COMMENTS_CONTEXT_PROVIDER' | 'FORMS_SPAM_SUBMISSION_REPORTS_PROVIDER' | 'AUTOMATIONS_VELO_ACTION_PROVIDER' | 'CALENDAR_EVENT_TYPE_PROVIDER' | 'RESERVED' | 'SMS_ACTION_MESSAGE' | 'BOOKING_POLICY_PROVIDER' | 'MULTI_SERVICE_BOOKING_POLICY_PROVIDER' | 'AI_ASSISTANT' | 'FORMS_SUBMISSIONS_EXTENSION_PROVIDER' | 'MULTILINGUAL_TRANSLATION_SCHEMA' | 'TAX_CALCULATION_PROVIDER' | 'TAX_GROUPS_PROVIDER' | 'BACK_OFFICE_MODAL' | 'DEPLOYMENT_PIPELINE_PROVIDER' | 'CUSTOM_ELEMENT_WIDGET' | 'BACK_OFFICE_EXTENSION_WIDGET' | 'BACK_OFFICE_EXTENSION_MENU_ITEM' | 'FORM_TEMPLATE' | 'NOTIFICATION_CONTENT' | 'BROADCAST_LIST' | 'PARTNERS_PAYOUTS' | 'WIX_REVIEWS_ENTITY_CATALOG' | 'VELO_PUBLISH_PIPELINE_TASK_PROVIDER' | 'FUNCTIONS_SHOP_PRICE_PROVIDER' | 'FUNCTION' | 'ECOM_CHECKOUT_CONTENT' | 'COMMUNICATION_CHANNEL_PROVIDER' | 'WEBHOOK' | 'TOPOLOGY' | 'LOYALTY_CUSTOM_REWARDS' | 'FUNCTION_RECIPE' | 'BACK_OFFICE_EXTERNAL_URL' | 'IDENTITY_FACTOR' | 'ECOM_DISCOUNTS' | 'VELO_CUSTOM_CSS' | 'DEALER_ADAPTIVE_COMPONENT_PROVIDER' | 'AI_ASSISTANT_ACTION' | 'ECOM_INVENTORY' | 'MONITORING' | 'PAPI_PROVIDER' | 'UNIFIED_LIGHTBOX' | 'FORMS_EXTENSION_PROVIDER' | 'MULTILINGUAL_TRANSLATION_SCHEMA_GROUP' | 'PANEL' | 'PREMIUM_PURCHASE_VALIDATIONS' | 'BROWSER_STORAGE' | 'SDK_DEFINITION' | 'SITE_WIDGET_SLOT' | 'CALENDAR_EVENT_VALIDATION_PROVIDER' | 'CLIENT_SIDE_SERVICE' | 'BILLING_SETTINGS' | 'PATTERNS_WIZARD' | 'APPLICATION_PROFILE' | 'TEXT_TO_SPEECH_ACTION_MESSAGE' | 'AUDIENCE_PROVIDER' | 'PRICING_PLANS_PRICE' | 'PRICING_PLAN_START_DATE_LIMITS' | 'PRICING_PLAN_START_DATE_RULES' | 'EVENTS_TICKET_RESERVATIONS' | 'PAYMENTS_DISPUTE_SERVICE_PLUGIN' | 'PRICING_PLANS_FEES' | 'EDITOR_REACT_COMPONENT' | 'SUPPLIERS_HUB_MARKETPLACE' | 'FORM_SCHEMA_DYNAMIC_VALUES' | 'BLOG_PAYWALL_PROVIDER' | 'LOYALTY_CUSTOM_REWARDS_V2' | 'STORES_PRODUCT_RESTRICTIONS' | 'FORM_SUBMISSION_MODERATION' | 'EVENTS_EVENT_BADGES' | 'BILLING_OPERATION' | 'BACK_OFFICE_CUSTOMIZATION' | 'COMPONENT_ENRICHER_PROVIDER' | 'BACK_OFFICE_RESTRICTED_CUSTOMIZATION' | 'EDITOR_APP_PREVIEWS_POC' | 'LEGENDS_PERSONA_CONFIGURATION' | 'WIX_HOSTING_APP_DEPLOYMENT_PROVIDER' | 'BACKEND_WORKER' | 'EVENT_TIME_SLOTS_CONFIGURATION_PROVIDER' | 'WIX_HOSTING_APP_ENVIRONMENT_PROVIDER' | 'SDK_EXPORTS' | 'VIEWER_SERVICE' | 'WIX_PAYMENTS_PROVIDER_ACCOUNT_SERVICE_PLUGIN' | 'CONTACTS_SEGMENTS_V2_FILTER_PROVIDER' | 'ANALYTICS_PRODUCT_CATALOG' | 'SITE_MIGRATION' | 'RESTAURANTS_POS_PROVIDER_SETTINGS_SERVICE_PLUGIN' | 'WIX_VIBE_CODING_INSTRUCTIONS' | 'TAX_EXEMPT_GROUPS_PROVIDER' | 'BOOKING_AUTOMATIONS_CONFIGURATION' | 'WIX_VIBE_COMPONENT' | 'WIXEL' | 'STAFF_SORTING_PROVIDER' | 'FUNCTION_ECOM_DISCOUNT_TRIGGER_ELIGIBILITY_PROVIDER' | 'FUNCTIONS_ASSISTANT_TOOLS' | 'SITE_MAP_INFO_PROVIDER' | 'WIX_AI_GATEWAY_CALLBACK' | 'URL_MAPPER_PROVIDER' | 'PROVIDER_SUPPRESSION_SERVICE_PLUGIN' | 'ECOM_FORMS' | 'EDITOR_CONTEXT_PROVIDER' | 'EDITOR_FUNCTION_LIBRARY' | 'BOOKINGS_PLATFORM_CONFIGURATION' | 'BOOKINGS_VALIDATION_PROVIDER' | 'APP_ROUTER' | 'WIXEL_BINDING' | 'SHUB_MARKETPLACE_PROVIDER' | 'BOOKING_ACTION_URLS_PROVIDER' | 'CALENDAR_CONFERENCING_PROVIDER' | 'BASS_VALIDATE_CANCEL_ACTION' | 'WIXEL_VIEWER_ROUTER_PROVIDER' | 'PREMIUM_ACTION' | 'AUTOMATION_TEMPLATE' | 'AGENT_MAKER_APPROVAL_PROVIDER' | 'SERVICE_TAGS_CONFIGURATION';
|
|
10355
|
+
type ComponentTypeWithLiterals = ComponentType | 'NONE' | 'STUDIO' | 'PLATFORM' | 'WORKER' | 'DASHBOARD' | 'WIDGET' | 'PAGE' | 'DASHBOARD_PLATFORM' | 'STUDIO_WIDGET' | 'EMBEDDED_SCRIPT' | 'EXTENSION' | 'SNIPPET_SOLUTION' | 'DATA_COMPONENT' | 'WEB' | 'DC_CONFIG' | 'WIDGET_OUT_OF_IFRAME' | 'PAGE_OUT_OF_IFRAME' | 'STATIC_FILE' | 'APP_CONFIG' | 'MULTIPLE_DASHBOARDS' | 'PAYMENTS_GATEWAY' | 'CODE_PACKAGE' | 'AUTOMATION_TRIGGER' | 'INVOICES_ACTIONS' | 'DASHBOARD_APPLICATION' | 'CONTACT_LABELS' | 'WIDGET_PLUGIN' | 'CROSS_SELL' | 'LOCAL_DELIVERY' | 'PAYMENT_PROVIDER' | 'ECOM_MEMBERSHIPS' | 'ECOM_LINE_ITEMS_ENRICHER' | 'ECOM_SHIPPING_RATES' | 'SHIPPING_LABEL_CARRIER' | 'RESTAURANTS_POS' | 'FICTIONAL_SHIPPING_PROVIDER' | 'ALERT_ENRICHER' | 'DATA_EXTENSIONS' | 'GENERIC_HOOKS' | 'AUTOMATIONS_ACTION_PROVIDER' | 'ECOM_CATALOG' | 'BACK_OFFICE_EXTENSION_CONTAINER' | 'BACK_OFFICE_EXTENSION' | 'AUTOMATIONS_TRIGGER_PROVIDER' | 'IDENTITY_PRE_REGISTRATION' | 'PREMIUM_PRODUCTS_PATHS' | 'ECOM_CUSTOM_SCOPE' | 'GIFT_CARDS_PROVIDER' | 'DEALER_EXTERNAL_FILTER_PROVIDER' | 'ECOM_DROPSHIPPING_PROVIDER' | 'INVOICES_PROVIDER' | 'SEO_KEYWORDS_SUGGESTIONS' | 'ECOM_DISCOUNTS_TRIGGER' | 'MULTILINGUAL_CONTENT_PROVIDER' | 'APPLICATION_AUTOMATION' | 'BACK_OFFICE_SIDEBAR_CATEGORY' | 'BACK_OFFICE_PAGE' | 'ECOM_ADDITIONAL_FEES' | 'PING_USER_NOTIFICATION' | 'ECOM_RECOMMENDATIONS_PROVIDER' | 'BOOKINGS_PRICING_PROVIDER' | 'IDENTITY_AUTHENTICATOR' | 'IDENTITY_IDP_CONNECTOR' | 'ITEMS_SELECTION_PROVIDER' | 'PORTFOLIO_SYNCED_PROJECTS_PROVIDER' | 'COMMUNICATION_CHANNEL' | 'IDENTITY_POST_LOGIN' | 'BACK_OFFICE_WIDGET' | 'SOCIAL_MARKETING_DESIGN' | 'FORMS_SUBMISSIONS_PROVIDER' | 'WIX_OFFERING' | 'DEV_CENTER_TESTING_COMPONENT' | 'COMPONENTS_VALIDATOR_PROVIDER' | 'COMPONENTS_TRANSLATIONS_ADDITIONAL_FIELDS_PROVIDER' | 'FORMS_SCHEMA_PROVIDER' | 'BOOKINGS_EXTERNAL_CALENDAR_PROVIDER' | 'ECOM_DEFAULT_TAXATION_CATEGORY' | 'VIEWER_DYNAMIC_SITE_STRUCTURE_PROVIDER' | 'PING_UOU_NOTIFICATION' | 'HEADLESS_OAUTH' | 'ECOM_TAX_CALCULATOR_SPI' | 'COMMENTS_MODERATION_PROVIDER' | 'GRID_APP_FILES_TRANSFORMER' | 'BENEFIT_PROGRAMS_POLICY_PROVIDER' | 'PREMIUM_CUSTOM_CHARGES' | 'ECOM_VALIDATIONS' | 'COMPONENT_REFERENCE_DATA_PROVIDER' | 'WIX_REVIEWS_PRODUCT_CATALOG' | 'SOCIAL_MARKETING_DESIGNS_PROVIDER' | 'GOOGLE_BUSINESS_PROFILE_FEATURE_PROVIDER' | 'COMMENTS_FILTER_PROVIDER' | 'BILLING_TAX_ID_VALIDATOR' | 'PING_SETTINGS_GROUP' | 'FORMS_SPAM_SUBMISSIONS_PROVIDER' | 'EDITOR_ADDON' | 'EXTERNAL_DATABASE_PROVIDER' | 'ECOM_PAYMENT_SETTINGS' | 'NOTIFICATION_TOPIC' | 'NOTIFICATION_PREFERENCES_FILTER_PROVIDER' | 'BOOKINGS_RESOURCE_TYPES_PROVIDER' | 'PRICING_PLANS_FORM_CONFIGURATION' | 'USER_NOTIFICATION' | 'CONTACT_NOTIFICATION' | 'UNIFIED_PAGE' | 'AVAILABILITY_TIME_SLOTS_CONFIGURATION_PROVIDER' | 'PROPOSAL_EDITOR_PROVIDER' | 'CUSTOM_TABLE_RESERVATIONS_PROVIDER' | 'COMMENTS_CONTEXT_PROVIDER' | 'FORMS_SPAM_SUBMISSION_REPORTS_PROVIDER' | 'AUTOMATIONS_VELO_ACTION_PROVIDER' | 'CALENDAR_EVENT_TYPE_PROVIDER' | 'RESERVED' | 'SMS_ACTION_MESSAGE' | 'BOOKING_POLICY_PROVIDER' | 'MULTI_SERVICE_BOOKING_POLICY_PROVIDER' | 'AI_ASSISTANT' | 'FORMS_SUBMISSIONS_EXTENSION_PROVIDER' | 'MULTILINGUAL_TRANSLATION_SCHEMA' | 'TAX_CALCULATION_PROVIDER' | 'TAX_GROUPS_PROVIDER' | 'BACK_OFFICE_MODAL' | 'DEPLOYMENT_PIPELINE_PROVIDER' | 'CUSTOM_ELEMENT_WIDGET' | 'BACK_OFFICE_EXTENSION_WIDGET' | 'BACK_OFFICE_EXTENSION_MENU_ITEM' | 'FORM_TEMPLATE' | 'NOTIFICATION_CONTENT' | 'BROADCAST_LIST' | 'PARTNERS_PAYOUTS' | 'WIX_REVIEWS_ENTITY_CATALOG' | 'VELO_PUBLISH_PIPELINE_TASK_PROVIDER' | 'FUNCTIONS_SHOP_PRICE_PROVIDER' | 'FUNCTION' | 'ECOM_CHECKOUT_CONTENT' | 'COMMUNICATION_CHANNEL_PROVIDER' | 'WEBHOOK' | 'TOPOLOGY' | 'LOYALTY_CUSTOM_REWARDS' | 'FUNCTION_RECIPE' | 'BACK_OFFICE_EXTERNAL_URL' | 'IDENTITY_FACTOR' | 'ECOM_DISCOUNTS' | 'VELO_CUSTOM_CSS' | 'DEALER_ADAPTIVE_COMPONENT_PROVIDER' | 'AI_ASSISTANT_ACTION' | 'ECOM_INVENTORY' | 'MONITORING' | 'PAPI_PROVIDER' | 'UNIFIED_LIGHTBOX' | 'FORMS_EXTENSION_PROVIDER' | 'MULTILINGUAL_TRANSLATION_SCHEMA_GROUP' | 'PANEL' | 'PREMIUM_PURCHASE_VALIDATIONS' | 'BROWSER_STORAGE' | 'SDK_DEFINITION' | 'SITE_WIDGET_SLOT' | 'CALENDAR_EVENT_VALIDATION_PROVIDER' | 'CLIENT_SIDE_SERVICE' | 'BILLING_SETTINGS' | 'PATTERNS_WIZARD' | 'APPLICATION_PROFILE' | 'TEXT_TO_SPEECH_ACTION_MESSAGE' | 'AUDIENCE_PROVIDER' | 'PRICING_PLANS_PRICE' | 'PRICING_PLAN_START_DATE_LIMITS' | 'PRICING_PLAN_START_DATE_RULES' | 'EVENTS_TICKET_RESERVATIONS' | 'PAYMENTS_DISPUTE_SERVICE_PLUGIN' | 'PRICING_PLANS_FEES' | 'EDITOR_REACT_COMPONENT' | 'SUPPLIERS_HUB_MARKETPLACE' | 'FORM_SCHEMA_DYNAMIC_VALUES' | 'BLOG_PAYWALL_PROVIDER' | 'LOYALTY_CUSTOM_REWARDS_V2' | 'STORES_PRODUCT_RESTRICTIONS' | 'FORM_SUBMISSION_MODERATION' | 'EVENTS_EVENT_BADGES' | 'BILLING_OPERATION' | 'BACK_OFFICE_CUSTOMIZATION' | 'COMPONENT_ENRICHER_PROVIDER' | 'BACK_OFFICE_RESTRICTED_CUSTOMIZATION' | 'EDITOR_APP_PREVIEWS_POC' | 'LEGENDS_PERSONA_CONFIGURATION' | 'WIX_HOSTING_APP_DEPLOYMENT_PROVIDER' | 'BACKEND_WORKER' | 'EVENT_TIME_SLOTS_CONFIGURATION_PROVIDER' | 'WIX_HOSTING_APP_ENVIRONMENT_PROVIDER' | 'SDK_EXPORTS' | 'VIEWER_SERVICE' | 'WIX_PAYMENTS_PROVIDER_ACCOUNT_SERVICE_PLUGIN' | 'CONTACTS_SEGMENTS_V2_FILTER_PROVIDER' | 'ANALYTICS_PRODUCT_CATALOG' | 'SITE_MIGRATION' | 'RESTAURANTS_POS_PROVIDER_SETTINGS_SERVICE_PLUGIN' | 'WIX_VIBE_CODING_INSTRUCTIONS' | 'TAX_EXEMPT_GROUPS_PROVIDER' | 'BOOKING_AUTOMATIONS_CONFIGURATION' | 'WIX_VIBE_COMPONENT' | 'WIXEL' | 'STAFF_SORTING_PROVIDER' | 'FUNCTION_ECOM_DISCOUNT_TRIGGER_ELIGIBILITY_PROVIDER' | 'FUNCTIONS_ASSISTANT_TOOLS' | 'SITE_MAP_INFO_PROVIDER' | 'WIX_AI_GATEWAY_CALLBACK' | 'URL_MAPPER_PROVIDER' | 'PROVIDER_SUPPRESSION_SERVICE_PLUGIN' | 'ECOM_FORMS' | 'EDITOR_CONTEXT_PROVIDER' | 'EDITOR_FUNCTION_LIBRARY' | 'BOOKINGS_PLATFORM_CONFIGURATION' | 'BOOKINGS_VALIDATION_PROVIDER' | 'APP_ROUTER' | 'WIXEL_BINDING' | 'SHUB_MARKETPLACE_PROVIDER' | 'BOOKING_ACTION_URLS_PROVIDER' | 'CALENDAR_CONFERENCING_PROVIDER' | 'BASS_VALIDATE_CANCEL_ACTION' | 'WIXEL_VIEWER_ROUTER_PROVIDER' | 'PREMIUM_ACTION' | 'AUTOMATION_TEMPLATE' | 'AGENT_MAKER_APPROVAL_PROVIDER' | 'SERVICE_TAGS_CONFIGURATION' | 'LOYALTY_POINTS_ADJUSTMENT';
|
|
10285
10356
|
/** @internal */
|
|
10286
10357
|
interface ComponentTranslationAdditionalFieldsConfig {
|
|
10287
10358
|
deploymentUri?: string;
|
|
@@ -23526,6 +23597,15 @@ interface AutomationActionScope {
|
|
|
23526
23597
|
interface ServiceTagsConfig {
|
|
23527
23598
|
allowedTags?: string[];
|
|
23528
23599
|
}
|
|
23600
|
+
/** Static configuration each function instance provides */
|
|
23601
|
+
/** @internal */
|
|
23602
|
+
interface PointsAdjustmentProviderConfig {
|
|
23603
|
+
/**
|
|
23604
|
+
* URI where the SPI Implementer is deployed.
|
|
23605
|
+
* Functions will inject the function:// protocol URL here.
|
|
23606
|
+
*/
|
|
23607
|
+
baseUri?: SpiBaseUri;
|
|
23608
|
+
}
|
|
23529
23609
|
/** @internal */
|
|
23530
23610
|
interface Empty {
|
|
23531
23611
|
}
|
|
@@ -26356,5 +26436,18 @@ declare function serviceTagsConfiguration({ id, data, name, }: {
|
|
|
26356
26436
|
data: ServiceTagsConfig;
|
|
26357
26437
|
name?: string;
|
|
26358
26438
|
}): ExtensionData;
|
|
26439
|
+
/**
|
|
26440
|
+
* Loyalty Points Adjustment SPI - allows Functions to adjust loyalty points before assignment
|
|
26441
|
+
* @param id - A unique identifier for the extension
|
|
26442
|
+
* @param data - Static configuration each function instance provides
|
|
26443
|
+
* @param name - Optional - A human readable name for the extension
|
|
26444
|
+
* @returns A general form of extensions
|
|
26445
|
+
*/
|
|
26446
|
+
/** @internal */
|
|
26447
|
+
declare function loyaltyPointsAdjustment({ id, data, name, }: {
|
|
26448
|
+
id: string;
|
|
26449
|
+
data: PointsAdjustmentProviderConfig;
|
|
26450
|
+
name?: string;
|
|
26451
|
+
}): ExtensionData;
|
|
26359
26452
|
|
|
26360
|
-
export { type A11y, A11yAttributes, type A11yAttributesWithLiterals, AcceptedDirectMessageType, type AcceptedDirectMessageTypeWithLiterals, AcceptedMessageTypesAcceptedDirectMessageType, type AcceptedMessageTypesAcceptedDirectMessageTypeWithLiterals, AcceptedMessageTypesAcceptedSmsMessageType, type AcceptedMessageTypesAcceptedSmsMessageTypeWithLiterals, AcceptedSmsMessageType, type AcceptedSmsMessageTypeWithLiterals, AccessLevel, type AccessLevelWithLiterals, type Action, type ActionCondition, ActionName, type ActionNameWithLiterals, type ActionProviderSPIConfig, type ActionSPIConfig, type ActionSPIConfigImplementedMethods, type ActionSPIConfigInterfaceConfiguration, type ActionSPIConfigInterfaceConfigurationOptionsOneOf, ActionSPIConfigInterfaceConfigurationType, type ActionSPIConfigInterfaceConfigurationTypeWithLiterals, type ActionSpiConfig, ActionType, type ActionTypeWithLiterals, type Actions, type AdaptiveComponentProviderConfig, type AddCustomFields, type AdditionalFeesSPIConfig, type AdditionalStepInfo, type AdditionalTaxGroup, type AddonMarketData, type Address, AddressComponentType, type AddressComponentTypeOptionsOneOf, type AddressComponentTypeWithLiterals, type AddressInfo, AddressInfoTag, type AddressInfoTagWithLiterals, type AddressLine2, type AdminConfigurableTextInput, type AlertEnricherSpiConfiguration, type AlgorithmConfig, AlgorithmType, type AlgorithmTypeWithLiterals, Alignment, type AlignmentWithLiterals, type AllowedValuesOptions, type AlternativeUri, type AnchorData, type AnchorMetaData, type AndCondition, type AndroidMobilePushConfig, AndroidStyle, type AndroidStyleWithLiterals, type ApiContext, type ApiSlot, type ApiWidth, type AppConfig, type AppConfiguration, type AppDeploymentProviderConfig, type AppEmbedData, type AppEmbedDataAppDataOneOf, type AppEnvironmentProviderConfig, type AppPreviewProviderConfig, type AppRouter, AppType, type AppTypeWithLiterals, type ApplicationAutomationComponent, type ApplicationProfile, type ApplicationProfileProviderConfig, type Appointment, AppointmentFormat, type AppointmentFormatInfoOneOf, type AppointmentFormatWithLiterals, type ApprovalProviderConfig, type ApprovalProviderConfigScopeOneOf, Archetype, type ArchetypeWithLiterals, ArrayComponentType, type ArrayComponentTypeWithLiterals, type ArrayItems, type ArrayItemsArrayDataOneOf, type ArrayOptions, type ArrayOptionsElementTypeOptionsOneOf, type ArrayType, type ArrayTypeArrayItems, type ArrayTypeArrayItemsItemTypeOptionsOneOf, AspectRatio, type AspectRatioWithLiterals, AssetType, type AssetTypeWithLiterals, type AssistantSpiConfig, type AudienceProviderConfig, type AudioData, type AuthenticatorConfig, type AutomationActionScope, type AutomationMetadata, type AutomationTemplateComponent, type AutomationTrigger, type AutomationsConfig, type AvailabilityTimeSlotsProviderConfig, type AvatarConfig, AvatarShape, type AvatarShapeWithLiterals, type BackOfficeCustomization, type BackOfficeCustomizationSidebarEntity, type BackOfficeCustomizationSidebarEntityItemOneOf, type BackOfficeExtension, type BackOfficeExtensionContainer, type BackOfficeExtensionExtensionOneOf, type BackOfficeExtensionMenuItem, type BackOfficeExtensionWidget, type BackOfficeExtensionWidgetAssetOneOf, type BackOfficeExternalUrl, BackOfficeHostingPlatforms, type BackOfficeHostingPlatformsWithLiterals, type BackOfficeModal, type BackOfficeModalContentOneOf, type BackOfficePage, type BackOfficePageAssetOneOf, type BackOfficeRestrictedCustomization, type BackOfficeScriptAsset, BackOfficeScriptAssetType, type BackOfficeScriptAssetTypeWithLiterals, type BackOfficeSidebarCategory, type BackOfficeWidget, type BackOfficeWidgetContentOneOf, type Backdrop, type BackdropFilter, BackdropType, type BackdropTypeWithLiterals, type BackendWorker, type Background, type BackgroundGradient, type BackgroundImage, BackgroundModeEnum, type BackgroundModeEnumWithLiterals, BackgroundType, type BackgroundTypeWithLiterals, type BackofficeActionDeeplink, type Banner, type BarAlignment, BarAlignmentSelected, type BarAlignmentSelectedWithLiterals, type BaseInfo, type BaseInstallation, type Behaviors, type BillingSettingsConfig, type BindingsSPIConfig, BlockType, type BlockTypeWithLiterals, type BlockquoteData, type BlocksData, type BlogPaywallProviderConfig, type BookingActionUrlsProviderConfig, type BookingAutomationsConfig, type BookingData, type BookingPermissionOverrides, type BookingPolicyProviderConfig, type BookingsPlatformConfig, type BookingsPricingProviderConfig, type BookingsResourceType, type BookingsResourceTypesProviderConfig, type BookingsValidationProviderConfig, type BoolListOptions, BooleanComponentType, type BooleanComponentTypeWithLiterals, type BooleanExperimentExposureRule, type BooleanType, type Border, type BorderColors, type BorderWidths, type BrandIcons, type BreakPoint, type BreakPointSection, type Breakpoint, BreakpointEnumBreakpoint, type BreakpointEnumBreakpointWithLiterals, type BreakpointPresetStyleOverrides, type Breakpoints, type BroadcastList, type BrowserPushChannel, type BrowserPushContentKeys, type BrowserStorage, type BuilderSpi, type BulletedListData, type Bundle, type BusinessManagerPage, type ButtonData, ButtonDataType, type ButtonDataTypeWithLiterals, type ButtonStyles, CalendarType, type CalendarTypeWithLiterals, type CancelSubscriptionsConfig, type CaptionData, type CardData, type CardDataBackground, type CardDataBackgroundImage, CardDataBackgroundType, type CardDataBackgroundTypeWithLiterals, type CardStyles, CardStylesAlignment, type CardStylesAlignmentWithLiterals, CardStylesType, type CardStylesTypeWithLiterals, type CatalogSPIConfig, type CatalogSyncConfiguration, Category, type CategoryWithLiterals, type CellStyle, ChangeableProperty, type ChangeablePropertyWithLiterals, type ChannelBrandIcons, type ChannelBranding, type ChannelChannelBranding, type ChannelChannelConfiguration, type ChannelChannelConfigurationMessagingConfigOneOf, type ChannelConfiguration, ChannelConfigurationChannelType, type ChannelConfigurationChannelTypeWithLiterals, type ChannelConfigurationMessagingConfigOneOf, type ChannelIcon, type ChannelImplementedMethods, type ChannelMediaCapabilities, ChannelType, type ChannelTypeWithLiterals, type Checkbox, type CheckboxConfiguration, type CheckboxField, type CheckboxGroup, type CheckboxGroupOption, type CheckoutContentSPIConfig, type ClientResources, type ClientSideService, type CodeBlockData, type CodePackageComponentData, type CodePanel, type CollapsibleListData, type Collection, type Color, type ColorData, type ColorDefinition, type ColorSelectLabeled, type ColorSelectLabeledDataOneOf, type Colors, type CommentFilterProviderConfig, type CommentModerationProviderConfig, type CommentsContextProviderConfig, type CommonImage, type CommunicationChannelConfiguration, type ComponentCatalog, type ComponentData, type ComponentDataDataOneOf, type ComponentEnricherConfig, type ComponentInitialSize, type ComponentMetaData, type ComponentModel, ComponentPresent, type ComponentPresentWithLiterals, type ComponentReferenceDataConfig, type ComponentTranslationAdditionalFieldsConfig, ComponentType, type ComponentTypeWithLiterals, type ComponentsValidatorConfig, type Condition, type ConditionBlock, type ConditionNode, type ConditionNodeNodeOneOf, type Conditions, type ConferencingProviderConfig, type Configuration, ConfirmationLevel, type ConfirmationLevelWithLiterals, ConnectMethod, type ConnectMethodWithLiterals, ConnectionMethod, type ConnectionMethodWithLiterals, ConsentCategory, type ConsentCategoryWithLiterals, type Consequence, type ConstOrDynamicParam, type ConstOrDynamicParamValueOneOf, type Constraint, type ContactData, ContactField, type ContactFieldWithLiterals, type ContactLabelsComponentData, type ContactNotification, type ContactsData, type ContactsNotificationData, type Container, type ContainerBehaviors, type ContainerDataOneOf, type ContainerLayout, type ContainerStyleOverrides, ContainerType, type ContainerTypeWithLiterals, type ContentData, type ContentDataOverrides, type ContentFill, type ContentProviderConfig, ContentResizeDirection, type ContentResizeDirectionWithLiterals, type Context, type ContextArrayItems, type ContextArrayItemsArrayDataOneOf, type ContextDataItems, type ContextImplementor, type ContextItem, type ContextItemSelectedDataTypeOneOf, type ContextSpecifier, type ConversationLimitations, type Coordinates, type CoreApps, type Corners, type CoverImageConfiguration, type CreateComponentCatalogRequest, type CreateNewItemInfo, Crop, type CropWithLiterals, type CrossSellConfig, type CssCustomPropertyAction, type CssCustomPropertyItem, type CssCustomPropertyItemSelectedCssPropertyTypeOneOf, CssDataType, type CssDataTypeWithLiterals, type CssNumber, type CssPropertyAction, type CssPropertyItem, type CssPropertyItemDefaults, type CssPropertyItemDefinitionOverrides, type CssPropertyItemSelectedCssPropertyTypeOneOf, CssPropertyType, CssPropertyTypeEnumCssPropertyType, type CssPropertyTypeEnumCssPropertyTypeWithLiterals, type CssPropertyTypeWithLiterals, CssVariableTypeEnumCssDataType, type CssVariableTypeEnumCssDataTypeWithLiterals, type CurrencyCodeListOptions, type CustomAction, type CustomActionActionExecuteOneOf, type CustomChargesConfig, type CustomElement, type CustomElementConsentCategoryOneOf, CustomElementScriptType, type CustomElementScriptTypeWithLiterals, type CustomElementWidget, type CustomEnum, type CustomEnumOption, type CustomEnumOptionCssProperty, type CustomExperimentExposureRule, type CustomFieldInfo, CustomFieldsType, type CustomFieldsTypeWithLiterals, type CustomInitialPreset, type CustomOption, type CustomPermission, type CustomPropertyEnum, type CustomPropertyEnumOption, type CustomPropertyEnumOptionStyle, type CustomRefData, type CustomReservationsApprovalConfig, type CustomRewardProviderConfig, type CustomScopeConfig, type CustomTriggerConfig, type DCConfigData, type Dashboard, type DashboardAction, type DashboardApplicationData, type DashboardButton, type DashboardComponentData, type DashboardItem, type DashboardPlatfromComponentData, type DataAction, type DataComponent, type DataExtensionsComponentData, type DataGroupsArrayItems, type DataItem, type DataItemOverrides, type DataItemOverridesSelectedDataTypeOneOf, type DataItemSelectedDataTypeOneOf, type DataItems, type DataPermissions, DataType, type DataTypeWithLiterals, type DateInput, type DatePicker, type DateTimeConstraints, type DateTimeInput, type Debounce, type DecimalListOptions, type Decoration, type DecorationDataOneOf, DecorationType, type DecorationTypeWithLiterals, type Deeplink, type DeeplinkOfOneOf, Default, type DefaultCountryConfig, type DefaultCountryConfigOptionsOneOf, DefaultCountryConfigType, type DefaultCountryConfigTypeWithLiterals, type DefaultPresets, type DefaultTaxGroupProviderConfig, DefaultTextStyle, type DefaultTextStyleWithLiterals, type DefaultWithLiterals, type Definition, type Delay, type DelayTypeOneOf, type DeleteComponentCatalogRequest, type DeleteTemplateFields, type DeploymentPipelineProviderConfig, type Description, type Design, DesignTarget, type DesignTargetWithLiterals, type DevCenterTestingComponentData, type DevCenterTestingComponentDataTranslatableOneOfOneOf, type Dimension, type Dimensions, type DirectMessageConfig, Direction, type DirectionWithLiterals, type DiscountConfig, type DiscountsSPIConfig, type DiscoveryMetaData, type Display, type DisplayField, type DisplayFieldDisplayFieldTypeOptionsOneOf, DisplayFieldType, type DisplayFieldTypeWithLiterals, type DisplayFilter, type DisplayFilters, type DisplayGroupAction, type DisplayGroupItem, type DisplayGroupItemSelectedGroupTypeOneOf, type DisplayProperties, type DisplayValue, DisplayValueEnumDisplayValue, type DisplayValueEnumDisplayValueWithLiterals, type DisputeServicePluginConfig, type DividerData, DividerDataAlignment, type DividerDataAlignmentWithLiterals, DividerDataWidth, type DividerDataWidthWithLiterals, type DmDirectMessageConfig, type Docking, type DockingProperties, type DocumentStyle, Domain, type DomainWithLiterals, type DonationInput, type DonationInputOption, type DrillInListItem, type DrillItem, type DrillItemDataOneOf, type DropDownLabeled, type Dropdown, type DropdownField, type DropdownFieldOption, type DropdownOption, type DropshippingProviderSPIConfig, type DtsContent, type DtsDefinitionReference, type DtsDefinitionReferenceDtsDefinitionOneOf, DtsDefinitionType, type DtsDefinitionTypeWithLiterals, type DtsHttpLink, type DurationInputConfiguration, type DurationInputConfigurationDurationRenameOptions, type DurationRenameOptions, type DynamicPriceOptions, type DynamicSiteStructureProviderConfig, type EditableFields, EditableProperties, type EditablePropertiesWithLiterals, type EditorAddon, type EditorBehaviors, type EditorContextProvider, type EditorContextProviderModuleConfiguration, type EditorContextProviderResources, type EditorDependencies, type EditorElement, type EditorElementLayout, type EditorFunction, type EditorFunctionLibrary, type EditorFunctionLibraryModuleConfiguration, type EditorPresence, type EditorReactComponent, type EditorReactComponentModuleConfiguration, EffectGroup, type EffectGroupWithLiterals, ElementDisplayOption, type ElementDisplayOptionWithLiterals, type ElementItem, type ElementItemSelectedElementTypeOneOf, type ElementState, type ElementStyleDefaults, type ElementStyleOverrides, ElementType, type ElementTypeWithLiterals, type EmailChannel, type EmailEmailMessageConfig, type EmailInfo, EmailInfoTag, type EmailInfoTagWithLiterals, type EmailMessageConfig, type EmailTemplateConfig, type EmailTemplateConfigProviderOneOf, EmbedCategory, type EmbedCategoryWithLiterals, type EmbedData, type EmbeddedScriptComponentData, EmbeddedScriptPages, type EmbeddedScriptPagesWithLiterals, EmbeddedScriptPlacement, type EmbeddedScriptPlacementWithLiterals, type Empty, Environment, type EnvironmentWithLiterals, type ErrorReporting, type ErrorReportingArtifact, Escalation, type EscalationWithLiterals, type EventAction, type EventBadgesSpiConfig, type EventData, type EventTimeSlotsProviderConfig, type EventTypeProviderConfig, type EventValidationProviderConfig, type Execution, type ExecutionActionExecuteOneOf, ExecutionType, type ExecutionTypeWithLiterals, type ExemptRegions, type ExpectedInputs, type ExperimentGroupWrapper, type ExportMetadata, Exposure, type ExposureRule, type ExposureRuleRuleOneOf, ExposureRuleType, type ExposureRuleTypeWithLiterals, type ExposureWithLiterals, type Extendable, ExtendingComponentType, type ExtendingComponentTypeWithLiterals, type ExtensionData, type ExtensionDetails, type ExtensionExposure, ExtensionExposureExposure, type ExtensionExposureExposureWithLiterals, ExtensionType, type ExtensionTypeWithLiterals, type ExternalDatabaseSpiConfig, type ExternalFilterProviderConfig, type FactorConfig, FactorType, type FactorTypeWithLiterals, type FeedAggregation, type FeedChannels, type FeedChannelsConfig, type FeesSPIConfig, type Field, FieldFieldType, type FieldFieldTypeWithLiterals, type FieldGroup, type FieldManagementConfig, type FieldOverride, type FieldOverrides, FieldType, type FieldTypeOptionsOneOf, type FieldTypeWithLiterals, type FieldsOverrides, type FieldsSettings, type FileData, FileMediaType, type FileMediaTypeWithLiterals, type FileSource, type FileSourceDataOneOf, type FileType, type FileUpload, type Filter, FilterFunction, type FilterFunctionWithLiterals, type FilterInfo, type FilterInfoOptionsOneOf, FilterOptionsType, type FilterOptionsTypeWithLiterals, FilterSelectionType, type FilterSelectionTypeWithLiterals, FilterValueDefinitionMode, type FilterValueDefinitionModeWithLiterals, type FilteringCapability, FirstDayOfWeek, type FirstDayOfWeekWithLiterals, type FirstLevelCategory, type FixedPayment, type FixedPositionBuilder, type FixedPositionOptions, type FixedPriceOptions, type FocalPoint, type Font, type FontDefinition, type FontFamilyData, type FontFamilyWithColorPicker, type FontSizeData, FontType, type FontTypeWithLiterals, type FormFieldContactInfo, type FormFieldContactInfoAdditionalInfoOneOf, type FormLayout, type FormOverride, type FormOverrideEntityTypeOptionsOneOf, type FormOverrideFieldOverride, type FormOverrideFieldOverridePropertyTypeOptionsOneOf, type FormSchemaDynamicValuesSpiConfig, type FormSchemaSpiConfig, type FormSpamSubmissionReportPermissions, type FormSpamSubmissionReportSpiConfig, type FormSpamSubmissionReportsNamespaceConfig, type FormSpamSubmissionSpiConfig, type FormSpiExtensionConfig, type FormSubmissionModerationSpiConfig, type FormSubmissionModerationSpiNamespaceConfig, type FormSubmissionSpiConfig, type FormSubmissionSpiExtensionConfig, type FormTemplate, type FormTemplateTemplateTypeOptionsOneOf, Format, type FormatWithLiterals, type FormsConfig, type FormsPermissions, type FormsSPIConfig, type FormsSchemaNamespaceConfig, type FormsSpamSubmissionsNamespaceConfig, type FormsSubmissionsExtensionNamespaceConfig, type FormsSubmissionsNamespaceConfig, type ForwardAction, type ForwardActionActionOneOf, type FreeOptionConfiguration, type FreePricingTypeConfiguration, type FreeTrialConfiguration, type FunctionAssistantToolProviderConfig, type FunctionDefinition, type FunctionEcomDiscountTriggerEligibilityProviderConfig, type FunctionParameter, type FunctionParameterArrayItems, type FunctionParameterArrayItemsArrayDataOneOf, type FunctionParameterItems, type FunctionParameterSelectedDataTypeOneOf, type FunctionRecipe, type FunctionResources, type FunctionReturnType, type FunctionReturnTypeSelectedDataTypeOneOf, type FunctionsShopPriceSpiConfig, type GIF, type GIFData, GIFType, type GIFTypeWithLiterals, type GalleryData, type GalleryOptions, type GalleryOptionsLayout, type GalleryOptionsThumbnails, type Gap, type GbpFeatureConfig, type GenericHookConfig, type GenericHooksConfig, type GenericOptions, type GetComponentsCatalogResponse, type GiftCardProviderConfig, type Gradient, GradientType, type GradientTypeWithLiterals, type GridAppFilesTransformerConfig, type Group, GroupType, type GroupTypeWithLiterals, type GroupedContent, type HTMLData, type HTMLDataDataOneOf, HTMLDataSource, type HTMLDataSourceWithLiterals, HTTPMethod, type HTTPMethodWithLiterals, type Header, type HeaderConfig, type HeaderConfigHeaderConfigOneOf, type HeaderConfigOneOf, type HeaderWidgetConfig, type HeadingData, type HeadlessOAuth, type Height, HeightMode, type HeightModeWithLiterals, type HelpArticle, type HelpArticleArticleTypeOneOf, type HelpResources, type HiddenOptions, HookType, type HookTypeWithLiterals, Horizontal, HorizontalDocking, type HorizontalDockingWithLiterals, type HorizontalWithLiterals, HostContainerId, type HostContainerIdWithLiterals, type HostedComponent, type HostedPage, type IDPConnectionConfig, type Icon, type IconDataOneOf, IconType, type IconTypeWithLiterals, type Illustration, type IllustrationIllustrationOneOf, type Image, ImageCategoryTypes, type ImageCategoryTypesWithLiterals, type ImageConfig, type ImageData, type ImageDataStyles, type ImageDataStylesBorder, ImageFit, type ImageFitWithLiterals, type ImageOverrides, ImagePosition, ImagePositionPosition, type ImagePositionPositionWithLiterals, type ImagePositionWithLiterals, ImageScalingScaling, type ImageScalingScalingWithLiterals, ImageShape, type ImageShapeWithLiterals, type ImageStyles, ImageStylesPosition, type ImageStylesPositionWithLiterals, ImageType, type ImageTypeWithLiterals, type Implementation, type ImplementedMethods, ImportanceLevel, type ImportanceLevelWithLiterals, type InPersonOptions, type Index, type IndexField, InitDirection, type InitDirectionWithLiterals, InitialExpandedItems, type InitialExpandedItemsWithLiterals, type InitialPosition, type InitialSizeSetting, type InitialSizeSettingSelectedSizingTypeOneOf, type Initiator, type InitiatorDataOneOf, InitiatorType, type InitiatorTypeWithLiterals, type InlineElement, type Input, type InputConfiguration, type InputField, type InputFieldInputTypeOptionsOneOf, type InputField_Number, type InputField_NumberComponentTypeOptionsOneOf, InputType, type InputTypeWithLiterals, type InputWithPlaceholder, InstallPage, type InstallPageWithLiterals, type InstallationInfo, type InstallationInfoTargetContainerOneOf, type InstallationSettings, type InstallationSettingsOptionsOneOf, type IntListOptions, type IntegerType, type IntegrationOptions, type IntegrationOptionsOptionsOneOf, IntegrationType, type IntegrationTypeWithLiterals, Intent, type IntentWithLiterals, type Interactions, type InterfaceConfiguration, type InterfaceConfigurationOfTypeOneOf, InterfaceConfigurationType, type InterfaceConfigurationTypeWithLiterals, type InternalComponentMetadata, type InventorySpiConfig, type InvoicesActionsComponentData, type InvoicesConfig, type IsStretched, type Item, type ItemDataOneOf, type ItemImage, type ItemLayout, type ItemLayoutItemOneOf, type ItemPath, type ItemSelection, type ItemSelectionOptions, type ItemStyle, type ItemThumbnail, type ItemThumbnailOptionsOneOf, ItemType, type ItemTypeWithLiterals, type ItemVideo, type ItemsGroup, type ItemsSelectionProviderConfig, type KeepAliveConfig, type Keywords, type LanguageTagListOptions, Layout, type LayoutCellData, type LayoutData, type LayoutDataBackground, type LayoutDataBackgroundImage, LayoutDataBackgroundType, type LayoutDataBackgroundTypeWithLiterals, LayoutDataImagePosition, type LayoutDataImagePositionWithLiterals, LayoutMode, type LayoutModeWithLiterals, LayoutType, type LayoutTypeWithLiterals, type LayoutWithLiterals, type LearnMore, type LeftPanel, type LeftPanelWidgetConfig, type LegacyBackOfficeExtensionWidget, type LegacyBackOfficeExtensionWidgetAssetOneOf, type LegacyBackOfficeMenuItem, type LegacyBackOfficeMenuItemAction, type LegendsSpiConfig, Level, type LevelWithLiterals, type LightboxCloseOptions, type LightboxContent, type LightboxEditorSettings, type LightboxOptions, type LimiterField, type LineItemsEnricherConfig, LineStyle, type LineStyleWithLiterals, type Link, type LinkData, type LinkPreviewData, type LinkPreviewDataStyles, type LinkSuffix, LinkTarget, type LinkTargetWithLiterals, LinkType, type LinkTypeWithLiterals, ListEventFromCalendars, type ListEventFromCalendarsWithLiterals, type ListItem, type ListValue, type LiveSiteActionDeeplink, type LocalDeliveryComponentData, type Location, type LocationLocationInfoOneOf, LockableOperation, type LockableOperationWithLiterals, type Logo, type Logos, type Main, type MainPresets, type MainPropsData, type ManagedMenuEntities, MandatoryField, type MandatoryFieldWithLiterals, type MapData, type MapSettings, MapType, type MapTypeWithLiterals, type Margin, type Margins, type MarketplaceProviderConfig, type MarketplaceSPIConfig, type MaskImage, Maturity, type MaturityWithLiterals, MeasurementSystem, type MeasurementSystemWithLiterals, type Media, type MediaCapabilities, type MediaItem, type MediaItemMediaOneOf, MediaMimeType, type MediaMimeTypeWithLiterals, type MediaSettings, type MembershipsSPIConfig, type MentionData, type MenuAction, type MenuActionActionOneOf, type MenuDropdown, type MenuLink, type MenuSlot, type MessageContainingTranslatables, type Metadata, Method, type MethodWithLiterals, type MinMaxRange, MobileApplication, type MobileApplicationWithLiterals, type MobileFeedChannel, type MobileFeedContentKeys, type MobilePushChannel, type MobilePushChannelConfig, type MobilePushContentKeys, type ModalParams, type Monitoring, type MonitoringOptionsOneOf, MonitoringType, type MonitoringTypeWithLiterals, MpaNavigation, type MpaNavigationWithLiterals, type MultiReferenceOptions, type MultiServiceBookingPolicyProviderConfig, type MultilineAddress, type MultilineAddressValidation, type MultilingualTranslationSchema, type MultipleDashboardsComponentData, type NPMPackage, type NPMPackageEntry, type Namespace, type NamespaceConfig, type NamespaceConfigV2, NativeStateType, type NativeStateTypeWithLiterals, type NavigateToPageAction, NavigationType, type NavigationTypeWithLiterals, type NestedWidgets, type Node, type NodeDataOneOf, type NodeStyle, NodeType, type NodeTypeWithLiterals, type NotificationChannels, type NotificationContent, type NotificationPreferencesFilterConfig, type NotificationTopic, NotificationTopicState, type NotificationTopicStateWithLiterals, NotificationTopicType, type NotificationTopicTypeWithLiterals, type Npm, NullValue, type NullValueWithLiterals, NumberComponentType, type NumberComponentTypeWithLiterals, type NumberInput, NumberOfColumns, type NumberOfColumnsWithLiterals, type NumberType, OAuthAppType, type OAuthAppTypeWithLiterals, OAuthTechnologies, type OAuthTechnologiesWithLiterals, type ObjectField, type ObjectFieldTypeOptionsOneOf, type ObjectOptions, type ObjectType, type Oembed, type Offset, type OffsetValueOneOf, type OneTimeOptionConfiguration, type OneTimePricingTypeConfiguration, type OpenApiOptions, type OpenComponent, type OpenModalAction, type OperationExecutorConfig, Operator, type OperatorConfiguration, OperatorEnumOperator, type OperatorEnumOperatorWithLiterals, type OperatorWithLiterals, type Option, type OptionDesign, type OptionLayout, type OrCondition, Order, type OrderValue, type OrderWithLiterals, type OrderedListData, Orientation, type OrientationWithLiterals, Origin, type OriginInfo, type OriginWithLiterals, type OutOfIframeData, type Output, OverrideEntityType, type OverrideEntityTypeWithLiterals, type OverrideTemplateFields, type PDFSettings, PDFSettingsViewMode, type PDFSettingsViewModeWithLiterals, type PackageDimension, type PackageType, type Padding, type Page, type PageAnchor, type PageComponentData, type PageContent, type PageDashboardApplicationComponent, type PageEditorSettings, type PageInstallation, type PageInstallationSettings, type PageNavigationOptions, type PageOptions, type PageOutOfIframeComponentData, type PageReplace, type PageReplaceOptions, type PageReplaceOptionsOptionsOneOf, type PageWidgetAsContent, type PagesConfig, PaginationMode, type PaginationModeWithLiterals, type Panel, type PanelAction, type PanelActionSelectedPanelTypeOneOf, PanelContentType, type PanelContentTypeWithLiterals, PanelMode, type PanelModeWithLiterals, type PanelSelectedContentTypeOneOf, type PanelSize, PanelType, type PanelTypeWithLiterals, type PanoramaOptions, type ParagraphData, type Param, type Parameter, ParameterType, type ParameterTypeWithLiterals, type ParameterValueDefinitionDetailsOneOf, PartialPaymentRestriction, type PartialPaymentRestrictionWithLiterals, ParticipantType, type ParticipantTypeWithLiterals, type Password, type PatternsWizard, type Payment, PaymentComponentType, type PaymentComponentTypeOptionsOneOf, type PaymentComponentTypeWithLiterals, type PaymentDateModification, type PaymentInput, type PaymentMethod, type PaymentMethodMethodOneOf, type PaymentServiceProviderConfig, type PaymentServiceProviderCredentialsField, type PaymentServiceProviderCredentialsFieldFieldOneOf, type PaymentSettingsSPIConfig, type PaymentType, type PaymentsGatewayComponentData, type PayoutsProviderConfig, type PerkValues, type PerksConfiguration, type PermissionOverrides, type Permissions, type PhoneConstraints, type PhoneInfo, PhoneInfoTag, type PhoneInfoTagWithLiterals, type PhoneInput, type PhoneOptions, type PingNotificationComponentData, type PingSettingsGroupComponentData, PingSettingsGroupComponentDataState, type PingSettingsGroupComponentDataStateWithLiterals, type PlaceHolder, Placement, type PlacementWithLiterals, type PlanDuration, type PlanFormBenefitsSection, type PlanFormCustomPricingRulesSection, type PlanFormCustomSection, PlanFormDefaultSection, type PlanFormDefaultSectionWithLiterals, type PlanFormDurationSection, type PlanFormInfoSection, type PlanFormInitialValue, type PlanFormPagePermissionsSection, type PlanFormPlanSettingsSection, type PlanFormPreviewSection, type PlanFormPricingAndDurationSection, type PlanFormPricingAndDurationSectionDurationInputConfiguration, type PlanFormPricingAndDurationSectionInputConfiguration, PlanFormPricingOption, type PlanFormPricingOptionWithLiterals, type PlanFormPricingSection, type PlanFormPricingSectionInputConfiguration, type PlanFormPricingSectionSetupFeeConfiguration, PlanFormPricingType, type PlanFormPricingTypeWithLiterals, type PlanFormSection, type PlanFormSectionSectionOneOf, type PlanFormStartDateRulesSection, type PlanFormTypeMetadata, PlanPeriodUnit, type PlanPeriodUnitWithLiterals, type PlanPriceData, type PlanPricing, type PlanPricingPricingModelOneOf, type PlanSettingsRowConfiguration, type PlatformHeaderConfig, type PlatfromComponentData, type PlaybackOptions, type PluginConfig, type PluginContainerData, PluginContainerDataAlignment, type PluginContainerDataAlignmentWithLiterals, type PluginContainerDataHeight, type PluginContainerDataWidth, type PluginContainerDataWidthDataOneOf, type PluginInstallationSettings, PluginInterface, type PluginInterfaceWithLiterals, type PluginMarketData, type PluginPlacement, type PolicyConfig, type PolicyPermissionOverrides, type Poll, type PollData, type PollDataLayout, type PollDesign, type PollDesignBackground, type PollDesignBackgroundBackgroundOneOf, PollDesignBackgroundType, type PollDesignBackgroundTypeWithLiterals, type PollLayout, PollLayoutDirection, type PollLayoutDirectionWithLiterals, PollLayoutType, type PollLayoutTypeWithLiterals, type PollOption, type PollSettings, type PosProviderSettingsServicePluginConfig, type Position, type PostLoginConfig, type PreRegisterConfig, type PredefinedExpectedInput, type PredefinedExpectedInputConfiguration, type PredefinedExpectedInputConfigurationTypeOneOf, type PredefinedLabel, type PredefinedValues, type PremiumActionConfig, type Preset, type PresetEditorPresence, type PresetElementDefaults, type PresetInfo, type PresetInnerElementDefaults, type PresetItem, type PresetSize, type PresetStyleDefaults, type PresetStyleItemOverrides, type PresetStyleOverrides, type PreviewCardPlaceholders, type PreviewConfiguration, type PreviewFields, type PriceSPIConfig, PriceType, type PriceTypeWithLiterals, type PricingData, type PricingPlansFormConfiguration, type PricingRecurring, type Primitive, PrimitiveType, type PrimitiveTypeWithLiterals, type Product, type ProductCatalogProviderConfig, type ProductCheckboxGroup, type ProductCheckboxGroupOption, type ProductPriceOptionsOneOf, type ProductRestrictionsConfig, ProductType, type ProductTypeWithLiterals, type ProductsPathsConfig, type Project, type PropertiesType, PropertiesTypeEnum, type PropertiesTypeEnumWithLiterals, type PropertiesTypePropertiesTypeOptionsOneOf, type ProposalEditorProviderConfig, type Provider, type ProviderAccountServicePluginConfig, type ProviderConfig, type ProviderConfigMessage, type ProviderFilterOptions, type ProviderIdentifier, type ProviderSuppressionServicePluginConfig, type PurchaseValidationsConfig, type QuantityLimit, type RadioButtonLabeled, type RadioGroup, type RadioGroupOption, type RangeConstraints, type RateLimit, type RatingInput, type ReactElementContainer, type ReactElementContainerSelectedContainerTypeOneOf, type RecipientFilter, type RecipientFilterDataOneOf, RecipientFilterType, type RecipientFilterTypeWithLiterals, RecipientType, type RecipientTypeWithLiterals, type RecommendationsProviderConfig, type RecurringOptionConfiguration, type RecurringPricingTypeConfiguration, type RecurringPricingTypeConfigurationFreeTrialConfiguration, type RedirectOptions, type RefElement, type RefInnerElementDefaults, type ReferenceOptions, Region, RegionScopeScope, type RegionScopeScopeWithLiterals, RegionType, type RegionTypeWithLiterals, type RegionWithLiterals, type Rel, type RenderOverrides, type RepeatedFieldOverrideConfig, type ReplaceableOptions, ReplacementType, type ReplacementTypeWithLiterals, type ReplacingOptions, RequiredIndicator, RequiredIndicatorPlacement, type RequiredIndicatorPlacementWithLiterals, type RequiredIndicatorProperties, type RequiredIndicatorWithLiterals, type RequiredOptions, type ResetButton, ResizeDirection, type ResizeDirectionWithLiterals, Resizing, type ResizingWithLiterals, type Resource, type Resources, ResponsivenessBehaviour, type ResponsivenessBehaviourWithLiterals, type ResponsysEmail, type RestaurantsPOSComponentData, RestrictedOperation, type RestrictedOperationWithLiterals, type Restriction, RestrictionLevel, type RestrictionLevelWithLiterals, type Restrictions, type RestrictionsConfig, type ReviewsEntityCatalogProviderConfig, type ReviewsProductCatalogProviderConfig, type RewardProviderConfig, type RibbonStyles, type RichContent, type RichContentOptions, type RichText, RichTextAbilities, type RichTextAbilitiesWithLiterals, type RichTextWithIllustrationVertical, type RouterPage, type Rule, type SDKExports, type SDKExportsNpm, Scaling, type ScalingWithLiterals, type Scheduling, SchedulingComponentType, type SchedulingComponentTypeOptionsOneOf, type SchedulingComponentTypeWithLiterals, type Schema, type SchemaConfig, type SchemaField, SchemaFieldExposure, type SchemaFieldExposureWithLiterals, SchemaFieldFieldType, type SchemaFieldFieldTypeWithLiterals, type SchemaFieldType, type SchemaFieldTypeFieldTypeOneOf, type SchemaGroup, type SchemaGroupElement, type SchemaKey, SchemaScope, type SchemaScopeWithLiterals, Scope, ScopeType, type ScopeTypeWithLiterals, type ScopeWithLiterals, ScriptType, type ScriptTypeWithLiterals, type SdkDefinition, type SearchConfig, type SearchField, type SearchParams, type SecondLevelCategory, type Section, type SentryOptions, type SeoKeywordsSuggestionsSPIConfig, type ServiceAction, type ServiceAvailabilityPolicyProviderConfig, type ServicePermissionOverrides, type ServiceTagsConfig, type ServiceTrigger, type ServicesDropdown, type ServicesDropdownOption, type Settings, type SettingsPanel, type SettingsPermissions, type SettingsUrl, type SetupFeeConfiguration, type ShapeData, type ShapeDataStyles, type SharedPlatformMobilePushConfig, type ShippingLabelCarrierSpiConfig, type ShippingProviderConfig, type ShippingRatesConfig, type ShorthandGroupBackground, type ShoutoutEmail, type Sidebar, type SidebarChildItem, type SidebarChildItemItemOneOf, type SidebarConfig, type SidebarConfigOneOf, SidebarDataType, type SidebarDataTypeWithLiterals, SidebarEntityType, type SidebarEntityTypeWithLiterals, type SidebarRootItem, type SidebarRootItemItemOneOf, type SidebarSecondLevelChildItem, type SidebarSecondLevelChildItemItemOneOf, type SidebarWidget, type SidebarWidgetConfig, type SidebarWidgetConfigOneOf, type Signature, type Simple, type SimpleContainer, type SimpleField, SimpleType, type SimpleTypeWithLiterals, type SingleContent, type SingleKeyCondition, type SiteConfig, type SiteContributorsData, type SiteMapProviderConfig, type SiteMemberData, SiteMembersSsrCaching, type SiteMembersSsrCachingWithLiterals, type SiteMigrationSpiConfig, type SiteWidgetSlot, type Size, SizingType, type SizingTypeWithLiterals, type SliderLabeled, type Slot, type SlotData, type SlotDataSlotTypeOneOf, SlotDataType, type SlotDataTypeWithLiterals, type SlotParams, type SmsActionMessage, type SmsChannel, type SmsContentKeys, type SmsMessageConfig, type SmsSmsMessageConfig, type SnippetSolutionData, type SocialMarketingDesignSPIConfig, type SocialMarketingDesignsProviderConfig, type Source, type SourceOptionsOneOf, SourceType, type SourceTypeWithLiterals, type SpamSubmissionPermissions, type Spi, type SpiBaseUri, type Spoiler, type SpoilerData, type StaffSortingProviderConfig, type StartDateLimitsSPIConfig, type StartDateRulesSPIConfig, type State, StaticContainer, type StaticContainerWithLiterals, type StaticContent, type StaticFileComponentData, type StaticFilterOption, type StaticFilterOptions, Status, type StatusWithLiterals, type Step, type Stop, StorageDomain, type StorageDomainWithLiterals, StorageType, type StorageTypeWithLiterals, StringComponentType, type StringComponentTypeWithLiterals, type StringListOptions, type StringOption, type StringType, type StringTypeFormatOptionsOneOf, type StudioComponentData, type StudioWidgetComponentData, type StudioWidgetVariation, type StyleAction, type StyleItem, type StyleItemDefaults, type StyleItemOverrides, type StyleItemSelectedCssPropertyTypeOneOf, type StyleItemSelectedCssVariableTypeOneOf, type StyleItemSelectedItemTypeOneOf, StyleType, type StyleTypeWithLiterals, type Styles, type StylesBackground, type StylesBorder, StylesPosition, type StylesPositionWithLiterals, type SubPage, type SubmissionPermissions, type SubmitSettings, type SubmitSettingsSubmitSuccessActionOptionsOneOf, SubmitSuccessAction, type SubmitSuccessActionWithLiterals, type SubscriptionInfo, SyncToCalendar, type SyncToCalendarWithLiterals, type SyncedProjectsProviderConfig, type Tab, type TableCellData, type TableData, Tag, type TagOverrides, type TagOverridesEntry, type TagWithLiterals, type Tags, type TagsOption, Target, type TargetElement, type TargetWithLiterals, type TaskScope, type TaxCalculationConfig, type TaxCalculatorSpiConfig, type TaxCountriesConfig, type TaxExemptGroup, type TaxExemptGroupsProviderConfig, type TaxGroupsProviderConfig, type TaxIdValidatorConfig, type TaxTypesConfig, type TaxationCategoryProvider, type TemplateContainer, TemplateDefaultColor, type TemplateDefaultColorWithLiterals, TemplateType, type TemplateTypeWithLiterals, type TermsAndConditionsConfiguration, type TermsModalConfiguration, TestEnum, type TestEnumWithLiterals, type Text, TextAlignment, type TextAlignmentWithLiterals, type TextData, type TextDecoration, type TextEnum, type TextGroup, type TextInput, TextInputDisplayType, type TextInputDisplayTypeWithLiterals, type TextInputLabeled, type TextInputSettings, type TextNodeStyle, type TextStyle, type TextStyleDefaultColorOneOf, type TextToSpeechActionMessage, type TextWithSuffix, type TextWithSuffixSuffixOneOf, type TextWithTooltip, type ThankYouMessageOptions, type ThankYouPageConfiguration, type ThankYouPageInputConfig, type ThankYouPageModalConfiguration, type ThankYouPagePreviewConfiguration, type ThankYouPageRedirectsConfiguration, type ThumbnailData, ThumbnailType, type ThumbnailTypeWithLiterals, type Thumbnails, ThumbnailsAlignment, type ThumbnailsAlignmentWithLiterals, ThumbnailsSize, type ThumbnailsSizeWithLiterals, type TicketReservationsSpiConfig, type TimeConstraintConfiguration, type TimeConstraintConfigurationValueConstraintsOneOf, TimeConstraintType, type TimeConstraintTypeWithLiterals, type TimeInput, type ToggleLabeled, type ToolPanelConfig, type TooltipSuffix, type TopologyComponentData, type TranslatedMessageWithIdRepeated, type TranslatedMessageWithUniqueFieldRepeated, type TranslationResources, Trigger, type TriggerFieldOverride, type TriggerFilter, type TriggerOverride, type TriggerProviderSPIConfig, type TriggerWithLiterals, Type, type TypeWithLiterals, type TypedDynamicParam, TypedDynamicParamType, type TypedDynamicParamTypeWithLiterals, type UnifiedLightbox, type UnifiedPage, type UnifiedPageEditorSettings, UnitType, type UnitTypeWithLiterals, type Until, type UpdateComponentCatalogRequest, UpdateMode, type UpdateModeWithLiterals, UploadFileFormat, UploadFileFormatEnumUploadFileFormat, type UploadFileFormatEnumUploadFileFormatWithLiterals, type UploadFileFormatWithLiterals, type UpstreamWixCommonImage, type Url, type UrlData, type UrlMapperProviderConfig, type UrlParam, type UserNotification, type UserNotificationData, type UserNotificationDataContext, type UserNotificationDataDeeplink, type UserNotificationDataDeeplinkOfOneOf, type UserNotificationDataInitiator, type UserNotificationDataInitiatorDataOneOf, type UserNotificationDataRecipientFilter, type UserNotificationDataRecipientFilterDataOneOf, UserNotificationDataRecipientFilterType, type UserNotificationDataRecipientFilterTypeWithLiterals, UserNotificationDataType, type UserNotificationDataTypeWithLiterals, type V1Image, type V1ImplementedMethods, type V1Link, type V1LinkDataOneOf, type V1Metadata, type V1Region, type V1SchemaField, V1Scope, type V1ScopeWithLiterals, type V1TextStyle, type V1ValidationTarget, type V2CommunicationChannelConfiguration, type V2Condition, type V2Field, type V2FieldFieldTypeOptionsOneOf, type V2ImplementedMethods, type V2Rule, type V2TriggerOverride, type ValidationMessages, type ValidationTarget, ValidationTargetMethod, type ValidationTargetMethodWithLiterals, type ValidationsSPIConfig, ValueConstraintType, type ValueConstraintTypeWithLiterals, type VectorArt, VectorArtCategoryTypes, type VectorArtCategoryTypesWithLiterals, type VectorArtOverrides, type VeloActionConfig, type VeloCustomCss, type VeloPublishPipelineTaskProviderConfig, type VelocityEmail, Vertical, VerticalAlignment, VerticalAlignmentAlignment, type VerticalAlignmentAlignmentWithLiterals, type VerticalAlignmentWithLiterals, VerticalDocking, type VerticalDockingWithLiterals, type VerticalWithLiterals, VibeActionType, type VibeActionTypeWithLiterals, type VibeCustomPanelAction, type VibeDashboardAction, type Video, VideoCategoryTypes, type VideoCategoryTypesWithLiterals, type VideoConferenceOptions, type VideoData, type VideoOverrides, ViewMode, type ViewModeWithLiterals, ViewRole, type ViewRoleWithLiterals, type ViewerRouterSPIConfig, type ViewerService, type ViewerServiceAssets, type ViewerServiceModuleConfiguration, type VisibleState, type VoiceChannel, type VoiceContentKeys, VoteRole, type VoteRoleWithLiterals, type WebComponentData, WebComponentDataElementType, type WebComponentDataElementTypeWithLiterals, type WebFeedChannel, type WebFeedContentKeys, type WebhookComponentData, type WidgetAsContent, type WidgetBehavior, type WidgetComponent, type WidgetComponentData, type WidgetComponentOptions, type WidgetData, type WidgetDetails, type WidgetDisplay, WidgetHorizontal, type WidgetHorizontalWithLiterals, type WidgetInstallation, type WidgetInstallationSettings, type WidgetInstallationSettingsTargetContainerOneOf, type WidgetOutOfIframeComponentData, type WidgetPluginComponentData, type WidgetSize, type WidgetSizeHeight, type WidgetSizeWidth, type WidgetSlot, WidgetVertical, type WidgetVerticalWithLiterals, WidgetWidthType, type WidgetWidthTypeWithLiterals, Width, WidthType, type WidthTypeWithLiterals, type WidthWithLiterals, type WixAiGatewaySpiConfig, type WixApiOptions, WixCodePublishTaskName, type WixCodePublishTaskNameWithLiterals, type WixCommonImage, type WixDependency, type WixFile, WixFileComponentType, type WixFileComponentTypeOptionsOneOf, type WixFileComponentTypeWithLiterals, type WixOfferingComponentData, type WixOfferingComponentDataOfferingOneOf, type WixPagesDomainMapping, type WixUserData, type WixUsersData, type WixVibeCodingInstructions, type WixVibeComponent, type WixelSPIConfig, type WorkerComponentData, type WritingMode, WritingModeValue, type WritingModeValueWithLiterals, type _Array, type _ArrayComponentTypeOptionsOneOf, type _Boolean, type _BooleanComponentTypeOptionsOneOf, type _Date, type _Function, type _Number, type _Object, type _String, type _StringComponentTypeOptionsOneOf, agentMakerApprovalProvider, aiAssistant, aiAssistantAction, alertEnricher, analyticsProductCatalog, appConfig, appRouter, applicationAutomation, applicationProfile, audienceProvider, automationTemplate, automationTrigger, automationsActionProvider, automationsTriggerProvider, automationsVeloActionProvider, availabilityTimeSlotsConfigurationProvider, backOfficeCustomization, backOfficeExtension, backOfficeExtensionContainer, backOfficeExtensionMenuItem, backOfficeExtensionWidget, backOfficeExternalUrl, backOfficeModal, backOfficePage, backOfficeRestrictedCustomization, backOfficeSidebarCategory, backOfficeWidget, backendWorker, bassValidateCancelAction, benefitProgramsPolicyProvider, billingOperation, billingSettings, billingTaxIdValidator, blogPaywallProvider, bookingActionUrlsProvider, bookingAutomationsConfiguration, bookingPolicyProvider, bookingsExternalCalendarProvider, bookingsPlatformConfiguration, bookingsPricingProvider, bookingsResourceTypesProvider, bookingsValidationProvider, broadcastList, browserStorage, calendarConferencingProvider, calendarEventTypeProvider, calendarEventValidationProvider, clientSideService, codePackage, commentsContextProvider, commentsFilterProvider, commentsModerationProvider, communicationChannel, communicationChannelProvider, componentEnricherProvider, componentReferenceDataProvider, componentsTranslationsAdditionalFieldsProvider, componentsValidatorProvider, contactLabels, contactNotification, contactsSegmentsV2FilterProvider, crossSell, customElementWidget, customTableReservationsProvider, dashboard, dashboardApplication, dashboardPlatform, dataComponent, dataExtensions, dcConfig, dealerAdaptiveComponentProvider, dealerExternalFilterProvider, deploymentPipelineProvider, devCenterTestingComponent, ecomAdditionalFees, ecomCatalog, ecomCheckoutContent, ecomCustomScope, ecomDefaultTaxationCategory, ecomDiscounts, ecomDiscountsTrigger, ecomDropshippingProvider, ecomForms, ecomInventory, ecomLineItemsEnricher, ecomMemberships, ecomPaymentSettings, ecomRecommendationsProvider, ecomShippingRates, ecomTaxCalculatorSpi, ecomValidations, editorAddon, editorAppPreviewsPoc, editorContextProvider, editorFunctionLibrary, editorReactComponent, embeddedScript, eventTimeSlotsConfigurationProvider, eventsEventBadges, eventsTicketReservations, extension, externalDatabaseProvider, fictionalShippingProvider, formSchemaDynamicValues, formSubmissionModeration, formTemplate, formsExtensionProvider, formsSchemaProvider, formsSpamSubmissionReportsProvider, formsSpamSubmissionsProvider, formsSubmissionsExtensionProvider, formsSubmissionsProvider, functionEcomDiscountTriggerEligibilityProvider, functionExtension, functionRecipe, functionsAssistantTools, functionsShopPriceProvider, genericHooks, giftCardsProvider, googleBusinessProfileFeatureProvider, gridAppFilesTransformer, headlessOauth, identityAuthenticator, identityFactor, identityIdpConnector, identityPostLogin, identityPreRegistration, invoicesActions, invoicesProvider, itemsSelectionProvider, legendsPersonaConfiguration, localDelivery, loyaltyCustomRewards, loyaltyCustomRewardsV2, monitoring, multiServiceBookingPolicyProvider, multilingualContentProvider, multilingualTranslationSchema, multilingualTranslationSchemaGroup, multipleDashboards, notificationContent, notificationPreferencesFilterProvider, notificationTopic, page, pageOutOfIframe, panel, papiProvider, partnersPayouts, patternsWizard, paymentProvider, paymentsDisputeServicePlugin, paymentsGateway, pingSettingsGroup, pingUouNotification, pingUserNotification, platform, portfolioSyncedProjectsProvider, premiumAction, premiumCustomCharges, premiumProductsPaths, premiumPurchaseValidations, pricingPlanStartDateLimits, pricingPlanStartDateRules, pricingPlansFees, pricingPlansFormConfiguration, pricingPlansPrice, proposalEditorProvider, providerSuppressionServicePlugin, reserved, restaurantsPos, restaurantsPosProviderSettingsServicePlugin, sdkDefinition, sdkExports, seoKeywordsSuggestions, serviceTagsConfiguration, shippingLabelCarrier, shubMarketplaceProvider, siteMapInfoProvider, siteMigration, siteWidgetSlot, smsActionMessage, snippetSolution, socialMarketingDesign, socialMarketingDesignsProvider, staffSortingProvider, staticFile, storesProductRestrictions, studio, studioWidget, suppliersHubMarketplace, taxCalculationProvider, taxExemptGroupsProvider, taxGroupsProvider, textToSpeechActionMessage, topology, unifiedLightbox, unifiedPage, urlMapperProvider, userNotification, veloCustomCss, veloPublishPipelineTaskProvider, viewerDynamicSiteStructureProvider, viewerService, web, webhook, widget, widgetOutOfIframe, widgetPlugin, wixAiGatewayCallback, wixHostingAppDeploymentProvider, wixHostingAppEnvironmentProvider, wixOffering, wixPaymentsProviderAccountServicePlugin, wixReviewsEntityCatalog, wixReviewsProductCatalog, wixVibeCodingInstructions, wixVibeComponent, wixel, wixelBinding, wixelViewerRouterProvider, worker };
|
|
26453
|
+
export { type A11y, A11yAttributes, type A11yAttributesWithLiterals, AcceptedDirectMessageType, type AcceptedDirectMessageTypeWithLiterals, AcceptedMessageTypesAcceptedDirectMessageType, type AcceptedMessageTypesAcceptedDirectMessageTypeWithLiterals, AcceptedMessageTypesAcceptedSmsMessageType, type AcceptedMessageTypesAcceptedSmsMessageTypeWithLiterals, AcceptedSmsMessageType, type AcceptedSmsMessageTypeWithLiterals, AccessLevel, type AccessLevelWithLiterals, type Action, type ActionCondition, ActionName, type ActionNameWithLiterals, type ActionProviderSPIConfig, type ActionSPIConfig, type ActionSPIConfigImplementedMethods, type ActionSPIConfigInterfaceConfiguration, type ActionSPIConfigInterfaceConfigurationOptionsOneOf, ActionSPIConfigInterfaceConfigurationType, type ActionSPIConfigInterfaceConfigurationTypeWithLiterals, type ActionSpiConfig, ActionType, type ActionTypeWithLiterals, type Actions, type AdaptiveComponentProviderConfig, type AddCustomFields, type AdditionalFeesSPIConfig, type AdditionalStepInfo, type AdditionalTaxGroup, type AddonMarketData, type Address, AddressComponentType, type AddressComponentTypeOptionsOneOf, type AddressComponentTypeWithLiterals, type AddressInfo, AddressInfoTag, type AddressInfoTagWithLiterals, type AddressLine2, type AdminConfigurableTextInput, type AlertEnricherSpiConfiguration, type AlgorithmConfig, AlgorithmType, type AlgorithmTypeWithLiterals, Alignment, type AlignmentWithLiterals, type AllowedValuesOptions, type AlternativeUri, type AnchorData, type AnchorMetaData, type AndCondition, type AndroidMobilePushConfig, AndroidStyle, type AndroidStyleWithLiterals, type ApiContext, type ApiSlot, type ApiWidth, type AppConfig, type AppConfiguration, type AppDeploymentProviderConfig, type AppEmbedData, type AppEmbedDataAppDataOneOf, type AppEnvironmentProviderConfig, type AppPreviewProviderConfig, type AppRouter, AppType, type AppTypeWithLiterals, type ApplicationAutomationComponent, type ApplicationProfile, type ApplicationProfileProviderConfig, type Appointment, AppointmentFormat, type AppointmentFormatInfoOneOf, type AppointmentFormatWithLiterals, type ApprovalProviderConfig, type ApprovalProviderConfigScopeOneOf, Archetype, type ArchetypeWithLiterals, ArrayComponentType, type ArrayComponentTypeWithLiterals, type ArrayItems, type ArrayItemsArrayDataOneOf, type ArrayOptions, type ArrayOptionsElementTypeOptionsOneOf, type ArrayType, type ArrayTypeArrayItems, type ArrayTypeArrayItemsItemTypeOptionsOneOf, AspectRatio, type AspectRatioWithLiterals, AssetType, type AssetTypeWithLiterals, type AssistantSpiConfig, type AudienceProviderConfig, type AudioData, type AuthenticatorConfig, type AutomationActionScope, type AutomationMetadata, type AutomationTemplateComponent, type AutomationTrigger, type AutomationsConfig, type AvailabilityTimeSlotsProviderConfig, type AvatarConfig, AvatarShape, type AvatarShapeWithLiterals, type BackOfficeCustomization, type BackOfficeCustomizationSidebarEntity, type BackOfficeCustomizationSidebarEntityItemOneOf, type BackOfficeExtension, type BackOfficeExtensionContainer, type BackOfficeExtensionExtensionOneOf, type BackOfficeExtensionMenuItem, type BackOfficeExtensionWidget, type BackOfficeExtensionWidgetAssetOneOf, type BackOfficeExternalUrl, BackOfficeHostingPlatforms, type BackOfficeHostingPlatformsWithLiterals, type BackOfficeModal, type BackOfficeModalContentOneOf, type BackOfficePage, type BackOfficePageAssetOneOf, type BackOfficeRestrictedCustomization, type BackOfficeScriptAsset, BackOfficeScriptAssetType, type BackOfficeScriptAssetTypeWithLiterals, type BackOfficeSidebarCategory, type BackOfficeWidget, type BackOfficeWidgetContentOneOf, type Backdrop, type BackdropFilter, BackdropType, type BackdropTypeWithLiterals, type BackendWorker, type Background, type BackgroundGradient, type BackgroundImage, BackgroundModeEnum, type BackgroundModeEnumWithLiterals, BackgroundType, type BackgroundTypeWithLiterals, type BackofficeActionDeeplink, type Banner, type BarAlignment, BarAlignmentSelected, type BarAlignmentSelectedWithLiterals, type BaseInfo, type BaseInstallation, type Behaviors, type BillingSettingsConfig, type BindingsSPIConfig, BlockType, type BlockTypeWithLiterals, type BlockquoteData, type BlocksData, type BlogPaywallProviderConfig, type BookingActionUrlsProviderConfig, type BookingAutomationsConfig, type BookingData, type BookingPermissionOverrides, type BookingPolicyProviderConfig, type BookingsPlatformConfig, type BookingsPricingProviderConfig, type BookingsResourceType, type BookingsResourceTypesProviderConfig, type BookingsValidationProviderConfig, type BoolListOptions, BooleanComponentType, type BooleanComponentTypeWithLiterals, type BooleanExperimentExposureRule, type BooleanType, type Border, type BorderColors, type BorderWidths, type BrandIcons, type BreakPoint, type BreakPointSection, type Breakpoint, BreakpointEnumBreakpoint, type BreakpointEnumBreakpointWithLiterals, type BreakpointPresetStyleOverrides, type Breakpoints, type BroadcastList, type BrowserPushChannel, type BrowserPushContentKeys, type BrowserStorage, type BuilderSpi, type BulletedListData, type Bundle, type BusinessManagerPage, type ButtonData, ButtonDataType, type ButtonDataTypeWithLiterals, type ButtonStyles, CalendarType, type CalendarTypeWithLiterals, type CancelSubscriptionsConfig, type CaptionData, type CardData, type CardDataBackground, type CardDataBackgroundImage, CardDataBackgroundType, type CardDataBackgroundTypeWithLiterals, type CardStyles, CardStylesAlignment, type CardStylesAlignmentWithLiterals, CardStylesType, type CardStylesTypeWithLiterals, type CatalogSPIConfig, type CatalogSyncConfiguration, Category, type CategoryWithLiterals, type CellStyle, ChangeableProperty, type ChangeablePropertyWithLiterals, type ChannelBrandIcons, type ChannelBranding, type ChannelChannelBranding, type ChannelChannelConfiguration, type ChannelChannelConfigurationMessagingConfigOneOf, type ChannelConfiguration, ChannelConfigurationChannelType, type ChannelConfigurationChannelTypeWithLiterals, type ChannelConfigurationMessagingConfigOneOf, type ChannelIcon, type ChannelImplementedMethods, type ChannelMediaCapabilities, ChannelType, type ChannelTypeWithLiterals, type Checkbox, type CheckboxConfiguration, type CheckboxField, type CheckboxGroup, type CheckboxGroupOption, type CheckoutContentSPIConfig, type ClientResources, type ClientSideService, type CodeBlockData, type CodePackageComponentData, type CodePanel, type CollapsibleListData, type Collection, type Color, type ColorData, type ColorDefinition, type ColorSelectLabeled, type ColorSelectLabeledDataOneOf, type Colors, type CommentFilterProviderConfig, type CommentModerationProviderConfig, type CommentsContextProviderConfig, type CommonImage, type CommunicationChannelConfiguration, type ComponentCatalog, type ComponentData, type ComponentDataDataOneOf, type ComponentEnricherConfig, type ComponentInitialSize, type ComponentMetaData, type ComponentModel, ComponentPresent, type ComponentPresentWithLiterals, type ComponentReferenceDataConfig, type ComponentTranslationAdditionalFieldsConfig, ComponentType, type ComponentTypeWithLiterals, type ComponentsValidatorConfig, type Condition, type ConditionBlock, type ConditionNode, type ConditionNodeNodeOneOf, type Conditions, type ConferencingProviderConfig, type Configuration, ConfirmationLevel, type ConfirmationLevelWithLiterals, ConnectMethod, type ConnectMethodWithLiterals, ConnectionMethod, type ConnectionMethodWithLiterals, ConsentCategory, type ConsentCategoryWithLiterals, type Consequence, type ConstOrDynamicParam, type ConstOrDynamicParamValueOneOf, type Constraint, type ContactData, ContactField, type ContactFieldWithLiterals, type ContactLabelsComponentData, type ContactNotification, type ContactsData, type ContactsNotificationData, type Container, type ContainerBehaviors, type ContainerDataOneOf, type ContainerLayout, type ContainerStyleOverrides, ContainerType, type ContainerTypeWithLiterals, type ContentData, type ContentDataOverrides, type ContentFill, type ContentProviderConfig, ContentResizeDirection, type ContentResizeDirectionWithLiterals, type Context, type ContextArrayItems, type ContextArrayItemsArrayDataOneOf, type ContextDataItems, type ContextImplementor, type ContextItem, type ContextItemSelectedDataTypeOneOf, type ContextSpecifier, type ConversationLimitations, type Coordinates, type CoreApps, type Corners, type CoverImageConfiguration, type CreateComponentCatalogRequest, type CreateNewItemInfo, Crop, type CropWithLiterals, type CrossSellConfig, type CssCustomPropertyAction, type CssCustomPropertyItem, type CssCustomPropertyItemSelectedCssPropertyTypeOneOf, CssDataType, type CssDataTypeWithLiterals, type CssNumber, type CssPropertyAction, type CssPropertyItem, type CssPropertyItemDefaults, type CssPropertyItemDefinitionOverrides, type CssPropertyItemSelectedCssPropertyTypeOneOf, CssPropertyType, CssPropertyTypeEnumCssPropertyType, type CssPropertyTypeEnumCssPropertyTypeWithLiterals, type CssPropertyTypeWithLiterals, CssVariableTypeEnumCssDataType, type CssVariableTypeEnumCssDataTypeWithLiterals, type CurrencyCodeListOptions, type CustomAction, type CustomActionActionExecuteOneOf, type CustomChargesConfig, type CustomElement, type CustomElementConsentCategoryOneOf, CustomElementScriptType, type CustomElementScriptTypeWithLiterals, type CustomElementWidget, type CustomEnum, type CustomEnumOption, type CustomEnumOptionCssProperty, type CustomExperimentExposureRule, type CustomFieldInfo, CustomFieldsType, type CustomFieldsTypeWithLiterals, type CustomInitialPreset, type CustomOption, type CustomPermission, type CustomPropertyEnum, type CustomPropertyEnumOption, type CustomPropertyEnumOptionStyle, type CustomRefData, type CustomReservationsApprovalConfig, type CustomRewardProviderConfig, type CustomScopeConfig, type CustomTriggerConfig, type DCConfigData, type Dashboard, type DashboardAction, type DashboardApplicationData, type DashboardButton, type DashboardComponentData, type DashboardItem, type DashboardPlatfromComponentData, type DataAction, type DataComponent, type DataExtensionsComponentData, type DataGroupsArrayItems, type DataItem, type DataItemOverrides, type DataItemOverridesSelectedDataTypeOneOf, type DataItemSelectedDataTypeOneOf, type DataItems, type DataPermissions, DataType, type DataTypeWithLiterals, type DateInput, type DatePicker, type DateTimeConstraints, type DateTimeInput, type Debounce, type DecimalListOptions, type Decoration, type DecorationDataOneOf, DecorationType, type DecorationTypeWithLiterals, type Deeplink, type DeeplinkOfOneOf, Default, type DefaultCountryConfig, type DefaultCountryConfigOptionsOneOf, DefaultCountryConfigType, type DefaultCountryConfigTypeWithLiterals, type DefaultPresets, type DefaultTaxGroupProviderConfig, DefaultTextStyle, type DefaultTextStyleWithLiterals, type DefaultWithLiterals, type Definition, type Delay, type DelayTypeOneOf, type DeleteComponentCatalogRequest, type DeleteTemplateFields, type DeploymentPipelineProviderConfig, type Description, type Design, DesignTarget, type DesignTargetWithLiterals, type DevCenterTestingComponentData, type DevCenterTestingComponentDataTranslatableOneOfOneOf, type Dimension, type Dimensions, type DirectMessageConfig, Direction, type DirectionWithLiterals, type DiscountConfig, type DiscountsSPIConfig, type DiscoveryMetaData, type Display, type DisplayField, type DisplayFieldDisplayFieldTypeOptionsOneOf, DisplayFieldType, type DisplayFieldTypeWithLiterals, type DisplayFilter, type DisplayFilters, type DisplayGroupAction, type DisplayGroupItem, type DisplayGroupItemSelectedGroupTypeOneOf, type DisplayProperties, type DisplayValue, DisplayValueEnumDisplayValue, type DisplayValueEnumDisplayValueWithLiterals, type DisputeServicePluginConfig, type DividerData, DividerDataAlignment, type DividerDataAlignmentWithLiterals, DividerDataWidth, type DividerDataWidthWithLiterals, type DmDirectMessageConfig, type Docking, type DockingProperties, type DocumentStyle, Domain, type DomainWithLiterals, type DonationInput, type DonationInputOption, type DrillInListItem, type DrillItem, type DrillItemDataOneOf, type DropDownLabeled, type Dropdown, type DropdownField, type DropdownFieldOption, type DropdownOption, type DropshippingProviderSPIConfig, type DtsContent, type DtsDefinitionReference, type DtsDefinitionReferenceDtsDefinitionOneOf, DtsDefinitionType, type DtsDefinitionTypeWithLiterals, type DtsHttpLink, type DurationInputConfiguration, type DurationInputConfigurationDurationRenameOptions, type DurationRenameOptions, type DynamicPriceOptions, type DynamicSiteStructureProviderConfig, type EditableFields, EditableProperties, type EditablePropertiesWithLiterals, type EditorAddon, type EditorBehaviors, type EditorContextProvider, type EditorContextProviderModuleConfiguration, type EditorContextProviderResources, type EditorDependencies, type EditorElement, type EditorElementLayout, type EditorFunction, type EditorFunctionLibrary, type EditorFunctionLibraryModuleConfiguration, type EditorPresence, type EditorReactComponent, type EditorReactComponentModuleConfiguration, EffectGroup, type EffectGroupWithLiterals, ElementDisplayOption, type ElementDisplayOptionWithLiterals, type ElementItem, type ElementItemSelectedElementTypeOneOf, type ElementState, type ElementStyleDefaults, type ElementStyleOverrides, ElementType, type ElementTypeWithLiterals, type EmailChannel, type EmailEmailMessageConfig, type EmailInfo, EmailInfoTag, type EmailInfoTagWithLiterals, type EmailMessageConfig, type EmailTemplateConfig, type EmailTemplateConfigProviderOneOf, EmbedCategory, type EmbedCategoryWithLiterals, type EmbedData, type EmbeddedScriptComponentData, EmbeddedScriptPages, type EmbeddedScriptPagesWithLiterals, EmbeddedScriptPlacement, type EmbeddedScriptPlacementWithLiterals, type Empty, Environment, type EnvironmentWithLiterals, type ErrorReporting, type ErrorReportingArtifact, Escalation, type EscalationWithLiterals, type EventAction, type EventBadgesSpiConfig, type EventData, type EventTimeSlotsProviderConfig, type EventTypeProviderConfig, type EventValidationProviderConfig, type Execution, type ExecutionActionExecuteOneOf, ExecutionType, type ExecutionTypeWithLiterals, type ExemptRegions, type ExpectedInputs, type ExperimentGroupWrapper, type ExportMetadata, Exposure, type ExposureRule, type ExposureRuleRuleOneOf, ExposureRuleType, type ExposureRuleTypeWithLiterals, type ExposureWithLiterals, type Extendable, ExtendingComponentType, type ExtendingComponentTypeWithLiterals, type ExtensionData, type ExtensionDetails, type ExtensionExposure, ExtensionExposureExposure, type ExtensionExposureExposureWithLiterals, ExtensionType, type ExtensionTypeWithLiterals, type ExternalDatabaseSpiConfig, type ExternalFilterProviderConfig, type FactorConfig, FactorType, type FactorTypeWithLiterals, type FeedAggregation, type FeedChannels, type FeedChannelsConfig, type FeesSPIConfig, type Field, FieldFieldType, type FieldFieldTypeWithLiterals, type FieldGroup, type FieldManagementConfig, type FieldOverride, type FieldOverrides, FieldType, type FieldTypeOptionsOneOf, type FieldTypeWithLiterals, type FieldsOverrides, type FieldsSettings, type FileData, FileMediaType, type FileMediaTypeWithLiterals, type FileSource, type FileSourceDataOneOf, type FileType, type FileUpload, type Filter, FilterFunction, type FilterFunctionWithLiterals, type FilterInfo, type FilterInfoOptionsOneOf, FilterOptionsType, type FilterOptionsTypeWithLiterals, FilterSelectionType, type FilterSelectionTypeWithLiterals, FilterValueDefinitionMode, type FilterValueDefinitionModeWithLiterals, type FilteringCapability, FirstDayOfWeek, type FirstDayOfWeekWithLiterals, type FirstLevelCategory, type FixedPayment, type FixedPositionBuilder, type FixedPositionOptions, type FixedPriceOptions, type FocalPoint, type Font, type FontDefinition, type FontFamilyData, type FontFamilyWithColorPicker, type FontSizeData, FontType, type FontTypeWithLiterals, type FormFieldContactInfo, type FormFieldContactInfoAdditionalInfoOneOf, type FormLayout, type FormOverride, type FormOverrideEntityTypeOptionsOneOf, type FormOverrideFieldOverride, type FormOverrideFieldOverridePropertyTypeOptionsOneOf, type FormSchemaDynamicValuesSpiConfig, type FormSchemaSpiConfig, type FormSpamSubmissionReportPermissions, type FormSpamSubmissionReportSpiConfig, type FormSpamSubmissionReportsNamespaceConfig, type FormSpamSubmissionSpiConfig, type FormSpiExtensionConfig, type FormSubmissionModerationSpiConfig, type FormSubmissionModerationSpiNamespaceConfig, type FormSubmissionSpiConfig, type FormSubmissionSpiExtensionConfig, type FormTemplate, type FormTemplateTemplateTypeOptionsOneOf, Format, type FormatWithLiterals, type FormsConfig, type FormsPermissions, type FormsSPIConfig, type FormsSchemaNamespaceConfig, type FormsSpamSubmissionsNamespaceConfig, type FormsSubmissionsExtensionNamespaceConfig, type FormsSubmissionsNamespaceConfig, type ForwardAction, type ForwardActionActionOneOf, type FreeOptionConfiguration, type FreePricingTypeConfiguration, type FreeTrialConfiguration, type FunctionAssistantToolProviderConfig, type FunctionDefinition, type FunctionEcomDiscountTriggerEligibilityProviderConfig, type FunctionParameter, type FunctionParameterArrayItems, type FunctionParameterArrayItemsArrayDataOneOf, type FunctionParameterItems, type FunctionParameterSelectedDataTypeOneOf, type FunctionRecipe, type FunctionResources, type FunctionReturnType, type FunctionReturnTypeSelectedDataTypeOneOf, type FunctionsShopPriceSpiConfig, type GIF, type GIFData, GIFType, type GIFTypeWithLiterals, type GalleryData, type GalleryOptions, type GalleryOptionsLayout, type GalleryOptionsThumbnails, type Gap, type GbpFeatureConfig, type GenericHookConfig, type GenericHooksConfig, type GenericOptions, type GetComponentsCatalogResponse, type GiftCardProviderConfig, type Gradient, GradientType, type GradientTypeWithLiterals, type GridAppFilesTransformerConfig, type Group, GroupType, type GroupTypeWithLiterals, type GroupedContent, type HTMLData, type HTMLDataDataOneOf, HTMLDataSource, type HTMLDataSourceWithLiterals, HTTPMethod, type HTTPMethodWithLiterals, type Header, type HeaderConfig, type HeaderConfigHeaderConfigOneOf, type HeaderConfigOneOf, type HeaderWidgetConfig, type HeadingData, type HeadlessOAuth, type Height, HeightMode, type HeightModeWithLiterals, type HelpArticle, type HelpArticleArticleTypeOneOf, type HelpResources, type HiddenOptions, HookType, type HookTypeWithLiterals, Horizontal, HorizontalDocking, type HorizontalDockingWithLiterals, type HorizontalWithLiterals, HostContainerId, type HostContainerIdWithLiterals, type HostedComponent, type HostedPage, type IDPConnectionConfig, type Icon, type IconDataOneOf, IconType, type IconTypeWithLiterals, type Illustration, type IllustrationIllustrationOneOf, type Image, ImageCategoryTypes, type ImageCategoryTypesWithLiterals, type ImageConfig, type ImageData, type ImageDataStyles, type ImageDataStylesBorder, ImageFit, type ImageFitWithLiterals, type ImageOverrides, ImagePosition, ImagePositionPosition, type ImagePositionPositionWithLiterals, type ImagePositionWithLiterals, ImageScalingScaling, type ImageScalingScalingWithLiterals, ImageShape, type ImageShapeWithLiterals, type ImageStyles, ImageStylesPosition, type ImageStylesPositionWithLiterals, ImageType, type ImageTypeWithLiterals, type Implementation, type ImplementedMethods, ImportanceLevel, type ImportanceLevelWithLiterals, type InPersonOptions, Indentation, type IndentationWithLiterals, type Index, type IndexField, InitDirection, type InitDirectionWithLiterals, InitialExpandedItems, type InitialExpandedItemsWithLiterals, type InitialPosition, type InitialSizeSetting, type InitialSizeSettingSelectedSizingTypeOneOf, type Initiator, type InitiatorDataOneOf, InitiatorType, type InitiatorTypeWithLiterals, type InlineElement, type Input, type InputConfiguration, type InputField, type InputFieldInputTypeOptionsOneOf, type InputField_Number, type InputField_NumberComponentTypeOptionsOneOf, InputType, type InputTypeWithLiterals, type InputWithPlaceholder, InstallPage, type InstallPageWithLiterals, type InstallationInfo, type InstallationInfoTargetContainerOneOf, type InstallationSettings, type InstallationSettingsOptionsOneOf, type IntListOptions, type IntegerType, type IntegrationOptions, type IntegrationOptionsOptionsOneOf, IntegrationType, type IntegrationTypeWithLiterals, Intent, type IntentWithLiterals, type Interactions, type InterfaceConfiguration, type InterfaceConfigurationOfTypeOneOf, InterfaceConfigurationType, type InterfaceConfigurationTypeWithLiterals, type InternalComponentMetadata, type InventorySpiConfig, type InvoicesActionsComponentData, type InvoicesConfig, type IsStretched, type Item, type ItemDataOneOf, type ItemImage, type ItemLayout, type ItemLayoutItemOneOf, type ItemPath, type ItemSelection, type ItemSelectionOptions, type ItemStyle, type ItemThumbnail, type ItemThumbnailOptionsOneOf, ItemType, type ItemTypeWithLiterals, type ItemVideo, type ItemsGroup, type ItemsSelectionProviderConfig, type KeepAliveConfig, type Keywords, type LanguageTagListOptions, Layout, type LayoutCellData, type LayoutData, type LayoutDataBackground, type LayoutDataBackgroundImage, LayoutDataBackgroundType, type LayoutDataBackgroundTypeWithLiterals, LayoutDataImagePosition, type LayoutDataImagePositionWithLiterals, LayoutMode, type LayoutModeWithLiterals, LayoutType, type LayoutTypeWithLiterals, type LayoutWithLiterals, type LearnMore, type LeftPanel, type LeftPanelWidgetConfig, type LegacyBackOfficeExtensionWidget, type LegacyBackOfficeExtensionWidgetAssetOneOf, type LegacyBackOfficeMenuItem, type LegacyBackOfficeMenuItemAction, type LegendsSpiConfig, Level, type LevelWithLiterals, type LightboxCloseOptions, type LightboxContent, type LightboxEditorSettings, type LightboxOptions, type LimiterField, type LineItemsEnricherConfig, LineStyle, type LineStyleWithLiterals, type Link, type LinkData, type LinkPreviewData, type LinkPreviewDataStyles, type LinkSuffix, LinkTarget, type LinkTargetWithLiterals, LinkType, type LinkTypeWithLiterals, ListEventFromCalendars, type ListEventFromCalendarsWithLiterals, type ListItem, ListStyle, type ListStyleWithLiterals, type ListValue, type LiveSiteActionDeeplink, type LocalDeliveryComponentData, type Location, type LocationLocationInfoOneOf, LockableOperation, type LockableOperationWithLiterals, type Logo, type Logos, type Main, type MainPresets, type MainPropsData, type ManagedMenuEntities, MandatoryField, type MandatoryFieldWithLiterals, type MapData, type MapSettings, MapType, type MapTypeWithLiterals, type Margin, type Margins, type MarketplaceProviderConfig, type MarketplaceSPIConfig, type MaskImage, Maturity, type MaturityWithLiterals, MeasurementSystem, type MeasurementSystemWithLiterals, type Media, type MediaCapabilities, type MediaItem, type MediaItemMediaOneOf, MediaMimeType, type MediaMimeTypeWithLiterals, type MediaSettings, type MembershipsSPIConfig, type MentionData, type MenuAction, type MenuActionActionOneOf, type MenuDropdown, type MenuLink, type MenuSlot, type MessageContainingTranslatables, type Metadata, Method, type MethodWithLiterals, type MinMaxRange, MobileApplication, type MobileApplicationWithLiterals, type MobileFeedChannel, type MobileFeedContentKeys, type MobilePushChannel, type MobilePushChannelConfig, type MobilePushContentKeys, type ModalParams, type Monitoring, type MonitoringOptionsOneOf, MonitoringType, type MonitoringTypeWithLiterals, MpaNavigation, type MpaNavigationWithLiterals, type MultiReferenceOptions, type MultiServiceBookingPolicyProviderConfig, type MultilineAddress, type MultilineAddressValidation, type MultilingualTranslationSchema, type MultipleDashboardsComponentData, type NPMPackage, type NPMPackageEntry, type Namespace, type NamespaceConfig, type NamespaceConfigV2, NativeStateType, type NativeStateTypeWithLiterals, type NavigateToPageAction, NavigationType, type NavigationTypeWithLiterals, type NestedWidgets, type Node, type NodeDataOneOf, type NodeStyle, NodeType, type NodeTypeWithLiterals, type NotificationChannels, type NotificationContent, type NotificationPreferencesFilterConfig, type NotificationTopic, NotificationTopicState, type NotificationTopicStateWithLiterals, NotificationTopicType, type NotificationTopicTypeWithLiterals, type Npm, NullValue, type NullValueWithLiterals, NumberComponentType, type NumberComponentTypeWithLiterals, type NumberInput, NumberOfColumns, type NumberOfColumnsWithLiterals, type NumberType, OAuthAppType, type OAuthAppTypeWithLiterals, OAuthTechnologies, type OAuthTechnologiesWithLiterals, type ObjectField, type ObjectFieldTypeOptionsOneOf, type ObjectOptions, type ObjectType, type Oembed, type Offset, type OffsetValueOneOf, type OneTimeOptionConfiguration, type OneTimePricingTypeConfiguration, type OpenApiOptions, type OpenComponent, type OpenModalAction, type OperationExecutorConfig, Operator, type OperatorConfiguration, OperatorEnumOperator, type OperatorEnumOperatorWithLiterals, type OperatorWithLiterals, type Option, type OptionDesign, type OptionLayout, type OrCondition, Order, type OrderValue, type OrderWithLiterals, type OrderedListData, Orientation, type OrientationWithLiterals, Origin, type OriginInfo, type OriginWithLiterals, type OutOfIframeData, type Output, OverrideEntityType, type OverrideEntityTypeWithLiterals, type OverrideTemplateFields, type PDFSettings, PDFSettingsViewMode, type PDFSettingsViewModeWithLiterals, type PackageDimension, type PackageType, type Padding, type Page, type PageAnchor, type PageComponentData, type PageContent, type PageDashboardApplicationComponent, type PageEditorSettings, type PageInstallation, type PageInstallationSettings, type PageNavigationOptions, type PageOptions, type PageOutOfIframeComponentData, type PageReplace, type PageReplaceOptions, type PageReplaceOptionsOptionsOneOf, type PageWidgetAsContent, type PagesConfig, PaginationMode, type PaginationModeWithLiterals, type Panel, type PanelAction, type PanelActionSelectedPanelTypeOneOf, PanelContentType, type PanelContentTypeWithLiterals, PanelMode, type PanelModeWithLiterals, type PanelSelectedContentTypeOneOf, type PanelSize, PanelType, type PanelTypeWithLiterals, type PanoramaOptions, type ParagraphData, type Param, type Parameter, ParameterType, type ParameterTypeWithLiterals, type ParameterValueDefinitionDetailsOneOf, PartialPaymentRestriction, type PartialPaymentRestrictionWithLiterals, ParticipantType, type ParticipantTypeWithLiterals, type Password, type PatternsWizard, type Payment, PaymentComponentType, type PaymentComponentTypeOptionsOneOf, type PaymentComponentTypeWithLiterals, type PaymentDateModification, type PaymentInput, type PaymentMethod, type PaymentMethodMethodOneOf, type PaymentServiceProviderConfig, type PaymentServiceProviderCredentialsField, type PaymentServiceProviderCredentialsFieldFieldOneOf, type PaymentSettingsSPIConfig, type PaymentType, type PaymentsGatewayComponentData, type PayoutsProviderConfig, type PerkValues, type PerksConfiguration, type PermissionOverrides, type Permissions, type PhoneConstraints, type PhoneInfo, PhoneInfoTag, type PhoneInfoTagWithLiterals, type PhoneInput, type PhoneOptions, type PingNotificationComponentData, type PingSettingsGroupComponentData, PingSettingsGroupComponentDataState, type PingSettingsGroupComponentDataStateWithLiterals, type PlaceHolder, Placement, type PlacementWithLiterals, type PlanDuration, type PlanFormBenefitsSection, type PlanFormCustomPricingRulesSection, type PlanFormCustomSection, PlanFormDefaultSection, type PlanFormDefaultSectionWithLiterals, type PlanFormDurationSection, type PlanFormInfoSection, type PlanFormInitialValue, type PlanFormPagePermissionsSection, type PlanFormPlanSettingsSection, type PlanFormPreviewSection, type PlanFormPricingAndDurationSection, type PlanFormPricingAndDurationSectionDurationInputConfiguration, type PlanFormPricingAndDurationSectionInputConfiguration, PlanFormPricingOption, type PlanFormPricingOptionWithLiterals, type PlanFormPricingSection, type PlanFormPricingSectionInputConfiguration, type PlanFormPricingSectionSetupFeeConfiguration, PlanFormPricingType, type PlanFormPricingTypeWithLiterals, type PlanFormSection, type PlanFormSectionSectionOneOf, type PlanFormStartDateRulesSection, type PlanFormTypeMetadata, PlanPeriodUnit, type PlanPeriodUnitWithLiterals, type PlanPriceData, type PlanPricing, type PlanPricingPricingModelOneOf, type PlanSettingsRowConfiguration, type PlatformHeaderConfig, type PlatfromComponentData, type PlaybackOptions, type PluginConfig, type PluginContainerData, PluginContainerDataAlignment, type PluginContainerDataAlignmentWithLiterals, type PluginContainerDataHeight, type PluginContainerDataWidth, type PluginContainerDataWidthDataOneOf, type PluginInstallationSettings, PluginInterface, type PluginInterfaceWithLiterals, type PluginMarketData, type PluginPlacement, type PointsAdjustmentProviderConfig, type PolicyConfig, type PolicyPermissionOverrides, type Poll, type PollData, type PollDataLayout, type PollDesign, type PollDesignBackground, type PollDesignBackgroundBackgroundOneOf, PollDesignBackgroundType, type PollDesignBackgroundTypeWithLiterals, type PollLayout, PollLayoutDirection, type PollLayoutDirectionWithLiterals, PollLayoutType, type PollLayoutTypeWithLiterals, type PollOption, type PollSettings, type PosProviderSettingsServicePluginConfig, type Position, type PostLoginConfig, type PreRegisterConfig, type PredefinedExpectedInput, type PredefinedExpectedInputConfiguration, type PredefinedExpectedInputConfigurationTypeOneOf, type PredefinedLabel, type PredefinedValues, type PremiumActionConfig, type Preset, type PresetEditorPresence, type PresetElementDefaults, type PresetInfo, type PresetInnerElementDefaults, type PresetItem, type PresetSize, type PresetStyleDefaults, type PresetStyleItemOverrides, type PresetStyleOverrides, type PreviewCardPlaceholders, type PreviewConfiguration, type PreviewFields, type PriceSPIConfig, PriceType, type PriceTypeWithLiterals, type PricingData, type PricingPlansFormConfiguration, type PricingRecurring, type Primitive, PrimitiveType, type PrimitiveTypeWithLiterals, type Product, type ProductCatalogProviderConfig, type ProductCheckboxGroup, type ProductCheckboxGroupOption, type ProductPriceOptionsOneOf, type ProductRestrictionsConfig, ProductType, type ProductTypeWithLiterals, type ProductsPathsConfig, type Project, type PropertiesType, PropertiesTypeEnum, type PropertiesTypeEnumWithLiterals, type PropertiesTypePropertiesTypeOptionsOneOf, type ProposalEditorProviderConfig, type Provider, type ProviderAccountServicePluginConfig, type ProviderConfig, type ProviderConfigMessage, type ProviderFilterOptions, type ProviderIdentifier, type ProviderSuppressionServicePluginConfig, type PurchaseValidationsConfig, type QuantityLimit, type RadioButtonLabeled, type RadioGroup, type RadioGroupOption, type RangeConstraints, type RateLimit, type RatingInput, type ReactElementContainer, type ReactElementContainerSelectedContainerTypeOneOf, type RecipientFilter, type RecipientFilterDataOneOf, RecipientFilterType, type RecipientFilterTypeWithLiterals, RecipientType, type RecipientTypeWithLiterals, type RecommendationsProviderConfig, type RecurringOptionConfiguration, type RecurringPricingTypeConfiguration, type RecurringPricingTypeConfigurationFreeTrialConfiguration, type RedirectOptions, type RefElement, type RefInnerElementDefaults, type ReferenceOptions, Region, RegionScopeScope, type RegionScopeScopeWithLiterals, RegionType, type RegionTypeWithLiterals, type RegionWithLiterals, type Rel, type RenderOverrides, type RepeatedFieldOverrideConfig, type ReplaceableOptions, ReplacementType, type ReplacementTypeWithLiterals, type ReplacingOptions, RequiredIndicator, RequiredIndicatorPlacement, type RequiredIndicatorPlacementWithLiterals, type RequiredIndicatorProperties, type RequiredIndicatorWithLiterals, type RequiredOptions, type ResetButton, ResizeDirection, type ResizeDirectionWithLiterals, Resizing, type ResizingWithLiterals, type Resource, type Resources, ResponsivenessBehaviour, type ResponsivenessBehaviourWithLiterals, type ResponsysEmail, type RestaurantsPOSComponentData, RestrictedOperation, type RestrictedOperationWithLiterals, type Restriction, RestrictionLevel, type RestrictionLevelWithLiterals, type Restrictions, type RestrictionsConfig, type ReviewsEntityCatalogProviderConfig, type ReviewsProductCatalogProviderConfig, type RewardProviderConfig, type RibbonStyles, type RichContent, type RichContentOptions, type RichText, RichTextAbilities, type RichTextAbilitiesWithLiterals, type RichTextWithIllustrationVertical, type RouterPage, type Rule, type SDKExports, type SDKExportsNpm, Scaling, type ScalingWithLiterals, type Scheduling, SchedulingComponentType, type SchedulingComponentTypeOptionsOneOf, type SchedulingComponentTypeWithLiterals, type Schema, type SchemaConfig, type SchemaField, SchemaFieldExposure, type SchemaFieldExposureWithLiterals, SchemaFieldFieldType, type SchemaFieldFieldTypeWithLiterals, type SchemaFieldType, type SchemaFieldTypeFieldTypeOneOf, type SchemaGroup, type SchemaGroupElement, type SchemaKey, SchemaScope, type SchemaScopeWithLiterals, Scope, ScopeType, type ScopeTypeWithLiterals, type ScopeWithLiterals, ScriptType, type ScriptTypeWithLiterals, type SdkDefinition, type SearchConfig, type SearchField, type SearchParams, type SecondLevelCategory, type Section, type SentryOptions, type SeoKeywordsSuggestionsSPIConfig, type ServiceAction, type ServiceAvailabilityPolicyProviderConfig, type ServicePermissionOverrides, type ServiceTagsConfig, type ServiceTrigger, type ServicesDropdown, type ServicesDropdownOption, type Settings, type SettingsPanel, type SettingsPermissions, type SettingsUrl, type SetupFeeConfiguration, type ShapeData, type ShapeDataStyles, type SharedPlatformMobilePushConfig, type ShippingLabelCarrierSpiConfig, type ShippingProviderConfig, type ShippingRatesConfig, type ShorthandGroupBackground, type ShoutoutEmail, type Sidebar, type SidebarChildItem, type SidebarChildItemItemOneOf, type SidebarConfig, type SidebarConfigOneOf, SidebarDataType, type SidebarDataTypeWithLiterals, SidebarEntityType, type SidebarEntityTypeWithLiterals, type SidebarRootItem, type SidebarRootItemItemOneOf, type SidebarSecondLevelChildItem, type SidebarSecondLevelChildItemItemOneOf, type SidebarWidget, type SidebarWidgetConfig, type SidebarWidgetConfigOneOf, type Signature, type Simple, type SimpleContainer, type SimpleField, SimpleType, type SimpleTypeWithLiterals, type SingleContent, type SingleKeyCondition, type SiteConfig, type SiteContributorsData, type SiteMapProviderConfig, type SiteMemberData, SiteMembersSsrCaching, type SiteMembersSsrCachingWithLiterals, type SiteMigrationSpiConfig, type SiteWidgetSlot, type Size, SizingType, type SizingTypeWithLiterals, type SliderLabeled, type Slot, type SlotData, type SlotDataSlotTypeOneOf, SlotDataType, type SlotDataTypeWithLiterals, type SlotParams, type SmsActionMessage, type SmsChannel, type SmsContentKeys, type SmsMessageConfig, type SmsSmsMessageConfig, type SnippetSolutionData, type SocialMarketingDesignSPIConfig, type SocialMarketingDesignsProviderConfig, type Source, type SourceOptionsOneOf, SourceType, type SourceTypeWithLiterals, type SpamSubmissionPermissions, type Spi, type SpiBaseUri, type Spoiler, type SpoilerData, type StaffSortingProviderConfig, type StartDateLimitsSPIConfig, type StartDateRulesSPIConfig, type State, StaticContainer, type StaticContainerWithLiterals, type StaticContent, type StaticFileComponentData, type StaticFilterOption, type StaticFilterOptions, Status, type StatusWithLiterals, type Step, type Stop, StorageDomain, type StorageDomainWithLiterals, StorageType, type StorageTypeWithLiterals, StringComponentType, type StringComponentTypeWithLiterals, type StringListOptions, type StringOption, type StringType, type StringTypeFormatOptionsOneOf, type StudioComponentData, type StudioWidgetComponentData, type StudioWidgetVariation, type StyleAction, type StyleItem, type StyleItemDefaults, type StyleItemOverrides, type StyleItemSelectedCssPropertyTypeOneOf, type StyleItemSelectedCssVariableTypeOneOf, type StyleItemSelectedItemTypeOneOf, StyleType, type StyleTypeWithLiterals, type Styles, type StylesBackground, type StylesBorder, StylesPosition, type StylesPositionWithLiterals, type SubPage, type SubmissionPermissions, type SubmitSettings, type SubmitSettingsSubmitSuccessActionOptionsOneOf, SubmitSuccessAction, type SubmitSuccessActionWithLiterals, type SubscriptionInfo, SyncToCalendar, type SyncToCalendarWithLiterals, type SyncedProjectsProviderConfig, type Tab, type TableCellData, type TableData, Tag, type TagOverrides, type TagOverridesEntry, type TagWithLiterals, type Tags, type TagsOption, Target, type TargetElement, type TargetWithLiterals, type TaskScope, type TaxCalculationConfig, type TaxCalculatorSpiConfig, type TaxCountriesConfig, type TaxExemptGroup, type TaxExemptGroupsProviderConfig, type TaxGroupsProviderConfig, type TaxIdValidatorConfig, type TaxTypesConfig, type TaxationCategoryProvider, type TemplateContainer, TemplateDefaultColor, type TemplateDefaultColorWithLiterals, TemplateType, type TemplateTypeWithLiterals, type TermsAndConditionsConfiguration, type TermsModalConfiguration, TestEnum, type TestEnumWithLiterals, type Text, TextAlignment, type TextAlignmentWithLiterals, type TextData, type TextDecoration, type TextEnum, type TextGroup, type TextInput, TextInputDisplayType, type TextInputDisplayTypeWithLiterals, type TextInputLabeled, type TextInputSettings, type TextNodeStyle, type TextStyle, type TextStyleDefaultColorOneOf, type TextToSpeechActionMessage, type TextWithSuffix, type TextWithSuffixSuffixOneOf, type TextWithTooltip, type ThankYouMessageOptions, type ThankYouPageConfiguration, type ThankYouPageInputConfig, type ThankYouPageModalConfiguration, type ThankYouPagePreviewConfiguration, type ThankYouPageRedirectsConfiguration, type ThumbnailData, ThumbnailType, type ThumbnailTypeWithLiterals, type Thumbnails, ThumbnailsAlignment, type ThumbnailsAlignmentWithLiterals, ThumbnailsSize, type ThumbnailsSizeWithLiterals, type TicketReservationsSpiConfig, type TimeConstraintConfiguration, type TimeConstraintConfigurationValueConstraintsOneOf, TimeConstraintType, type TimeConstraintTypeWithLiterals, type TimeInput, type TocData, type ToggleLabeled, type ToolPanelConfig, type TooltipSuffix, type TopologyComponentData, type TranslatedMessageWithIdRepeated, type TranslatedMessageWithUniqueFieldRepeated, type TranslationResources, Trigger, type TriggerFieldOverride, type TriggerFilter, type TriggerOverride, type TriggerProviderSPIConfig, type TriggerWithLiterals, Type, type TypeWithLiterals, type TypedDynamicParam, TypedDynamicParamType, type TypedDynamicParamTypeWithLiterals, type UnifiedLightbox, type UnifiedPage, type UnifiedPageEditorSettings, UnitType, type UnitTypeWithLiterals, type Until, type UpdateComponentCatalogRequest, UpdateMode, type UpdateModeWithLiterals, UploadFileFormat, UploadFileFormatEnumUploadFileFormat, type UploadFileFormatEnumUploadFileFormatWithLiterals, type UploadFileFormatWithLiterals, type UpstreamWixCommonImage, type Url, type UrlData, type UrlMapperProviderConfig, type UrlParam, type UserNotification, type UserNotificationData, type UserNotificationDataContext, type UserNotificationDataDeeplink, type UserNotificationDataDeeplinkOfOneOf, type UserNotificationDataInitiator, type UserNotificationDataInitiatorDataOneOf, type UserNotificationDataRecipientFilter, type UserNotificationDataRecipientFilterDataOneOf, UserNotificationDataRecipientFilterType, type UserNotificationDataRecipientFilterTypeWithLiterals, UserNotificationDataType, type UserNotificationDataTypeWithLiterals, type V1Image, type V1ImplementedMethods, type V1Link, type V1LinkDataOneOf, type V1Metadata, type V1Region, type V1SchemaField, V1Scope, type V1ScopeWithLiterals, type V1TextStyle, type V1ValidationTarget, type V2CommunicationChannelConfiguration, type V2Condition, type V2Field, type V2FieldFieldTypeOptionsOneOf, type V2ImplementedMethods, type V2Rule, type V2TriggerOverride, type ValidationMessages, type ValidationTarget, ValidationTargetMethod, type ValidationTargetMethodWithLiterals, type ValidationsSPIConfig, ValueConstraintType, type ValueConstraintTypeWithLiterals, type VectorArt, VectorArtCategoryTypes, type VectorArtCategoryTypesWithLiterals, type VectorArtOverrides, type VeloActionConfig, type VeloCustomCss, type VeloPublishPipelineTaskProviderConfig, type VelocityEmail, Vertical, VerticalAlignment, VerticalAlignmentAlignment, type VerticalAlignmentAlignmentWithLiterals, type VerticalAlignmentWithLiterals, VerticalDocking, type VerticalDockingWithLiterals, type VerticalWithLiterals, VibeActionType, type VibeActionTypeWithLiterals, type VibeCustomPanelAction, type VibeDashboardAction, type Video, VideoCategoryTypes, type VideoCategoryTypesWithLiterals, type VideoConferenceOptions, type VideoData, type VideoOverrides, ViewMode, type ViewModeWithLiterals, ViewRole, type ViewRoleWithLiterals, type ViewerRouterSPIConfig, type ViewerService, type ViewerServiceAssets, type ViewerServiceModuleConfiguration, type VisibleState, type VoiceChannel, type VoiceContentKeys, VoteRole, type VoteRoleWithLiterals, type WebComponentData, WebComponentDataElementType, type WebComponentDataElementTypeWithLiterals, type WebFeedChannel, type WebFeedContentKeys, type WebhookComponentData, type WidgetAsContent, type WidgetBehavior, type WidgetComponent, type WidgetComponentData, type WidgetComponentOptions, type WidgetData, type WidgetDetails, type WidgetDisplay, WidgetHorizontal, type WidgetHorizontalWithLiterals, type WidgetInstallation, type WidgetInstallationSettings, type WidgetInstallationSettingsTargetContainerOneOf, type WidgetOutOfIframeComponentData, type WidgetPluginComponentData, type WidgetSize, type WidgetSizeHeight, type WidgetSizeWidth, type WidgetSlot, WidgetVertical, type WidgetVerticalWithLiterals, WidgetWidthType, type WidgetWidthTypeWithLiterals, Width, WidthType, type WidthTypeWithLiterals, type WidthWithLiterals, type WixAiGatewaySpiConfig, type WixApiOptions, WixCodePublishTaskName, type WixCodePublishTaskNameWithLiterals, type WixCommonImage, type WixDependency, type WixFile, WixFileComponentType, type WixFileComponentTypeOptionsOneOf, type WixFileComponentTypeWithLiterals, type WixOfferingComponentData, type WixOfferingComponentDataOfferingOneOf, type WixPagesDomainMapping, type WixUserData, type WixUsersData, type WixVibeCodingInstructions, type WixVibeComponent, type WixelSPIConfig, type WorkerComponentData, type WritingMode, WritingModeValue, type WritingModeValueWithLiterals, type _Array, type _ArrayComponentTypeOptionsOneOf, type _Boolean, type _BooleanComponentTypeOptionsOneOf, type _Date, type _Function, type _Number, type _Object, type _String, type _StringComponentTypeOptionsOneOf, agentMakerApprovalProvider, aiAssistant, aiAssistantAction, alertEnricher, analyticsProductCatalog, appConfig, appRouter, applicationAutomation, applicationProfile, audienceProvider, automationTemplate, automationTrigger, automationsActionProvider, automationsTriggerProvider, automationsVeloActionProvider, availabilityTimeSlotsConfigurationProvider, backOfficeCustomization, backOfficeExtension, backOfficeExtensionContainer, backOfficeExtensionMenuItem, backOfficeExtensionWidget, backOfficeExternalUrl, backOfficeModal, backOfficePage, backOfficeRestrictedCustomization, backOfficeSidebarCategory, backOfficeWidget, backendWorker, bassValidateCancelAction, benefitProgramsPolicyProvider, billingOperation, billingSettings, billingTaxIdValidator, blogPaywallProvider, bookingActionUrlsProvider, bookingAutomationsConfiguration, bookingPolicyProvider, bookingsExternalCalendarProvider, bookingsPlatformConfiguration, bookingsPricingProvider, bookingsResourceTypesProvider, bookingsValidationProvider, broadcastList, browserStorage, calendarConferencingProvider, calendarEventTypeProvider, calendarEventValidationProvider, clientSideService, codePackage, commentsContextProvider, commentsFilterProvider, commentsModerationProvider, communicationChannel, communicationChannelProvider, componentEnricherProvider, componentReferenceDataProvider, componentsTranslationsAdditionalFieldsProvider, componentsValidatorProvider, contactLabels, contactNotification, contactsSegmentsV2FilterProvider, crossSell, customElementWidget, customTableReservationsProvider, dashboard, dashboardApplication, dashboardPlatform, dataComponent, dataExtensions, dcConfig, dealerAdaptiveComponentProvider, dealerExternalFilterProvider, deploymentPipelineProvider, devCenterTestingComponent, ecomAdditionalFees, ecomCatalog, ecomCheckoutContent, ecomCustomScope, ecomDefaultTaxationCategory, ecomDiscounts, ecomDiscountsTrigger, ecomDropshippingProvider, ecomForms, ecomInventory, ecomLineItemsEnricher, ecomMemberships, ecomPaymentSettings, ecomRecommendationsProvider, ecomShippingRates, ecomTaxCalculatorSpi, ecomValidations, editorAddon, editorAppPreviewsPoc, editorContextProvider, editorFunctionLibrary, editorReactComponent, embeddedScript, eventTimeSlotsConfigurationProvider, eventsEventBadges, eventsTicketReservations, extension, externalDatabaseProvider, fictionalShippingProvider, formSchemaDynamicValues, formSubmissionModeration, formTemplate, formsExtensionProvider, formsSchemaProvider, formsSpamSubmissionReportsProvider, formsSpamSubmissionsProvider, formsSubmissionsExtensionProvider, formsSubmissionsProvider, functionEcomDiscountTriggerEligibilityProvider, functionExtension, functionRecipe, functionsAssistantTools, functionsShopPriceProvider, genericHooks, giftCardsProvider, googleBusinessProfileFeatureProvider, gridAppFilesTransformer, headlessOauth, identityAuthenticator, identityFactor, identityIdpConnector, identityPostLogin, identityPreRegistration, invoicesActions, invoicesProvider, itemsSelectionProvider, legendsPersonaConfiguration, localDelivery, loyaltyCustomRewards, loyaltyCustomRewardsV2, loyaltyPointsAdjustment, monitoring, multiServiceBookingPolicyProvider, multilingualContentProvider, multilingualTranslationSchema, multilingualTranslationSchemaGroup, multipleDashboards, notificationContent, notificationPreferencesFilterProvider, notificationTopic, page, pageOutOfIframe, panel, papiProvider, partnersPayouts, patternsWizard, paymentProvider, paymentsDisputeServicePlugin, paymentsGateway, pingSettingsGroup, pingUouNotification, pingUserNotification, platform, portfolioSyncedProjectsProvider, premiumAction, premiumCustomCharges, premiumProductsPaths, premiumPurchaseValidations, pricingPlanStartDateLimits, pricingPlanStartDateRules, pricingPlansFees, pricingPlansFormConfiguration, pricingPlansPrice, proposalEditorProvider, providerSuppressionServicePlugin, reserved, restaurantsPos, restaurantsPosProviderSettingsServicePlugin, sdkDefinition, sdkExports, seoKeywordsSuggestions, serviceTagsConfiguration, shippingLabelCarrier, shubMarketplaceProvider, siteMapInfoProvider, siteMigration, siteWidgetSlot, smsActionMessage, snippetSolution, socialMarketingDesign, socialMarketingDesignsProvider, staffSortingProvider, staticFile, storesProductRestrictions, studio, studioWidget, suppliersHubMarketplace, taxCalculationProvider, taxExemptGroupsProvider, taxGroupsProvider, textToSpeechActionMessage, topology, unifiedLightbox, unifiedPage, urlMapperProvider, userNotification, veloCustomCss, veloPublishPipelineTaskProvider, viewerDynamicSiteStructureProvider, viewerService, web, webhook, widget, widgetOutOfIframe, widgetPlugin, wixAiGatewayCallback, wixHostingAppDeploymentProvider, wixHostingAppEnvironmentProvider, wixOffering, wixPaymentsProviderAccountServicePlugin, wixReviewsEntityCatalog, wixReviewsProductCatalog, wixVibeCodingInstructions, wixVibeComponent, wixel, wixelBinding, wixelViewerRouterProvider, worker };
|
|
@@ -135,6 +135,7 @@ __export(index_exports, {
|
|
|
135
135
|
ImageStylesPosition: () => ImageStylesPosition,
|
|
136
136
|
ImageType: () => ImageType,
|
|
137
137
|
ImportanceLevel: () => ImportanceLevel,
|
|
138
|
+
Indentation: () => Indentation,
|
|
138
139
|
InitDirection: () => InitDirection,
|
|
139
140
|
InitialExpandedItems: () => InitialExpandedItems,
|
|
140
141
|
InitiatorType: () => InitiatorType,
|
|
@@ -154,6 +155,7 @@ __export(index_exports, {
|
|
|
154
155
|
LinkTarget: () => LinkTarget,
|
|
155
156
|
LinkType: () => LinkType,
|
|
156
157
|
ListEventFromCalendars: () => ListEventFromCalendars,
|
|
158
|
+
ListStyle: () => ListStyle,
|
|
157
159
|
LockableOperation: () => LockableOperation,
|
|
158
160
|
MandatoryField: () => MandatoryField,
|
|
159
161
|
MapType: () => MapType,
|
|
@@ -419,6 +421,7 @@ __export(index_exports, {
|
|
|
419
421
|
localDelivery: () => localDelivery,
|
|
420
422
|
loyaltyCustomRewards: () => loyaltyCustomRewards,
|
|
421
423
|
loyaltyCustomRewardsV2: () => loyaltyCustomRewardsV2,
|
|
424
|
+
loyaltyPointsAdjustment: () => loyaltyPointsAdjustment,
|
|
422
425
|
monitoring: () => monitoring,
|
|
423
426
|
multiServiceBookingPolicyProvider: () => multiServiceBookingPolicyProvider,
|
|
424
427
|
multilingualContentProvider: () => multilingualContentProvider,
|
|
@@ -1076,6 +1079,7 @@ var NodeType = /* @__PURE__ */ ((NodeType2) => {
|
|
|
1076
1079
|
NodeType2["LAYOUT_CELL"] = "LAYOUT_CELL";
|
|
1077
1080
|
NodeType2["SHAPE"] = "SHAPE";
|
|
1078
1081
|
NodeType2["CARD"] = "CARD";
|
|
1082
|
+
NodeType2["TOC"] = "TOC";
|
|
1079
1083
|
return NodeType2;
|
|
1080
1084
|
})(NodeType || {});
|
|
1081
1085
|
var BackgroundType = /* @__PURE__ */ ((BackgroundType2) => {
|
|
@@ -1186,6 +1190,7 @@ var HTMLDataSource = /* @__PURE__ */ ((HTMLDataSource2) => {
|
|
|
1186
1190
|
HTMLDataSource2["HTML"] = "HTML";
|
|
1187
1191
|
HTMLDataSource2["ADSENSE"] = "ADSENSE";
|
|
1188
1192
|
HTMLDataSource2["AI"] = "AI";
|
|
1193
|
+
HTMLDataSource2["AI_WIDGET"] = "AI_WIDGET";
|
|
1189
1194
|
return HTMLDataSource2;
|
|
1190
1195
|
})(HTMLDataSource || {});
|
|
1191
1196
|
var StylesPosition = /* @__PURE__ */ ((StylesPosition2) => {
|
|
@@ -1387,6 +1392,21 @@ var CardDataBackgroundType = /* @__PURE__ */ ((CardDataBackgroundType2) => {
|
|
|
1387
1392
|
CardDataBackgroundType2["GRADIENT"] = "GRADIENT";
|
|
1388
1393
|
return CardDataBackgroundType2;
|
|
1389
1394
|
})(CardDataBackgroundType || {});
|
|
1395
|
+
var ListStyle = /* @__PURE__ */ ((ListStyle2) => {
|
|
1396
|
+
ListStyle2["PLAIN"] = "PLAIN";
|
|
1397
|
+
ListStyle2["NUMBERED"] = "NUMBERED";
|
|
1398
|
+
ListStyle2["LETTERS"] = "LETTERS";
|
|
1399
|
+
ListStyle2["ROMAN"] = "ROMAN";
|
|
1400
|
+
ListStyle2["BULLETED"] = "BULLETED";
|
|
1401
|
+
ListStyle2["ALPHABETICAL_INDEX"] = "ALPHABETICAL_INDEX";
|
|
1402
|
+
ListStyle2["ALPHABETICAL_INDEX_COMPACT"] = "ALPHABETICAL_INDEX_COMPACT";
|
|
1403
|
+
return ListStyle2;
|
|
1404
|
+
})(ListStyle || {});
|
|
1405
|
+
var Indentation = /* @__PURE__ */ ((Indentation2) => {
|
|
1406
|
+
Indentation2["NESTED"] = "NESTED";
|
|
1407
|
+
Indentation2["FLAT"] = "FLAT";
|
|
1408
|
+
return Indentation2;
|
|
1409
|
+
})(Indentation || {});
|
|
1390
1410
|
var TestEnum = /* @__PURE__ */ ((TestEnum2) => {
|
|
1391
1411
|
TestEnum2["UNKNOWN_TEST_ENUM"] = "UNKNOWN_TEST_ENUM";
|
|
1392
1412
|
TestEnum2["FIRST_TEST"] = "FIRST_TEST";
|
|
@@ -1616,6 +1636,7 @@ var ComponentType = /* @__PURE__ */ ((ComponentType2) => {
|
|
|
1616
1636
|
ComponentType2["AUTOMATION_TEMPLATE"] = "AUTOMATION_TEMPLATE";
|
|
1617
1637
|
ComponentType2["AGENT_MAKER_APPROVAL_PROVIDER"] = "AGENT_MAKER_APPROVAL_PROVIDER";
|
|
1618
1638
|
ComponentType2["SERVICE_TAGS_CONFIGURATION"] = "SERVICE_TAGS_CONFIGURATION";
|
|
1639
|
+
ComponentType2["LOYALTY_POINTS_ADJUSTMENT"] = "LOYALTY_POINTS_ADJUSTMENT";
|
|
1619
1640
|
return ComponentType2;
|
|
1620
1641
|
})(ComponentType || {});
|
|
1621
1642
|
var CalendarType = /* @__PURE__ */ ((CalendarType2) => {
|
|
@@ -5908,6 +5929,18 @@ function serviceTagsConfiguration({
|
|
|
5908
5929
|
compData: { serviceTagsConfiguration: data }
|
|
5909
5930
|
};
|
|
5910
5931
|
}
|
|
5932
|
+
function loyaltyPointsAdjustment({
|
|
5933
|
+
id,
|
|
5934
|
+
data,
|
|
5935
|
+
name
|
|
5936
|
+
}) {
|
|
5937
|
+
return {
|
|
5938
|
+
compId: id,
|
|
5939
|
+
compName: name,
|
|
5940
|
+
compType: "LOYALTY_POINTS_ADJUSTMENT" /* LOYALTY_POINTS_ADJUSTMENT */,
|
|
5941
|
+
compData: { loyaltyPointsAdjustment: data }
|
|
5942
|
+
};
|
|
5943
|
+
}
|
|
5911
5944
|
// Annotate the CommonJS export names for ESM import in node:
|
|
5912
5945
|
0 && (module.exports = {
|
|
5913
5946
|
A11yAttributes,
|
|
@@ -6025,6 +6058,7 @@ function serviceTagsConfiguration({
|
|
|
6025
6058
|
ImageStylesPosition,
|
|
6026
6059
|
ImageType,
|
|
6027
6060
|
ImportanceLevel,
|
|
6061
|
+
Indentation,
|
|
6028
6062
|
InitDirection,
|
|
6029
6063
|
InitialExpandedItems,
|
|
6030
6064
|
InitiatorType,
|
|
@@ -6044,6 +6078,7 @@ function serviceTagsConfiguration({
|
|
|
6044
6078
|
LinkTarget,
|
|
6045
6079
|
LinkType,
|
|
6046
6080
|
ListEventFromCalendars,
|
|
6081
|
+
ListStyle,
|
|
6047
6082
|
LockableOperation,
|
|
6048
6083
|
MandatoryField,
|
|
6049
6084
|
MapType,
|
|
@@ -6309,6 +6344,7 @@ function serviceTagsConfiguration({
|
|
|
6309
6344
|
localDelivery,
|
|
6310
6345
|
loyaltyCustomRewards,
|
|
6311
6346
|
loyaltyCustomRewardsV2,
|
|
6347
|
+
loyaltyPointsAdjustment,
|
|
6312
6348
|
monitoring,
|
|
6313
6349
|
multiServiceBookingPolicyProvider,
|
|
6314
6350
|
multilingualContentProvider,
|