@wix/app-extensions 1.0.21 → 1.0.23
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/cjs/index.js +56 -14
- package/build/cjs/index.js.map +1 -1
- package/build/es/index.mjs +52 -14
- package/build/es/index.mjs.map +1 -1
- package/build/trusted/cjs/index.d.ts +122 -14
- package/build/trusted/cjs/index.js +56 -14
- package/build/trusted/cjs/index.js.map +1 -1
- package/build/trusted/es/index.d.mts +122 -14
- package/build/trusted/es/index.mjs +52 -14
- package/build/trusted/es/index.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -7751,6 +7751,8 @@ interface Node extends NodeDataOneOf {
|
|
|
7751
7751
|
shapeData?: ShapeData;
|
|
7752
7752
|
/** Data for a card node. */
|
|
7753
7753
|
cardData?: CardData;
|
|
7754
|
+
/** Data for a table of contents node. */
|
|
7755
|
+
tocData?: TocData;
|
|
7754
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. */
|
|
7755
7757
|
type?: NodeTypeWithLiterals;
|
|
7756
7758
|
/** Node ID. */
|
|
@@ -7823,6 +7825,8 @@ interface NodeDataOneOf {
|
|
|
7823
7825
|
shapeData?: ShapeData;
|
|
7824
7826
|
/** Data for a card node. */
|
|
7825
7827
|
cardData?: CardData;
|
|
7828
|
+
/** Data for a table of contents node. */
|
|
7829
|
+
tocData?: TocData;
|
|
7826
7830
|
}
|
|
7827
7831
|
/** @internal */
|
|
7828
7832
|
declare enum NodeType {
|
|
@@ -7861,11 +7865,12 @@ declare enum NodeType {
|
|
|
7861
7865
|
LAYOUT = "LAYOUT",
|
|
7862
7866
|
LAYOUT_CELL = "LAYOUT_CELL",
|
|
7863
7867
|
SHAPE = "SHAPE",
|
|
7864
|
-
CARD = "CARD"
|
|
7868
|
+
CARD = "CARD",
|
|
7869
|
+
TOC = "TOC"
|
|
7865
7870
|
}
|
|
7866
7871
|
/** @enumType */
|
|
7867
7872
|
/** @internal */
|
|
7868
|
-
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';
|
|
7869
7874
|
/** @internal */
|
|
7870
7875
|
interface NodeStyle {
|
|
7871
7876
|
/** The top padding value in pixels. */
|
|
@@ -8563,6 +8568,8 @@ interface HTMLData extends HTMLDataDataOneOf {
|
|
|
8563
8568
|
* @deprecated
|
|
8564
8569
|
*/
|
|
8565
8570
|
isAdsense?: boolean | null;
|
|
8571
|
+
/** The WixelWidget ID for AI_WIDGET source nodes. */
|
|
8572
|
+
widgetId?: string;
|
|
8566
8573
|
/** Styling for the HTML node's container. Height property is irrelevant for HTML embeds when autoHeight is set to `true`. */
|
|
8567
8574
|
containerData?: PluginContainerData;
|
|
8568
8575
|
/** The type of HTML code. */
|
|
@@ -8582,16 +8589,19 @@ interface HTMLDataDataOneOf {
|
|
|
8582
8589
|
* @deprecated
|
|
8583
8590
|
*/
|
|
8584
8591
|
isAdsense?: boolean | null;
|
|
8592
|
+
/** The WixelWidget ID for AI_WIDGET source nodes. */
|
|
8593
|
+
widgetId?: string;
|
|
8585
8594
|
}
|
|
8586
8595
|
/** @internal */
|
|
8587
8596
|
declare enum HTMLDataSource {
|
|
8588
8597
|
HTML = "HTML",
|
|
8589
8598
|
ADSENSE = "ADSENSE",
|
|
8590
|
-
AI = "AI"
|
|
8599
|
+
AI = "AI",
|
|
8600
|
+
AI_WIDGET = "AI_WIDGET"
|
|
8591
8601
|
}
|
|
8592
8602
|
/** @enumType */
|
|
8593
8603
|
/** @internal */
|
|
8594
|
-
type HTMLDataSourceWithLiterals = HTMLDataSource | 'HTML' | 'ADSENSE' | 'AI';
|
|
8604
|
+
type HTMLDataSourceWithLiterals = HTMLDataSource | 'HTML' | 'ADSENSE' | 'AI' | 'AI_WIDGET';
|
|
8595
8605
|
/** @internal */
|
|
8596
8606
|
interface ImageData {
|
|
8597
8607
|
/** Styling for the image's container. */
|
|
@@ -9953,6 +9963,56 @@ interface CardDataBackgroundImage {
|
|
|
9953
9963
|
position?: ImagePositionPositionWithLiterals;
|
|
9954
9964
|
}
|
|
9955
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 */
|
|
9956
10016
|
interface V1Metadata {
|
|
9957
10017
|
/** Schema version. */
|
|
9958
10018
|
version?: number;
|
|
@@ -10325,6 +10385,8 @@ interface FormsSchemaNamespaceConfig {
|
|
|
10325
10385
|
multilingualEnabled?: boolean;
|
|
10326
10386
|
/** Attempt to select unique name for form */
|
|
10327
10387
|
uniqueName?: boolean;
|
|
10388
|
+
/** Enable client form schema overrides before save, more info in OverrideFormSchema. */
|
|
10389
|
+
schemaOverridesEnabled?: boolean;
|
|
10328
10390
|
}
|
|
10329
10391
|
/** @internal */
|
|
10330
10392
|
interface FormsPermissions {
|
|
@@ -13579,7 +13641,7 @@ interface InputField extends InputFieldInputTypeOptionsOneOf {
|
|
|
13579
13641
|
* Type of the input field
|
|
13580
13642
|
* @readonly
|
|
13581
13643
|
*/
|
|
13582
|
-
inputType?:
|
|
13644
|
+
inputType?: InputFieldInputTypeWithLiterals;
|
|
13583
13645
|
/** Mapping to contacts, telling to what contact property field input value should be saved. */
|
|
13584
13646
|
contactMapping?: FormFieldContactInfo;
|
|
13585
13647
|
/**
|
|
@@ -15232,7 +15294,7 @@ interface PhoneOptions {
|
|
|
15232
15294
|
description?: string | null;
|
|
15233
15295
|
}
|
|
15234
15296
|
/** @internal */
|
|
15235
|
-
declare enum
|
|
15297
|
+
declare enum InputFieldInputType {
|
|
15236
15298
|
UNKNOWN_INPUT_TYPE = "UNKNOWN_INPUT_TYPE",
|
|
15237
15299
|
STRING = "STRING",
|
|
15238
15300
|
NUMBER = "NUMBER",
|
|
@@ -15247,7 +15309,7 @@ declare enum InputType {
|
|
|
15247
15309
|
}
|
|
15248
15310
|
/** @enumType */
|
|
15249
15311
|
/** @internal */
|
|
15250
|
-
type
|
|
15312
|
+
type InputFieldInputTypeWithLiterals = InputFieldInputType | 'UNKNOWN_INPUT_TYPE' | 'STRING' | 'NUMBER' | 'BOOLEAN' | 'ARRAY' | 'OBJECT' | 'WIX_FILE' | 'PAYMENT' | 'MULTILINE_ADDRESS' | 'SCHEDULING' | 'ADDRESS';
|
|
15251
15313
|
/** @internal */
|
|
15252
15314
|
interface FormFieldContactInfo extends FormFieldContactInfoAdditionalInfoOneOf {
|
|
15253
15315
|
/** Email info. */
|
|
@@ -17955,15 +18017,15 @@ declare enum DataType {
|
|
|
17955
18017
|
data = "data",
|
|
17956
18018
|
/** A custom function that can be used to call a function from a custom library */
|
|
17957
18019
|
'function' = "function",
|
|
17958
|
-
/** Standard [onClick handler](https://developer.mozilla.org/en-US/docs/Web/API/Element/click_event)
|
|
18020
|
+
/** Deprecated: use function with pointerEvent parameter. Standard [onClick handler](https://developer.mozilla.org/en-US/docs/Web/API/Element/click_event) */
|
|
17959
18021
|
onClick = "onClick",
|
|
17960
|
-
/**
|
|
18022
|
+
/** Deprecated: use function with changeEvent parameter. Standard [onChange handler](https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement/change_event) */
|
|
17961
18023
|
onChange = "onChange",
|
|
17962
|
-
/** Standard [onKeyPress handler](https://developer.mozilla.org/en-US/docs/Web/API/Element/keypress_event)
|
|
18024
|
+
/** Deprecated: use function with keyboardEvent parameter. Standard [onKeyPress handler](https://developer.mozilla.org/en-US/docs/Web/API/Element/keypress_event) */
|
|
17963
18025
|
onKeyPress = "onKeyPress",
|
|
17964
|
-
/** Standard [onKeyUp handler](https://developer.mozilla.org/en-US/docs/Web/API/Element/keyup_event)
|
|
18026
|
+
/** Deprecated: use function with keyboardEvent parameter. Standard [onKeyUp handler](https://developer.mozilla.org/en-US/docs/Web/API/Element/keyup_event) */
|
|
17965
18027
|
onKeyUp = "onKeyUp",
|
|
17966
|
-
/** Standard [onSubmit handler](https://developer.mozilla.org/en-US/docs/Web/API/HTMLFormElement/submit_event)
|
|
18028
|
+
/** Deprecated: use function with submitEvent parameter. Standard [onSubmit handler](https://developer.mozilla.org/en-US/docs/Web/API/HTMLFormElement/submit_event) */
|
|
17967
18029
|
onSubmit = "onSubmit"
|
|
17968
18030
|
}
|
|
17969
18031
|
/** @enumType */
|
|
@@ -18521,8 +18583,15 @@ interface FunctionParameter extends FunctionParameterSelectedDataTypeOneOf {
|
|
|
18521
18583
|
function?: EditorFunction;
|
|
18522
18584
|
/** In case of a text enum */
|
|
18523
18585
|
textEnum?: TextEnum;
|
|
18524
|
-
/**
|
|
18586
|
+
/** In case of a Change event parameter */
|
|
18587
|
+
changeEvent?: ChangeEvent;
|
|
18588
|
+
/**
|
|
18589
|
+
* Exactly one of `data_type` or `dom_event` must be set
|
|
18590
|
+
* A data type parameter
|
|
18591
|
+
*/
|
|
18525
18592
|
dataType?: DataTypeWithLiterals;
|
|
18593
|
+
/** A DOM event parameter */
|
|
18594
|
+
domEvent?: DomEventTypeWithLiterals;
|
|
18526
18595
|
/** Whether the Parameter is optional, limitations of Javascript apply, only the last parameters can be optional */
|
|
18527
18596
|
optional?: boolean | null;
|
|
18528
18597
|
/**
|
|
@@ -18554,7 +18623,26 @@ interface FunctionParameterSelectedDataTypeOneOf {
|
|
|
18554
18623
|
function?: EditorFunction;
|
|
18555
18624
|
/** In case of a text enum */
|
|
18556
18625
|
textEnum?: TextEnum;
|
|
18626
|
+
/** In case of a Change event parameter */
|
|
18627
|
+
changeEvent?: ChangeEvent;
|
|
18628
|
+
}
|
|
18629
|
+
/** @internal */
|
|
18630
|
+
declare enum DomEventType {
|
|
18631
|
+
UNKNOWN_DomEventType = "UNKNOWN_DomEventType",
|
|
18632
|
+
/** Value change event (https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement/change_event) */
|
|
18633
|
+
CHANGE = "CHANGE",
|
|
18634
|
+
/** Pointer interaction event (https://developer.mozilla.org/en-US/docs/Web/API/PointerEvent) */
|
|
18635
|
+
POINTER = "POINTER",
|
|
18636
|
+
/** Keyboard interaction event (https://developer.mozilla.org/en-US/docs/Web/API/KeyboardEvent) */
|
|
18637
|
+
KEYBOARD = "KEYBOARD",
|
|
18638
|
+
/** Focus and blur event (https://developer.mozilla.org/en-US/docs/Web/API/FocusEvent) */
|
|
18639
|
+
FOCUS = "FOCUS",
|
|
18640
|
+
/** Form submission event (https://developer.mozilla.org/en-US/docs/Web/API/SubmitEvent) */
|
|
18641
|
+
SUBMIT = "SUBMIT"
|
|
18557
18642
|
}
|
|
18643
|
+
/** @enumType */
|
|
18644
|
+
/** @internal */
|
|
18645
|
+
type DomEventTypeWithLiterals = DomEventType | 'UNKNOWN_DomEventType' | 'CHANGE' | 'POINTER' | 'KEYBOARD' | 'FOCUS' | 'SUBMIT';
|
|
18558
18646
|
/** An array of data items or complex data types */
|
|
18559
18647
|
/** @internal */
|
|
18560
18648
|
interface FunctionParameterArrayItems extends FunctionParameterArrayItemsArrayDataOneOf {
|
|
@@ -18576,6 +18664,26 @@ interface FunctionParameterItems {
|
|
|
18576
18664
|
items?: Record<string, FunctionParameter>;
|
|
18577
18665
|
}
|
|
18578
18666
|
/** @internal */
|
|
18667
|
+
interface ChangeEvent {
|
|
18668
|
+
/** The type of input this change event originates from */
|
|
18669
|
+
inputType?: InputTypeWithLiterals;
|
|
18670
|
+
}
|
|
18671
|
+
/** @internal */
|
|
18672
|
+
declare enum InputType {
|
|
18673
|
+
UNKNOWN_InputType = "UNKNOWN_InputType",
|
|
18674
|
+
/** target.value (string) - Text inputs, selects, sliders, search boxes */
|
|
18675
|
+
text = "text",
|
|
18676
|
+
/** target.checked (boolean) - Checkboxes, toggles, switches */
|
|
18677
|
+
checkbox = "checkbox",
|
|
18678
|
+
/** target.valueAsNumber (number) - Number inputs, range inputs */
|
|
18679
|
+
number = "number",
|
|
18680
|
+
/** target.valueAsDate (Date) - Date pickers, datetime inputs */
|
|
18681
|
+
date = "date"
|
|
18682
|
+
}
|
|
18683
|
+
/** @enumType */
|
|
18684
|
+
/** @internal */
|
|
18685
|
+
type InputTypeWithLiterals = InputType | 'UNKNOWN_InputType' | 'text' | 'checkbox' | 'number' | 'date';
|
|
18686
|
+
/** @internal */
|
|
18579
18687
|
interface FunctionReturnType extends FunctionReturnTypeSelectedDataTypeOneOf {
|
|
18580
18688
|
/** In case of an array */
|
|
18581
18689
|
arrayItems?: FunctionParameterArrayItems;
|
|
@@ -26390,4 +26498,4 @@ declare function loyaltyPointsAdjustment({ id, data, name, }: {
|
|
|
26390
26498
|
name?: string;
|
|
26391
26499
|
}): ExtensionData;
|
|
26392
26500
|
|
|
26393
|
-
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 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 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 };
|
|
26501
|
+
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, type ChangeEvent, 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, DomEventType, type DomEventTypeWithLiterals, 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, InputFieldInputType, type InputFieldInputTypeOptionsOneOf, type InputFieldInputTypeWithLiterals, 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 };
|
|
@@ -565,6 +565,7 @@ var NodeType = /* @__PURE__ */ ((NodeType2) => {
|
|
|
565
565
|
NodeType2["LAYOUT_CELL"] = "LAYOUT_CELL";
|
|
566
566
|
NodeType2["SHAPE"] = "SHAPE";
|
|
567
567
|
NodeType2["CARD"] = "CARD";
|
|
568
|
+
NodeType2["TOC"] = "TOC";
|
|
568
569
|
return NodeType2;
|
|
569
570
|
})(NodeType || {});
|
|
570
571
|
var BackgroundType = /* @__PURE__ */ ((BackgroundType2) => {
|
|
@@ -675,6 +676,7 @@ var HTMLDataSource = /* @__PURE__ */ ((HTMLDataSource2) => {
|
|
|
675
676
|
HTMLDataSource2["HTML"] = "HTML";
|
|
676
677
|
HTMLDataSource2["ADSENSE"] = "ADSENSE";
|
|
677
678
|
HTMLDataSource2["AI"] = "AI";
|
|
679
|
+
HTMLDataSource2["AI_WIDGET"] = "AI_WIDGET";
|
|
678
680
|
return HTMLDataSource2;
|
|
679
681
|
})(HTMLDataSource || {});
|
|
680
682
|
var StylesPosition = /* @__PURE__ */ ((StylesPosition2) => {
|
|
@@ -876,6 +878,21 @@ var CardDataBackgroundType = /* @__PURE__ */ ((CardDataBackgroundType2) => {
|
|
|
876
878
|
CardDataBackgroundType2["GRADIENT"] = "GRADIENT";
|
|
877
879
|
return CardDataBackgroundType2;
|
|
878
880
|
})(CardDataBackgroundType || {});
|
|
881
|
+
var ListStyle = /* @__PURE__ */ ((ListStyle2) => {
|
|
882
|
+
ListStyle2["PLAIN"] = "PLAIN";
|
|
883
|
+
ListStyle2["NUMBERED"] = "NUMBERED";
|
|
884
|
+
ListStyle2["LETTERS"] = "LETTERS";
|
|
885
|
+
ListStyle2["ROMAN"] = "ROMAN";
|
|
886
|
+
ListStyle2["BULLETED"] = "BULLETED";
|
|
887
|
+
ListStyle2["ALPHABETICAL_INDEX"] = "ALPHABETICAL_INDEX";
|
|
888
|
+
ListStyle2["ALPHABETICAL_INDEX_COMPACT"] = "ALPHABETICAL_INDEX_COMPACT";
|
|
889
|
+
return ListStyle2;
|
|
890
|
+
})(ListStyle || {});
|
|
891
|
+
var Indentation = /* @__PURE__ */ ((Indentation2) => {
|
|
892
|
+
Indentation2["NESTED"] = "NESTED";
|
|
893
|
+
Indentation2["FLAT"] = "FLAT";
|
|
894
|
+
return Indentation2;
|
|
895
|
+
})(Indentation || {});
|
|
879
896
|
var TestEnum = /* @__PURE__ */ ((TestEnum2) => {
|
|
880
897
|
TestEnum2["UNKNOWN_TEST_ENUM"] = "UNKNOWN_TEST_ENUM";
|
|
881
898
|
TestEnum2["FIRST_TEST"] = "FIRST_TEST";
|
|
@@ -1510,20 +1527,20 @@ var AppointmentFormat = /* @__PURE__ */ ((AppointmentFormat2) => {
|
|
|
1510
1527
|
AppointmentFormat2["PHONE"] = "PHONE";
|
|
1511
1528
|
return AppointmentFormat2;
|
|
1512
1529
|
})(AppointmentFormat || {});
|
|
1513
|
-
var
|
|
1514
|
-
|
|
1515
|
-
|
|
1516
|
-
|
|
1517
|
-
|
|
1518
|
-
|
|
1519
|
-
|
|
1520
|
-
|
|
1521
|
-
|
|
1522
|
-
|
|
1523
|
-
|
|
1524
|
-
|
|
1525
|
-
return
|
|
1526
|
-
})(
|
|
1530
|
+
var InputFieldInputType = /* @__PURE__ */ ((InputFieldInputType2) => {
|
|
1531
|
+
InputFieldInputType2["UNKNOWN_INPUT_TYPE"] = "UNKNOWN_INPUT_TYPE";
|
|
1532
|
+
InputFieldInputType2["STRING"] = "STRING";
|
|
1533
|
+
InputFieldInputType2["NUMBER"] = "NUMBER";
|
|
1534
|
+
InputFieldInputType2["BOOLEAN"] = "BOOLEAN";
|
|
1535
|
+
InputFieldInputType2["ARRAY"] = "ARRAY";
|
|
1536
|
+
InputFieldInputType2["OBJECT"] = "OBJECT";
|
|
1537
|
+
InputFieldInputType2["WIX_FILE"] = "WIX_FILE";
|
|
1538
|
+
InputFieldInputType2["PAYMENT"] = "PAYMENT";
|
|
1539
|
+
InputFieldInputType2["MULTILINE_ADDRESS"] = "MULTILINE_ADDRESS";
|
|
1540
|
+
InputFieldInputType2["SCHEDULING"] = "SCHEDULING";
|
|
1541
|
+
InputFieldInputType2["ADDRESS"] = "ADDRESS";
|
|
1542
|
+
return InputFieldInputType2;
|
|
1543
|
+
})(InputFieldInputType || {});
|
|
1527
1544
|
var EmailInfoTag = /* @__PURE__ */ ((EmailInfoTag2) => {
|
|
1528
1545
|
EmailInfoTag2["UNTAGGED"] = "UNTAGGED";
|
|
1529
1546
|
EmailInfoTag2["MAIN"] = "MAIN";
|
|
@@ -1946,6 +1963,23 @@ var VectorArtCategoryTypes = /* @__PURE__ */ ((VectorArtCategoryTypes2) => {
|
|
|
1946
1963
|
VectorArtCategoryTypes2["SHAPE_ARROWS"] = "SHAPE_ARROWS";
|
|
1947
1964
|
return VectorArtCategoryTypes2;
|
|
1948
1965
|
})(VectorArtCategoryTypes || {});
|
|
1966
|
+
var DomEventType = /* @__PURE__ */ ((DomEventType2) => {
|
|
1967
|
+
DomEventType2["UNKNOWN_DomEventType"] = "UNKNOWN_DomEventType";
|
|
1968
|
+
DomEventType2["CHANGE"] = "CHANGE";
|
|
1969
|
+
DomEventType2["POINTER"] = "POINTER";
|
|
1970
|
+
DomEventType2["KEYBOARD"] = "KEYBOARD";
|
|
1971
|
+
DomEventType2["FOCUS"] = "FOCUS";
|
|
1972
|
+
DomEventType2["SUBMIT"] = "SUBMIT";
|
|
1973
|
+
return DomEventType2;
|
|
1974
|
+
})(DomEventType || {});
|
|
1975
|
+
var InputType = /* @__PURE__ */ ((InputType2) => {
|
|
1976
|
+
InputType2["UNKNOWN_InputType"] = "UNKNOWN_InputType";
|
|
1977
|
+
InputType2["text"] = "text";
|
|
1978
|
+
InputType2["checkbox"] = "checkbox";
|
|
1979
|
+
InputType2["number"] = "number";
|
|
1980
|
+
InputType2["date"] = "date";
|
|
1981
|
+
return InputType2;
|
|
1982
|
+
})(InputType || {});
|
|
1949
1983
|
var ElementType = /* @__PURE__ */ ((ElementType2) => {
|
|
1950
1984
|
ElementType2["UNKNOWN_ElementType"] = "UNKNOWN_ElementType";
|
|
1951
1985
|
ElementType2["inlineElement"] = "inlineElement";
|
|
@@ -5477,6 +5511,7 @@ export {
|
|
|
5477
5511
|
DisplayValueEnumDisplayValue,
|
|
5478
5512
|
DividerDataAlignment,
|
|
5479
5513
|
DividerDataWidth,
|
|
5514
|
+
DomEventType,
|
|
5480
5515
|
Domain,
|
|
5481
5516
|
DtsDefinitionType,
|
|
5482
5517
|
EditableProperties,
|
|
@@ -5526,9 +5561,11 @@ export {
|
|
|
5526
5561
|
ImageStylesPosition,
|
|
5527
5562
|
ImageType,
|
|
5528
5563
|
ImportanceLevel,
|
|
5564
|
+
Indentation,
|
|
5529
5565
|
InitDirection,
|
|
5530
5566
|
InitialExpandedItems,
|
|
5531
5567
|
InitiatorType,
|
|
5568
|
+
InputFieldInputType,
|
|
5532
5569
|
InputType,
|
|
5533
5570
|
InstallPage,
|
|
5534
5571
|
IntegrationType,
|
|
@@ -5545,6 +5582,7 @@ export {
|
|
|
5545
5582
|
LinkTarget,
|
|
5546
5583
|
LinkType,
|
|
5547
5584
|
ListEventFromCalendars,
|
|
5585
|
+
ListStyle,
|
|
5548
5586
|
LockableOperation,
|
|
5549
5587
|
MandatoryField,
|
|
5550
5588
|
MapType,
|