@wix/auto_sdk_data-extension-schema_schemas 1.0.172 → 1.0.173

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.
Files changed (37) hide show
  1. package/build/cjs/index.d.ts +1 -1
  2. package/build/cjs/index.js +35 -5
  3. package/build/cjs/index.js.map +1 -1
  4. package/build/cjs/index.typings.d.ts +75 -12
  5. package/build/cjs/index.typings.js +35 -5
  6. package/build/cjs/index.typings.js.map +1 -1
  7. package/build/cjs/meta.d.ts +75 -12
  8. package/build/cjs/meta.js +35 -5
  9. package/build/cjs/meta.js.map +1 -1
  10. package/build/es/index.d.mts +1 -1
  11. package/build/es/index.mjs +32 -5
  12. package/build/es/index.mjs.map +1 -1
  13. package/build/es/index.typings.d.mts +75 -12
  14. package/build/es/index.typings.mjs +32 -5
  15. package/build/es/index.typings.mjs.map +1 -1
  16. package/build/es/meta.d.mts +75 -12
  17. package/build/es/meta.mjs +32 -5
  18. package/build/es/meta.mjs.map +1 -1
  19. package/build/internal/cjs/index.d.ts +1 -1
  20. package/build/internal/cjs/index.js +35 -5
  21. package/build/internal/cjs/index.js.map +1 -1
  22. package/build/internal/cjs/index.typings.d.ts +75 -12
  23. package/build/internal/cjs/index.typings.js +35 -5
  24. package/build/internal/cjs/index.typings.js.map +1 -1
  25. package/build/internal/cjs/meta.d.ts +75 -12
  26. package/build/internal/cjs/meta.js +35 -5
  27. package/build/internal/cjs/meta.js.map +1 -1
  28. package/build/internal/es/index.d.mts +1 -1
  29. package/build/internal/es/index.mjs +32 -5
  30. package/build/internal/es/index.mjs.map +1 -1
  31. package/build/internal/es/index.typings.d.mts +75 -12
  32. package/build/internal/es/index.typings.mjs +32 -5
  33. package/build/internal/es/index.typings.mjs.map +1 -1
  34. package/build/internal/es/meta.d.mts +75 -12
  35. package/build/internal/es/meta.mjs +32 -5
  36. package/build/internal/es/meta.mjs.map +1 -1
  37. package/package.json +4 -4
@@ -1825,10 +1825,12 @@ interface DefaultPresets {
1825
1825
  declare enum StaticContainer {
1826
1826
  UNKNOWN_CONTAINER = "UNKNOWN_CONTAINER",
1827
1827
  /** Widget should be installed in the homepage */
1828
- HOMEPAGE = "HOMEPAGE"
1828
+ HOMEPAGE = "HOMEPAGE",
1829
+ /** Show widget on all pages */
1830
+ GLOBAL_PAGE = "GLOBAL_PAGE"
1829
1831
  }
1830
1832
  /** @enumType */
1831
- type StaticContainerWithLiterals = StaticContainer | 'UNKNOWN_CONTAINER' | 'HOMEPAGE';
1833
+ type StaticContainerWithLiterals = StaticContainer | 'UNKNOWN_CONTAINER' | 'HOMEPAGE' | 'GLOBAL_PAGE';
1832
1834
  interface ComponentModel {
1833
1835
  /** The component type of the builder component. */
1834
1836
  componentType?: string;
@@ -4853,10 +4855,11 @@ declare enum Tag {
4853
4855
  PIPELINE_LINKED_ENTITY = "PIPELINE_LINKED_ENTITY",
4854
4856
  GET_PAID = "GET_PAID",
4855
4857
  PIPELINE_CARD_CATALOG_ITEM = "PIPELINE_CARD_CATALOG_ITEM",
4856
- OWNER_CHECKOUT = "OWNER_CHECKOUT"
4858
+ OWNER_CHECKOUT = "OWNER_CHECKOUT",
4859
+ ECOM_PREVIEW_CHECKOUT = "ECOM_PREVIEW_CHECKOUT"
4857
4860
  }
4858
4861
  /** @enumType */
4859
- type TagWithLiterals = Tag | 'UNKNOWN_TAG' | 'EMBEDDABLE' | 'ECOM_EDIT_ORDER' | 'ECOM_CREATE_ORDER' | 'INBOX' | 'ECOM_CREATE_PAY_LINK' | 'ECOM_DELIVERY_PROFILES' | 'ADD_TO_CATEGORY' | 'MY_BUSINESS' | 'PIPELINE_LINKED_ENTITY' | 'GET_PAID' | 'PIPELINE_CARD_CATALOG_ITEM' | 'OWNER_CHECKOUT';
4862
+ type TagWithLiterals = Tag | 'UNKNOWN_TAG' | 'EMBEDDABLE' | 'ECOM_EDIT_ORDER' | 'ECOM_CREATE_ORDER' | 'INBOX' | 'ECOM_CREATE_PAY_LINK' | 'ECOM_DELIVERY_PROFILES' | 'ADD_TO_CATEGORY' | 'MY_BUSINESS' | 'PIPELINE_LINKED_ENTITY' | 'GET_PAID' | 'PIPELINE_CARD_CATALOG_ITEM' | 'OWNER_CHECKOUT' | 'ECOM_PREVIEW_CHECKOUT';
4860
4863
  declare enum FilterSelectionType {
4861
4864
  UNKNOWN_SELECTION = "UNKNOWN_SELECTION",
4862
4865
  /** Allow to select only a single item */
@@ -5444,6 +5447,8 @@ interface Node extends NodeDataOneOf {
5444
5447
  layoutData?: LayoutData;
5445
5448
  /** Data for a cell node. */
5446
5449
  layoutCellData?: LayoutCellData;
5450
+ /** Data for a shape node. */
5451
+ shapeData?: ShapeData;
5447
5452
  /** Node type. Use `APP_EMBED` for nodes that embed content from other Wix apps. Use `EMBED` to embed content in [oEmbed](https://oembed.com/) format. */
5448
5453
  type?: NodeTypeWithLiterals;
5449
5454
  /** Node ID. */
@@ -5511,6 +5516,8 @@ interface NodeDataOneOf {
5511
5516
  layoutData?: LayoutData;
5512
5517
  /** Data for a cell node. */
5513
5518
  layoutCellData?: LayoutCellData;
5519
+ /** Data for a shape node. */
5520
+ shapeData?: ShapeData;
5514
5521
  }
5515
5522
  declare enum NodeType {
5516
5523
  PARAGRAPH = "PARAGRAPH",
@@ -5546,10 +5553,11 @@ declare enum NodeType {
5546
5553
  AUDIO = "AUDIO",
5547
5554
  CAPTION = "CAPTION",
5548
5555
  LAYOUT = "LAYOUT",
5549
- LAYOUT_CELL = "LAYOUT_CELL"
5556
+ LAYOUT_CELL = "LAYOUT_CELL",
5557
+ SHAPE = "SHAPE"
5550
5558
  }
5551
5559
  /** @enumType */
5552
- type NodeTypeWithLiterals = NodeType | 'PARAGRAPH' | 'TEXT' | 'HEADING' | 'BULLETED_LIST' | 'ORDERED_LIST' | 'LIST_ITEM' | 'BLOCKQUOTE' | 'CODE_BLOCK' | 'VIDEO' | 'DIVIDER' | 'FILE' | 'GALLERY' | 'GIF' | 'HTML' | 'IMAGE' | 'LINK_PREVIEW' | 'MAP' | 'POLL' | 'APP_EMBED' | 'BUTTON' | 'COLLAPSIBLE_LIST' | 'TABLE' | 'EMBED' | 'COLLAPSIBLE_ITEM' | 'COLLAPSIBLE_ITEM_TITLE' | 'COLLAPSIBLE_ITEM_BODY' | 'TABLE_CELL' | 'TABLE_ROW' | 'EXTERNAL' | 'AUDIO' | 'CAPTION' | 'LAYOUT' | 'LAYOUT_CELL';
5560
+ type NodeTypeWithLiterals = NodeType | 'PARAGRAPH' | 'TEXT' | 'HEADING' | 'BULLETED_LIST' | 'ORDERED_LIST' | 'LIST_ITEM' | 'BLOCKQUOTE' | 'CODE_BLOCK' | 'VIDEO' | 'DIVIDER' | 'FILE' | 'GALLERY' | 'GIF' | 'HTML' | 'IMAGE' | 'LINK_PREVIEW' | 'MAP' | 'POLL' | 'APP_EMBED' | 'BUTTON' | 'COLLAPSIBLE_LIST' | 'TABLE' | 'EMBED' | 'COLLAPSIBLE_ITEM' | 'COLLAPSIBLE_ITEM_TITLE' | 'COLLAPSIBLE_ITEM_BODY' | 'TABLE_CELL' | 'TABLE_ROW' | 'EXTERNAL' | 'AUDIO' | 'CAPTION' | 'LAYOUT' | 'LAYOUT_CELL' | 'SHAPE';
5553
5561
  interface NodeStyle {
5554
5562
  /** The top padding value in pixels. */
5555
5563
  paddingTop?: string | null;
@@ -7216,6 +7224,23 @@ interface LayoutCellData {
7216
7224
  /** Size of the cell in 12 columns grid. */
7217
7225
  colSpan?: number | null;
7218
7226
  }
7227
+ interface ShapeData {
7228
+ /** Styling for the shape's container. */
7229
+ containerData?: PluginContainerData;
7230
+ /** Shape file details. */
7231
+ shape?: Media;
7232
+ /** Styling for the shape. */
7233
+ styles?: ShapeDataStyles;
7234
+ }
7235
+ interface ShapeDataStyles {
7236
+ /**
7237
+ * Shape fill color as a hexadecimal value.
7238
+ * @format COLOR_HEX
7239
+ */
7240
+ color?: string | null;
7241
+ /** Map of original color keys to their new color values. */
7242
+ colors?: Record<string, string>;
7243
+ }
7219
7244
  interface V1Metadata {
7220
7245
  /** Schema version. */
7221
7246
  version?: number;
@@ -12624,6 +12649,15 @@ interface CustomInitialPreset {
12624
12649
  /** Indicates whether the custom initial preset with a custom function template is enabled; if false, the blank function template is used */
12625
12650
  enabled?: boolean | null;
12626
12651
  }
12652
+ declare enum Scope {
12653
+ UNKNOWN_SCOPE = "UNKNOWN_SCOPE",
12654
+ /** One function instance is allowed per site */
12655
+ SITE = "SITE",
12656
+ /** One function instance is allowed per entity */
12657
+ ENTITY = "ENTITY"
12658
+ }
12659
+ /** @enumType */
12660
+ type ScopeWithLiterals = Scope | 'UNKNOWN_SCOPE' | 'SITE' | 'ENTITY';
12627
12661
  /**
12628
12662
  * Function definition
12629
12663
  * IMPORTANT! Initial product will support only single function definition
@@ -12651,6 +12685,8 @@ interface Configuration {
12651
12685
  spi?: Spi;
12652
12686
  /** The custom initial preset to use when building a function from scratch */
12653
12687
  customInitialPreset?: CustomInitialPreset;
12688
+ /** Scope of the function when multiple_instances_allowed is false */
12689
+ scope?: ScopeWithLiterals;
12654
12690
  }
12655
12691
  interface Description {
12656
12692
  /** @maxLength 600 */
@@ -13631,7 +13667,7 @@ interface AudienceProviderConfig {
13631
13667
  * Define the scopes which the provider audience is relevant
13632
13668
  * @maxSize 10
13633
13669
  */
13634
- scopes?: ScopeWithLiterals[];
13670
+ scopes?: V1ScopeWithLiterals[];
13635
13671
  }
13636
13672
  declare enum ParticipantType {
13637
13673
  UNKNOWN_TYPE = "UNKNOWN_TYPE",
@@ -13685,14 +13721,14 @@ interface ImplementedMethods {
13685
13721
  /** Implements countParticipants */
13686
13722
  countParticipants?: boolean;
13687
13723
  }
13688
- declare enum Scope {
13724
+ declare enum V1Scope {
13689
13725
  /** Provider audience is available only in scope of specific site */
13690
13726
  SPECIFIC_SITE = "SPECIFIC_SITE",
13691
13727
  /** Provider audience is available only in scope of non specific site */
13692
13728
  NON_SPECIFIC_SITE = "NON_SPECIFIC_SITE"
13693
13729
  }
13694
13730
  /** @enumType */
13695
- type ScopeWithLiterals = Scope | 'SPECIFIC_SITE' | 'NON_SPECIFIC_SITE';
13731
+ type V1ScopeWithLiterals = V1Scope | 'SPECIFIC_SITE' | 'NON_SPECIFIC_SITE';
13696
13732
  /** Config for the Price SPI */
13697
13733
  interface PriceSPIConfig {
13698
13734
  /**
@@ -16772,12 +16808,37 @@ interface InstallationInfo extends InstallationInfoTargetContainerOneOf {
16772
16808
  presets?: DefaultPresets;
16773
16809
  /** Initial size with which the component should be added to the stage */
16774
16810
  initialSize?: ComponentInitialSize;
16811
+ /** Fixed position options for the component. If set, the component will be pinned to the specified position, and can't be unpinned */
16812
+ fixedPosition?: FixedPositionBuilder;
16775
16813
  }
16776
16814
  /** @oneof */
16777
16815
  interface InstallationInfoTargetContainerOneOf {
16778
16816
  /** Which static container should the component be installed at */
16779
16817
  staticContainer?: StaticContainerWithLiterals;
16780
16818
  }
16819
+ /** Fixed position builder for component installation */
16820
+ interface FixedPositionBuilder {
16821
+ /** Vertical position in the browser window */
16822
+ vertical?: VerticalWithLiterals;
16823
+ /** Horizontal position in the browser window */
16824
+ horizontal?: HorizontalWithLiterals;
16825
+ }
16826
+ declare enum Vertical {
16827
+ NONE = "NONE",
16828
+ TOP = "TOP",
16829
+ CENTER = "CENTER",
16830
+ BOTTOM = "BOTTOM"
16831
+ }
16832
+ /** @enumType */
16833
+ type VerticalWithLiterals = Vertical | 'NONE' | 'TOP' | 'CENTER' | 'BOTTOM';
16834
+ declare enum Horizontal {
16835
+ NONE = "NONE",
16836
+ LEFT = "LEFT",
16837
+ CENTER = "CENTER",
16838
+ RIGHT = "RIGHT"
16839
+ }
16840
+ /** @enumType */
16841
+ type HorizontalWithLiterals = Horizontal | 'NONE' | 'LEFT' | 'CENTER' | 'RIGHT';
16781
16842
  interface MarketplaceSPIConfig {
16782
16843
  /** URI where the SPI implementer is deployed */
16783
16844
  deploymentUri?: SpiBaseUri;
@@ -17677,10 +17738,12 @@ declare enum OperatorEnumOperator {
17677
17738
  * [Array] Negation of WITH_SOME_OF - matches when the contact's values contain
17678
17739
  * none of the specified items. Returns true for contacts with empty/no values.
17679
17740
  */
17680
- WITH_NONE_OF = "WITH_NONE_OF"
17741
+ WITH_NONE_OF = "WITH_NONE_OF",
17742
+ /** [Array] Matches values that contain items with the specified prefixes. */
17743
+ WITH_PREFIX_FROM = "WITH_PREFIX_FROM"
17681
17744
  }
17682
17745
  /** @enumType */
17683
- type OperatorEnumOperatorWithLiterals = OperatorEnumOperator | 'UNKNOWN_OPERATOR' | 'EQ' | 'NEQ' | 'GT' | 'GTE' | 'LT' | 'LTE' | 'BETWEEN' | 'IN' | 'NIN' | 'EMPTY' | 'NOT_EMPTY' | 'STARTS_WITH' | 'WITH_ALL' | 'WITH_SOME_OF' | 'ANY' | 'WITH_NONE_OF';
17746
+ type OperatorEnumOperatorWithLiterals = OperatorEnumOperator | 'UNKNOWN_OPERATOR' | 'EQ' | 'NEQ' | 'GT' | 'GTE' | 'LT' | 'LTE' | 'BETWEEN' | 'IN' | 'NIN' | 'EMPTY' | 'NOT_EMPTY' | 'STARTS_WITH' | 'WITH_ALL' | 'WITH_SOME_OF' | 'ANY' | 'WITH_NONE_OF' | 'WITH_PREFIX_FROM';
17684
17747
  /** Parameter definition for parameterized filters */
17685
17748
  interface Parameter extends ParameterValueDefinitionDetailsOneOf {
17686
17749
  /** For STRING_LIST */
@@ -19263,4 +19326,4 @@ interface DeleteUserDefinedFieldsOptions {
19263
19326
  fieldsToDelete: string[];
19264
19327
  }
19265
19328
 
19266
- export { type A11y, A11yAttributes, type A11yAttributesWithLiterals, AcceptedDirectMessageType, type AcceptedDirectMessageTypeWithLiterals, AcceptedMessageTypesAcceptedDirectMessageType, type AcceptedMessageTypesAcceptedDirectMessageTypeWithLiterals, AcceptedMessageTypesAcceptedSmsMessageType, type AcceptedMessageTypesAcceptedSmsMessageTypeWithLiterals, AcceptedSmsMessageType, type AcceptedSmsMessageTypeWithLiterals, AccessLevel, type AccessLevelWithLiterals, type AccountInfo, type AccountInfoMetadata, 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 Address, AddressComponentType, type AddressComponentTypeOptionsOneOf, type AddressComponentTypeWithLiterals, type AddressInfo, AddressInfoTag, type AddressInfoTagWithLiterals, type AddressLine2, type AdminConfigurableTextInput, type AlertEnricherSpiConfiguration, type AlgorithmConfig, AlgorithmType, type AlgorithmTypeWithLiterals, Alignment, type AlignmentWithLiterals, type AllowedValuesOptions, type AlternativeUri, type AnchorData, type AnchorMetaData, type AndCondition, type AndroidMobilePushConfig, AndroidStyle, type AndroidStyleWithLiterals, type ApiContext, type ApiSlot, type ApiWidth, type AppConfig, type AppConfiguration, type AppData, type AppDataTranslation, type AppDeploymentProviderConfig, type AppEmbedData, type AppEmbedDataAppDataOneOf, type AppEnvironmentProviderConfig, type AppPreviewProviderConfig, type AppRouter, type AppRuntimeDataCacheEntity, type AppRuntimeDataEvent, AppType, type AppTypeWithLiterals, type ApplicationAutomationComponent, type ApplicationProfile, type ApplicationProfileProviderConfig, type Appointment, AppointmentFormat, type AppointmentFormatInfoOneOf, type AppointmentFormatWithLiterals, Archetype, type ArchetypeWithLiterals, ArrayComponentType, type ArrayComponentTypeWithLiterals, type ArrayItems, type ArrayItemsArrayDataOneOf, type ArrayOptions, type ArrayOptionsElementTypeOptionsOneOf, type ArrayType, type ArrayTypeArrayItems, type ArrayTypeArrayItemsItemTypeOptionsOneOf, AspectRatio, type AspectRatioWithLiterals, AssetType, type AssetTypeWithLiterals, type AssistantSpiConfig, type AudienceProviderConfig, type AudioData, type AuthenticatorConfig, type AutomationMetadata, type AutomationTrigger, type AutomationsConfig, type AvailabilityTimeSlotsProviderConfig, type AvatarConfig, AvatarShape, type AvatarShapeWithLiterals, type BackOfficeCustomization, type BackOfficeCustomizationSidebarEntity, type BackOfficeCustomizationSidebarEntityItemOneOf, type BackOfficeExtension, type BackOfficeExtensionContainer, type BackOfficeExtensionExtensionOneOf, type BackOfficeExtensionMenuItem, type BackOfficeExtensionWidget, type BackOfficeExtensionWidgetAssetOneOf, type BackOfficeExternalUrl, BackOfficeHostingPlatforms, type BackOfficeHostingPlatformsWithLiterals, type BackOfficeModal, type BackOfficeModalContentOneOf, type BackOfficePage, type BackOfficePageAssetOneOf, type BackOfficeRestrictedCustomization, type BackOfficeScriptAsset, BackOfficeScriptAssetType, type BackOfficeScriptAssetTypeWithLiterals, type BackOfficeSidebarCategory, type BackOfficeWidget, type BackOfficeWidgetContentOneOf, type BackdropFilter, type BackendWorker, type Background, type BackgroundBackgroundMediaModeOneOf, type BackgroundImage, BackgroundModeEnum, type BackgroundModeEnumWithLiterals, BackgroundType, type BackgroundTypeWithLiterals, type BackofficeActionDeeplink, type BarAlignment, BarAlignmentSelected, type BarAlignmentSelectedWithLiterals, type BaseEventMetadata, type BaseInfo, type BaseInstallation, type Behaviors, type BillingSettingsConfig, type BindingsSPIConfig, BlockType, type BlockTypeWithLiterals, type BlockquoteData, type BlocksData, type BlogPaywallProviderConfig, type BookingActionUrlsProviderConfig, type BookingAutomationsConfig, type BookingData, type BookingPermissionOverrides, type BookingPolicyProviderConfig, type BookingsPlatformConfig, type BookingsPricingProviderConfig, type BookingsResourceType, type BookingsResourceTypesProviderConfig, type BookingsValidationProviderConfig, type BoolListOptions, BooleanComponentType, type BooleanComponentTypeWithLiterals, type BooleanExperimentExposureRule, type BooleanType, type Border, type BorderColors, type BorderWidths, type BrandIcons, type BreakPoint, type BreakPointSection, type Breakpoint, BreakpointEnumBreakpoint, type BreakpointEnumBreakpointWithLiterals, type BreakpointPresetStyleOverrides, type Breakpoints, type BroadcastList, type BrowserPushChannel, type BrowserPushContentKeys, type BrowserStorage, type BuilderSpi, type BulletedListData, type Bundle, type BusinessManagerPage, type ButtonData, ButtonDataType, type ButtonDataTypeWithLiterals, type ButtonStyles, CalendarType, type CalendarTypeWithLiterals, type CaptionData, type CardStyles, CardStylesAlignment, type CardStylesAlignmentWithLiterals, CardStylesType, type CardStylesTypeWithLiterals, type CatalogSPIConfig, type CatalogSyncConfiguration, Category, type CategoryWithLiterals, type CellStyle, ChangeableProperty, type ChangeablePropertyWithLiterals, type ChannelBrandIcons, type ChannelBranding, type ChannelChannelBranding, type ChannelChannelConfiguration, type ChannelChannelConfigurationMessagingConfigOneOf, type ChannelConfiguration, ChannelConfigurationChannelType, type ChannelConfigurationChannelTypeWithLiterals, type ChannelConfigurationMessagingConfigOneOf, type ChannelIcon, type ChannelImplementedMethods, type ChannelMediaCapabilities, ChannelType, type ChannelTypeWithLiterals, type Checkbox, type CheckboxConfiguration, type CheckboxField, type CheckboxGroup, type CheckboxGroupOption, type CheckoutContentSPIConfig, type ClientResources, type ClientSideService, type CodeBlockData, type CodePackageComponentData, type CodePanel, type CollapsibleListData, type Collection, type Color, type ColorData, type ColorDefinition, type ColorSelectLabeled, type ColorSelectLabeledDataOneOf, type Colors, type CommentFilterProviderConfig, type CommentModerationProviderConfig, type CommentsContextProviderConfig, type CommonImage, type CommunicationChannelConfiguration, type ComponentData, type ComponentDataDataOneOf, type ComponentEnricherConfig, type ComponentInitialSize, type ComponentMetaData, type ComponentModel, type ComponentReferenceDataConfig, type ComponentTranslationAdditionalFieldsConfig, ComponentType, type ComponentTypeWithLiterals, 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 ContainerBehaviors, type ContainerDataOneOf, type ContainerLayout, type ContainerStyleOverrides, ContainerType, type ContainerTypeWithLiterals, type ContentData, type ContentDataOverrides, type ContentFill, type ContentProviderConfig, ContentResizeDirection, type ContentResizeDirectionWithLiterals, type Context, type ContextArrayItems, type ContextArrayItemsArrayDataOneOf, type ContextDataItems, type ContextImplementor, type ContextItem, type ContextItemSelectedDataTypeOneOf, type ContextSpecifier, type ConversationLimitations, type Coordinates, type CoreApps, type Corners, type CoverImageConfiguration, type CreateDataExtensionSchemaRequest, type CreateDataExtensionSchemaResponse, type CreateNewItemInfo, type CreatedByCacheEntity, Crop, type CropWithLiterals, type CrossSellConfig, type CssCustomPropertyAction, type CssCustomPropertyItem, type CssCustomPropertyItemSelectedCssPropertyTypeOneOf, CssDataType, type CssDataTypeWithLiterals, type CssNumber, type CssPropertyAction, type CssPropertyItem, type CssPropertyItemDefaults, type CssPropertyItemDefinitionOverrides, type CssPropertyItemSelectedCssPropertyTypeOneOf, CssPropertyType, CssPropertyTypeEnumCssPropertyType, type CssPropertyTypeEnumCssPropertyTypeWithLiterals, type CssPropertyTypeWithLiterals, CssVariableTypeEnumCssDataType, type CssVariableTypeEnumCssDataTypeWithLiterals, type CurrencyCodeListOptions, type CustomAction, type CustomActionActionExecuteOneOf, type CustomChargesConfig, type CustomElement, type CustomElementConsentCategoryOneOf, CustomElementScriptType, type CustomElementScriptTypeWithLiterals, type CustomElementWidget, type CustomEnum, type CustomEnumOption, type CustomEnumOptionCssProperty, type CustomExperimentExposureRule, type CustomFieldInfo, CustomFieldsType, type CustomFieldsTypeWithLiterals, type CustomInitialPreset, type CustomOption, type CustomPermission, type CustomPropertyEnum, type CustomPropertyEnumOption, type CustomPropertyEnumOptionStyle, type CustomRefData, type CustomReservationsApprovalConfig, type CustomRewardProviderConfig, type CustomScopeConfig, type CustomTriggerConfig, type DCConfigData, type Dashboard, type DashboardAction, type DashboardApplicationData, type DashboardButton, type DashboardComponentData, type DashboardItem, type DashboardPlatfromComponentData, type DataAction, type DataComponent, type DataExtensionSchema, type DataExtensionSchemaCreatedEnvelope, type DataExtensionSchemaDeletedEnvelope, DataExtensionSchemaState, type DataExtensionSchemaStateWithLiterals, type DataExtensionSchemaUpdatedEnvelope, type DataExtensionsComponentData, type DataGroupsArrayItems, type DataItem, type DataItemOverrides, type DataItemOverridesSelectedDataTypeOneOf, type DataItemSelectedDataTypeOneOf, type DataItems, type DataPermissions, DataType, type DataTypeWithLiterals, type DateInput, type DatePicker, type DateTimeConstraints, type DateTimeInput, type Debounce, type DecimalListOptions, type Decoration, type DecorationDataOneOf, DecorationType, type DecorationTypeWithLiterals, type Deeplink, type DeeplinkOfOneOf, Default, type DefaultCountryConfig, type DefaultCountryConfigOptionsOneOf, DefaultCountryConfigType, type DefaultCountryConfigTypeWithLiterals, type DefaultPresets, type DefaultTaxGroupProviderConfig, DefaultTextStyle, type DefaultTextStyleWithLiterals, type DefaultWithLiterals, type Definition, type Delay, type DelayTypeOneOf, type DeleteByWhiteListedMetaSiteRequest, type DeleteByWhiteListedMetaSiteResponse, type DeleteDemoDataExtensionSchemaRequest, type DeleteDemoDataExtensionSchemaResponse, type DeleteGlobalExtensionSchemaRequest, type DeleteGlobalExtensionSchemaResponse, type DeleteTemplateFields, type DeleteUserDefinedFieldsOptions, type DeleteUserDefinedFieldsRequest, type DeleteUserDefinedFieldsResponse, type DeploymentPipelineProviderConfig, type Description, type Design, DesignTarget, type DesignTargetWithLiterals, type DevCenterTestingComponentData, type DevCenterTestingComponentDataTranslatableOneOfOneOf, type Dimension, type Dimensions, type DirectMessageConfig, Direction, type DirectionWithLiterals, type DiscountConfig, type DiscountsSPIConfig, type DiscoveryMetaData, type Display, type DisplayField, type DisplayFieldDisplayFieldTypeOptionsOneOf, DisplayFieldType, type DisplayFieldTypeWithLiterals, type DisplayFilter, type DisplayFilters, type DisplayGroupAction, type DisplayGroupItem, type DisplayGroupItemSelectedGroupTypeOneOf, type DisplayProperties, type DisplayValue, DisplayValueEnumDisplayValue, type DisplayValueEnumDisplayValueWithLiterals, type DisputeServicePluginConfig, type DividerData, DividerDataAlignment, type DividerDataAlignmentWithLiterals, DividerDataWidth, type DividerDataWidthWithLiterals, type DmDirectMessageConfig, type Docking, type DockingProperties, type DocumentStyle, Domain, type DomainEvent, type DomainEventBodyOneOf, type DomainWithLiterals, type DonationInput, type DonationInputOption, type DrillInListItem, type DrillItem, type DrillItemDataOneOf, type DropDownLabeled, type Dropdown, type DropdownField, type DropdownFieldOption, type DropdownOption, type DropshippingProviderSPIConfig, type DtsContent, type DtsDefinitionReference, type DtsDefinitionReferenceDtsDefinitionOneOf, DtsDefinitionType, type DtsDefinitionTypeWithLiterals, type DtsHttpLink, type DurationInputConfiguration, type DurationInputConfigurationDurationRenameOptions, type DurationRenameOptions, type DynamicPriceOptions, type DynamicSiteStructureProviderConfig, type EditableFields, EditableProperties, type EditablePropertiesWithLiterals, type EditorAddon, type EditorBehaviors, type EditorContextProvider, type EditorContextProviderResources, type EditorDependencies, type EditorElement, type EditorElementLayout, type EditorFunction, type EditorFunctionLibrary, type EditorPresence, type EditorReactComponent, EffectGroup, type EffectGroupWithLiterals, ElementDisplayOption, type ElementDisplayOptionWithLiterals, type ElementItem, type ElementItemSelectedElementTypeOneOf, type ElementState, type ElementStyleDefaults, type ElementStyleOverrides, ElementType, type ElementTypeWithLiterals, type EmailChannel, type EmailEmailMessageConfig, type EmailInfo, EmailInfoTag, type EmailInfoTagWithLiterals, type EmailMessageConfig, type EmailTemplateConfig, type EmailTemplateConfigProviderOneOf, EmbedCategory, type EmbedCategoryWithLiterals, type EmbedData, type EmbeddedScriptComponentData, EmbeddedScriptPages, type EmbeddedScriptPagesWithLiterals, EmbeddedScriptPlacement, type EmbeddedScriptPlacementWithLiterals, type Empty, 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 ExemptRegions, type ExpectedInputs, type ExperimentGroupWrapper, type ExportMetadata, Exposure, type ExposureRule, type ExposureRuleRuleOneOf, ExposureRuleType, type ExposureRuleTypeWithLiterals, type ExposureWithLiterals, type Extendable, ExtendingComponentType, type ExtendingComponentTypeWithLiterals, type ExtensionData, type ExtensionDetails, type ExtensionExposure, ExtensionType, type ExtensionTypeWithLiterals, type ExternalDatabaseSpiConfig, type ExternalFilterProviderConfig, type FactorConfig, FactorType, type FactorTypeWithLiterals, type FeedAggregation, type FeedChannels, type FeedChannelsConfig, type FeesSPIConfig, type Field, FieldFieldType, type FieldFieldTypeWithLiterals, type FieldGroup, type FieldManagementConfig, type FieldOverride, type FieldOverrides, FieldType, type FieldTypeOptionsOneOf, type FieldTypeWithLiterals, type FieldsOverrides, type FieldsSettings, type FileData, FileMediaType, type FileMediaTypeWithLiterals, type FileSource, type FileSourceDataOneOf, type FileType, type FileUpload, type Filter, FilterFunction, type FilterFunctionWithLiterals, type FilterInfo, type FilterInfoOptionsOneOf, FilterOptionsType, type FilterOptionsTypeWithLiterals, FilterSelectionType, type FilterSelectionTypeWithLiterals, FilterValueDefinitionMode, type FilterValueDefinitionModeWithLiterals, type FilteringCapability, FirstDayOfWeek, type FirstDayOfWeekWithLiterals, type FirstLevelCategory, type FixedPayment, type FixedPositionOptions, type FixedPriceOptions, type FocalPoint, type Font, type FontDefinition, type FontFamilyData, type FontFamilyWithColorPicker, type FontSizeData, FontType, type FontTypeWithLiterals, type FormFieldContactInfo, type FormFieldContactInfoAdditionalInfoOneOf, type FormLayout, type FormOverride, type FormOverrideEntityTypeOptionsOneOf, type FormOverrideFieldOverride, type FormOverrideFieldOverridePropertyTypeOptionsOneOf, type FormSchemaDynamicValuesSpiConfig, type FormSchemaSpiConfig, type FormSpamSubmissionReportPermissions, type FormSpamSubmissionReportSpiConfig, type FormSpamSubmissionReportsNamespaceConfig, type FormSpamSubmissionSpiConfig, type FormSpiExtensionConfig, type FormSubmissionModerationSpiConfig, type FormSubmissionModerationSpiNamespaceConfig, type FormSubmissionSpiConfig, type FormSubmissionSpiExtensionConfig, type FormTemplate, type FormTemplateTemplateTypeOptionsOneOf, Format, type FormatWithLiterals, type FormsConfig, type FormsPermissions, type FormsSPIConfig, type FormsSchemaNamespaceConfig, type FormsSpamSubmissionsNamespaceConfig, type FormsSubmissionsExtensionNamespaceConfig, type FormsSubmissionsNamespaceConfig, type ForwardAction, type ForwardActionActionOneOf, type FreeOptionConfiguration, type FreePricingTypeConfiguration, type FreeTrialConfiguration, type FunctionAssistantToolProviderConfig, type FunctionDefinition, type FunctionEcomDiscountTriggerEligibilityProviderConfig, type FunctionParameter, type FunctionParameterArrayItems, type FunctionParameterArrayItemsArrayDataOneOf, type FunctionParameterItems, type FunctionParameterSelectedDataTypeOneOf, type FunctionRecipe, type FunctionResources, type FunctionReturnType, type FunctionReturnTypeSelectedDataTypeOneOf, type FunctionsShopPriceSpiConfig, type GIF, type GIFData, GIFType, type GIFTypeWithLiterals, type GalleryData, type GalleryOptions, type GalleryOptionsLayout, type GalleryOptionsThumbnails, type Gap, type GbpFeatureConfig, type GenericFunctionActivationConfig, type GenericHookConfig, type GenericHooksConfig, type GenericOptions, type GiftCardProviderConfig, type Gradient, type GradualDeleteCacheEntity, type GradualRolloutCacheEntity, type GradualUpdateCacheEntity, type GridAppFilesTransformerConfig, type Group, GroupType, type GroupTypeWithLiterals, type GroupedContent, type HTMLData, type HTMLDataDataOneOf, HTMLDataSource, type HTMLDataSourceWithLiterals, HTTPMethod, type HTTPMethodWithLiterals, type Header, type HeaderConfig, type HeaderConfigHeaderConfigOneOf, type HeaderConfigOneOf, type HeaderWidgetConfig, type HeadingData, type HeadlessOAuth, type Height, HeightMode, type HeightModeWithLiterals, type HelpArticle, type HelpArticleArticleTypeOneOf, type HelpResources, type HiddenOptions, HookType, type HookTypeWithLiterals, 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, ImageCategoryTypes, type ImageCategoryTypesWithLiterals, type ImageConfig, type ImageData, type ImageDataStyles, type ImageDataStylesBorder, ImageFit, type ImageFitWithLiterals, type ImageOverrides, ImagePosition, type ImagePositionWithLiterals, ImageShape, type ImageShapeWithLiterals, type ImageStyles, ImageStylesPosition, type ImageStylesPositionWithLiterals, ImageType, type ImageTypeWithLiterals, type Implementation, type ImplementedMethods, ImportanceLevel, type ImportanceLevelWithLiterals, type InPersonOptions, type Index, type IndexField, InitDirection, type InitDirectionWithLiterals, InitialExpandedItems, type InitialExpandedItemsWithLiterals, type InitialPosition, type InitialSizeSetting, type InitialSizeSettingSelectedSizingTypeOneOf, type Initiator, type InitiatorDataOneOf, InitiatorType, type InitiatorTypeWithLiterals, type InlineElement, type Input, type InputConfiguration, type InputField, type InputFieldInputTypeOptionsOneOf, type InputField_Number, type InputField_NumberComponentTypeOptionsOneOf, InputType, type InputTypeWithLiterals, type InputWithPlaceholder, InstallPage, type InstallPageWithLiterals, type InstallationInfo, type InstallationInfoTargetContainerOneOf, type InstallationSettings, type InstallationSettingsOptionsOneOf, type IntListOptions, type IntegerType, type IntegrationOptions, IntegrationType, type IntegrationTypeWithLiterals, Intent, type IntentWithLiterals, type Interactions, type InterfaceConfiguration, type InterfaceConfigurationOfTypeOneOf, InterfaceConfigurationType, type InterfaceConfigurationTypeWithLiterals, type InternalComponentMetadata, type InventorySpiConfig, type InvoicesActionsComponentData, type InvoicesConfig, type IsStretched, type Item, type ItemDataOneOf, type ItemImage, type ItemLayout, type ItemLayoutItemOneOf, type ItemSelection, type ItemSelectionOptions, type ItemStyle, type ItemThumbnail, type ItemThumbnailOptionsOneOf, ItemType, type ItemTypeWithLiterals, type ItemVideo, type ItemsGroup, type ItemsSelectionProviderConfig, type KeepAliveConfig, type Keywords, type LanguageTagListOptions, Layout, type LayoutCellData, type LayoutData, type LayoutDataBackgroundImage, LayoutDataImagePosition, type LayoutDataImagePositionWithLiterals, LayoutMode, type LayoutModeWithLiterals, LayoutType, type LayoutTypeWithLiterals, type LayoutWithLiterals, type LearnMore, type LeftPanel, type LeftPanelWidgetConfig, type LegacyBackOfficeExtensionWidget, type LegacyBackOfficeExtensionWidgetAssetOneOf, type LegacyBackOfficeMenuItem, type LegacyBackOfficeMenuItemAction, type LegendsSpiConfig, Level, type LevelWithLiterals, type LightboxCloseOptions, type LightboxContent, type LightboxEditorSettings, type LightboxOptions, type LimiterField, type LineItemsEnricherConfig, LineStyle, type LineStyleWithLiterals, type Link, type LinkData, type LinkPreviewData, type LinkPreviewDataStyles, type LinkSuffix, LinkTarget, type LinkTargetWithLiterals, LinkType, type LinkTypeWithLiterals, type ListDataExtensionSchemasOptions, type ListDataExtensionSchemasRequest, type ListDataExtensionSchemasResponse, ListEventFromCalendars, type ListEventFromCalendarsWithLiterals, type ListItem, type ListValue, type LiveSiteActionDeeplink, type LocalDeliveryComponentData, type Location, type LocationLocationInfoOneOf, LockableOperation, type LockableOperationWithLiterals, type Logo, type Logos, type Main, type MainPresets, type MainPropsData, type ManagedMenuEntities, MandatoryField, type MandatoryFieldWithLiterals, type MapData, type MapSettings, MapType, type MapTypeWithLiterals, type Margin, type Margins, type MarketplaceProviderConfig, type MarketplaceSPIConfig, type MaskImage, Maturity, type MaturityWithLiterals, MeasurementSystem, type MeasurementSystemWithLiterals, type Media, type MediaCapabilities, type MediaItem, type MediaItemMediaOneOf, MediaMimeType, type MediaMimeTypeWithLiterals, type MediaSettings, type MembershipsSPIConfig, type MentionData, type MenuAction, type MenuActionActionOneOf, type MenuDropdown, type MenuLink, type MenuSlot, type MessageContainingTranslatables, type 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, MpaNavigation, type MpaNavigationWithLiterals, type MultiReferenceOptions, type MultiServiceBookingPolicyProviderConfig, type MultilineAddress, type MultilineAddressValidation, type MultilingualTranslationSchema, type MultipleDashboardsComponentData, type Namespace, type NamespaceConfig, type NamespaceConfigV2, NativeStateType, type NativeStateTypeWithLiterals, type NavigateToPageAction, NavigationType, type NavigationTypeWithLiterals, type NestedWidgets, type Node, type NodeDataOneOf, type NodeStyle, NodeType, type NodeTypeWithLiterals, type NotificationChannels, type NotificationContent, type NotificationPreferencesFilterConfig, type NotificationTopic, NotificationTopicState, type NotificationTopicStateWithLiterals, NotificationTopicType, type NotificationTopicTypeWithLiterals, type Npm, NullValue, type NullValueWithLiterals, NumberComponentType, type NumberComponentTypeWithLiterals, type NumberInput, NumberOfColumns, type NumberOfColumnsWithLiterals, type NumberType, OAuthAppType, type OAuthAppTypeWithLiterals, OAuthTechnologies, type OAuthTechnologiesWithLiterals, type ObjectField, type ObjectFieldTypeOptionsOneOf, type ObjectOptions, type ObjectType, type Oembed, type Offset, type OffsetValueOneOf, type OneTimeOptionConfiguration, type OneTimePricingTypeConfiguration, type OpenComponent, type OpenModalAction, type OperationExecutorConfig, Operator, type OperatorConfiguration, OperatorEnumOperator, type OperatorEnumOperatorWithLiterals, type OperatorWithLiterals, type Option, type OptionDesign, type OptionLayout, type OrCondition, Order, type OrderValue, type OrderWithLiterals, type OrderedListData, Orientation, type OrientationWithLiterals, 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, type PagesConfig, PaginationMode, type PaginationModeWithLiterals, type Panel, type PanelAction, type PanelActionSelectedPanelTypeOneOf, PanelContentType, type PanelContentTypeWithLiterals, PanelMode, type PanelModeWithLiterals, type PanelSelectedContentTypeOneOf, type PanelSize, PanelType, type PanelTypeWithLiterals, type PanoramaOptions, type ParagraphData, type Param, type Parameter, ParameterType, type ParameterTypeWithLiterals, type ParameterValueDefinitionDetailsOneOf, PartialPaymentRestriction, type PartialPaymentRestrictionWithLiterals, type PartialUpdateCacheEntity, ParticipantType, type ParticipantTypeWithLiterals, type Password, type PatternsWizard, type Payment, PaymentComponentType, type PaymentComponentTypeOptionsOneOf, type PaymentComponentTypeWithLiterals, type PaymentDateModification, type PaymentInput, type PaymentMethod, type PaymentMethodMethodOneOf, type PaymentServiceProviderConfig, type PaymentServiceProviderCredentialsField, type PaymentServiceProviderCredentialsFieldFieldOneOf, type PaymentSettingsSPIConfig, type PaymentType, type PaymentsGatewayComponentData, type PayoutsProviderConfig, type PerkValues, type PerksConfiguration, type PermissionOverrides, type Permissions, type PhoneConstraints, type PhoneInfo, PhoneInfoTag, type PhoneInfoTagWithLiterals, type PhoneInput, type PhoneOptions, type PingNotificationComponentData, type PingSettingsGroupComponentData, PingSettingsGroupComponentDataState, type PingSettingsGroupComponentDataStateWithLiterals, type PlaceHolder, Placement, type PlacementWithLiterals, type PlanDuration, type PlanFormBenefitsSection, type PlanFormCustomPricingRulesSection, type PlanFormCustomSection, PlanFormDefaultSection, type PlanFormDefaultSectionWithLiterals, type PlanFormDurationSection, type PlanFormInfoSection, type PlanFormInitialValue, type PlanFormPagePermissionsSection, type PlanFormPlanSettingsSection, type PlanFormPreviewSection, type PlanFormPricingAndDurationSection, type PlanFormPricingAndDurationSectionDurationInputConfiguration, type PlanFormPricingAndDurationSectionInputConfiguration, PlanFormPricingOption, type PlanFormPricingOptionWithLiterals, type PlanFormPricingSection, type PlanFormPricingSectionInputConfiguration, type PlanFormPricingSectionSetupFeeConfiguration, PlanFormPricingType, type PlanFormPricingTypeWithLiterals, type PlanFormSection, type PlanFormSectionSectionOneOf, type PlanFormStartDateRulesSection, type PlanFormTypeMetadata, PlanPeriodUnit, type PlanPeriodUnitWithLiterals, type PlanPriceData, type PlanPricing, type PlanPricingPricingModelOneOf, type PlanSettingsRowConfiguration, type PlatformHeaderConfig, type PlatfromComponentData, type PlaybackOptions, type PluginConfig, type PluginContainerData, PluginContainerDataAlignment, type PluginContainerDataAlignmentWithLiterals, type PluginContainerDataHeight, type PluginContainerDataWidth, type PluginContainerDataWidthDataOneOf, type PluginInstallationSettings, PluginInterface, type PluginInterfaceWithLiterals, type PluginMarketData, type PluginPlacement, type PolicyConfig, type PolicyPermissionOverrides, type Poll, type PollData, type PollDataLayout, type PollDesign, type PollDesignBackground, type PollDesignBackgroundBackgroundOneOf, type PollLayout, PollLayoutDirection, type PollLayoutDirectionWithLiterals, PollLayoutType, type PollLayoutTypeWithLiterals, type PollOption, type PollSettings, type PosProviderSettingsServicePluginConfig, type Position, type PostLoginConfig, type PreRegisterConfig, type PredefinedExpectedInput, type PredefinedExpectedInputConfiguration, type PredefinedExpectedInputConfigurationTypeOneOf, type PredefinedLabel, type PredefinedValues, type Preset, type PresetEditorPresence, type PresetElementDefaults, type PresetInfo, type PresetInnerElementDefaults, type PresetItem, type PresetSize, type PresetStyleDefaults, type PresetStyleItemOverrides, type PresetStyleOverrides, type PreviewCardPlaceholders, type PreviewConfiguration, type PreviewFields, type PriceSPIConfig, PriceType, type PriceTypeWithLiterals, type PricingData, type PricingPlansFormConfiguration, type PricingRecurring, type Primitive, PrimitiveType, type PrimitiveTypeWithLiterals, type Product, type ProductCatalogProviderConfig, type ProductCheckboxGroup, type ProductCheckboxGroupOption, type ProductPriceOptionsOneOf, type ProductRestrictionsConfig, ProductType, type ProductTypeWithLiterals, type ProductsPathsConfig, type Project, type PropertiesType, PropertiesTypeEnum, type PropertiesTypeEnumWithLiterals, type PropertiesTypePropertiesTypeOptionsOneOf, type ProposalEditorProviderConfig, type Provider, type ProviderAccountServicePluginConfig, type ProviderConfig, type ProviderConfigMessage, type ProviderFilterOptions, type ProviderSuppressionServicePluginConfig, type PurchaseValidationsConfig, type QuantityLimit, type RadioButtonLabeled, type RadioGroup, type RadioGroupOption, type RangeConstraints, type RateLimit, type RatingInput, type ReactElementContainer, type ReactElementContainerSelectedContainerTypeOneOf, type RecipientFilter, type RecipientFilterDataOneOf, RecipientFilterType, type RecipientFilterTypeWithLiterals, RecipientType, type RecipientTypeWithLiterals, type RecommendationsProviderConfig, type RecurringOptionConfiguration, type RecurringPricingTypeConfiguration, type RecurringPricingTypeConfigurationFreeTrialConfiguration, type RedirectOptions, type RefElement, type RefInnerElementDefaults, type ReferenceOptions, Region, RegionScopeScope, type RegionScopeScopeWithLiterals, RegionType, type RegionTypeWithLiterals, type RegionWithLiterals, type ReindexEvent, type ReindexField, type Rel, type RenderOverrides, type RepeatedFieldOverrideConfig, 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, ResponsivenessBehaviour, type ResponsivenessBehaviourWithLiterals, 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 RichText, RichTextAbilities, type RichTextAbilitiesWithLiterals, type RichTextWithIllustrationVertical, type RouterPage, type Rule, type RuntimeComponentCacheEntity, type RuntimeComponentCacheEntityComponent, type RuntimeComponentCacheEntityComponentOneOf, type RuntimeComponentCacheEntityExperiment, type RuntimeComponentCacheEntityExperimentExperimentOneOf, type SDKExports, type SDKExportsNpm, Scaling, type ScalingWithLiterals, type Scheduling, SchedulingComponentType, type SchedulingComponentTypeOptionsOneOf, type SchedulingComponentTypeWithLiterals, type Schema, type SchemaConfig, type SchemaField, SchemaFieldExposure, type SchemaFieldExposureWithLiterals, SchemaFieldFieldType, type SchemaFieldFieldTypeWithLiterals, type SchemaFieldType, type SchemaFieldTypeFieldTypeOneOf, type SchemaGroup, type SchemaGroupElement, type SchemaKey, SchemaScope, type SchemaScopeWithLiterals, Scope, type ScopeWithLiterals, ScriptType, type ScriptTypeWithLiterals, type SdkDefinition, type SearchConfig, type SearchField, type SearchParams, type SecondLevelCategory, type Section, type SentryOptions, type SeoKeywordsSuggestionsSPIConfig, type ServiceAction, type ServiceAvailabilityPolicyProviderConfig, type ServicePermissionOverrides, type ServiceTrigger, type ServicesDropdown, type ServicesDropdownOption, 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 SiteMapProviderConfig, type SiteMemberData, SiteMembersSsrCaching, type SiteMembersSsrCachingWithLiterals, type SiteMigrationSpiConfig, type SiteWidgetSlot, type Size, SizingType, type SizingTypeWithLiterals, type SliderLabeled, type Slot, type SlotData, type SlotDataSlotTypeOneOf, SlotDataType, type SlotDataTypeWithLiterals, type SlotParams, type SmsActionMessage, type SmsChannel, type SmsContentKeys, type SmsMessageConfig, type SmsSmsMessageConfig, type SnippetSolutionData, type SocialMarketingDesignSPIConfig, type SocialMarketingDesignsProviderConfig, type Source, type SourceOptionsOneOf, SourceType, type SourceTypeWithLiterals, type SpamSubmissionPermissions, type Spi, type SpiBaseUri, type Spoiler, type SpoilerData, type StaffSortingProviderConfig, type StartDateLimitsSPIConfig, type StartDateRulesSPIConfig, type State, StaticContainer, type StaticContainerWithLiterals, type StaticFileComponentData, type StaticFilterOption, type StaticFilterOptions, Status, type StatusWithLiterals, type Step, StorageDomain, type StorageDomainWithLiterals, StorageType, type StorageTypeWithLiterals, StringComponentType, type StringComponentTypeWithLiterals, type StringListOptions, type StringOption, type StringType, type StringTypeFormatOptionsOneOf, type StudioComponentData, type StudioWidgetComponentData, type StudioWidgetVariation, type StyleAction, type StyleItem, type StyleItemDefaults, type StyleItemOverrides, type StyleItemSelectedCssPropertyTypeOneOf, type StyleItemSelectedCssVariableTypeOneOf, type StyleItemSelectedItemTypeOneOf, StyleType, type StyleTypeWithLiterals, type Styles, type StylesBorder, StylesPosition, type StylesPositionWithLiterals, type SubPage, type SubmissionPermissions, type SubmitSettings, type SubmitSettingsSubmitSuccessActionOptionsOneOf, SubmitSuccessAction, type SubmitSuccessActionWithLiterals, type SubscriptionInfo, SyncToCalendar, type SyncToCalendarWithLiterals, type SyncedProjectsProviderConfig, type Tab, type TableCellData, type TableData, Tag, type TagOverrides, type TagOverridesEntry, type TagWithLiterals, type Tags, type TagsOption, Target, type TargetElement, type TargetWithLiterals, type TaxCalculationConfig, type TaxCalculatorSpiConfig, type TaxCountriesConfig, type TaxExemptGroup, type TaxExemptGroupsProviderConfig, type TaxGroupsProviderConfig, type TaxIdValidatorConfig, type TaxTypesConfig, type TaxationCategoryProvider, TemplateDefaultColor, type TemplateDefaultColorWithLiterals, TemplateType, type TemplateTypeWithLiterals, type TermsAndConditionsConfiguration, type TermsModalConfiguration, TestEnum, type TestEnumWithLiterals, type Text, TextAlignment, type TextAlignmentWithLiterals, type TextData, type TextDecoration, type TextEnum, type TextGroup, type TextInput, TextInputDisplayType, type TextInputDisplayTypeWithLiterals, type TextInputLabeled, type TextInputSettings, type TextNodeStyle, type TextStyle, type TextStyleDefaultColorOneOf, type TextToSpeechActionMessage, type TextWithSuffix, type TextWithSuffixSuffixOneOf, type TextWithTooltip, type ThankYouMessageOptions, type ThankYouPageConfiguration, type ThankYouPageInputConfig, type ThankYouPageModalConfiguration, type ThankYouPagePreviewConfiguration, type ThankYouPageRedirectsConfiguration, type ThumbnailData, ThumbnailType, type ThumbnailTypeWithLiterals, type Thumbnails, ThumbnailsAlignment, type ThumbnailsAlignmentWithLiterals, ThumbnailsSize, type ThumbnailsSizeWithLiterals, type TicketReservationsSpiConfig, type TimeConstraintConfiguration, type TimeConstraintConfigurationValueConstraintsOneOf, TimeConstraintType, type TimeConstraintTypeWithLiterals, type TimeInput, type ToggleLabeled, type ToolPanelConfig, type TooltipSuffix, type TopologyComponentData, type TranslatedData, type TranslatedMessageWithIdRepeated, type TranslatedMessageWithUniqueFieldRepeated, type TranslationResources, Trigger, type TriggerFieldOverride, type TriggerFilter, type TriggerOverride, type TriggerProviderSPIConfig, type TriggerWithLiterals, Type, type TypeWithLiterals, type TypedDynamicParam, TypedDynamicParamType, type TypedDynamicParamTypeWithLiterals, type UnifiedLightbox, type UnifiedPage, type UnifiedPageEditorSettings, UnitType, type UnitTypeWithLiterals, type Until, type UpdateDataExtensionSchemaRequest, type UpdateDataExtensionSchemaResponse, UploadFileFormat, UploadFileFormatEnumUploadFileFormat, type UploadFileFormatEnumUploadFileFormatWithLiterals, type UploadFileFormatWithLiterals, type UpstreamWixCommonImage, type Url, type UrlData, type UrlMapperProviderConfig, type UrlParam, type UserNotification, type UserNotificationData, type UserNotificationDataContext, type UserNotificationDataDeeplink, type UserNotificationDataDeeplinkOfOneOf, type UserNotificationDataInitiator, type UserNotificationDataInitiatorDataOneOf, type UserNotificationDataRecipientFilter, type UserNotificationDataRecipientFilterDataOneOf, UserNotificationDataRecipientFilterType, type UserNotificationDataRecipientFilterTypeWithLiterals, UserNotificationDataType, type UserNotificationDataTypeWithLiterals, type V1Image, type V1ImplementedMethods, type V1Link, type V1LinkDataOneOf, type V1Metadata, type V1Region, type V1SchemaField, type V1TextStyle, type V1ValidationTarget, type V2CommunicationChannelConfiguration, type V2Condition, type V2Field, type V2FieldFieldTypeOptionsOneOf, type V2ImplementedMethods, type V2Rule, type V2TriggerOverride, type ValidationMessages, type ValidationTarget, ValidationTargetMethod, type ValidationTargetMethodWithLiterals, type ValidationsSPIConfig, ValueConstraintType, type ValueConstraintTypeWithLiterals, type VectorArt, VectorArtCategoryTypes, type VectorArtCategoryTypesWithLiterals, type VectorArtOverrides, type VeloActionConfig, type VeloCustomCss, type VeloPublishPipelineTaskProviderConfig, type VelocityEmail, VerticalAlignment, VerticalAlignmentAlignment, type VerticalAlignmentAlignmentWithLiterals, type VerticalAlignmentWithLiterals, VerticalDocking, type VerticalDockingWithLiterals, VibeActionType, type VibeActionTypeWithLiterals, type VibeCustomPanelAction, type VibeDashboardAction, type Video, VideoCategoryTypes, type VideoCategoryTypesWithLiterals, type VideoConferenceOptions, type VideoData, type VideoOverrides, ViewMode, type ViewModeWithLiterals, ViewRole, type ViewRoleWithLiterals, type 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 WixAiGatewaySpiConfig, 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 WixVibeCodingInstructions, type WixVibeComponent, type WixelSPIConfig, type WorkerComponentData, type WritingMode, WritingModeValue, type WritingModeValueWithLiterals, type _Array, type _ArrayComponentTypeOptionsOneOf, type _Boolean, type _BooleanComponentTypeOptionsOneOf, type _Date, type _Function, type _Number, type _Object, type _String, type _StringComponentTypeOptionsOneOf, createDataExtensionSchema, deleteByWhiteListedMetaSite, deleteUserDefinedFields, listDataExtensionSchemas, onDataExtensionSchemaCreated, onDataExtensionSchemaDeleted, onDataExtensionSchemaUpdated, updateDataExtensionSchema };
19329
+ export { type A11y, A11yAttributes, type A11yAttributesWithLiterals, AcceptedDirectMessageType, type AcceptedDirectMessageTypeWithLiterals, AcceptedMessageTypesAcceptedDirectMessageType, type AcceptedMessageTypesAcceptedDirectMessageTypeWithLiterals, AcceptedMessageTypesAcceptedSmsMessageType, type AcceptedMessageTypesAcceptedSmsMessageTypeWithLiterals, AcceptedSmsMessageType, type AcceptedSmsMessageTypeWithLiterals, AccessLevel, type AccessLevelWithLiterals, type AccountInfo, type AccountInfoMetadata, 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 Address, AddressComponentType, type AddressComponentTypeOptionsOneOf, type AddressComponentTypeWithLiterals, type AddressInfo, AddressInfoTag, type AddressInfoTagWithLiterals, type AddressLine2, type AdminConfigurableTextInput, type AlertEnricherSpiConfiguration, type AlgorithmConfig, AlgorithmType, type AlgorithmTypeWithLiterals, Alignment, type AlignmentWithLiterals, type AllowedValuesOptions, type AlternativeUri, type AnchorData, type AnchorMetaData, type AndCondition, type AndroidMobilePushConfig, AndroidStyle, type AndroidStyleWithLiterals, type ApiContext, type ApiSlot, type ApiWidth, type AppConfig, type AppConfiguration, type AppData, type AppDataTranslation, type AppDeploymentProviderConfig, type AppEmbedData, type AppEmbedDataAppDataOneOf, type AppEnvironmentProviderConfig, type AppPreviewProviderConfig, type AppRouter, type AppRuntimeDataCacheEntity, type AppRuntimeDataEvent, AppType, type AppTypeWithLiterals, type ApplicationAutomationComponent, type ApplicationProfile, type ApplicationProfileProviderConfig, type Appointment, AppointmentFormat, type AppointmentFormatInfoOneOf, type AppointmentFormatWithLiterals, Archetype, type ArchetypeWithLiterals, ArrayComponentType, type ArrayComponentTypeWithLiterals, type ArrayItems, type ArrayItemsArrayDataOneOf, type ArrayOptions, type ArrayOptionsElementTypeOptionsOneOf, type ArrayType, type ArrayTypeArrayItems, type ArrayTypeArrayItemsItemTypeOptionsOneOf, AspectRatio, type AspectRatioWithLiterals, AssetType, type AssetTypeWithLiterals, type AssistantSpiConfig, type AudienceProviderConfig, type AudioData, type AuthenticatorConfig, type AutomationMetadata, type AutomationTrigger, type AutomationsConfig, type AvailabilityTimeSlotsProviderConfig, type AvatarConfig, AvatarShape, type AvatarShapeWithLiterals, type BackOfficeCustomization, type BackOfficeCustomizationSidebarEntity, type BackOfficeCustomizationSidebarEntityItemOneOf, type BackOfficeExtension, type BackOfficeExtensionContainer, type BackOfficeExtensionExtensionOneOf, type BackOfficeExtensionMenuItem, type BackOfficeExtensionWidget, type BackOfficeExtensionWidgetAssetOneOf, type BackOfficeExternalUrl, BackOfficeHostingPlatforms, type BackOfficeHostingPlatformsWithLiterals, type BackOfficeModal, type BackOfficeModalContentOneOf, type BackOfficePage, type BackOfficePageAssetOneOf, type BackOfficeRestrictedCustomization, type BackOfficeScriptAsset, BackOfficeScriptAssetType, type BackOfficeScriptAssetTypeWithLiterals, type BackOfficeSidebarCategory, type BackOfficeWidget, type BackOfficeWidgetContentOneOf, type BackdropFilter, type BackendWorker, type Background, type BackgroundBackgroundMediaModeOneOf, type BackgroundImage, BackgroundModeEnum, type BackgroundModeEnumWithLiterals, BackgroundType, type BackgroundTypeWithLiterals, type BackofficeActionDeeplink, type BarAlignment, BarAlignmentSelected, type BarAlignmentSelectedWithLiterals, type BaseEventMetadata, type BaseInfo, type BaseInstallation, type Behaviors, type BillingSettingsConfig, type BindingsSPIConfig, BlockType, type BlockTypeWithLiterals, type BlockquoteData, type BlocksData, type BlogPaywallProviderConfig, type BookingActionUrlsProviderConfig, type BookingAutomationsConfig, type BookingData, type BookingPermissionOverrides, type BookingPolicyProviderConfig, type BookingsPlatformConfig, type BookingsPricingProviderConfig, type BookingsResourceType, type BookingsResourceTypesProviderConfig, type BookingsValidationProviderConfig, type BoolListOptions, BooleanComponentType, type BooleanComponentTypeWithLiterals, type BooleanExperimentExposureRule, type BooleanType, type Border, type BorderColors, type BorderWidths, type BrandIcons, type BreakPoint, type BreakPointSection, type Breakpoint, BreakpointEnumBreakpoint, type BreakpointEnumBreakpointWithLiterals, type BreakpointPresetStyleOverrides, type Breakpoints, type BroadcastList, type BrowserPushChannel, type BrowserPushContentKeys, type BrowserStorage, type BuilderSpi, type BulletedListData, type Bundle, type BusinessManagerPage, type ButtonData, ButtonDataType, type ButtonDataTypeWithLiterals, type ButtonStyles, CalendarType, type CalendarTypeWithLiterals, type CaptionData, type CardStyles, CardStylesAlignment, type CardStylesAlignmentWithLiterals, CardStylesType, type CardStylesTypeWithLiterals, type CatalogSPIConfig, type CatalogSyncConfiguration, Category, type CategoryWithLiterals, type CellStyle, ChangeableProperty, type ChangeablePropertyWithLiterals, type ChannelBrandIcons, type ChannelBranding, type ChannelChannelBranding, type ChannelChannelConfiguration, type ChannelChannelConfigurationMessagingConfigOneOf, type ChannelConfiguration, ChannelConfigurationChannelType, type ChannelConfigurationChannelTypeWithLiterals, type ChannelConfigurationMessagingConfigOneOf, type ChannelIcon, type ChannelImplementedMethods, type ChannelMediaCapabilities, ChannelType, type ChannelTypeWithLiterals, type Checkbox, type CheckboxConfiguration, type CheckboxField, type CheckboxGroup, type CheckboxGroupOption, type CheckoutContentSPIConfig, type ClientResources, type ClientSideService, type CodeBlockData, type CodePackageComponentData, type CodePanel, type CollapsibleListData, type Collection, type Color, type ColorData, type ColorDefinition, type ColorSelectLabeled, type ColorSelectLabeledDataOneOf, type Colors, type CommentFilterProviderConfig, type CommentModerationProviderConfig, type CommentsContextProviderConfig, type CommonImage, type CommunicationChannelConfiguration, type ComponentData, type ComponentDataDataOneOf, type ComponentEnricherConfig, type ComponentInitialSize, type ComponentMetaData, type ComponentModel, type ComponentReferenceDataConfig, type ComponentTranslationAdditionalFieldsConfig, ComponentType, type ComponentTypeWithLiterals, 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 ContainerBehaviors, type ContainerDataOneOf, type ContainerLayout, type ContainerStyleOverrides, ContainerType, type ContainerTypeWithLiterals, type ContentData, type ContentDataOverrides, type ContentFill, type ContentProviderConfig, ContentResizeDirection, type ContentResizeDirectionWithLiterals, type Context, type ContextArrayItems, type ContextArrayItemsArrayDataOneOf, type ContextDataItems, type ContextImplementor, type ContextItem, type ContextItemSelectedDataTypeOneOf, type ContextSpecifier, type ConversationLimitations, type Coordinates, type CoreApps, type Corners, type CoverImageConfiguration, type CreateDataExtensionSchemaRequest, type CreateDataExtensionSchemaResponse, type CreateNewItemInfo, type CreatedByCacheEntity, Crop, type CropWithLiterals, type CrossSellConfig, type CssCustomPropertyAction, type CssCustomPropertyItem, type CssCustomPropertyItemSelectedCssPropertyTypeOneOf, CssDataType, type CssDataTypeWithLiterals, type CssNumber, type CssPropertyAction, type CssPropertyItem, type CssPropertyItemDefaults, type CssPropertyItemDefinitionOverrides, type CssPropertyItemSelectedCssPropertyTypeOneOf, CssPropertyType, CssPropertyTypeEnumCssPropertyType, type CssPropertyTypeEnumCssPropertyTypeWithLiterals, type CssPropertyTypeWithLiterals, CssVariableTypeEnumCssDataType, type CssVariableTypeEnumCssDataTypeWithLiterals, type CurrencyCodeListOptions, type CustomAction, type CustomActionActionExecuteOneOf, type CustomChargesConfig, type CustomElement, type CustomElementConsentCategoryOneOf, CustomElementScriptType, type CustomElementScriptTypeWithLiterals, type CustomElementWidget, type CustomEnum, type CustomEnumOption, type CustomEnumOptionCssProperty, type CustomExperimentExposureRule, type CustomFieldInfo, CustomFieldsType, type CustomFieldsTypeWithLiterals, type CustomInitialPreset, type CustomOption, type CustomPermission, type CustomPropertyEnum, type CustomPropertyEnumOption, type CustomPropertyEnumOptionStyle, type CustomRefData, type CustomReservationsApprovalConfig, type CustomRewardProviderConfig, type CustomScopeConfig, type CustomTriggerConfig, type DCConfigData, type Dashboard, type DashboardAction, type DashboardApplicationData, type DashboardButton, type DashboardComponentData, type DashboardItem, type DashboardPlatfromComponentData, type DataAction, type DataComponent, type DataExtensionSchema, type DataExtensionSchemaCreatedEnvelope, type DataExtensionSchemaDeletedEnvelope, DataExtensionSchemaState, type DataExtensionSchemaStateWithLiterals, type DataExtensionSchemaUpdatedEnvelope, type DataExtensionsComponentData, type DataGroupsArrayItems, type DataItem, type DataItemOverrides, type DataItemOverridesSelectedDataTypeOneOf, type DataItemSelectedDataTypeOneOf, type DataItems, type DataPermissions, DataType, type DataTypeWithLiterals, type DateInput, type DatePicker, type DateTimeConstraints, type DateTimeInput, type Debounce, type DecimalListOptions, type Decoration, type DecorationDataOneOf, DecorationType, type DecorationTypeWithLiterals, type Deeplink, type DeeplinkOfOneOf, Default, type DefaultCountryConfig, type DefaultCountryConfigOptionsOneOf, DefaultCountryConfigType, type DefaultCountryConfigTypeWithLiterals, type DefaultPresets, type DefaultTaxGroupProviderConfig, DefaultTextStyle, type DefaultTextStyleWithLiterals, type DefaultWithLiterals, type Definition, type Delay, type DelayTypeOneOf, type DeleteByWhiteListedMetaSiteRequest, type DeleteByWhiteListedMetaSiteResponse, type DeleteDemoDataExtensionSchemaRequest, type DeleteDemoDataExtensionSchemaResponse, type DeleteGlobalExtensionSchemaRequest, type DeleteGlobalExtensionSchemaResponse, type DeleteTemplateFields, type DeleteUserDefinedFieldsOptions, type DeleteUserDefinedFieldsRequest, type DeleteUserDefinedFieldsResponse, type DeploymentPipelineProviderConfig, type Description, type Design, DesignTarget, type DesignTargetWithLiterals, type DevCenterTestingComponentData, type DevCenterTestingComponentDataTranslatableOneOfOneOf, type Dimension, type Dimensions, type DirectMessageConfig, Direction, type DirectionWithLiterals, type DiscountConfig, type DiscountsSPIConfig, type DiscoveryMetaData, type Display, type DisplayField, type DisplayFieldDisplayFieldTypeOptionsOneOf, DisplayFieldType, type DisplayFieldTypeWithLiterals, type DisplayFilter, type DisplayFilters, type DisplayGroupAction, type DisplayGroupItem, type DisplayGroupItemSelectedGroupTypeOneOf, type DisplayProperties, type DisplayValue, DisplayValueEnumDisplayValue, type DisplayValueEnumDisplayValueWithLiterals, type DisputeServicePluginConfig, type DividerData, DividerDataAlignment, type DividerDataAlignmentWithLiterals, DividerDataWidth, type DividerDataWidthWithLiterals, type DmDirectMessageConfig, type Docking, type DockingProperties, type DocumentStyle, Domain, type DomainEvent, type DomainEventBodyOneOf, type DomainWithLiterals, type DonationInput, type DonationInputOption, type DrillInListItem, type DrillItem, type DrillItemDataOneOf, type DropDownLabeled, type Dropdown, type DropdownField, type DropdownFieldOption, type DropdownOption, type DropshippingProviderSPIConfig, type DtsContent, type DtsDefinitionReference, type DtsDefinitionReferenceDtsDefinitionOneOf, DtsDefinitionType, type DtsDefinitionTypeWithLiterals, type DtsHttpLink, type DurationInputConfiguration, type DurationInputConfigurationDurationRenameOptions, type DurationRenameOptions, type DynamicPriceOptions, type DynamicSiteStructureProviderConfig, type EditableFields, EditableProperties, type EditablePropertiesWithLiterals, type EditorAddon, type EditorBehaviors, type EditorContextProvider, type EditorContextProviderResources, type EditorDependencies, type EditorElement, type EditorElementLayout, type EditorFunction, type EditorFunctionLibrary, type EditorPresence, type EditorReactComponent, EffectGroup, type EffectGroupWithLiterals, ElementDisplayOption, type ElementDisplayOptionWithLiterals, type ElementItem, type ElementItemSelectedElementTypeOneOf, type ElementState, type ElementStyleDefaults, type ElementStyleOverrides, ElementType, type ElementTypeWithLiterals, type EmailChannel, type EmailEmailMessageConfig, type EmailInfo, EmailInfoTag, type EmailInfoTagWithLiterals, type EmailMessageConfig, type EmailTemplateConfig, type EmailTemplateConfigProviderOneOf, EmbedCategory, type EmbedCategoryWithLiterals, type EmbedData, type EmbeddedScriptComponentData, EmbeddedScriptPages, type EmbeddedScriptPagesWithLiterals, EmbeddedScriptPlacement, type EmbeddedScriptPlacementWithLiterals, type Empty, 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 ExemptRegions, type ExpectedInputs, type ExperimentGroupWrapper, type ExportMetadata, Exposure, type ExposureRule, type ExposureRuleRuleOneOf, ExposureRuleType, type ExposureRuleTypeWithLiterals, type ExposureWithLiterals, type Extendable, ExtendingComponentType, type ExtendingComponentTypeWithLiterals, type ExtensionData, type ExtensionDetails, type ExtensionExposure, ExtensionType, type ExtensionTypeWithLiterals, type ExternalDatabaseSpiConfig, type ExternalFilterProviderConfig, type FactorConfig, FactorType, type FactorTypeWithLiterals, type FeedAggregation, type FeedChannels, type FeedChannelsConfig, type FeesSPIConfig, type Field, FieldFieldType, type FieldFieldTypeWithLiterals, type FieldGroup, type FieldManagementConfig, type FieldOverride, type FieldOverrides, FieldType, type FieldTypeOptionsOneOf, type FieldTypeWithLiterals, type FieldsOverrides, type FieldsSettings, type FileData, FileMediaType, type FileMediaTypeWithLiterals, type FileSource, type FileSourceDataOneOf, type FileType, type FileUpload, type Filter, FilterFunction, type FilterFunctionWithLiterals, type FilterInfo, type FilterInfoOptionsOneOf, FilterOptionsType, type FilterOptionsTypeWithLiterals, FilterSelectionType, type FilterSelectionTypeWithLiterals, FilterValueDefinitionMode, type FilterValueDefinitionModeWithLiterals, type FilteringCapability, FirstDayOfWeek, type FirstDayOfWeekWithLiterals, type FirstLevelCategory, type FixedPayment, type FixedPositionBuilder, type FixedPositionOptions, type FixedPriceOptions, type FocalPoint, type Font, type FontDefinition, type FontFamilyData, type FontFamilyWithColorPicker, type FontSizeData, FontType, type FontTypeWithLiterals, type FormFieldContactInfo, type FormFieldContactInfoAdditionalInfoOneOf, type FormLayout, type FormOverride, type FormOverrideEntityTypeOptionsOneOf, type FormOverrideFieldOverride, type FormOverrideFieldOverridePropertyTypeOptionsOneOf, type FormSchemaDynamicValuesSpiConfig, type FormSchemaSpiConfig, type FormSpamSubmissionReportPermissions, type FormSpamSubmissionReportSpiConfig, type FormSpamSubmissionReportsNamespaceConfig, type FormSpamSubmissionSpiConfig, type FormSpiExtensionConfig, type FormSubmissionModerationSpiConfig, type FormSubmissionModerationSpiNamespaceConfig, type FormSubmissionSpiConfig, type FormSubmissionSpiExtensionConfig, type FormTemplate, type FormTemplateTemplateTypeOptionsOneOf, Format, type FormatWithLiterals, type FormsConfig, type FormsPermissions, type FormsSPIConfig, type FormsSchemaNamespaceConfig, type FormsSpamSubmissionsNamespaceConfig, type FormsSubmissionsExtensionNamespaceConfig, type FormsSubmissionsNamespaceConfig, type ForwardAction, type ForwardActionActionOneOf, type FreeOptionConfiguration, type FreePricingTypeConfiguration, type FreeTrialConfiguration, type FunctionAssistantToolProviderConfig, type FunctionDefinition, type FunctionEcomDiscountTriggerEligibilityProviderConfig, type FunctionParameter, type FunctionParameterArrayItems, type FunctionParameterArrayItemsArrayDataOneOf, type FunctionParameterItems, type FunctionParameterSelectedDataTypeOneOf, type FunctionRecipe, type FunctionResources, type FunctionReturnType, type FunctionReturnTypeSelectedDataTypeOneOf, type FunctionsShopPriceSpiConfig, type GIF, type GIFData, GIFType, type GIFTypeWithLiterals, type GalleryData, type GalleryOptions, type GalleryOptionsLayout, type GalleryOptionsThumbnails, type Gap, type GbpFeatureConfig, type GenericFunctionActivationConfig, type GenericHookConfig, type GenericHooksConfig, type GenericOptions, type GiftCardProviderConfig, type Gradient, type GradualDeleteCacheEntity, type GradualRolloutCacheEntity, type GradualUpdateCacheEntity, type GridAppFilesTransformerConfig, type Group, GroupType, type GroupTypeWithLiterals, type GroupedContent, type HTMLData, type HTMLDataDataOneOf, HTMLDataSource, type HTMLDataSourceWithLiterals, HTTPMethod, type HTTPMethodWithLiterals, type Header, type HeaderConfig, type HeaderConfigHeaderConfigOneOf, type HeaderConfigOneOf, type HeaderWidgetConfig, type HeadingData, type HeadlessOAuth, type Height, HeightMode, type HeightModeWithLiterals, type HelpArticle, type HelpArticleArticleTypeOneOf, type HelpResources, type HiddenOptions, HookType, type HookTypeWithLiterals, Horizontal, HorizontalDocking, type HorizontalDockingWithLiterals, type HorizontalWithLiterals, HostContainerId, type HostContainerIdWithLiterals, type HostedComponent, type HostedPage, type IDPConnectionConfig, type Icon, type IconDataOneOf, IconType, type IconTypeWithLiterals, type IdentificationData, type IdentificationDataIdOneOf, type Illustration, type IllustrationIllustrationOneOf, type Image, ImageCategoryTypes, type ImageCategoryTypesWithLiterals, type ImageConfig, type ImageData, type ImageDataStyles, type ImageDataStylesBorder, ImageFit, type ImageFitWithLiterals, type ImageOverrides, ImagePosition, type ImagePositionWithLiterals, ImageShape, type ImageShapeWithLiterals, type ImageStyles, ImageStylesPosition, type ImageStylesPositionWithLiterals, ImageType, type ImageTypeWithLiterals, type Implementation, type ImplementedMethods, ImportanceLevel, type ImportanceLevelWithLiterals, type InPersonOptions, type Index, type IndexField, InitDirection, type InitDirectionWithLiterals, InitialExpandedItems, type InitialExpandedItemsWithLiterals, type InitialPosition, type InitialSizeSetting, type InitialSizeSettingSelectedSizingTypeOneOf, type Initiator, type InitiatorDataOneOf, InitiatorType, type InitiatorTypeWithLiterals, type InlineElement, type Input, type InputConfiguration, type InputField, type InputFieldInputTypeOptionsOneOf, type InputField_Number, type InputField_NumberComponentTypeOptionsOneOf, InputType, type InputTypeWithLiterals, type InputWithPlaceholder, InstallPage, type InstallPageWithLiterals, type InstallationInfo, type InstallationInfoTargetContainerOneOf, type InstallationSettings, type InstallationSettingsOptionsOneOf, type IntListOptions, type IntegerType, type IntegrationOptions, IntegrationType, type IntegrationTypeWithLiterals, Intent, type IntentWithLiterals, type Interactions, type InterfaceConfiguration, type InterfaceConfigurationOfTypeOneOf, InterfaceConfigurationType, type InterfaceConfigurationTypeWithLiterals, type InternalComponentMetadata, type InventorySpiConfig, type InvoicesActionsComponentData, type InvoicesConfig, type IsStretched, type Item, type ItemDataOneOf, type ItemImage, type ItemLayout, type ItemLayoutItemOneOf, type ItemSelection, type ItemSelectionOptions, type ItemStyle, type ItemThumbnail, type ItemThumbnailOptionsOneOf, ItemType, type ItemTypeWithLiterals, type ItemVideo, type ItemsGroup, type ItemsSelectionProviderConfig, type KeepAliveConfig, type Keywords, type LanguageTagListOptions, Layout, type LayoutCellData, type LayoutData, type LayoutDataBackgroundImage, LayoutDataImagePosition, type LayoutDataImagePositionWithLiterals, LayoutMode, type LayoutModeWithLiterals, LayoutType, type LayoutTypeWithLiterals, type LayoutWithLiterals, type LearnMore, type LeftPanel, type LeftPanelWidgetConfig, type LegacyBackOfficeExtensionWidget, type LegacyBackOfficeExtensionWidgetAssetOneOf, type LegacyBackOfficeMenuItem, type LegacyBackOfficeMenuItemAction, type LegendsSpiConfig, Level, type LevelWithLiterals, type LightboxCloseOptions, type LightboxContent, type LightboxEditorSettings, type LightboxOptions, type LimiterField, type LineItemsEnricherConfig, LineStyle, type LineStyleWithLiterals, type Link, type LinkData, type LinkPreviewData, type LinkPreviewDataStyles, type LinkSuffix, LinkTarget, type LinkTargetWithLiterals, LinkType, type LinkTypeWithLiterals, type ListDataExtensionSchemasOptions, type ListDataExtensionSchemasRequest, type ListDataExtensionSchemasResponse, ListEventFromCalendars, type ListEventFromCalendarsWithLiterals, type ListItem, type ListValue, type LiveSiteActionDeeplink, type LocalDeliveryComponentData, type Location, type LocationLocationInfoOneOf, LockableOperation, type LockableOperationWithLiterals, type Logo, type Logos, type Main, type MainPresets, type MainPropsData, type ManagedMenuEntities, MandatoryField, type MandatoryFieldWithLiterals, type MapData, type MapSettings, MapType, type MapTypeWithLiterals, type Margin, type Margins, type MarketplaceProviderConfig, type MarketplaceSPIConfig, type MaskImage, Maturity, type MaturityWithLiterals, MeasurementSystem, type MeasurementSystemWithLiterals, type Media, type MediaCapabilities, type MediaItem, type MediaItemMediaOneOf, MediaMimeType, type MediaMimeTypeWithLiterals, type MediaSettings, type MembershipsSPIConfig, type MentionData, type MenuAction, type MenuActionActionOneOf, type MenuDropdown, type MenuLink, type MenuSlot, type MessageContainingTranslatables, type 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, MpaNavigation, type MpaNavigationWithLiterals, type MultiReferenceOptions, type MultiServiceBookingPolicyProviderConfig, type MultilineAddress, type MultilineAddressValidation, type MultilingualTranslationSchema, type MultipleDashboardsComponentData, type Namespace, type NamespaceConfig, type NamespaceConfigV2, NativeStateType, type NativeStateTypeWithLiterals, type NavigateToPageAction, NavigationType, type NavigationTypeWithLiterals, type NestedWidgets, type Node, type NodeDataOneOf, type NodeStyle, NodeType, type NodeTypeWithLiterals, type NotificationChannels, type NotificationContent, type NotificationPreferencesFilterConfig, type NotificationTopic, NotificationTopicState, type NotificationTopicStateWithLiterals, NotificationTopicType, type NotificationTopicTypeWithLiterals, type Npm, NullValue, type NullValueWithLiterals, NumberComponentType, type NumberComponentTypeWithLiterals, type NumberInput, NumberOfColumns, type NumberOfColumnsWithLiterals, type NumberType, OAuthAppType, type OAuthAppTypeWithLiterals, OAuthTechnologies, type OAuthTechnologiesWithLiterals, type ObjectField, type ObjectFieldTypeOptionsOneOf, type ObjectOptions, type ObjectType, type Oembed, type Offset, type OffsetValueOneOf, type OneTimeOptionConfiguration, type OneTimePricingTypeConfiguration, type OpenComponent, type OpenModalAction, type OperationExecutorConfig, Operator, type OperatorConfiguration, OperatorEnumOperator, type OperatorEnumOperatorWithLiterals, type OperatorWithLiterals, type Option, type OptionDesign, type OptionLayout, type OrCondition, Order, type OrderValue, type OrderWithLiterals, type OrderedListData, Orientation, type OrientationWithLiterals, 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, type PagesConfig, PaginationMode, type PaginationModeWithLiterals, type Panel, type PanelAction, type PanelActionSelectedPanelTypeOneOf, PanelContentType, type PanelContentTypeWithLiterals, PanelMode, type PanelModeWithLiterals, type PanelSelectedContentTypeOneOf, type PanelSize, PanelType, type PanelTypeWithLiterals, type PanoramaOptions, type ParagraphData, type Param, type Parameter, ParameterType, type ParameterTypeWithLiterals, type ParameterValueDefinitionDetailsOneOf, PartialPaymentRestriction, type PartialPaymentRestrictionWithLiterals, type PartialUpdateCacheEntity, ParticipantType, type ParticipantTypeWithLiterals, type Password, type PatternsWizard, type Payment, PaymentComponentType, type PaymentComponentTypeOptionsOneOf, type PaymentComponentTypeWithLiterals, type PaymentDateModification, type PaymentInput, type PaymentMethod, type PaymentMethodMethodOneOf, type PaymentServiceProviderConfig, type PaymentServiceProviderCredentialsField, type PaymentServiceProviderCredentialsFieldFieldOneOf, type PaymentSettingsSPIConfig, type PaymentType, type PaymentsGatewayComponentData, type PayoutsProviderConfig, type PerkValues, type PerksConfiguration, type PermissionOverrides, type Permissions, type PhoneConstraints, type PhoneInfo, PhoneInfoTag, type PhoneInfoTagWithLiterals, type PhoneInput, type PhoneOptions, type PingNotificationComponentData, type PingSettingsGroupComponentData, PingSettingsGroupComponentDataState, type PingSettingsGroupComponentDataStateWithLiterals, type PlaceHolder, Placement, type PlacementWithLiterals, type PlanDuration, type PlanFormBenefitsSection, type PlanFormCustomPricingRulesSection, type PlanFormCustomSection, PlanFormDefaultSection, type PlanFormDefaultSectionWithLiterals, type PlanFormDurationSection, type PlanFormInfoSection, type PlanFormInitialValue, type PlanFormPagePermissionsSection, type PlanFormPlanSettingsSection, type PlanFormPreviewSection, type PlanFormPricingAndDurationSection, type PlanFormPricingAndDurationSectionDurationInputConfiguration, type PlanFormPricingAndDurationSectionInputConfiguration, PlanFormPricingOption, type PlanFormPricingOptionWithLiterals, type PlanFormPricingSection, type PlanFormPricingSectionInputConfiguration, type PlanFormPricingSectionSetupFeeConfiguration, PlanFormPricingType, type PlanFormPricingTypeWithLiterals, type PlanFormSection, type PlanFormSectionSectionOneOf, type PlanFormStartDateRulesSection, type PlanFormTypeMetadata, PlanPeriodUnit, type PlanPeriodUnitWithLiterals, type PlanPriceData, type PlanPricing, type PlanPricingPricingModelOneOf, type PlanSettingsRowConfiguration, type PlatformHeaderConfig, type PlatfromComponentData, type PlaybackOptions, type PluginConfig, type PluginContainerData, PluginContainerDataAlignment, type PluginContainerDataAlignmentWithLiterals, type PluginContainerDataHeight, type PluginContainerDataWidth, type PluginContainerDataWidthDataOneOf, type PluginInstallationSettings, PluginInterface, type PluginInterfaceWithLiterals, type PluginMarketData, type PluginPlacement, type PolicyConfig, type PolicyPermissionOverrides, type Poll, type PollData, type PollDataLayout, type PollDesign, type PollDesignBackground, type PollDesignBackgroundBackgroundOneOf, type PollLayout, PollLayoutDirection, type PollLayoutDirectionWithLiterals, PollLayoutType, type PollLayoutTypeWithLiterals, type PollOption, type PollSettings, type PosProviderSettingsServicePluginConfig, type Position, type PostLoginConfig, type PreRegisterConfig, type PredefinedExpectedInput, type PredefinedExpectedInputConfiguration, type PredefinedExpectedInputConfigurationTypeOneOf, type PredefinedLabel, type PredefinedValues, type Preset, type PresetEditorPresence, type PresetElementDefaults, type PresetInfo, type PresetInnerElementDefaults, type PresetItem, type PresetSize, type PresetStyleDefaults, type PresetStyleItemOverrides, type PresetStyleOverrides, type PreviewCardPlaceholders, type PreviewConfiguration, type PreviewFields, type PriceSPIConfig, PriceType, type PriceTypeWithLiterals, type PricingData, type PricingPlansFormConfiguration, type PricingRecurring, type Primitive, PrimitiveType, type PrimitiveTypeWithLiterals, type Product, type ProductCatalogProviderConfig, type ProductCheckboxGroup, type ProductCheckboxGroupOption, type ProductPriceOptionsOneOf, type ProductRestrictionsConfig, ProductType, type ProductTypeWithLiterals, type ProductsPathsConfig, type Project, type PropertiesType, PropertiesTypeEnum, type PropertiesTypeEnumWithLiterals, type PropertiesTypePropertiesTypeOptionsOneOf, type ProposalEditorProviderConfig, type Provider, type ProviderAccountServicePluginConfig, type ProviderConfig, type ProviderConfigMessage, type ProviderFilterOptions, type ProviderSuppressionServicePluginConfig, type PurchaseValidationsConfig, type QuantityLimit, type RadioButtonLabeled, type RadioGroup, type RadioGroupOption, type RangeConstraints, type RateLimit, type RatingInput, type ReactElementContainer, type ReactElementContainerSelectedContainerTypeOneOf, type RecipientFilter, type RecipientFilterDataOneOf, RecipientFilterType, type RecipientFilterTypeWithLiterals, RecipientType, type RecipientTypeWithLiterals, type RecommendationsProviderConfig, type RecurringOptionConfiguration, type RecurringPricingTypeConfiguration, type RecurringPricingTypeConfigurationFreeTrialConfiguration, type RedirectOptions, type RefElement, type RefInnerElementDefaults, type ReferenceOptions, Region, RegionScopeScope, type RegionScopeScopeWithLiterals, RegionType, type RegionTypeWithLiterals, type RegionWithLiterals, type ReindexEvent, type ReindexField, type Rel, type RenderOverrides, type RepeatedFieldOverrideConfig, 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, ResponsivenessBehaviour, type ResponsivenessBehaviourWithLiterals, 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 RichText, RichTextAbilities, type RichTextAbilitiesWithLiterals, type RichTextWithIllustrationVertical, type RouterPage, type Rule, type RuntimeComponentCacheEntity, type RuntimeComponentCacheEntityComponent, type RuntimeComponentCacheEntityComponentOneOf, type RuntimeComponentCacheEntityExperiment, type RuntimeComponentCacheEntityExperimentExperimentOneOf, type SDKExports, type SDKExportsNpm, Scaling, type ScalingWithLiterals, type Scheduling, SchedulingComponentType, type SchedulingComponentTypeOptionsOneOf, type SchedulingComponentTypeWithLiterals, type Schema, type SchemaConfig, type SchemaField, SchemaFieldExposure, type SchemaFieldExposureWithLiterals, SchemaFieldFieldType, type SchemaFieldFieldTypeWithLiterals, type SchemaFieldType, type SchemaFieldTypeFieldTypeOneOf, type SchemaGroup, type SchemaGroupElement, type SchemaKey, SchemaScope, type SchemaScopeWithLiterals, Scope, type ScopeWithLiterals, ScriptType, type ScriptTypeWithLiterals, type SdkDefinition, type SearchConfig, type SearchField, type SearchParams, type SecondLevelCategory, type Section, type SentryOptions, type SeoKeywordsSuggestionsSPIConfig, type ServiceAction, type ServiceAvailabilityPolicyProviderConfig, type ServicePermissionOverrides, type ServiceTrigger, type ServicesDropdown, type ServicesDropdownOption, type Settings, type SettingsPanel, type SettingsPermissions, type SettingsUrl, type SetupFeeConfiguration, type ShapeData, type ShapeDataStyles, type SharedPlatformMobilePushConfig, type ShippingLabelCarrierSpiConfig, type ShippingProviderConfig, type ShippingRatesConfig, type ShorthandGroupBackground, type ShoutoutEmail, type Sidebar, type SidebarChildItem, type SidebarChildItemItemOneOf, type SidebarConfig, type SidebarConfigOneOf, SidebarDataType, type SidebarDataTypeWithLiterals, SidebarEntityType, type SidebarEntityTypeWithLiterals, type SidebarRootItem, type SidebarRootItemItemOneOf, type SidebarSecondLevelChildItem, type SidebarSecondLevelChildItemItemOneOf, type SidebarWidget, type SidebarWidgetConfig, type SidebarWidgetConfigOneOf, type Signature, type Simple, type SimpleContainer, type SimpleField, SimpleType, type SimpleTypeWithLiterals, type SingleContent, type SingleKeyCondition, type SiteConfig, type SiteContributorsData, type SiteMapProviderConfig, type SiteMemberData, SiteMembersSsrCaching, type SiteMembersSsrCachingWithLiterals, type SiteMigrationSpiConfig, type SiteWidgetSlot, type Size, SizingType, type SizingTypeWithLiterals, type SliderLabeled, type Slot, type SlotData, type SlotDataSlotTypeOneOf, SlotDataType, type SlotDataTypeWithLiterals, type SlotParams, type SmsActionMessage, type SmsChannel, type SmsContentKeys, type SmsMessageConfig, type SmsSmsMessageConfig, type SnippetSolutionData, type SocialMarketingDesignSPIConfig, type SocialMarketingDesignsProviderConfig, type Source, type SourceOptionsOneOf, SourceType, type SourceTypeWithLiterals, type SpamSubmissionPermissions, type Spi, type SpiBaseUri, type Spoiler, type SpoilerData, type StaffSortingProviderConfig, type StartDateLimitsSPIConfig, type StartDateRulesSPIConfig, type State, StaticContainer, type StaticContainerWithLiterals, type StaticFileComponentData, type StaticFilterOption, type StaticFilterOptions, Status, type StatusWithLiterals, type Step, StorageDomain, type StorageDomainWithLiterals, StorageType, type StorageTypeWithLiterals, StringComponentType, type StringComponentTypeWithLiterals, type StringListOptions, type StringOption, type StringType, type StringTypeFormatOptionsOneOf, type StudioComponentData, type StudioWidgetComponentData, type StudioWidgetVariation, type StyleAction, type StyleItem, type StyleItemDefaults, type StyleItemOverrides, type StyleItemSelectedCssPropertyTypeOneOf, type StyleItemSelectedCssVariableTypeOneOf, type StyleItemSelectedItemTypeOneOf, StyleType, type StyleTypeWithLiterals, type Styles, type StylesBorder, StylesPosition, type StylesPositionWithLiterals, type SubPage, type SubmissionPermissions, type SubmitSettings, type SubmitSettingsSubmitSuccessActionOptionsOneOf, SubmitSuccessAction, type SubmitSuccessActionWithLiterals, type SubscriptionInfo, SyncToCalendar, type SyncToCalendarWithLiterals, type SyncedProjectsProviderConfig, type Tab, type TableCellData, type TableData, Tag, type TagOverrides, type TagOverridesEntry, type TagWithLiterals, type Tags, type TagsOption, Target, type TargetElement, type TargetWithLiterals, type TaxCalculationConfig, type TaxCalculatorSpiConfig, type TaxCountriesConfig, type TaxExemptGroup, type TaxExemptGroupsProviderConfig, type TaxGroupsProviderConfig, type TaxIdValidatorConfig, type TaxTypesConfig, type TaxationCategoryProvider, TemplateDefaultColor, type TemplateDefaultColorWithLiterals, TemplateType, type TemplateTypeWithLiterals, type TermsAndConditionsConfiguration, type TermsModalConfiguration, TestEnum, type TestEnumWithLiterals, type Text, TextAlignment, type TextAlignmentWithLiterals, type TextData, type TextDecoration, type TextEnum, type TextGroup, type TextInput, TextInputDisplayType, type TextInputDisplayTypeWithLiterals, type TextInputLabeled, type TextInputSettings, type TextNodeStyle, type TextStyle, type TextStyleDefaultColorOneOf, type TextToSpeechActionMessage, type TextWithSuffix, type TextWithSuffixSuffixOneOf, type TextWithTooltip, type ThankYouMessageOptions, type ThankYouPageConfiguration, type ThankYouPageInputConfig, type ThankYouPageModalConfiguration, type ThankYouPagePreviewConfiguration, type ThankYouPageRedirectsConfiguration, type ThumbnailData, ThumbnailType, type ThumbnailTypeWithLiterals, type Thumbnails, ThumbnailsAlignment, type ThumbnailsAlignmentWithLiterals, ThumbnailsSize, type ThumbnailsSizeWithLiterals, type TicketReservationsSpiConfig, type TimeConstraintConfiguration, type TimeConstraintConfigurationValueConstraintsOneOf, TimeConstraintType, type TimeConstraintTypeWithLiterals, type TimeInput, type ToggleLabeled, type ToolPanelConfig, type TooltipSuffix, type TopologyComponentData, type TranslatedData, type TranslatedMessageWithIdRepeated, type TranslatedMessageWithUniqueFieldRepeated, type TranslationResources, Trigger, type TriggerFieldOverride, type TriggerFilter, type TriggerOverride, type TriggerProviderSPIConfig, type TriggerWithLiterals, Type, type TypeWithLiterals, type TypedDynamicParam, TypedDynamicParamType, type TypedDynamicParamTypeWithLiterals, type UnifiedLightbox, type UnifiedPage, type UnifiedPageEditorSettings, UnitType, type UnitTypeWithLiterals, type Until, type UpdateDataExtensionSchemaRequest, type UpdateDataExtensionSchemaResponse, UploadFileFormat, UploadFileFormatEnumUploadFileFormat, type UploadFileFormatEnumUploadFileFormatWithLiterals, type UploadFileFormatWithLiterals, type UpstreamWixCommonImage, type Url, type UrlData, type UrlMapperProviderConfig, type UrlParam, type UserNotification, type UserNotificationData, type UserNotificationDataContext, type UserNotificationDataDeeplink, type UserNotificationDataDeeplinkOfOneOf, type UserNotificationDataInitiator, type UserNotificationDataInitiatorDataOneOf, type UserNotificationDataRecipientFilter, type UserNotificationDataRecipientFilterDataOneOf, UserNotificationDataRecipientFilterType, type UserNotificationDataRecipientFilterTypeWithLiterals, UserNotificationDataType, type UserNotificationDataTypeWithLiterals, type V1Image, type V1ImplementedMethods, type V1Link, type V1LinkDataOneOf, type V1Metadata, type V1Region, type V1SchemaField, V1Scope, type V1ScopeWithLiterals, type V1TextStyle, type V1ValidationTarget, type V2CommunicationChannelConfiguration, type V2Condition, type V2Field, type V2FieldFieldTypeOptionsOneOf, type V2ImplementedMethods, type V2Rule, type V2TriggerOverride, type ValidationMessages, type ValidationTarget, ValidationTargetMethod, type ValidationTargetMethodWithLiterals, type ValidationsSPIConfig, ValueConstraintType, type ValueConstraintTypeWithLiterals, type VectorArt, VectorArtCategoryTypes, type VectorArtCategoryTypesWithLiterals, type VectorArtOverrides, type VeloActionConfig, type VeloCustomCss, type VeloPublishPipelineTaskProviderConfig, type VelocityEmail, Vertical, VerticalAlignment, VerticalAlignmentAlignment, type VerticalAlignmentAlignmentWithLiterals, type VerticalAlignmentWithLiterals, VerticalDocking, type VerticalDockingWithLiterals, type VerticalWithLiterals, VibeActionType, type VibeActionTypeWithLiterals, type VibeCustomPanelAction, type VibeDashboardAction, type Video, VideoCategoryTypes, type VideoCategoryTypesWithLiterals, type VideoConferenceOptions, type VideoData, type VideoOverrides, ViewMode, type ViewModeWithLiterals, ViewRole, type ViewRoleWithLiterals, type 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 WixAiGatewaySpiConfig, 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 WixVibeCodingInstructions, type WixVibeComponent, type WixelSPIConfig, type WorkerComponentData, type WritingMode, WritingModeValue, type WritingModeValueWithLiterals, type _Array, type _ArrayComponentTypeOptionsOneOf, type _Boolean, type _BooleanComponentTypeOptionsOneOf, type _Date, type _Function, type _Number, type _Object, type _String, type _StringComponentTypeOptionsOneOf, createDataExtensionSchema, deleteByWhiteListedMetaSite, deleteUserDefinedFields, listDataExtensionSchemas, onDataExtensionSchemaCreated, onDataExtensionSchemaDeleted, onDataExtensionSchemaUpdated, updateDataExtensionSchema };
@@ -117,6 +117,7 @@ __export(index_typings_exports, {
117
117
  HTTPMethod: () => HTTPMethod,
118
118
  HeightMode: () => HeightMode,
119
119
  HookType: () => HookType,
120
+ Horizontal: () => Horizontal,
120
121
  HorizontalDocking: () => HorizontalDocking,
121
122
  HostContainerId: () => HostContainerId,
122
123
  IconType: () => IconType,
@@ -251,9 +252,11 @@ __export(index_typings_exports, {
251
252
  UploadFileFormatEnumUploadFileFormat: () => UploadFileFormatEnumUploadFileFormat,
252
253
  UserNotificationDataRecipientFilterType: () => UserNotificationDataRecipientFilterType,
253
254
  UserNotificationDataType: () => UserNotificationDataType,
255
+ V1Scope: () => V1Scope,
254
256
  ValidationTargetMethod: () => ValidationTargetMethod,
255
257
  ValueConstraintType: () => ValueConstraintType,
256
258
  VectorArtCategoryTypes: () => VectorArtCategoryTypes,
259
+ Vertical: () => Vertical,
257
260
  VerticalAlignment: () => VerticalAlignment,
258
261
  VerticalAlignmentAlignment: () => VerticalAlignmentAlignment,
259
262
  VerticalDocking: () => VerticalDocking,
@@ -833,6 +836,7 @@ var RegionType = /* @__PURE__ */ ((RegionType2) => {
833
836
  var StaticContainer = /* @__PURE__ */ ((StaticContainer2) => {
834
837
  StaticContainer2["UNKNOWN_CONTAINER"] = "UNKNOWN_CONTAINER";
835
838
  StaticContainer2["HOMEPAGE"] = "HOMEPAGE";
839
+ StaticContainer2["GLOBAL_PAGE"] = "GLOBAL_PAGE";
836
840
  return StaticContainer2;
837
841
  })(StaticContainer || {});
838
842
  var EmbeddedScriptPages = /* @__PURE__ */ ((EmbeddedScriptPages2) => {
@@ -1176,6 +1180,7 @@ var Tag = /* @__PURE__ */ ((Tag2) => {
1176
1180
  Tag2["GET_PAID"] = "GET_PAID";
1177
1181
  Tag2["PIPELINE_CARD_CATALOG_ITEM"] = "PIPELINE_CARD_CATALOG_ITEM";
1178
1182
  Tag2["OWNER_CHECKOUT"] = "OWNER_CHECKOUT";
1183
+ Tag2["ECOM_PREVIEW_CHECKOUT"] = "ECOM_PREVIEW_CHECKOUT";
1179
1184
  return Tag2;
1180
1185
  })(Tag || {});
1181
1186
  var FilterSelectionType = /* @__PURE__ */ ((FilterSelectionType2) => {
@@ -1274,6 +1279,7 @@ var NodeType = /* @__PURE__ */ ((NodeType2) => {
1274
1279
  NodeType2["CAPTION"] = "CAPTION";
1275
1280
  NodeType2["LAYOUT"] = "LAYOUT";
1276
1281
  NodeType2["LAYOUT_CELL"] = "LAYOUT_CELL";
1282
+ NodeType2["SHAPE"] = "SHAPE";
1277
1283
  return NodeType2;
1278
1284
  })(NodeType || {});
1279
1285
  var WidthType = /* @__PURE__ */ ((WidthType2) => {
@@ -2082,6 +2088,12 @@ var WixCodePublishTaskName = /* @__PURE__ */ ((WixCodePublishTaskName2) => {
2082
2088
  WixCodePublishTaskName2["CODE_PACKAGES_REGISTRATION"] = "CODE_PACKAGES_REGISTRATION";
2083
2089
  return WixCodePublishTaskName2;
2084
2090
  })(WixCodePublishTaskName || {});
2091
+ var Scope = /* @__PURE__ */ ((Scope2) => {
2092
+ Scope2["UNKNOWN_SCOPE"] = "UNKNOWN_SCOPE";
2093
+ Scope2["SITE"] = "SITE";
2094
+ Scope2["ENTITY"] = "ENTITY";
2095
+ return Scope2;
2096
+ })(Scope || {});
2085
2097
  var ChannelConfigurationChannelType = /* @__PURE__ */ ((ChannelConfigurationChannelType2) => {
2086
2098
  ChannelConfigurationChannelType2["UNKNOWN_CHANNEL_TYPE"] = "UNKNOWN_CHANNEL_TYPE";
2087
2099
  ChannelConfigurationChannelType2["DIRECT_MESSAGING"] = "DIRECT_MESSAGING";
@@ -2194,11 +2206,11 @@ var InterfaceConfigurationType = /* @__PURE__ */ ((InterfaceConfigurationType2)
2194
2206
  InterfaceConfigurationType2["ITEM_SELECTION"] = "ITEM_SELECTION";
2195
2207
  return InterfaceConfigurationType2;
2196
2208
  })(InterfaceConfigurationType || {});
2197
- var Scope = /* @__PURE__ */ ((Scope2) => {
2198
- Scope2["SPECIFIC_SITE"] = "SPECIFIC_SITE";
2199
- Scope2["NON_SPECIFIC_SITE"] = "NON_SPECIFIC_SITE";
2200
- return Scope2;
2201
- })(Scope || {});
2209
+ var V1Scope = /* @__PURE__ */ ((V1Scope2) => {
2210
+ V1Scope2["SPECIFIC_SITE"] = "SPECIFIC_SITE";
2211
+ V1Scope2["NON_SPECIFIC_SITE"] = "NON_SPECIFIC_SITE";
2212
+ return V1Scope2;
2213
+ })(V1Scope || {});
2202
2214
  var DataType = /* @__PURE__ */ ((DataType2) => {
2203
2215
  DataType2["UNKNOWN_DataType"] = "UNKNOWN_DataType";
2204
2216
  DataType2["text"] = "text";
@@ -2944,6 +2956,20 @@ var EffectGroup = /* @__PURE__ */ ((EffectGroup2) => {
2944
2956
  EffectGroup2["background"] = "background";
2945
2957
  return EffectGroup2;
2946
2958
  })(EffectGroup || {});
2959
+ var Vertical = /* @__PURE__ */ ((Vertical2) => {
2960
+ Vertical2["NONE"] = "NONE";
2961
+ Vertical2["TOP"] = "TOP";
2962
+ Vertical2["CENTER"] = "CENTER";
2963
+ Vertical2["BOTTOM"] = "BOTTOM";
2964
+ return Vertical2;
2965
+ })(Vertical || {});
2966
+ var Horizontal = /* @__PURE__ */ ((Horizontal2) => {
2967
+ Horizontal2["NONE"] = "NONE";
2968
+ Horizontal2["LEFT"] = "LEFT";
2969
+ Horizontal2["CENTER"] = "CENTER";
2970
+ Horizontal2["RIGHT"] = "RIGHT";
2971
+ return Horizontal2;
2972
+ })(Horizontal || {});
2947
2973
  var RestrictionLevel = /* @__PURE__ */ ((RestrictionLevel2) => {
2948
2974
  RestrictionLevel2["UNKNOWN_RESTRICTION_TYPE"] = "UNKNOWN_RESTRICTION_TYPE";
2949
2975
  RestrictionLevel2["WARNING"] = "WARNING";
@@ -2988,6 +3014,7 @@ var OperatorEnumOperator = /* @__PURE__ */ ((OperatorEnumOperator2) => {
2988
3014
  OperatorEnumOperator2["WITH_SOME_OF"] = "WITH_SOME_OF";
2989
3015
  OperatorEnumOperator2["ANY"] = "ANY";
2990
3016
  OperatorEnumOperator2["WITH_NONE_OF"] = "WITH_NONE_OF";
3017
+ OperatorEnumOperator2["WITH_PREFIX_FROM"] = "WITH_PREFIX_FROM";
2991
3018
  return OperatorEnumOperator2;
2992
3019
  })(OperatorEnumOperator || {});
2993
3020
  var ParameterType = /* @__PURE__ */ ((ParameterType2) => {
@@ -3351,6 +3378,7 @@ async function deleteUserDefinedFields2(dataExtensionSchemaId, options) {
3351
3378
  HTTPMethod,
3352
3379
  HeightMode,
3353
3380
  HookType,
3381
+ Horizontal,
3354
3382
  HorizontalDocking,
3355
3383
  HostContainerId,
3356
3384
  IconType,
@@ -3485,9 +3513,11 @@ async function deleteUserDefinedFields2(dataExtensionSchemaId, options) {
3485
3513
  UploadFileFormatEnumUploadFileFormat,
3486
3514
  UserNotificationDataRecipientFilterType,
3487
3515
  UserNotificationDataType,
3516
+ V1Scope,
3488
3517
  ValidationTargetMethod,
3489
3518
  ValueConstraintType,
3490
3519
  VectorArtCategoryTypes,
3520
+ Vertical,
3491
3521
  VerticalAlignment,
3492
3522
  VerticalAlignmentAlignment,
3493
3523
  VerticalDocking,