@wix/auto_sdk_data-extension-schema_schemas 1.0.48 → 1.0.49

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.
@@ -5194,7 +5194,7 @@ interface ButtonData {
5194
5194
  /** Button link details. */
5195
5195
  link?: V1Link;
5196
5196
  }
5197
- interface Border {
5197
+ interface StylesBorder {
5198
5198
  /**
5199
5199
  * Deprecated: Use `borderWidth` in `styles` instead.
5200
5200
  * @deprecated
@@ -5307,7 +5307,7 @@ interface Styles {
5307
5307
  * Deprecated: Use `borderWidth` and `borderRadius` instead.
5308
5308
  * @deprecated
5309
5309
  */
5310
- border?: Border;
5310
+ border?: StylesBorder;
5311
5311
  /**
5312
5312
  * Deprecated: Use `textColor`, `borderColor` and `backgroundColor` instead.
5313
5313
  * @deprecated
@@ -5783,7 +5783,7 @@ interface ImageData {
5783
5783
  /** Styling for the image. */
5784
5784
  styles?: ImageDataStyles;
5785
5785
  }
5786
- interface StylesBorder {
5786
+ interface ImageDataStylesBorder {
5787
5787
  /** Border width in pixels. */
5788
5788
  width?: number | null;
5789
5789
  /**
@@ -5796,7 +5796,7 @@ interface StylesBorder {
5796
5796
  }
5797
5797
  interface ImageDataStyles {
5798
5798
  /** Border attributes. */
5799
- border?: StylesBorder;
5799
+ border?: ImageDataStylesBorder;
5800
5800
  }
5801
5801
  interface LinkPreviewData {
5802
5802
  /** Styling for the link preview's container. */
@@ -12571,6 +12571,8 @@ interface EditorElement {
12571
12571
  * The Element is the first in line to affect the display, Preset and State are after it
12572
12572
  */
12573
12573
  displayFilters?: DisplayFilters;
12574
+ /** Display groups for the element, used to group elements in the editor for better UX */
12575
+ displayGroups?: Record<string, DisplayGroupItem>;
12574
12576
  }
12575
12577
  interface StyleItem extends StyleItemSelectedItemTypeOneOf, StyleItemSelectedCssPropertyTypeOneOf, StyleItemSelectedCssVariableTypeOneOf {
12576
12578
  /**
@@ -13514,6 +13516,8 @@ interface InlineElement {
13514
13516
  * The Element is the first in line to affect the display, Preset and State are after it
13515
13517
  */
13516
13518
  displayFilters?: DisplayFilters;
13519
+ /** Display groups for the element, used to group elements in the editor for better UX */
13520
+ displayGroups?: Record<string, DisplayGroupItem>;
13517
13521
  }
13518
13522
  interface Behaviors {
13519
13523
  /** Determines if the inner-element can be selectable in the editor */
@@ -13537,8 +13541,6 @@ interface Actions {
13537
13541
  manageMenu?: Action;
13538
13542
  }
13539
13543
  interface Action {
13540
- /** Defines whether the action is being displayed */
13541
- hidden?: boolean | null;
13542
13544
  /**
13543
13545
  * The public human-readable name given to the action by the developer.
13544
13546
  * @minLength 4
@@ -13559,6 +13561,8 @@ interface Execution extends ExecutionActionExecuteOneOf {
13559
13561
  panel?: PanelAction;
13560
13562
  /** Executes an action on a target element (based on path) */
13561
13563
  forward?: ForwardAction;
13564
+ /** Executes an action that is connected to a display-group */
13565
+ displayGroup?: DisplayGroupAction;
13562
13566
  /** The action type allows to determine the return type of the execution function */
13563
13567
  actionType?: ActionTypeWithLiterals;
13564
13568
  }
@@ -13574,6 +13578,8 @@ interface ExecutionActionExecuteOneOf {
13574
13578
  panel?: PanelAction;
13575
13579
  /** Executes an action on a target element (based on path) */
13576
13580
  forward?: ForwardAction;
13581
+ /** Executes an action that is connected to a display-group */
13582
+ displayGroup?: DisplayGroupAction;
13577
13583
  }
13578
13584
  declare enum ActionType {
13579
13585
  UNKNOWN_ActionType = "UNKNOWN_ActionType",
@@ -13581,11 +13587,15 @@ declare enum ActionType {
13581
13587
  event = "event",
13582
13588
  panel = "panel",
13583
13589
  forward = "forward",
13584
- style = "style"
13590
+ style = "style",
13591
+ displayGroup = "displayGroup"
13585
13592
  }
13586
13593
  /** @enumType */
13587
- type ActionTypeWithLiterals = ActionType | 'UNKNOWN_ActionType' | 'data' | 'event' | 'panel' | 'forward' | 'style';
13588
- /** Represents an action that interacts with a specific data item */
13594
+ type ActionTypeWithLiterals = ActionType | 'UNKNOWN_ActionType' | 'data' | 'event' | 'panel' | 'forward' | 'style' | 'displayGroup';
13595
+ /**
13596
+ * Represents an action that points into a specific data-item-key,
13597
+ * the outcome of clicking such action will be determined by the editor
13598
+ */
13589
13599
  interface DataAction {
13590
13600
  /**
13591
13601
  * Points to the data item within the component’s data structure
@@ -13594,7 +13604,10 @@ interface DataAction {
13594
13604
  */
13595
13605
  dataItemKey?: string;
13596
13606
  }
13597
- /** Represents an action that interacts with a specific style item */
13607
+ /**
13608
+ * Represents an action that points into a specific style-item-key,
13609
+ * the outcome of clicking such action will be determined by the editor
13610
+ */
13598
13611
  interface StyleAction {
13599
13612
  /**
13600
13613
  * Points to the style item within the component’s style structure
@@ -13682,9 +13695,19 @@ declare enum ActionName {
13682
13695
  }
13683
13696
  /** @enumType */
13684
13697
  type ActionNameWithLiterals = ActionName | 'UNKNOWN_ActionName' | 'settings' | 'design' | 'media' | 'manageItems' | 'dashboard' | 'custom' | 'manageMenu';
13698
+ /**
13699
+ * Represents an action that points into a specific display-group-key,
13700
+ * the outcome will make the chosen display group visible to the user for changing the groups values in the component
13701
+ */
13702
+ interface DisplayGroupAction {
13703
+ /**
13704
+ * The display group to be used
13705
+ * @minLength 1
13706
+ * @maxLength 50
13707
+ */
13708
+ displayGroupKey?: string;
13709
+ }
13685
13710
  interface DashboardAction {
13686
- /** Defines whether the action is being displayed */
13687
- hidden?: boolean | null;
13688
13711
  /**
13689
13712
  * The public human-readable name given to the action by the developer.
13690
13713
  * @minLength 4
@@ -13789,7 +13812,7 @@ type SizingTypeWithLiterals = SizingType | 'UNKNOWN_SizingType' | 'content' | 's
13789
13812
  * It is used to control the visibility of style items of elements in the editor.
13790
13813
  * It is used to control the visibility of data items of elements in the editor.
13791
13814
  * It is used to control the visibility of custom actions of elements in the editor.
13792
- * The logical order of filering is done from where the filter is defined.
13815
+ * The logical order of filtering is done from where the filter is defined.
13793
13816
  * Element takes first priority in narrowing the list, then the Preset and last is the State
13794
13817
  */
13795
13818
  interface DisplayFilters {
@@ -13801,6 +13824,8 @@ interface DisplayFilters {
13801
13824
  data?: DisplayFilter;
13802
13825
  /** DisplayFilter for custom actions, defines which custom actions to hide or show, uses the customAction key in the customActions map, optional */
13803
13826
  customActions?: DisplayFilter;
13827
+ /** DisplayFilter for actions, defines which actions to hide or show, uses the key in the action map, optional */
13828
+ actions?: DisplayFilter;
13804
13829
  }
13805
13830
  /**
13806
13831
  * The logic of the display filter is to define the minimal requirement
@@ -13912,6 +13937,279 @@ interface VisibleState {
13912
13937
  */
13913
13938
  elementPath?: string;
13914
13939
  }
13940
+ interface DisplayGroupItem extends DisplayGroupItemSelectedGroupTypeOneOf {
13941
+ /** A group that contains style items defined with cssVariableType */
13942
+ cssDataType?: ItemsGroup;
13943
+ /** A group that contains data items */
13944
+ dataType?: ItemsGroup;
13945
+ /** A group that contains background items */
13946
+ background?: ShorthandGroupBackground;
13947
+ /** A group that contains margin items */
13948
+ margin?: Coordinates;
13949
+ /** A group that contains padding items */
13950
+ padding?: Coordinates;
13951
+ /** A group that contains border items */
13952
+ border?: Border;
13953
+ /** A group that contains border-top items */
13954
+ borderTop?: Border;
13955
+ /** A group that contains border-right items */
13956
+ borderRight?: Border;
13957
+ /** A group that contains border-bottom items */
13958
+ borderBottom?: Border;
13959
+ /** A group that contains border-left items */
13960
+ borderLeft?: Border;
13961
+ /** A group that contains border-inline-start items */
13962
+ borderInlineStart?: Border;
13963
+ /** A group that contains border-inline-end items */
13964
+ borderInlineEnd?: Border;
13965
+ /** A group that contains border-radius items */
13966
+ borderRadius?: Corners;
13967
+ /** A group that contains font items */
13968
+ font?: Font;
13969
+ /** A group that contains text-decoration items */
13970
+ textDecoration?: TextDecoration;
13971
+ /** A group that contains gap items */
13972
+ gap?: Gap;
13973
+ /**
13974
+ * Display name for this Group
13975
+ * @maxLength 20
13976
+ */
13977
+ displayName?: string | null;
13978
+ /** The type of the group, used to determine the group that will be displayed in the editor */
13979
+ groupType?: GroupTypeWithLiterals;
13980
+ }
13981
+ /** @oneof */
13982
+ interface DisplayGroupItemSelectedGroupTypeOneOf {
13983
+ /** A group that contains style items defined with cssVariableType */
13984
+ cssDataType?: ItemsGroup;
13985
+ /** A group that contains data items */
13986
+ dataType?: ItemsGroup;
13987
+ /** A group that contains background items */
13988
+ background?: ShorthandGroupBackground;
13989
+ /** A group that contains margin items */
13990
+ margin?: Coordinates;
13991
+ /** A group that contains padding items */
13992
+ padding?: Coordinates;
13993
+ /** A group that contains border items */
13994
+ border?: Border;
13995
+ /** A group that contains border-top items */
13996
+ borderTop?: Border;
13997
+ /** A group that contains border-right items */
13998
+ borderRight?: Border;
13999
+ /** A group that contains border-bottom items */
14000
+ borderBottom?: Border;
14001
+ /** A group that contains border-left items */
14002
+ borderLeft?: Border;
14003
+ /** A group that contains border-inline-start items */
14004
+ borderInlineStart?: Border;
14005
+ /** A group that contains border-inline-end items */
14006
+ borderInlineEnd?: Border;
14007
+ /** A group that contains border-radius items */
14008
+ borderRadius?: Corners;
14009
+ /** A group that contains font items */
14010
+ font?: Font;
14011
+ /** A group that contains text-decoration items */
14012
+ textDecoration?: TextDecoration;
14013
+ /** A group that contains gap items */
14014
+ gap?: Gap;
14015
+ }
14016
+ declare enum GroupType {
14017
+ /** A group that contains items */
14018
+ UNKNOWN_GroupType = "UNKNOWN_GroupType",
14019
+ /** A group that contains style items defined with cssDataType */
14020
+ cssDataTypeItems = "cssDataTypeItems",
14021
+ /** A group that contains data items */
14022
+ dataItems = "dataItems",
14023
+ /** Style Shorthand Groups */
14024
+ background = "background",
14025
+ margin = "margin",
14026
+ padding = "padding",
14027
+ border = "border",
14028
+ borderTop = "borderTop",
14029
+ borderRight = "borderRight",
14030
+ borderBottom = "borderBottom",
14031
+ borderLeft = "borderLeft",
14032
+ borderRadius = "borderRadius",
14033
+ borderInlineStart = "borderInlineStart",
14034
+ borderInlineEnd = "borderInlineEnd",
14035
+ font = "font",
14036
+ textDecoration = "textDecoration",
14037
+ gap = "gap"
14038
+ }
14039
+ /** @enumType */
14040
+ type GroupTypeWithLiterals = GroupType | 'UNKNOWN_GroupType' | 'cssDataTypeItems' | 'dataItems' | 'background' | 'margin' | 'padding' | 'border' | 'borderTop' | 'borderRight' | 'borderBottom' | 'borderLeft' | 'borderRadius' | 'borderInlineStart' | 'borderInlineEnd' | 'font' | 'textDecoration' | 'gap';
14041
+ interface ItemsGroup {
14042
+ /**
14043
+ * A list of items that should be in this group
14044
+ * @maxSize 300
14045
+ * @maxLength 100
14046
+ */
14047
+ items?: string[];
14048
+ }
14049
+ interface ShorthandGroupBackground {
14050
+ /**
14051
+ * Stores the background-color property of the background shorthand
14052
+ * @maxLength 100
14053
+ */
14054
+ backgroundColor?: string | null;
14055
+ /**
14056
+ * Stores the background-image property of the background shorthand
14057
+ * @maxLength 100
14058
+ */
14059
+ backgroundImage?: string | null;
14060
+ /**
14061
+ * Stores the background-position property of the background shorthand
14062
+ * @maxLength 100
14063
+ */
14064
+ backgroundPosition?: string | null;
14065
+ /**
14066
+ * Stores the background-size property of the background shorthand
14067
+ * @maxLength 100
14068
+ */
14069
+ backgroundSize?: string | null;
14070
+ /**
14071
+ * Stores the background-repeat property of the background shorthand
14072
+ * @maxLength 100
14073
+ */
14074
+ backgroundRepeat?: string | null;
14075
+ /**
14076
+ * Stores the background-origin property of the background shorthand
14077
+ * @maxLength 100
14078
+ */
14079
+ backgroundOrigin?: string | null;
14080
+ /**
14081
+ * Stores the background-clip property of the background shorthand
14082
+ * @maxLength 100
14083
+ */
14084
+ backgroundClip?: string | null;
14085
+ }
14086
+ interface Coordinates {
14087
+ /**
14088
+ * Stores the top coordinate of the property shorthand
14089
+ * @maxLength 100
14090
+ */
14091
+ top?: string | null;
14092
+ /**
14093
+ * Stores the right coordinate of the property shorthand
14094
+ * @maxLength 100
14095
+ */
14096
+ right?: string | null;
14097
+ /**
14098
+ * Stores the bottom coordinate of the property shorthand
14099
+ * @maxLength 100
14100
+ */
14101
+ bottom?: string | null;
14102
+ /**
14103
+ * Stores the left coordinate of the property shorthand
14104
+ * @maxLength 100
14105
+ */
14106
+ left?: string | null;
14107
+ }
14108
+ interface Border {
14109
+ /**
14110
+ * Stores the width property of a border shorthand
14111
+ * @maxLength 100
14112
+ */
14113
+ width?: string | null;
14114
+ /**
14115
+ * Stores the style property of a border shorthand
14116
+ * @maxLength 100
14117
+ */
14118
+ style?: string | null;
14119
+ /**
14120
+ * Stores the color property of a border shorthand
14121
+ * @maxLength 100
14122
+ */
14123
+ color?: string | null;
14124
+ }
14125
+ interface Corners {
14126
+ /**
14127
+ * Stores the top-left property of the shorthand
14128
+ * @maxLength 100
14129
+ */
14130
+ topLeft?: string | null;
14131
+ /**
14132
+ * Stores the top-right property of the shorthand
14133
+ * @maxLength 100
14134
+ */
14135
+ topRight?: string | null;
14136
+ /**
14137
+ * Stores the bottom-right property of the shorthand
14138
+ * @maxLength 100
14139
+ */
14140
+ bottomRight?: string | null;
14141
+ /**
14142
+ * Stores the bottom-left property of the shorthand
14143
+ * @maxLength 100
14144
+ */
14145
+ bottomLeft?: string | null;
14146
+ }
14147
+ interface Font {
14148
+ /**
14149
+ * Stores the font-style property of the font shorthand
14150
+ * @maxLength 100
14151
+ */
14152
+ fontStyle?: string | null;
14153
+ /**
14154
+ * Stores the font-variant property of the font shorthand
14155
+ * @maxLength 100
14156
+ */
14157
+ fontVariant?: string | null;
14158
+ /**
14159
+ * Stores the font-weight property of the font shorthand
14160
+ * @maxLength 100
14161
+ */
14162
+ fontWeight?: string | null;
14163
+ /**
14164
+ * Stores the font-size property of the font shorthand
14165
+ * @maxLength 100
14166
+ */
14167
+ fontSize?: string | null;
14168
+ /**
14169
+ * Stores the line-height property of the font shorthand
14170
+ * @maxLength 100
14171
+ */
14172
+ lineHeight?: string | null;
14173
+ /**
14174
+ * Stores the font-family property of the font shorthand
14175
+ * @maxLength 100
14176
+ */
14177
+ fontFamily?: string | null;
14178
+ }
14179
+ interface TextDecoration {
14180
+ /**
14181
+ * Stores the text-decoration-line property of the text-decoration shorthand
14182
+ * @maxLength 100
14183
+ */
14184
+ textDecorationLine?: string | null;
14185
+ /**
14186
+ * Stores the text-decoration-color property of the text-decoration shorthand
14187
+ * @maxLength 100
14188
+ */
14189
+ textDecorationColor?: string | null;
14190
+ /**
14191
+ * Stores the text-decoration-style property of the text-decoration shorthand
14192
+ * @maxLength 100
14193
+ */
14194
+ textDecorationStyle?: string | null;
14195
+ /**
14196
+ * Stores the text-decoration-thickness property of the text-decoration shorthand
14197
+ * @maxLength 100
14198
+ */
14199
+ textDecorationThickness?: string | null;
14200
+ }
14201
+ interface Gap {
14202
+ /**
14203
+ * Stores the row-gap property of the gap shorthand
14204
+ * @maxLength 100
14205
+ */
14206
+ rowGap?: string | null;
14207
+ /**
14208
+ * Stores the column-gap property of the gap shorthand
14209
+ * @maxLength 100
14210
+ */
14211
+ columnGap?: string | null;
14212
+ }
13915
14213
  interface RefElement {
13916
14214
  /**
13917
14215
  * The type of the referenced element. Must exist in the Wix Dev Center and be fully typed (`appSlug.componentType`).
@@ -15463,4 +15761,4 @@ interface ListDataExtensionSchemasOptions {
15463
15761
  */
15464
15762
  declare function deleteByWhiteListedMetaSite(metaSiteId: string): Promise<NonNullablePaths<DeleteByWhiteListedMetaSiteResponse, `hasMore`>>;
15465
15763
 
15466
- export { type A11y, A11yAttributes, type A11yAttributesWithLiterals, AcceptedDirectMessageType, type AcceptedDirectMessageTypeWithLiterals, AcceptedMessageTypesAcceptedDirectMessageType, type AcceptedMessageTypesAcceptedDirectMessageTypeWithLiterals, AcceptedMessageTypesAcceptedSmsMessageType, type AcceptedMessageTypesAcceptedSmsMessageTypeWithLiterals, AcceptedSmsMessageType, type AcceptedSmsMessageTypeWithLiterals, type Action, type ActionCondition, type ActionEvent, 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 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 ApiSlot, type ApiWidth, type AppConfig, type AppConfiguration, type AppData, type AppDeploymentProviderConfig, type AppEmbedData, type AppEmbedDataAppDataOneOf, type AppEnvironmentProviderConfig, type AppPermissions, type AppPreviewProviderConfig, type AppRuntimeDataCacheEntity, type AppRuntimeDataEvent, AppType, type AppTypeWithLiterals, type ApplicationAutomationComponent, type ApplicationProfile, type ApplicationProfileProviderConfig, Archetype, type ArchetypeWithLiterals, ArrayComponentType, type ArrayComponentTypeWithLiterals, type ArrayItems, type ArrayItemsArrayDataOneOf, type ArrayType, type ArrayTypeArrayItems, type ArrayTypeArrayItemsItemTypeOptionsOneOf, AspectRatio, type AspectRatioWithLiterals, type AssistantSpiConfig, type AudienceProviderConfig, type AudioData, type AuthenticatorConfig, type AutomationMetadata, type AutomationTrigger, 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 BackdropFilter, type BackendWorker, type Background, BackgroundModeEnum, type BackgroundModeEnumWithLiterals, BackgroundType, type BackgroundTypeWithLiterals, type BackofficeActionDeeplink, type BarAlignment, BarAlignmentSelected, type BarAlignmentSelectedWithLiterals, type BaseEventMetadata, type BaseInfo, type BaseInstallation, type Behaviors, type BillingSettingsConfig, BlockType, type BlockTypeWithLiterals, type BlockquoteData, type BlocksData, type BlogPaywallProviderConfig, type BookingData, type BookingPolicyProviderConfig, type BookingsPricingProviderConfig, type BookingsResourceType, type BookingsResourceTypesProviderConfig, type BoolListOptions, BooleanComponentType, type BooleanComponentTypeWithLiterals, type BooleanExperimentExposureRule, type BooleanType, type Border, type BorderColors, type BrandIcons, type BreakPoint, type BreakPointSection, type Breakpoint, 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 CaptionData, type CardStyles, CardStylesType, type CardStylesTypeWithLiterals, type CatalogSPIConfig, type CatalogSyncConfiguration, 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 Color, type ColorData, type ColorDefinition, type ColorSelectLabeled, type ColorSelectLabeledDataOneOf, type Colors, type CommentFilterProviderConfig, type CommentModerationProviderConfig, type CommentsContextProviderConfig, type CommonCustomOption, type CommonImage, type CommunicationChannelConfiguration, type ComponentData, type ComponentDataDataOneOf, type ComponentEnricherConfig, type ComponentInitialSize, type ComponentMetaData, type ComponentModel, type ComponentReferenceDataConfig, type ComponentTranslationAdditionalFieldsConfig, ComponentType, type ComponentTypeWithLiterals, type ComponentsMultilineAddress, type ComponentsValidatorConfig, type Condition, type ConditionBlock, type ConditionNode, type ConditionNodeNodeOneOf, type Conditions, type Configuration, ConfirmationLevel, type ConfirmationLevelWithLiterals, ConnectMethod, type ConnectMethodWithLiterals, 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 ContainerDataOneOf, type ContainerLayout, type ContainerStyleOverrides, ContainerType, type ContainerTypeWithLiterals, type ContentData, type ContentDataOverrides, type ContentProviderConfig, ContentResizeDirection, type ContentResizeDirectionWithLiterals, type Context, type ConversationLimitations, type CoreApps, type CountrySubdivisionListOptions, type CoverImageConfiguration, type CreateDataExtensionSchemaRequest, type CreateDataExtensionSchemaResponse, type CreateNewItemInfo, type CreatedByCacheEntity, Crop, type CropWithLiterals, type CrossSellConfig, CssDataType, type CssDataTypeWithLiterals, type CssNumber, CssPropertyType, type CssPropertyTypeWithLiterals, CssVariableTypeEnumCssDataType, type CssVariableTypeEnumCssDataTypeWithLiterals, type CurrencyCodeListOptions, 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 CustomOption, type CustomPermission, 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 DataExtensionSchema, type DataExtensionSchemaCreatedEnvelope, type DataExtensionSchemaDeletedEnvelope, DataExtensionSchemaState, type DataExtensionSchemaStateWithLiterals, type DataExtensionSchemaUpdatedEnvelope, type DataExtensionsComponentData, type DataItem, type DataItemOverrides, type DataItemSelectedDataTypeOneOf, type DataItems, 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 DeleteByWhiteListedMetaSiteRequest, type DeleteByWhiteListedMetaSiteResponse, type DeleteDemoDataExtensionSchemaRequest, type DeleteDemoDataExtensionSchemaResponse, type DeleteGlobalExtensionSchemaRequest, type DeleteGlobalExtensionSchemaResponse, type DeleteTemplateFields, type DeleteUserDefinedFieldsRequest, type DeleteUserDefinedFieldsResponse, type DeploymentPipelineProviderConfig, type Description, type Design, 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 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 DomainEvent, type DomainEventBodyOneOf, type DomainWithLiterals, type DonationInput, type DonationInputOption, type DrillInListItem, type DrillItem, type DrillItemDataOneOf, type DropDownLabeled, type Dropdown, type DropdownCustomOption, type DropdownField, type DropdownFieldOption, type DropdownOption, type DropshippingProviderSPIConfig, type DtsContent, type DtsDefinitionReference, type DtsDefinitionReferenceDtsDefinitionOneOf, DtsDefinitionType, type DtsDefinitionTypeWithLiterals, type DtsHttpLink, type DurationInputConfiguration, type DurationRenameOptions, type DynamicPriceOptions, type DynamicSiteStructureProviderConfig, type EditableFields, EditableProperties, type EditablePropertiesWithLiterals, type EditorAddon, type EditorBehaviors, type EditorElement, type EditorElementLayout, type EditorPresence, type EditorReactComponent, EffectGroup, type EffectGroupWithLiterals, ElementDisplayOption, type ElementDisplayOptionWithLiterals, type ElementItem, type ElementItemSelectedElementTypeOneOf, type ElementState, type ElementStyleDefaults, 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, type EntityCreatedEvent, type EntityDeletedEvent, type EntityUpdatedEvent, Environment, type EnvironmentWithLiterals, type ErrorReporting, type ErrorReportingArtifact, Escalation, type EscalationWithLiterals, type EventAction, type EventBadgesSpiConfig, type EventData, type EventMetadata, type EventTimeSlotsProviderConfig, type EventTypeProviderConfig, type EventValidationProviderConfig, type Execution, type ExecutionActionExecuteOneOf, ExecutionType, type ExecutionTypeWithLiterals, 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, ExtensionType, type ExtensionTypeWithLiterals, type ExternalDatabaseSpiConfig, type ExternalFilterProviderConfig, type FactorConfig, FactorType, type FactorTypeWithLiterals, type FeedAggregation, type FeedChannels, type FeedChannelsConfig, type FeesSPIConfig, type Field, type FieldFieldTypeOptionsOneOf, type FieldGroup, type FieldOverride, type FieldOverridePropertyTypeOptionsOneOf, type FieldOverrides, FieldType, type FieldTypeWithLiterals, type FieldsOverrides, type FieldsSettings, type FileData, type FileSource, type FileSourceDataOneOf, 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 FixedPositionOptions, type FixedPriceOptions, type FocalPoint, type FontDefinition, type FontFamilyWithColorPicker, type FontSizeData, FontType, type FontTypeWithLiterals, type FormFieldContactInfo, type FormFieldContactInfoAdditionalInfoOneOf, type FormLayout, type FormOverride, type FormOverrideEntityTypeOptionsOneOf, 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 FormsPermissions, type FormsSchemaNamespaceConfig, type FormsSpamSubmissionsNamespaceConfig, type FormsSubmissionsExtensionNamespaceConfig, type FormsSubmissionsNamespaceConfig, type ForwardAction, type ForwardActionActionOneOf, type FreeOptionConfiguration, type FreeTrialConfiguration, type FunctionDefinition, type FunctionRecipe, type FunctionsShopPriceSpiConfig, type GIF, type GIFData, GIFType, type GIFTypeWithLiterals, type GalleryData, type GalleryOptions, type GalleryOptionsLayout, type GalleryOptionsThumbnails, type GbpFeatureConfig, type GenericHookConfig, type GenericHooksConfig, type GenericOptions, type GiftCardProviderConfig, type Gradient, type GradualDeleteCacheEntity, type GradualRolloutCacheEntity, type GradualUpdateCacheEntity, type GridAppFilesTransformerConfig, 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 HelpResources, type HiddenOptions, HookType, type HookTypeWithLiterals, HorizontalDocking, type HorizontalDockingWithLiterals, HostContainerId, type HostContainerIdWithLiterals, type HostedComponent, type HostedPage, type IDPConnectionConfig, type Icon, type IconDataOneOf, IconType, type IconTypeWithLiterals, type IdentificationData, type IdentificationDataIdOneOf, type Illustration, type IllustrationIllustrationOneOf, type Image, type ImageConfig, type ImageData, type ImageDataStyles, ImageFit, type ImageFitWithLiterals, ImageShape, type ImageShapeWithLiterals, type ImageStyles, ImageStylesPosition, type ImageStylesPositionWithLiterals, type Implementation, type ImplementedMethods, ImportanceLevel, type ImportanceLevelWithLiterals, 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, 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 ItemSelection, type ItemSelectionOptions, type ItemStyle, type ItemThumbnail, type ItemThumbnailOptionsOneOf, ItemType, type ItemTypeWithLiterals, type ItemsSelectionProviderConfig, type Keywords, type LanguageTagListOptions, Layout, type LayoutCellData, LayoutType, type LayoutTypeWithLiterals, type LayoutWithLiterals, type LearnMore, 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, type ListDataExtensionSchemasOptions, type ListDataExtensionSchemasRequest, type ListDataExtensionSchemasResponse, ListEventFromCalendars, type ListEventFromCalendarsWithLiterals, type ListValue, type LiveSiteActionDeeplink, type LocalDeliveryComponentData, LockableOperation, type LockableOperationWithLiterals, type Logo, type Logos, type Main, type MainPresets, type MainPropsData, MandatoryField, type MandatoryFieldWithLiterals, type MapData, type MapSettings, MapType, type MapTypeWithLiterals, type Margin, type Margins, type MarketplaceSPIConfig, Maturity, type MaturityWithLiterals, MeasurementSystem, type MeasurementSystemWithLiterals, type Media, type MediaCapabilities, type MediaItem, type MediaItemMediaOneOf, MediaMimeType, type MediaMimeTypeWithLiterals, type MembershipsSPIConfig, type MentionData, type MenuAction, type MenuActionActionOneOf, type MenuDropdown, type MenuLink, type MenuSlot, type MessageContainingTranslatables, type MessageEnvelope, 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, type MultiServiceBookingPolicyProviderConfig, type MultilineAddress, MultilineAddressComponentType, type MultilineAddressComponentTypeOptionsOneOf, type MultilineAddressComponentTypeWithLiterals, type MultilineAddressValidation, type MultilingualTranslationSchema, type MultipleDashboardsComponentData, type Namespace, type NamespaceConfig, 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 ObjectType, type Oembed, type Offset, type OffsetValueOneOf, type OneTimeOptionConfiguration, type OpenComponent, type OpenModalAction, type OperationExecutorConfig, Operator, type OperatorConfiguration, OperatorEnumOperator, type OperatorEnumOperatorWithLiterals, type OperatorWithLiterals, type Option, type OptionDesign, type OptionLayout, type OrCondition, type OrderValue, type OrderedListData, Orientation, type OrientationWithLiterals, type OriginInfo, 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, PaginationMode, type PaginationModeWithLiterals, type Panel, type PanelAction, type PanelActionSelectedPanelTypeOneOf, PanelContentType, type PanelContentTypeWithLiterals, type PanelSelectedContentTypeOneOf, type PanelSize, PanelType, type PanelTypeWithLiterals, type PanoramaOptions, type ParagraphData, type Param, type Parameter, ParameterType, type ParameterTypeWithLiterals, type ParameterValueDefinitionDetailsOneOf, PartialPaymentRestriction, type PartialPaymentRestrictionWithLiterals, type PartialUpdateCacheEntity, ParticipantType, type ParticipantTypeWithLiterals, type PatternsWizard, type Payment, PaymentComponentType, type PaymentComponentTypeOptionsOneOf, type PaymentComponentTypeWithLiterals, type PaymentDateModification, type PaymentMethod, type PaymentMethodMethodOneOf, type PaymentServiceProviderConfig, type PaymentServiceProviderCredentialsField, type PaymentServiceProviderCredentialsFieldFieldOneOf, type PaymentSettingsSPIConfig, type PaymentType, type PaymentsGatewayComponentData, type PayoutsProviderConfig, type PerkValues, type PerksConfiguration, type Permissions, type PhoneConstraints, type PhoneInfo, PhoneInfoTag, type PhoneInfoTagWithLiterals, type PhoneInput, type PingNotificationComponentData, type PingSettingsGroupComponentData, PingSettingsGroupComponentDataState, type PingSettingsGroupComponentDataStateWithLiterals, type PlaceHolder, Placement, type PlacementWithLiterals, type PlanDuration, type PlanFormBenefitsSection, type PlanFormCustomSection, PlanFormDefaultSection, type PlanFormDefaultSectionWithLiterals, type PlanFormInfoSection, type PlanFormInitialValue, type PlanFormPagePermissionsSection, type PlanFormPlanSettingsSection, type PlanFormPreviewSection, type PlanFormPricingAndDurationSection, PlanFormPricingOption, type PlanFormPricingOptionWithLiterals, type PlanFormSection, type PlanFormSectionSectionOneOf, type PlanFormTypeMetadata, PlanPeriodUnit, type PlanPeriodUnitWithLiterals, type PlanPriceData, type PlanPricing, type PlanPricingPricingModelOneOf, type PlanSettingsRowConfiguration, type PlatformHeaderConfig, type PlatfromComponentData, type PlaybackOptions, type PluginConfig, type PluginContainerData, PluginContainerDataAlignment, type PluginContainerDataAlignmentWithLiterals, type PluginContainerDataHeight, type PluginContainerDataWidth, type PluginContainerDataWidthDataOneOf, type PluginInstallationSettings, PluginInterface, type PluginInterfaceWithLiterals, type PluginMarketData, type PluginPlacement, type PolicyConfig, type Poll, type PollData, type PollDataLayout, type PollDesign, type PollDesignBackground, type PollDesignBackgroundBackgroundOneOf, type PollLayout, PollLayoutDirection, type PollLayoutDirectionWithLiterals, PollLayoutType, type PollLayoutTypeWithLiterals, type PollOption, type PollSettings, type Position, type PostLoginConfig, type PreRegisterConfig, type PredefinedExpectedInput, type PredefinedExpectedInputConfiguration, type PredefinedExpectedInputConfigurationTypeOneOf, type PredefinedLabel, type PredefinedValues, type Preset, type PresetEditorPresence, type PresetInfo, type PresetItem, type PresetSize, type PreviewCardPlaceholders, type PreviewConfiguration, type PreviewFields, type PriceSPIConfig, PriceType, type PriceTypeWithLiterals, 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 ProviderAccountServicePluginConfig, type ProviderConfig, type ProviderConfigMessage, type ProviderFilterOptions, type PurchaseValidationsConfig, type QuantityLimit, type RadioButtonLabeled, type RadioGroup, type RadioGroupCustomOption, 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 RedirectOptions, type RefElement, type RefInnerElementDefaults, Region, RegionType, type RegionTypeWithLiterals, type RegionWithLiterals, type ReindexEvent, type ReindexField, type Rel, type RenderOverrides, type ReplaceableOptions, ReplacementType, type ReplacementTypeWithLiterals, type ReplacingOptions, RequestedField, type RequestedFieldWithLiterals, RequiredIndicator, RequiredIndicatorPlacement, type RequiredIndicatorPlacementWithLiterals, type RequiredIndicatorProperties, type RequiredIndicatorWithLiterals, type RequiredOptions, type ResetButton, ResizeDirection, type ResizeDirectionWithLiterals, Resizing, type ResizingWithLiterals, type Resource, type Resources, type ResponsysEmail, type RestaurantsPOSComponentData, type RestoreInfo, 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 RichTextWithIllustrationVertical, type Rule, type RuntimeComponentCacheEntity, type RuntimeComponentCacheEntityComponent, type RuntimeComponentCacheEntityComponentOneOf, type RuntimeComponentCacheEntityExperiment, type RuntimeComponentCacheEntityExperimentExperimentOneOf, type SDKExports, type SDKExportsNpm, 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, 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 ServiceTrigger, type Settings, type SettingsPanel, type SettingsPermissions, type SettingsUrl, type SetupFeeConfiguration, type SharedPlatformMobilePushConfig, type ShippingLabelCarrierSpiConfig, type ShippingProviderConfig, type ShippingRatesConfig, 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 SiteMemberData, 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 StartDateLimitsSPIConfig, type StartDateRulesSPIConfig, type State, StaticContainer, type StaticContainerWithLiterals, type StaticFileComponentData, type StaticFilterOption, type StaticFilterOptions, Status, type StatusWithLiterals, type Step, StorageDomain, type StorageDomainWithLiterals, StorageType, type StorageTypeWithLiterals, StringComponentType, type StringComponentTypeWithLiterals, type StringListOptions, 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 StylesBorder, StylesPosition, type StylesPositionWithLiterals, type SubPage, 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, Target, type TargetWithLiterals, type TaxCalculationConfig, type TaxCalculatorSpiConfig, type TaxCountriesConfig, type TaxGroupsProviderConfig, type TaxIdValidatorConfig, type TaxTypesConfig, type TaxationCategoryProvider, TemplateDefaultColor, type TemplateDefaultColorWithLiterals, TemplateType, type TemplateTypeWithLiterals, type TermsAndConditionsConfiguration, type TermsModalConfiguration, type Text, TextAlignment, type TextAlignmentWithLiterals, type TextData, type TextEnum, 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 TranslatedData, type TranslatedMessageWithIdRepeated, type TranslatedMessageWithUniqueFieldRepeated, type TranslationResources, Trigger, type TriggerFilter, type TriggerProviderSPIConfig, type TriggerWithLiterals, Type, type TypeWithLiterals, type TypedDynamicParam, TypedDynamicParamType, type TypedDynamicParamTypeWithLiterals, type UnifiedLightbox, type UnifiedPage, type UnifiedPageEditorSettings, UnitType, type UnitTypeWithLiterals, type Until, type UpdateDataExtensionSchemaRequest, type UpdateDataExtensionSchemaResponse, UploadFileFormat, type UploadFileFormatWithLiterals, type UpstreamWixCommonImage, type Url, type UrlData, 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 V1ImplementedMethods, type V1Link, type V1LinkDataOneOf, type V1Metadata, type V1SchemaField, type V1TextStyle, type V2CommunicationChannelConfiguration, type V2Condition, type V2ImplementedMethods, type V2Rule, type ValidationTarget, type ValidationsSPIConfig, ValueConstraintType, type ValueConstraintTypeWithLiterals, type VeloActionConfig, type VeloCustomCss, type VeloPublishPipelineTaskProviderConfig, type VelocityEmail, VerticalAlignment, type VerticalAlignmentWithLiterals, VerticalDocking, type VerticalDockingWithLiterals, type Video, type VideoData, ViewMode, type ViewModeWithLiterals, ViewRole, type ViewRoleWithLiterals, type ViewerService, type ViewerServiceAssets, type VisibleState, type VoiceChannel, type VoiceContentKeys, VoteRole, type VoteRoleWithLiterals, type WebComponentData, WebComponentDataElementType, type WebComponentDataElementTypeWithLiterals, type WebFeedChannel, type WebFeedContentKeys, type WebhookComponentData, WebhookIdentityType, type WebhookIdentityTypeWithLiterals, 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 WixApiOptions, WixCodePublishTaskName, type WixCodePublishTaskNameWithLiterals, type WixDependency, type WixFile, WixFileComponentType, type WixFileComponentTypeOptionsOneOf, type WixFileComponentTypeWithLiterals, type WixOfferingComponentData, type WixOfferingComponentDataOfferingOneOf, type WixPagesDomainMapping, type WixUserData, type WixUsersData, 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, createDataExtensionSchema, deleteByWhiteListedMetaSite, listDataExtensionSchemas, onDataExtensionSchemaCreated, onDataExtensionSchemaDeleted, onDataExtensionSchemaUpdated, updateDataExtensionSchema };
15764
+ export { type A11y, A11yAttributes, type A11yAttributesWithLiterals, AcceptedDirectMessageType, type AcceptedDirectMessageTypeWithLiterals, AcceptedMessageTypesAcceptedDirectMessageType, type AcceptedMessageTypesAcceptedDirectMessageTypeWithLiterals, AcceptedMessageTypesAcceptedSmsMessageType, type AcceptedMessageTypesAcceptedSmsMessageTypeWithLiterals, AcceptedSmsMessageType, type AcceptedSmsMessageTypeWithLiterals, type Action, type ActionCondition, type ActionEvent, 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 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 ApiSlot, type ApiWidth, type AppConfig, type AppConfiguration, type AppData, type AppDeploymentProviderConfig, type AppEmbedData, type AppEmbedDataAppDataOneOf, type AppEnvironmentProviderConfig, type AppPermissions, type AppPreviewProviderConfig, type AppRuntimeDataCacheEntity, type AppRuntimeDataEvent, AppType, type AppTypeWithLiterals, type ApplicationAutomationComponent, type ApplicationProfile, type ApplicationProfileProviderConfig, Archetype, type ArchetypeWithLiterals, ArrayComponentType, type ArrayComponentTypeWithLiterals, type ArrayItems, type ArrayItemsArrayDataOneOf, type ArrayType, type ArrayTypeArrayItems, type ArrayTypeArrayItemsItemTypeOptionsOneOf, AspectRatio, type AspectRatioWithLiterals, type AssistantSpiConfig, type AudienceProviderConfig, type AudioData, type AuthenticatorConfig, type AutomationMetadata, type AutomationTrigger, 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 BackdropFilter, type BackendWorker, type Background, BackgroundModeEnum, type BackgroundModeEnumWithLiterals, BackgroundType, type BackgroundTypeWithLiterals, type BackofficeActionDeeplink, type BarAlignment, BarAlignmentSelected, type BarAlignmentSelectedWithLiterals, type BaseEventMetadata, type BaseInfo, type BaseInstallation, type Behaviors, type BillingSettingsConfig, BlockType, type BlockTypeWithLiterals, type BlockquoteData, type BlocksData, type BlogPaywallProviderConfig, type BookingData, type BookingPolicyProviderConfig, type BookingsPricingProviderConfig, type BookingsResourceType, type BookingsResourceTypesProviderConfig, type BoolListOptions, BooleanComponentType, type BooleanComponentTypeWithLiterals, type BooleanExperimentExposureRule, type BooleanType, type Border, type BorderColors, type BrandIcons, type BreakPoint, type BreakPointSection, type Breakpoint, 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 CaptionData, type CardStyles, CardStylesType, type CardStylesTypeWithLiterals, type CatalogSPIConfig, type CatalogSyncConfiguration, 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 Color, type ColorData, type ColorDefinition, type ColorSelectLabeled, type ColorSelectLabeledDataOneOf, type Colors, type CommentFilterProviderConfig, type CommentModerationProviderConfig, type CommentsContextProviderConfig, type CommonCustomOption, type CommonImage, type CommunicationChannelConfiguration, type ComponentData, type ComponentDataDataOneOf, type ComponentEnricherConfig, type ComponentInitialSize, type ComponentMetaData, type ComponentModel, type ComponentReferenceDataConfig, type ComponentTranslationAdditionalFieldsConfig, ComponentType, type ComponentTypeWithLiterals, type ComponentsMultilineAddress, type ComponentsValidatorConfig, type Condition, type ConditionBlock, type ConditionNode, type ConditionNodeNodeOneOf, type Conditions, type Configuration, ConfirmationLevel, type ConfirmationLevelWithLiterals, ConnectMethod, type ConnectMethodWithLiterals, 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 ContainerDataOneOf, type ContainerLayout, type ContainerStyleOverrides, ContainerType, type ContainerTypeWithLiterals, type ContentData, type ContentDataOverrides, type ContentProviderConfig, ContentResizeDirection, type ContentResizeDirectionWithLiterals, type Context, type ConversationLimitations, type Coordinates, type CoreApps, type Corners, type CountrySubdivisionListOptions, type CoverImageConfiguration, type CreateDataExtensionSchemaRequest, type CreateDataExtensionSchemaResponse, type CreateNewItemInfo, type CreatedByCacheEntity, Crop, type CropWithLiterals, type CrossSellConfig, CssDataType, type CssDataTypeWithLiterals, type CssNumber, CssPropertyType, type CssPropertyTypeWithLiterals, CssVariableTypeEnumCssDataType, type CssVariableTypeEnumCssDataTypeWithLiterals, type CurrencyCodeListOptions, 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 CustomOption, type CustomPermission, 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 DataExtensionSchema, type DataExtensionSchemaCreatedEnvelope, type DataExtensionSchemaDeletedEnvelope, DataExtensionSchemaState, type DataExtensionSchemaStateWithLiterals, type DataExtensionSchemaUpdatedEnvelope, type DataExtensionsComponentData, type DataItem, type DataItemOverrides, type DataItemSelectedDataTypeOneOf, type DataItems, 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 DeleteByWhiteListedMetaSiteRequest, type DeleteByWhiteListedMetaSiteResponse, type DeleteDemoDataExtensionSchemaRequest, type DeleteDemoDataExtensionSchemaResponse, type DeleteGlobalExtensionSchemaRequest, type DeleteGlobalExtensionSchemaResponse, type DeleteTemplateFields, type DeleteUserDefinedFieldsRequest, type DeleteUserDefinedFieldsResponse, type DeploymentPipelineProviderConfig, type Description, type Design, 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 DomainEvent, type DomainEventBodyOneOf, type DomainWithLiterals, type DonationInput, type DonationInputOption, type DrillInListItem, type DrillItem, type DrillItemDataOneOf, type DropDownLabeled, type Dropdown, type DropdownCustomOption, type DropdownField, type DropdownFieldOption, type DropdownOption, type DropshippingProviderSPIConfig, type DtsContent, type DtsDefinitionReference, type DtsDefinitionReferenceDtsDefinitionOneOf, DtsDefinitionType, type DtsDefinitionTypeWithLiterals, type DtsHttpLink, type DurationInputConfiguration, type DurationRenameOptions, type DynamicPriceOptions, type DynamicSiteStructureProviderConfig, type EditableFields, EditableProperties, type EditablePropertiesWithLiterals, type EditorAddon, type EditorBehaviors, type EditorElement, type EditorElementLayout, type EditorPresence, type EditorReactComponent, EffectGroup, type EffectGroupWithLiterals, ElementDisplayOption, type ElementDisplayOptionWithLiterals, type ElementItem, type ElementItemSelectedElementTypeOneOf, type ElementState, type ElementStyleDefaults, 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, type EntityCreatedEvent, type EntityDeletedEvent, type EntityUpdatedEvent, Environment, type EnvironmentWithLiterals, type ErrorReporting, type ErrorReportingArtifact, Escalation, type EscalationWithLiterals, type EventAction, type EventBadgesSpiConfig, type EventData, type EventMetadata, type EventTimeSlotsProviderConfig, type EventTypeProviderConfig, type EventValidationProviderConfig, type Execution, type ExecutionActionExecuteOneOf, ExecutionType, type ExecutionTypeWithLiterals, 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, ExtensionType, type ExtensionTypeWithLiterals, type ExternalDatabaseSpiConfig, type ExternalFilterProviderConfig, type FactorConfig, FactorType, type FactorTypeWithLiterals, type FeedAggregation, type FeedChannels, type FeedChannelsConfig, type FeesSPIConfig, type Field, type FieldFieldTypeOptionsOneOf, type FieldGroup, type FieldOverride, type FieldOverridePropertyTypeOptionsOneOf, type FieldOverrides, FieldType, type FieldTypeWithLiterals, type FieldsOverrides, type FieldsSettings, type FileData, type FileSource, type FileSourceDataOneOf, 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 FixedPositionOptions, type FixedPriceOptions, type FocalPoint, type Font, type FontDefinition, type FontFamilyWithColorPicker, type FontSizeData, FontType, type FontTypeWithLiterals, type FormFieldContactInfo, type FormFieldContactInfoAdditionalInfoOneOf, type FormLayout, type FormOverride, type FormOverrideEntityTypeOptionsOneOf, 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 FormsPermissions, type FormsSchemaNamespaceConfig, type FormsSpamSubmissionsNamespaceConfig, type FormsSubmissionsExtensionNamespaceConfig, type FormsSubmissionsNamespaceConfig, type ForwardAction, type ForwardActionActionOneOf, type FreeOptionConfiguration, type FreeTrialConfiguration, type FunctionDefinition, type FunctionRecipe, 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 GiftCardProviderConfig, type Gradient, type GradualDeleteCacheEntity, type GradualRolloutCacheEntity, type GradualUpdateCacheEntity, type GridAppFilesTransformerConfig, 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 HelpResources, type HiddenOptions, HookType, type HookTypeWithLiterals, HorizontalDocking, type HorizontalDockingWithLiterals, HostContainerId, type HostContainerIdWithLiterals, type HostedComponent, type HostedPage, type IDPConnectionConfig, type Icon, type IconDataOneOf, IconType, type IconTypeWithLiterals, type IdentificationData, type IdentificationDataIdOneOf, type Illustration, type IllustrationIllustrationOneOf, type Image, type ImageConfig, type ImageData, type ImageDataStyles, type ImageDataStylesBorder, ImageFit, type ImageFitWithLiterals, ImageShape, type ImageShapeWithLiterals, type ImageStyles, ImageStylesPosition, type ImageStylesPositionWithLiterals, type Implementation, type ImplementedMethods, ImportanceLevel, type ImportanceLevelWithLiterals, 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, 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 ItemSelection, type ItemSelectionOptions, type ItemStyle, type ItemThumbnail, type ItemThumbnailOptionsOneOf, ItemType, type ItemTypeWithLiterals, type ItemsGroup, type ItemsSelectionProviderConfig, type Keywords, type LanguageTagListOptions, Layout, type LayoutCellData, LayoutType, type LayoutTypeWithLiterals, type LayoutWithLiterals, type LearnMore, 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, type ListDataExtensionSchemasOptions, type ListDataExtensionSchemasRequest, type ListDataExtensionSchemasResponse, ListEventFromCalendars, type ListEventFromCalendarsWithLiterals, type ListValue, type LiveSiteActionDeeplink, type LocalDeliveryComponentData, LockableOperation, type LockableOperationWithLiterals, type Logo, type Logos, type Main, type MainPresets, type MainPropsData, MandatoryField, type MandatoryFieldWithLiterals, type MapData, type MapSettings, MapType, type MapTypeWithLiterals, type Margin, type Margins, type MarketplaceSPIConfig, Maturity, type MaturityWithLiterals, MeasurementSystem, type MeasurementSystemWithLiterals, type Media, type MediaCapabilities, type MediaItem, type MediaItemMediaOneOf, MediaMimeType, type MediaMimeTypeWithLiterals, type MembershipsSPIConfig, type MentionData, type MenuAction, type MenuActionActionOneOf, type MenuDropdown, type MenuLink, type MenuSlot, type MessageContainingTranslatables, type MessageEnvelope, 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, type MultiServiceBookingPolicyProviderConfig, type MultilineAddress, MultilineAddressComponentType, type MultilineAddressComponentTypeOptionsOneOf, type MultilineAddressComponentTypeWithLiterals, type MultilineAddressValidation, type MultilingualTranslationSchema, type MultipleDashboardsComponentData, type Namespace, type NamespaceConfig, 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 ObjectType, type Oembed, type Offset, type OffsetValueOneOf, type OneTimeOptionConfiguration, type OpenComponent, type OpenModalAction, type OperationExecutorConfig, Operator, type OperatorConfiguration, OperatorEnumOperator, type OperatorEnumOperatorWithLiterals, type OperatorWithLiterals, type Option, type OptionDesign, type OptionLayout, type OrCondition, type OrderValue, type OrderedListData, Orientation, type OrientationWithLiterals, type OriginInfo, 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, PaginationMode, type PaginationModeWithLiterals, type Panel, type PanelAction, type PanelActionSelectedPanelTypeOneOf, PanelContentType, type PanelContentTypeWithLiterals, type PanelSelectedContentTypeOneOf, type PanelSize, PanelType, type PanelTypeWithLiterals, type PanoramaOptions, type ParagraphData, type Param, type Parameter, ParameterType, type ParameterTypeWithLiterals, type ParameterValueDefinitionDetailsOneOf, PartialPaymentRestriction, type PartialPaymentRestrictionWithLiterals, type PartialUpdateCacheEntity, ParticipantType, type ParticipantTypeWithLiterals, type PatternsWizard, type Payment, PaymentComponentType, type PaymentComponentTypeOptionsOneOf, type PaymentComponentTypeWithLiterals, type PaymentDateModification, type PaymentMethod, type PaymentMethodMethodOneOf, type PaymentServiceProviderConfig, type PaymentServiceProviderCredentialsField, type PaymentServiceProviderCredentialsFieldFieldOneOf, type PaymentSettingsSPIConfig, type PaymentType, type PaymentsGatewayComponentData, type PayoutsProviderConfig, type PerkValues, type PerksConfiguration, type Permissions, type PhoneConstraints, type PhoneInfo, PhoneInfoTag, type PhoneInfoTagWithLiterals, type PhoneInput, type PingNotificationComponentData, type PingSettingsGroupComponentData, PingSettingsGroupComponentDataState, type PingSettingsGroupComponentDataStateWithLiterals, type PlaceHolder, Placement, type PlacementWithLiterals, type PlanDuration, type PlanFormBenefitsSection, type PlanFormCustomSection, PlanFormDefaultSection, type PlanFormDefaultSectionWithLiterals, type PlanFormInfoSection, type PlanFormInitialValue, type PlanFormPagePermissionsSection, type PlanFormPlanSettingsSection, type PlanFormPreviewSection, type PlanFormPricingAndDurationSection, PlanFormPricingOption, type PlanFormPricingOptionWithLiterals, type PlanFormSection, type PlanFormSectionSectionOneOf, type PlanFormTypeMetadata, PlanPeriodUnit, type PlanPeriodUnitWithLiterals, type PlanPriceData, type PlanPricing, type PlanPricingPricingModelOneOf, type PlanSettingsRowConfiguration, type PlatformHeaderConfig, type PlatfromComponentData, type PlaybackOptions, type PluginConfig, type PluginContainerData, PluginContainerDataAlignment, type PluginContainerDataAlignmentWithLiterals, type PluginContainerDataHeight, type PluginContainerDataWidth, type PluginContainerDataWidthDataOneOf, type PluginInstallationSettings, PluginInterface, type PluginInterfaceWithLiterals, type PluginMarketData, type PluginPlacement, type PolicyConfig, type Poll, type PollData, type PollDataLayout, type PollDesign, type PollDesignBackground, type PollDesignBackgroundBackgroundOneOf, type PollLayout, PollLayoutDirection, type PollLayoutDirectionWithLiterals, PollLayoutType, type PollLayoutTypeWithLiterals, type PollOption, type PollSettings, type Position, type PostLoginConfig, type PreRegisterConfig, type PredefinedExpectedInput, type PredefinedExpectedInputConfiguration, type PredefinedExpectedInputConfigurationTypeOneOf, type PredefinedLabel, type PredefinedValues, type Preset, type PresetEditorPresence, type PresetInfo, type PresetItem, type PresetSize, type PreviewCardPlaceholders, type PreviewConfiguration, type PreviewFields, type PriceSPIConfig, PriceType, type PriceTypeWithLiterals, 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 ProviderAccountServicePluginConfig, type ProviderConfig, type ProviderConfigMessage, type ProviderFilterOptions, type PurchaseValidationsConfig, type QuantityLimit, type RadioButtonLabeled, type RadioGroup, type RadioGroupCustomOption, 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 RedirectOptions, type RefElement, type RefInnerElementDefaults, Region, RegionType, type RegionTypeWithLiterals, type RegionWithLiterals, type ReindexEvent, type ReindexField, type Rel, type RenderOverrides, type ReplaceableOptions, ReplacementType, type ReplacementTypeWithLiterals, type ReplacingOptions, RequestedField, type RequestedFieldWithLiterals, RequiredIndicator, RequiredIndicatorPlacement, type RequiredIndicatorPlacementWithLiterals, type RequiredIndicatorProperties, type RequiredIndicatorWithLiterals, type RequiredOptions, type ResetButton, ResizeDirection, type ResizeDirectionWithLiterals, Resizing, type ResizingWithLiterals, type Resource, type Resources, type ResponsysEmail, type RestaurantsPOSComponentData, type RestoreInfo, 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 RichTextWithIllustrationVertical, type Rule, type RuntimeComponentCacheEntity, type RuntimeComponentCacheEntityComponent, type RuntimeComponentCacheEntityComponentOneOf, type RuntimeComponentCacheEntityExperiment, type RuntimeComponentCacheEntityExperimentExperimentOneOf, type SDKExports, type SDKExportsNpm, 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, 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 ServiceTrigger, type Settings, type SettingsPanel, type SettingsPermissions, type SettingsUrl, type SetupFeeConfiguration, 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 SiteMemberData, 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 StartDateLimitsSPIConfig, type StartDateRulesSPIConfig, type State, StaticContainer, type StaticContainerWithLiterals, type StaticFileComponentData, type StaticFilterOption, type StaticFilterOptions, Status, type StatusWithLiterals, type Step, StorageDomain, type StorageDomainWithLiterals, StorageType, type StorageTypeWithLiterals, StringComponentType, type StringComponentTypeWithLiterals, type StringListOptions, 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 StylesBorder, StylesPosition, type StylesPositionWithLiterals, type SubPage, 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, Target, type TargetWithLiterals, type TaxCalculationConfig, type TaxCalculatorSpiConfig, type TaxCountriesConfig, type TaxGroupsProviderConfig, type TaxIdValidatorConfig, type TaxTypesConfig, type TaxationCategoryProvider, TemplateDefaultColor, type TemplateDefaultColorWithLiterals, TemplateType, type TemplateTypeWithLiterals, type TermsAndConditionsConfiguration, type TermsModalConfiguration, type Text, TextAlignment, type TextAlignmentWithLiterals, type TextData, type TextDecoration, type TextEnum, 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 TranslatedData, type TranslatedMessageWithIdRepeated, type TranslatedMessageWithUniqueFieldRepeated, type TranslationResources, Trigger, type TriggerFilter, type TriggerProviderSPIConfig, type TriggerWithLiterals, Type, type TypeWithLiterals, type TypedDynamicParam, TypedDynamicParamType, type TypedDynamicParamTypeWithLiterals, type UnifiedLightbox, type UnifiedPage, type UnifiedPageEditorSettings, UnitType, type UnitTypeWithLiterals, type Until, type UpdateDataExtensionSchemaRequest, type UpdateDataExtensionSchemaResponse, UploadFileFormat, type UploadFileFormatWithLiterals, type UpstreamWixCommonImage, type Url, type UrlData, 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 V1ImplementedMethods, type V1Link, type V1LinkDataOneOf, type V1Metadata, type V1SchemaField, type V1TextStyle, type V2CommunicationChannelConfiguration, type V2Condition, type V2ImplementedMethods, type V2Rule, type ValidationTarget, type ValidationsSPIConfig, ValueConstraintType, type ValueConstraintTypeWithLiterals, type VeloActionConfig, type VeloCustomCss, type VeloPublishPipelineTaskProviderConfig, type VelocityEmail, VerticalAlignment, type VerticalAlignmentWithLiterals, VerticalDocking, type VerticalDockingWithLiterals, type Video, type VideoData, ViewMode, type ViewModeWithLiterals, ViewRole, type ViewRoleWithLiterals, type ViewerService, type ViewerServiceAssets, type VisibleState, type VoiceChannel, type VoiceContentKeys, VoteRole, type VoteRoleWithLiterals, type WebComponentData, WebComponentDataElementType, type WebComponentDataElementTypeWithLiterals, type WebFeedChannel, type WebFeedContentKeys, type WebhookComponentData, WebhookIdentityType, type WebhookIdentityTypeWithLiterals, 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 WixApiOptions, WixCodePublishTaskName, type WixCodePublishTaskNameWithLiterals, type WixDependency, type WixFile, WixFileComponentType, type WixFileComponentTypeOptionsOneOf, type WixFileComponentTypeWithLiterals, type WixOfferingComponentData, type WixOfferingComponentDataOfferingOneOf, type WixPagesDomainMapping, type WixUserData, type WixUsersData, 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, createDataExtensionSchema, deleteByWhiteListedMetaSite, listDataExtensionSchemas, onDataExtensionSchemaCreated, onDataExtensionSchemaDeleted, onDataExtensionSchemaUpdated, updateDataExtensionSchema };
@@ -101,6 +101,7 @@ __export(index_typings_exports, {
101
101
  FontType: () => FontType,
102
102
  Format: () => Format,
103
103
  GIFType: () => GIFType,
104
+ GroupType: () => GroupType,
104
105
  HTMLDataSource: () => HTMLDataSource,
105
106
  HTTPMethod: () => HTTPMethod,
106
107
  HeightMode: () => HeightMode,
@@ -2335,6 +2336,7 @@ var ActionType = /* @__PURE__ */ ((ActionType2) => {
2335
2336
  ActionType2["panel"] = "panel";
2336
2337
  ActionType2["forward"] = "forward";
2337
2338
  ActionType2["style"] = "style";
2339
+ ActionType2["displayGroup"] = "displayGroup";
2338
2340
  return ActionType2;
2339
2341
  })(ActionType || {});
2340
2342
  var PanelType = /* @__PURE__ */ ((PanelType2) => {
@@ -2409,6 +2411,26 @@ var NativeStateType = /* @__PURE__ */ ((NativeStateType2) => {
2409
2411
  NativeStateType2["invalid"] = "invalid";
2410
2412
  return NativeStateType2;
2411
2413
  })(NativeStateType || {});
2414
+ var GroupType = /* @__PURE__ */ ((GroupType2) => {
2415
+ GroupType2["UNKNOWN_GroupType"] = "UNKNOWN_GroupType";
2416
+ GroupType2["cssDataTypeItems"] = "cssDataTypeItems";
2417
+ GroupType2["dataItems"] = "dataItems";
2418
+ GroupType2["background"] = "background";
2419
+ GroupType2["margin"] = "margin";
2420
+ GroupType2["padding"] = "padding";
2421
+ GroupType2["border"] = "border";
2422
+ GroupType2["borderTop"] = "borderTop";
2423
+ GroupType2["borderRight"] = "borderRight";
2424
+ GroupType2["borderBottom"] = "borderBottom";
2425
+ GroupType2["borderLeft"] = "borderLeft";
2426
+ GroupType2["borderRadius"] = "borderRadius";
2427
+ GroupType2["borderInlineStart"] = "borderInlineStart";
2428
+ GroupType2["borderInlineEnd"] = "borderInlineEnd";
2429
+ GroupType2["font"] = "font";
2430
+ GroupType2["textDecoration"] = "textDecoration";
2431
+ GroupType2["gap"] = "gap";
2432
+ return GroupType2;
2433
+ })(GroupType || {});
2412
2434
  var ContentResizeDirection = /* @__PURE__ */ ((ContentResizeDirection2) => {
2413
2435
  ContentResizeDirection2["UNKNOWN_ContentResizeDirection"] = "UNKNOWN_ContentResizeDirection";
2414
2436
  ContentResizeDirection2["horizontal"] = "horizontal";
@@ -2720,6 +2742,7 @@ async function deleteByWhiteListedMetaSite2(metaSiteId) {
2720
2742
  FontType,
2721
2743
  Format,
2722
2744
  GIFType,
2745
+ GroupType,
2723
2746
  HTMLDataSource,
2724
2747
  HTTPMethod,
2725
2748
  HeightMode,