@wix/app-extensions 1.0.22 → 1.0.24

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.
@@ -10385,6 +10385,8 @@ interface FormsSchemaNamespaceConfig {
10385
10385
  multilingualEnabled?: boolean;
10386
10386
  /** Attempt to select unique name for form */
10387
10387
  uniqueName?: boolean;
10388
+ /** Enable client form schema overrides before save, more info in OverrideFormSchema. */
10389
+ schemaOverridesEnabled?: boolean;
10388
10390
  }
10389
10391
  /** @internal */
10390
10392
  interface FormsPermissions {
@@ -13639,7 +13641,7 @@ interface InputField extends InputFieldInputTypeOptionsOneOf {
13639
13641
  * Type of the input field
13640
13642
  * @readonly
13641
13643
  */
13642
- inputType?: InputTypeWithLiterals;
13644
+ inputType?: InputFieldInputTypeWithLiterals;
13643
13645
  /** Mapping to contacts, telling to what contact property field input value should be saved. */
13644
13646
  contactMapping?: FormFieldContactInfo;
13645
13647
  /**
@@ -15292,7 +15294,7 @@ interface PhoneOptions {
15292
15294
  description?: string | null;
15293
15295
  }
15294
15296
  /** @internal */
15295
- declare enum InputType {
15297
+ declare enum InputFieldInputType {
15296
15298
  UNKNOWN_INPUT_TYPE = "UNKNOWN_INPUT_TYPE",
15297
15299
  STRING = "STRING",
15298
15300
  NUMBER = "NUMBER",
@@ -15307,7 +15309,7 @@ declare enum InputType {
15307
15309
  }
15308
15310
  /** @enumType */
15309
15311
  /** @internal */
15310
- type InputTypeWithLiterals = InputType | 'UNKNOWN_INPUT_TYPE' | 'STRING' | 'NUMBER' | 'BOOLEAN' | 'ARRAY' | 'OBJECT' | 'WIX_FILE' | 'PAYMENT' | 'MULTILINE_ADDRESS' | 'SCHEDULING' | 'ADDRESS';
15312
+ type InputFieldInputTypeWithLiterals = InputFieldInputType | 'UNKNOWN_INPUT_TYPE' | 'STRING' | 'NUMBER' | 'BOOLEAN' | 'ARRAY' | 'OBJECT' | 'WIX_FILE' | 'PAYMENT' | 'MULTILINE_ADDRESS' | 'SCHEDULING' | 'ADDRESS';
15311
15313
  /** @internal */
15312
15314
  interface FormFieldContactInfo extends FormFieldContactInfoAdditionalInfoOneOf {
15313
15315
  /** Email info. */
@@ -17911,6 +17913,10 @@ interface DataItem extends DataItemSelectedDataTypeOneOf {
17911
17913
  data?: DataItems;
17912
17914
  /** A definition of a custom function */
17913
17915
  function?: EditorFunction;
17916
+ /** A definition of what fields are available for filtering */
17917
+ filter?: FilterDefinition;
17918
+ /** A definition of what fields are available for sorting */
17919
+ sort?: SortDefinition;
17914
17920
  /** Defines the type of data we are configuring */
17915
17921
  dataType?: DataTypeWithLiterals;
17916
17922
  /**
@@ -17957,6 +17963,10 @@ interface DataItemSelectedDataTypeOneOf {
17957
17963
  data?: DataItems;
17958
17964
  /** A definition of a custom function */
17959
17965
  function?: EditorFunction;
17966
+ /** A definition of what fields are available for filtering */
17967
+ filter?: FilterDefinition;
17968
+ /** A definition of what fields are available for sorting */
17969
+ sort?: SortDefinition;
17960
17970
  }
17961
17971
  /** @internal */
17962
17972
  declare enum DataType {
@@ -18015,20 +18025,24 @@ declare enum DataType {
18015
18025
  data = "data",
18016
18026
  /** A custom function that can be used to call a function from a custom library */
18017
18027
  'function' = "function",
18018
- /** Standard [onClick handler](https://developer.mozilla.org/en-US/docs/Web/API/Element/click_event), can also handle: `()=>void` */
18028
+ /** Deprecated: use function with pointerEvent parameter. Standard [onClick handler](https://developer.mozilla.org/en-US/docs/Web/API/Element/click_event) */
18019
18029
  onClick = "onClick",
18020
- /** Standard input event [onChange](https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement/change_event) for text inputs, can also handle: `(value: string) => void` */
18030
+ /** Deprecated: use function with changeEvent parameter. Standard [onChange handler](https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement/change_event) */
18021
18031
  onChange = "onChange",
18022
- /** Standard [onKeyPress handler](https://developer.mozilla.org/en-US/docs/Web/API/Element/keypress_event), can also handle: `(event: KeyboardEvent) => void` */
18032
+ /** Deprecated: use function with keyboardEvent parameter. Standard [onKeyPress handler](https://developer.mozilla.org/en-US/docs/Web/API/Element/keypress_event) */
18023
18033
  onKeyPress = "onKeyPress",
18024
- /** Standard [onKeyUp handler](https://developer.mozilla.org/en-US/docs/Web/API/Element/keyup_event), can also handle: `(event: KeyboardEvent) => void` */
18034
+ /** Deprecated: use function with keyboardEvent parameter. Standard [onKeyUp handler](https://developer.mozilla.org/en-US/docs/Web/API/Element/keyup_event) */
18025
18035
  onKeyUp = "onKeyUp",
18026
- /** Standard [onSubmit handler](https://developer.mozilla.org/en-US/docs/Web/API/HTMLFormElement/submit_event), can also handle: `() => void` */
18027
- onSubmit = "onSubmit"
18036
+ /** Deprecated: use function with submitEvent parameter. Standard [onSubmit handler](https://developer.mozilla.org/en-US/docs/Web/API/HTMLFormElement/submit_event) */
18037
+ onSubmit = "onSubmit",
18038
+ /** A WQL-compliant filter definition for querying data */
18039
+ filter = "filter",
18040
+ /** A WQL-compliant sort definition for ordering data */
18041
+ sort = "sort"
18028
18042
  }
18029
18043
  /** @enumType */
18030
18044
  /** @internal */
18031
- type DataTypeWithLiterals = DataType | 'UNKNOWN_DataType' | 'text' | 'textEnum' | 'number' | 'booleanValue' | 'a11y' | 'link' | 'image' | 'video' | 'vectorArt' | 'audio' | 'schema' | 'localDate' | 'localTime' | 'localDateTime' | 'webUrl' | 'email' | 'phone' | 'hostname' | 'regex' | 'guid' | 'richText' | 'container' | 'arrayItems' | 'direction' | 'menuItems' | 'data' | 'function' | 'onClick' | 'onChange' | 'onKeyPress' | 'onKeyUp' | 'onSubmit';
18045
+ type DataTypeWithLiterals = DataType | 'UNKNOWN_DataType' | 'text' | 'textEnum' | 'number' | 'booleanValue' | 'a11y' | 'link' | 'image' | 'video' | 'vectorArt' | 'audio' | 'schema' | 'localDate' | 'localTime' | 'localDateTime' | 'webUrl' | 'email' | 'phone' | 'hostname' | 'regex' | 'guid' | 'richText' | 'container' | 'arrayItems' | 'direction' | 'menuItems' | 'data' | 'function' | 'onClick' | 'onChange' | 'onKeyPress' | 'onKeyUp' | 'onSubmit' | 'filter' | 'sort';
18032
18046
  /** @internal */
18033
18047
  interface Text {
18034
18048
  /** Indicates maximum length allowed for the text */
@@ -18420,13 +18434,20 @@ interface TemplateContainer {
18420
18434
  /** A path to a data item within the same element scope. */
18421
18435
  /** @internal */
18422
18436
  interface ItemPath {
18437
+ /**
18438
+ * Deprecated, use item_key instead
18439
+ * @minLength 1
18440
+ * @deprecated Deprecated, use item_key instead
18441
+ * @replacedBy item_key
18442
+ * @targetRemovalDate 2026-09-30
18443
+ */
18444
+ dataItemKey?: string;
18423
18445
  /**
18424
18446
  * The key of the data item within the element's data scope.
18425
18447
  * Example: "items" – top-level data item 'items'
18426
18448
  * Example: "slides.title" – inner key 'title' of data item 'slides'
18427
- * @minLength 1
18428
18449
  */
18429
- dataItemKey?: string;
18450
+ itemKey?: string;
18430
18451
  }
18431
18452
  /** rich text data type allow manipulation of text with html & inline styles */
18432
18453
  /** @internal */
@@ -18581,8 +18602,15 @@ interface FunctionParameter extends FunctionParameterSelectedDataTypeOneOf {
18581
18602
  function?: EditorFunction;
18582
18603
  /** In case of a text enum */
18583
18604
  textEnum?: TextEnum;
18584
- /** The type of the Parameter, does not include containers */
18605
+ /** In case of a Change event parameter */
18606
+ changeEvent?: ChangeEvent;
18607
+ /**
18608
+ * Exactly one of `data_type` or `dom_event` must be set
18609
+ * A data type parameter
18610
+ */
18585
18611
  dataType?: DataTypeWithLiterals;
18612
+ /** A DOM event parameter */
18613
+ domEvent?: DomEventTypeWithLiterals;
18586
18614
  /** Whether the Parameter is optional, limitations of Javascript apply, only the last parameters can be optional */
18587
18615
  optional?: boolean | null;
18588
18616
  /**
@@ -18614,7 +18642,26 @@ interface FunctionParameterSelectedDataTypeOneOf {
18614
18642
  function?: EditorFunction;
18615
18643
  /** In case of a text enum */
18616
18644
  textEnum?: TextEnum;
18645
+ /** In case of a Change event parameter */
18646
+ changeEvent?: ChangeEvent;
18647
+ }
18648
+ /** @internal */
18649
+ declare enum DomEventType {
18650
+ UNKNOWN_DomEventType = "UNKNOWN_DomEventType",
18651
+ /** Value change event (https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement/change_event) */
18652
+ CHANGE = "CHANGE",
18653
+ /** Pointer interaction event (https://developer.mozilla.org/en-US/docs/Web/API/PointerEvent) */
18654
+ POINTER = "POINTER",
18655
+ /** Keyboard interaction event (https://developer.mozilla.org/en-US/docs/Web/API/KeyboardEvent) */
18656
+ KEYBOARD = "KEYBOARD",
18657
+ /** Focus and blur event (https://developer.mozilla.org/en-US/docs/Web/API/FocusEvent) */
18658
+ FOCUS = "FOCUS",
18659
+ /** Form submission event (https://developer.mozilla.org/en-US/docs/Web/API/SubmitEvent) */
18660
+ SUBMIT = "SUBMIT"
18617
18661
  }
18662
+ /** @enumType */
18663
+ /** @internal */
18664
+ type DomEventTypeWithLiterals = DomEventType | 'UNKNOWN_DomEventType' | 'CHANGE' | 'POINTER' | 'KEYBOARD' | 'FOCUS' | 'SUBMIT';
18618
18665
  /** An array of data items or complex data types */
18619
18666
  /** @internal */
18620
18667
  interface FunctionParameterArrayItems extends FunctionParameterArrayItemsArrayDataOneOf {
@@ -18636,6 +18683,26 @@ interface FunctionParameterItems {
18636
18683
  items?: Record<string, FunctionParameter>;
18637
18684
  }
18638
18685
  /** @internal */
18686
+ interface ChangeEvent {
18687
+ /** The type of input this change event originates from */
18688
+ inputType?: InputTypeWithLiterals;
18689
+ }
18690
+ /** @internal */
18691
+ declare enum InputType {
18692
+ UNKNOWN_InputType = "UNKNOWN_InputType",
18693
+ /** target.value (string) - Text inputs, selects, sliders, search boxes */
18694
+ text = "text",
18695
+ /** target.checked (boolean) - Checkboxes, toggles, switches */
18696
+ checkbox = "checkbox",
18697
+ /** target.valueAsNumber (number) - Number inputs, range inputs */
18698
+ number = "number",
18699
+ /** target.valueAsDate (Date) - Date pickers, datetime inputs */
18700
+ date = "date"
18701
+ }
18702
+ /** @enumType */
18703
+ /** @internal */
18704
+ type InputTypeWithLiterals = InputType | 'UNKNOWN_InputType' | 'text' | 'checkbox' | 'number' | 'date';
18705
+ /** @internal */
18639
18706
  interface FunctionReturnType extends FunctionReturnTypeSelectedDataTypeOneOf {
18640
18707
  /** In case of an array */
18641
18708
  arrayItems?: FunctionParameterArrayItems;
@@ -18666,6 +18733,101 @@ interface FunctionReturnTypeSelectedDataTypeOneOf {
18666
18733
  /** In case of a text enum */
18667
18734
  textEnum?: TextEnum;
18668
18735
  }
18736
+ /** Filter type - declares which items are filterable and which operators each item supports */
18737
+ /** @internal */
18738
+ interface FilterDefinition {
18739
+ /** Fully described inline filter items */
18740
+ inlineItems?: InlineFilterItem[];
18741
+ /** Filter items referencing existing data items */
18742
+ dataItems?: FilterItem[];
18743
+ /** Filter items referencing existing context items */
18744
+ contextItems?: FilterItem[];
18745
+ }
18746
+ /** An inline filter item definition */
18747
+ /** @internal */
18748
+ interface InlineFilterItem {
18749
+ /**
18750
+ * Name of the filtered field
18751
+ * @maxLength 200
18752
+ */
18753
+ name?: string | null;
18754
+ /**
18755
+ * Human-readable name for this field
18756
+ * @maxLength 100
18757
+ */
18758
+ displayName?: string | null;
18759
+ /** The data type of the field (subset of DataType suitable for filtering) */
18760
+ dataType?: DataTypeWithLiterals;
18761
+ /** Explicitly supported operators. If omitted, all applicable operators for the fieldType are assumed */
18762
+ operators?: FilterOperatorWithLiterals[];
18763
+ }
18764
+ /** @internal */
18765
+ declare enum FilterOperator {
18766
+ UNKNOWN_FilterOperator = "UNKNOWN_FilterOperator",
18767
+ /** $eq - Equal */
18768
+ eq = "eq",
18769
+ /** $ne - Not equal */
18770
+ ne = "ne",
18771
+ /** $lt - Less than */
18772
+ lt = "lt",
18773
+ /** $lte - Less than or equal */
18774
+ lte = "lte",
18775
+ /** $gt - Greater than */
18776
+ gt = "gt",
18777
+ /** $gte - Greater than or equal */
18778
+ gte = "gte",
18779
+ /** $in - Value is in list */
18780
+ 'in' = "in",
18781
+ /** $nin - Value is not in list */
18782
+ nin = "nin",
18783
+ /** $exists - Field exists (is not null) */
18784
+ exists = "exists",
18785
+ /** $isEmpty - Field value is empty */
18786
+ isEmpty = "isEmpty",
18787
+ /** $startsWith - String starts with (text fields only) */
18788
+ startsWith = "startsWith",
18789
+ /** $hasAll - Array contains all values */
18790
+ hasAll = "hasAll",
18791
+ /** $hasSome - Array contains at least one value */
18792
+ hasSome = "hasSome",
18793
+ /** $matchItems - Filter on inner fields of array items (arrayItems only) */
18794
+ matchItems = "matchItems"
18795
+ }
18796
+ /** @enumType */
18797
+ /** @internal */
18798
+ type FilterOperatorWithLiterals = FilterOperator | 'UNKNOWN_FilterOperator' | 'eq' | 'ne' | 'lt' | 'lte' | 'gt' | 'gte' | 'in' | 'nin' | 'exists' | 'isEmpty' | 'startsWith' | 'hasAll' | 'hasSome' | 'matchItems';
18799
+ /** A filter item referencing an existing item (e.g. DataItem or ContextItem) */
18800
+ /** @internal */
18801
+ interface FilterItem {
18802
+ /** Path to the item */
18803
+ itemPath?: ItemPath;
18804
+ /** Explicitly supported operators. If omitted, all applicable operators for the resolved type are assumed */
18805
+ operators?: FilterOperatorWithLiterals[];
18806
+ }
18807
+ /** Sort type - declares which items are available for sorting */
18808
+ /** @internal */
18809
+ interface SortDefinition {
18810
+ /** Fully described inline sort items */
18811
+ inlineItems?: InlineSortItem[];
18812
+ /** Sort items referencing existing data items */
18813
+ dataItems?: ItemPath[];
18814
+ /** Sort items referencing existing context items */
18815
+ contextItems?: ItemPath[];
18816
+ }
18817
+ /** An inline sort item definition */
18818
+ /** @internal */
18819
+ interface InlineSortItem {
18820
+ /**
18821
+ * Name of the sorted field
18822
+ * @maxLength 200
18823
+ */
18824
+ name?: string | null;
18825
+ /**
18826
+ * Human-readable name for this field
18827
+ * @maxLength 100
18828
+ */
18829
+ displayName?: string | null;
18830
+ }
18669
18831
  /** @internal */
18670
18832
  interface ElementItem extends ElementItemSelectedElementTypeOneOf {
18671
18833
  /** An new element definition */
@@ -19641,16 +19803,6 @@ interface DashboardAction {
19641
19803
  }
19642
19804
  /** @internal */
19643
19805
  interface PresetItem {
19644
- /**
19645
- * DEPRECATED - use preset_css_url instead
19646
- * @format WEB_URL
19647
- * @minLength 13
19648
- * @maxLength 500
19649
- * @deprecated DEPRECATED - use preset_css_url instead
19650
- * @replacedBy preset_css_url
19651
- * @targetRemovalDate 2025-08-01
19652
- */
19653
- cssUrl?: string;
19654
19806
  /**
19655
19807
  * Preset name for displaying purposes in the editor
19656
19808
  * @maxLength 100
@@ -19664,22 +19816,6 @@ interface PresetItem {
19664
19816
  thumbnailUrl?: string | null;
19665
19817
  /** Optional initial size of the component when switching into this preset (will not be applied when element is used as an inner element) */
19666
19818
  initialSize?: ComponentInitialSize;
19667
- /**
19668
- * Display filters for the Preset, used to define the visibility of inner / ref elements, style items, data items and custom actions in the editor
19669
- * The Preset is the second in line to affect the display, Element is before and State is after it
19670
- * @deprecated Display filters for the Preset, used to define the visibility of inner / ref elements, style items, data items and custom actions in the editor
19671
- * The Preset is the second in line to affect the display, Element is before and State is after it
19672
- * @replacedBy preset_defaults
19673
- * @targetRemovalDate 2025-08-01
19674
- */
19675
- displayFilters?: DisplayFilters;
19676
- /**
19677
- * The default styles for this preset and the inner elements
19678
- * @deprecated The default styles for this preset and the inner elements
19679
- * @replacedBy preset_defaults
19680
- * @targetRemovalDate 2025-08-01
19681
- */
19682
- styleDefaults?: PresetStyleDefaults;
19683
19819
  /** The style overrides for this preset and the inner elements */
19684
19820
  styleOverrides?: BreakpointPresetStyleOverrides;
19685
19821
  /**
@@ -19689,13 +19825,6 @@ interface PresetItem {
19689
19825
  * @maxSize 2
19690
19826
  */
19691
19827
  optimizedFor?: BreakpointEnumBreakpointWithLiterals[];
19692
- /**
19693
- * Optional editor layout behaviors we want to apply when this preset is selected
19694
- * @deprecated Optional editor layout behaviors we want to apply when this preset is selected
19695
- * @replacedBy preset_defaults
19696
- * @targetRemovalDate 2025-08-01
19697
- */
19698
- layout?: EditorElementLayout;
19699
19828
  /**
19700
19829
  * A URL to the CSS file of this preset, to be used when you need to apply many css-changes or default-values to the DOM when this preset is selected, optional
19701
19830
  * @format WEB_URL
@@ -19749,77 +19878,6 @@ declare enum SizingType {
19749
19878
  /** @enumType */
19750
19879
  /** @internal */
19751
19880
  type SizingTypeWithLiterals = SizingType | 'UNKNOWN_SizingType' | 'content' | 'stretched' | 'pixels';
19752
- /**
19753
- * DisplayFilters is a collection of display filters that can be used to hide or show elements in the editor.
19754
- * It is used to control the visibility of elements in the editor.
19755
- * It is used to control the visibility of style items of elements in the editor.
19756
- * It is used to control the visibility of data items of elements in the editor.
19757
- * It is used to control the visibility of custom actions of elements in the editor.
19758
- * The logical order of filtering is done from where the filter is defined.
19759
- * Element takes first priority in narrowing the list, then the Preset and last is the State
19760
- */
19761
- /** @internal */
19762
- interface DisplayFilters {
19763
- /** DisplayFilter for elements, defines which elements to hide or show, uses the element key in the elements map, optional */
19764
- elements?: DisplayFilter;
19765
- /** DisplayFilter for data, defines which data items to hide or show, uses the dataItem key in the data map, optional */
19766
- data?: DisplayFilter;
19767
- /** DisplayFilter for custom actions, defines which custom actions to hide or show, uses the customAction key in the customActions map, optional */
19768
- customActions?: DisplayFilter;
19769
- /** DisplayFilter for actions, defines which actions to hide or show, uses the key in the action map, optional */
19770
- actions?: DisplayFilter;
19771
- /** DisplayFilter for css-properties, defines which properties to hide or show in the editor, uses the css-property name, optional */
19772
- cssProperties?: DisplayFilter;
19773
- /** DisplayFilter for css-custom-properties, defines which css-custom-properties to hide or show in the editor, uses the key in the css-custom-properties map, optional */
19774
- cssCustomProperties?: DisplayFilter;
19775
- /** DisplayFilter for states, defines which states to hide or show, uses the state key in the states map, optional */
19776
- states?: DisplayFilter;
19777
- }
19778
- /**
19779
- * The logic of the display filter is to define the minimal requirement
19780
- * You can only provide one of the two fields, `hide` or `show`, but not both.
19781
- * hide: *All items* not listed here will be shown by the editor. Useful for hiding a small list of items
19782
- * show: *Only items* listed here will be show by the editor. Useful for hiding a large list of items
19783
- */
19784
- /** @internal */
19785
- interface DisplayFilter {
19786
- /**
19787
- * Selected items to hide
19788
- * @maxSize 100
19789
- * @maxLength 80
19790
- */
19791
- hide?: string[];
19792
- /**
19793
- * Selected items to show
19794
- * @maxSize 100
19795
- * @maxLength 80
19796
- */
19797
- show?: string[];
19798
- }
19799
- /** DEPRECATED: This message is deprecated and will be removed in the future */
19800
- /** @internal */
19801
- interface PresetStyleDefaults {
19802
- /** The default styles for this preset */
19803
- style?: Record<string, StyleItemDefaults>;
19804
- /** The default styles of inner elements for this preset */
19805
- elements?: Record<string, ElementStyleDefaults>;
19806
- }
19807
- /** DEPRECATED: This message is deprecated and will be removed in the future */
19808
- /** @internal */
19809
- interface StyleItemDefaults {
19810
- /** The default value of this style item */
19811
- defaultValue?: any;
19812
- /** The default values for the style-item when the component is in one of the defined states */
19813
- statesDefaultValues?: Record<string, any>;
19814
- }
19815
- /** DEPRECATED: This message is deprecated and will be removed in the future */
19816
- /** @internal */
19817
- interface ElementStyleDefaults {
19818
- /** The default styles for an element */
19819
- style?: Record<string, StyleItemDefaults>;
19820
- /** The default preset and styles for inner elements */
19821
- elements?: Record<string, ElementStyleDefaults>;
19822
- }
19823
19881
  /** @internal */
19824
19882
  interface BreakpointPresetStyleOverrides {
19825
19883
  /** The style overrides values for the default breakpoint, which will cascade to all other breakpoints (if not overridden) */
@@ -19829,13 +19887,6 @@ interface BreakpointPresetStyleOverrides {
19829
19887
  }
19830
19888
  /** @internal */
19831
19889
  interface PresetStyleOverrides {
19832
- /**
19833
- * The style overrides for this preset
19834
- * @deprecated The style overrides for this preset
19835
- * @replacedBy cssProperties or cssCustomProperties
19836
- * @targetRemovalDate 2025-08-01
19837
- */
19838
- style?: Record<string, PresetStyleItemOverrides>;
19839
19890
  /** The style overrides of inner elements for this preset */
19840
19891
  elements?: Record<string, ElementStyleOverrides>;
19841
19892
  /** The default values for the element css-properties when the preset is selected */
@@ -19844,26 +19895,12 @@ interface PresetStyleOverrides {
19844
19895
  cssCustomProperties?: Record<string, PresetStyleItemOverrides>;
19845
19896
  }
19846
19897
  /** @internal */
19847
- interface PresetStyleItemOverrides {
19848
- /** The override value of this style item */
19849
- value?: any;
19850
- /** The override values for the style item when the component is in one of the defined states */
19851
- statesValues?: Record<string, any>;
19852
- }
19853
- /** @internal */
19854
19898
  interface ElementStyleOverrides {
19855
19899
  /**
19856
19900
  * The override preset for an element
19857
19901
  * @maxLength 100
19858
19902
  */
19859
19903
  presetKey?: string | null;
19860
- /**
19861
- * The override styles for an element
19862
- * @deprecated The override styles for an element
19863
- * @replacedBy cssProperties or cssCustomProperties
19864
- * @targetRemovalDate 2025-08-01
19865
- */
19866
- style?: Record<string, PresetStyleItemOverrides>;
19867
19904
  /** The override preset and styles for inner elements */
19868
19905
  elements?: Record<string, ElementStyleOverrides>;
19869
19906
  /** The default values for the element css-properties when the preset is selected */
@@ -19872,6 +19909,13 @@ interface ElementStyleOverrides {
19872
19909
  cssCustomProperties?: Record<string, PresetStyleItemOverrides>;
19873
19910
  }
19874
19911
  /** @internal */
19912
+ interface PresetStyleItemOverrides {
19913
+ /** The override value of this style item */
19914
+ value?: any;
19915
+ /** The override values for the style item when the component is in one of the defined states */
19916
+ statesValues?: Record<string, any>;
19917
+ }
19918
+ /** @internal */
19875
19919
  declare enum BreakpointEnumBreakpoint {
19876
19920
  UNKNOWN_Breakpoint = "UNKNOWN_Breakpoint",
19877
19921
  /** Represents the small (mobile) breakpoint */
@@ -19882,33 +19926,6 @@ declare enum BreakpointEnumBreakpoint {
19882
19926
  /** @enumType */
19883
19927
  /** @internal */
19884
19928
  type BreakpointEnumBreakpointWithLiterals = BreakpointEnumBreakpoint | 'UNKNOWN_Breakpoint' | 'small' | 'large';
19885
- /** Top-level message containing all layout capabilities */
19886
- /** @internal */
19887
- interface EditorElementLayout {
19888
- /** The resizing capabilities this component can supports */
19889
- resizeDirection?: ResizeDirectionWithLiterals;
19890
- /** Describes the ability of content to impact on the size of this component */
19891
- contentResizeDirection?: ContentResizeDirectionWithLiterals;
19892
- /** Will control the availability of the stretch capability for this component */
19893
- disableStretching?: boolean | null;
19894
- /** Will control the availability of freely positioning this component */
19895
- disablePositioning?: boolean | null;
19896
- /** Will control if the editor allows rotating the element */
19897
- disableRotation?: boolean | null;
19898
- /** Information related to content that fills the whole component visible space */
19899
- contentFill?: ContentFill;
19900
- /** Will control the availability of the duplicate capability for this component */
19901
- disableDuplication?: boolean | null;
19902
- }
19903
- /** @internal */
19904
- interface ContentFill {
19905
- /**
19906
- * The key of the data-item that holds the content that fills the whole component visible space, using this will provide a better layout experiences for such components
19907
- * Restricted to data-items that hold specific data-types: "image", "video", "vectorArt", "container"
19908
- * @maxLength 100
19909
- */
19910
- dataItemKey?: string | null;
19911
- }
19912
19929
  /** @internal */
19913
19930
  interface PresetElementDefaults {
19914
19931
  /**
@@ -19946,6 +19963,80 @@ interface PresetInnerElementDefaults {
19946
19963
  /** The default preset and styles for inner elements */
19947
19964
  elements?: Record<string, PresetInnerElementDefaults>;
19948
19965
  }
19966
+ /** Top-level message containing all layout capabilities */
19967
+ /** @internal */
19968
+ interface EditorElementLayout {
19969
+ /** The resizing capabilities this component can supports */
19970
+ resizeDirection?: ResizeDirectionWithLiterals;
19971
+ /** Describes the ability of content to impact on the size of this component */
19972
+ contentResizeDirection?: ContentResizeDirectionWithLiterals;
19973
+ /** Will control the availability of the stretch capability for this component */
19974
+ disableStretching?: boolean | null;
19975
+ /** Will control the availability of freely positioning this component */
19976
+ disablePositioning?: boolean | null;
19977
+ /** Will control if the editor allows rotating the element */
19978
+ disableRotation?: boolean | null;
19979
+ /** Information related to content that fills the whole component visible space */
19980
+ contentFill?: ContentFill;
19981
+ /** Will control the availability of the duplicate capability for this component */
19982
+ disableDuplication?: boolean | null;
19983
+ }
19984
+ /** @internal */
19985
+ interface ContentFill {
19986
+ /**
19987
+ * The key of the data-item that holds the content that fills the whole component visible space, using this will provide a better layout experiences for such components
19988
+ * Restricted to data-items that hold specific data-types: "image", "video", "vectorArt", "container"
19989
+ * @maxLength 100
19990
+ */
19991
+ dataItemKey?: string | null;
19992
+ }
19993
+ /**
19994
+ * DisplayFilters is a collection of display filters that can be used to hide or show elements in the editor.
19995
+ * It is used to control the visibility of elements in the editor.
19996
+ * It is used to control the visibility of style items of elements in the editor.
19997
+ * It is used to control the visibility of data items of elements in the editor.
19998
+ * It is used to control the visibility of custom actions of elements in the editor.
19999
+ * The logical order of filtering is done from where the filter is defined.
20000
+ * Element takes first priority in narrowing the list, then the Preset and last is the State
20001
+ */
20002
+ /** @internal */
20003
+ interface DisplayFilters {
20004
+ /** DisplayFilter for elements, defines which elements to hide or show, uses the element key in the elements map, optional */
20005
+ elements?: DisplayFilter;
20006
+ /** DisplayFilter for data, defines which data items to hide or show, uses the dataItem key in the data map, optional */
20007
+ data?: DisplayFilter;
20008
+ /** DisplayFilter for custom actions, defines which custom actions to hide or show, uses the customAction key in the customActions map, optional */
20009
+ customActions?: DisplayFilter;
20010
+ /** DisplayFilter for actions, defines which actions to hide or show, uses the key in the action map, optional */
20011
+ actions?: DisplayFilter;
20012
+ /** DisplayFilter for css-properties, defines which properties to hide or show in the editor, uses the css-property name, optional */
20013
+ cssProperties?: DisplayFilter;
20014
+ /** DisplayFilter for css-custom-properties, defines which css-custom-properties to hide or show in the editor, uses the key in the css-custom-properties map, optional */
20015
+ cssCustomProperties?: DisplayFilter;
20016
+ /** DisplayFilter for states, defines which states to hide or show, uses the state key in the states map, optional */
20017
+ states?: DisplayFilter;
20018
+ }
20019
+ /**
20020
+ * The logic of the display filter is to define the minimal requirement
20021
+ * You can only provide one of the two fields, `hide` or `show`, but not both.
20022
+ * hide: *All items* not listed here will be shown by the editor. Useful for hiding a small list of items
20023
+ * show: *Only items* listed here will be show by the editor. Useful for hiding a large list of items
20024
+ */
20025
+ /** @internal */
20026
+ interface DisplayFilter {
20027
+ /**
20028
+ * Selected items to hide
20029
+ * @maxSize 100
20030
+ * @maxLength 80
20031
+ */
20032
+ hide?: string[];
20033
+ /**
20034
+ * Selected items to show
20035
+ * @maxSize 100
20036
+ * @maxLength 80
20037
+ */
20038
+ show?: string[];
20039
+ }
19949
20040
  /** @internal */
19950
20041
  declare enum Archetype {
19951
20042
  UNKNOWN_Archetype = "UNKNOWN_Archetype",
@@ -20061,14 +20152,16 @@ interface VisibleState {
20061
20152
  interface DisplayGroupItem extends DisplayGroupItemSelectedGroupTypeOneOf {
20062
20153
  /** A group that contains cssCustomProperties items that used one of the supported css-data-types (length, angle, number, ..._) */
20063
20154
  cssDataType?: ItemsGroup;
20064
- /** A group that contains data items */
20155
+ /** A group that contains data items, should be used for grouping and ordering purposes in the editor */
20065
20156
  data?: ItemsGroup;
20066
20157
  /** A group that contains preset items, which will be displayed in the editor as a category in the presets panel */
20067
20158
  presets?: ItemsGroup;
20068
- /** A group that contains cssCustomProperties items that use the same cssPropertyType, should be used mostly for ordering purposes */
20159
+ /** A group that contains cssCustomProperties items that use the same cssPropertyType, should be used for grouping and ordering purposes */
20069
20160
  cssCustomProperties?: ItemsGroup;
20070
- /** A group that contains other displayGroups items that use the same groupType, should be used mostly for ordering purposes */
20161
+ /** A group that contains other displayGroups items that use the same groupType, should be used for ordering purposes */
20071
20162
  displayGroups?: ItemsGroup;
20163
+ /** A group that contains elements that belong to the current element in the component, array order defines the display order to the elements in panels. Each item is the element name. */
20164
+ elements?: ItemsGroup;
20072
20165
  /** A group that contains background items */
20073
20166
  background?: ShorthandGroupBackground;
20074
20167
  /** A group that contains margin items */
@@ -20122,14 +20215,16 @@ interface DisplayGroupItem extends DisplayGroupItemSelectedGroupTypeOneOf {
20122
20215
  interface DisplayGroupItemSelectedGroupTypeOneOf {
20123
20216
  /** A group that contains cssCustomProperties items that used one of the supported css-data-types (length, angle, number, ..._) */
20124
20217
  cssDataType?: ItemsGroup;
20125
- /** A group that contains data items */
20218
+ /** A group that contains data items, should be used for grouping and ordering purposes in the editor */
20126
20219
  data?: ItemsGroup;
20127
20220
  /** A group that contains preset items, which will be displayed in the editor as a category in the presets panel */
20128
20221
  presets?: ItemsGroup;
20129
- /** A group that contains cssCustomProperties items that use the same cssPropertyType, should be used mostly for ordering purposes */
20222
+ /** A group that contains cssCustomProperties items that use the same cssPropertyType, should be used for grouping and ordering purposes */
20130
20223
  cssCustomProperties?: ItemsGroup;
20131
- /** A group that contains other displayGroups items that use the same groupType, should be used mostly for ordering purposes */
20224
+ /** A group that contains other displayGroups items that use the same groupType, should be used for ordering purposes */
20132
20225
  displayGroups?: ItemsGroup;
20226
+ /** A group that contains elements that belong to the current element in the component, array order defines the display order to the elements in panels. Each item is the element name. */
20227
+ elements?: ItemsGroup;
20133
20228
  /** A group that contains background items */
20134
20229
  background?: ShorthandGroupBackground;
20135
20230
  /** A group that contains margin items */
@@ -20183,6 +20278,7 @@ declare enum GroupType {
20183
20278
  presets = "presets",
20184
20279
  cssCustomProperties = "cssCustomProperties",
20185
20280
  displayGroups = "displayGroups",
20281
+ elements = "elements",
20186
20282
  /** Style Shorthand Groups */
20187
20283
  background = "background",
20188
20284
  margin = "margin",
@@ -20211,7 +20307,7 @@ declare enum GroupType {
20211
20307
  }
20212
20308
  /** @enumType */
20213
20309
  /** @internal */
20214
- type GroupTypeWithLiterals = GroupType | 'UNKNOWN_GroupType' | 'cssDataType' | 'dataType' | 'preset' | 'data' | 'presets' | 'cssCustomProperties' | 'displayGroups' | 'background' | 'margin' | 'padding' | 'border' | 'borderTop' | 'borderRight' | 'borderBottom' | 'borderLeft' | 'borderRadius' | 'borderInlineStart' | 'borderInlineEnd' | 'borderColor' | 'borderWidth' | 'borderStyle' | 'font' | 'textDecoration' | 'gap' | 'text' | 'arrayItems' | 'arrayItem' | 'listItem';
20310
+ type GroupTypeWithLiterals = GroupType | 'UNKNOWN_GroupType' | 'cssDataType' | 'dataType' | 'preset' | 'data' | 'presets' | 'cssCustomProperties' | 'displayGroups' | 'elements' | 'background' | 'margin' | 'padding' | 'border' | 'borderTop' | 'borderRight' | 'borderBottom' | 'borderLeft' | 'borderRadius' | 'borderInlineStart' | 'borderInlineEnd' | 'borderColor' | 'borderWidth' | 'borderStyle' | 'font' | 'textDecoration' | 'gap' | 'text' | 'arrayItems' | 'arrayItem' | 'listItem';
20215
20311
  /** @internal */
20216
20312
  interface ItemsGroup {
20217
20313
  /**
@@ -26450,4 +26546,4 @@ declare function loyaltyPointsAdjustment({ id, data, name, }: {
26450
26546
  name?: string;
26451
26547
  }): ExtensionData;
26452
26548
 
26453
- export { type A11y, A11yAttributes, type A11yAttributesWithLiterals, AcceptedDirectMessageType, type AcceptedDirectMessageTypeWithLiterals, AcceptedMessageTypesAcceptedDirectMessageType, type AcceptedMessageTypesAcceptedDirectMessageTypeWithLiterals, AcceptedMessageTypesAcceptedSmsMessageType, type AcceptedMessageTypesAcceptedSmsMessageTypeWithLiterals, AcceptedSmsMessageType, type AcceptedSmsMessageTypeWithLiterals, AccessLevel, type AccessLevelWithLiterals, type Action, type ActionCondition, ActionName, type ActionNameWithLiterals, type ActionProviderSPIConfig, type ActionSPIConfig, type ActionSPIConfigImplementedMethods, type ActionSPIConfigInterfaceConfiguration, type ActionSPIConfigInterfaceConfigurationOptionsOneOf, ActionSPIConfigInterfaceConfigurationType, type ActionSPIConfigInterfaceConfigurationTypeWithLiterals, type ActionSpiConfig, ActionType, type ActionTypeWithLiterals, type Actions, type AdaptiveComponentProviderConfig, type AddCustomFields, type AdditionalFeesSPIConfig, type AdditionalStepInfo, type AdditionalTaxGroup, type AddonMarketData, type Address, AddressComponentType, type AddressComponentTypeOptionsOneOf, type AddressComponentTypeWithLiterals, type AddressInfo, AddressInfoTag, type AddressInfoTagWithLiterals, type AddressLine2, type AdminConfigurableTextInput, type AlertEnricherSpiConfiguration, type AlgorithmConfig, AlgorithmType, type AlgorithmTypeWithLiterals, Alignment, type AlignmentWithLiterals, type AllowedValuesOptions, type AlternativeUri, type AnchorData, type AnchorMetaData, type AndCondition, type AndroidMobilePushConfig, AndroidStyle, type AndroidStyleWithLiterals, type ApiContext, type ApiSlot, type ApiWidth, type AppConfig, type AppConfiguration, type AppDeploymentProviderConfig, type AppEmbedData, type AppEmbedDataAppDataOneOf, type AppEnvironmentProviderConfig, type AppPreviewProviderConfig, type AppRouter, AppType, type AppTypeWithLiterals, type ApplicationAutomationComponent, type ApplicationProfile, type ApplicationProfileProviderConfig, type Appointment, AppointmentFormat, type AppointmentFormatInfoOneOf, type AppointmentFormatWithLiterals, type ApprovalProviderConfig, type ApprovalProviderConfigScopeOneOf, Archetype, type ArchetypeWithLiterals, ArrayComponentType, type ArrayComponentTypeWithLiterals, type ArrayItems, type ArrayItemsArrayDataOneOf, type ArrayOptions, type ArrayOptionsElementTypeOptionsOneOf, type ArrayType, type ArrayTypeArrayItems, type ArrayTypeArrayItemsItemTypeOptionsOneOf, AspectRatio, type AspectRatioWithLiterals, AssetType, type AssetTypeWithLiterals, type AssistantSpiConfig, type AudienceProviderConfig, type AudioData, type AuthenticatorConfig, type AutomationActionScope, type AutomationMetadata, type AutomationTemplateComponent, type AutomationTrigger, type AutomationsConfig, type AvailabilityTimeSlotsProviderConfig, type AvatarConfig, AvatarShape, type AvatarShapeWithLiterals, type BackOfficeCustomization, type BackOfficeCustomizationSidebarEntity, type BackOfficeCustomizationSidebarEntityItemOneOf, type BackOfficeExtension, type BackOfficeExtensionContainer, type BackOfficeExtensionExtensionOneOf, type BackOfficeExtensionMenuItem, type BackOfficeExtensionWidget, type BackOfficeExtensionWidgetAssetOneOf, type BackOfficeExternalUrl, BackOfficeHostingPlatforms, type BackOfficeHostingPlatformsWithLiterals, type BackOfficeModal, type BackOfficeModalContentOneOf, type BackOfficePage, type BackOfficePageAssetOneOf, type BackOfficeRestrictedCustomization, type BackOfficeScriptAsset, BackOfficeScriptAssetType, type BackOfficeScriptAssetTypeWithLiterals, type BackOfficeSidebarCategory, type BackOfficeWidget, type BackOfficeWidgetContentOneOf, type Backdrop, type BackdropFilter, BackdropType, type BackdropTypeWithLiterals, type BackendWorker, type Background, type BackgroundGradient, type BackgroundImage, BackgroundModeEnum, type BackgroundModeEnumWithLiterals, BackgroundType, type BackgroundTypeWithLiterals, type BackofficeActionDeeplink, type Banner, type BarAlignment, BarAlignmentSelected, type BarAlignmentSelectedWithLiterals, type BaseInfo, type BaseInstallation, type Behaviors, type BillingSettingsConfig, type BindingsSPIConfig, BlockType, type BlockTypeWithLiterals, type BlockquoteData, type BlocksData, type BlogPaywallProviderConfig, type BookingActionUrlsProviderConfig, type BookingAutomationsConfig, type BookingData, type BookingPermissionOverrides, type BookingPolicyProviderConfig, type BookingsPlatformConfig, type BookingsPricingProviderConfig, type BookingsResourceType, type BookingsResourceTypesProviderConfig, type BookingsValidationProviderConfig, type BoolListOptions, BooleanComponentType, type BooleanComponentTypeWithLiterals, type BooleanExperimentExposureRule, type BooleanType, type Border, type BorderColors, type BorderWidths, type BrandIcons, type BreakPoint, type BreakPointSection, type Breakpoint, BreakpointEnumBreakpoint, type BreakpointEnumBreakpointWithLiterals, type BreakpointPresetStyleOverrides, type Breakpoints, type BroadcastList, type BrowserPushChannel, type BrowserPushContentKeys, type BrowserStorage, type BuilderSpi, type BulletedListData, type Bundle, type BusinessManagerPage, type ButtonData, ButtonDataType, type ButtonDataTypeWithLiterals, type ButtonStyles, CalendarType, type CalendarTypeWithLiterals, type CancelSubscriptionsConfig, type CaptionData, type CardData, type CardDataBackground, type CardDataBackgroundImage, CardDataBackgroundType, type CardDataBackgroundTypeWithLiterals, type CardStyles, CardStylesAlignment, type CardStylesAlignmentWithLiterals, CardStylesType, type CardStylesTypeWithLiterals, type CatalogSPIConfig, type CatalogSyncConfiguration, Category, type CategoryWithLiterals, type CellStyle, ChangeableProperty, type ChangeablePropertyWithLiterals, type ChannelBrandIcons, type ChannelBranding, type ChannelChannelBranding, type ChannelChannelConfiguration, type ChannelChannelConfigurationMessagingConfigOneOf, type ChannelConfiguration, ChannelConfigurationChannelType, type ChannelConfigurationChannelTypeWithLiterals, type ChannelConfigurationMessagingConfigOneOf, type ChannelIcon, type ChannelImplementedMethods, type ChannelMediaCapabilities, ChannelType, type ChannelTypeWithLiterals, type Checkbox, type CheckboxConfiguration, type CheckboxField, type CheckboxGroup, type CheckboxGroupOption, type CheckoutContentSPIConfig, type ClientResources, type ClientSideService, type CodeBlockData, type CodePackageComponentData, type CodePanel, type CollapsibleListData, type Collection, type Color, type ColorData, type ColorDefinition, type ColorSelectLabeled, type ColorSelectLabeledDataOneOf, type Colors, type CommentFilterProviderConfig, type CommentModerationProviderConfig, type CommentsContextProviderConfig, type CommonImage, type CommunicationChannelConfiguration, type ComponentCatalog, type ComponentData, type ComponentDataDataOneOf, type ComponentEnricherConfig, type ComponentInitialSize, type ComponentMetaData, type ComponentModel, ComponentPresent, type ComponentPresentWithLiterals, type ComponentReferenceDataConfig, type ComponentTranslationAdditionalFieldsConfig, ComponentType, type ComponentTypeWithLiterals, type ComponentsValidatorConfig, type Condition, type ConditionBlock, type ConditionNode, type ConditionNodeNodeOneOf, type Conditions, type ConferencingProviderConfig, type Configuration, ConfirmationLevel, type ConfirmationLevelWithLiterals, ConnectMethod, type ConnectMethodWithLiterals, ConnectionMethod, type ConnectionMethodWithLiterals, ConsentCategory, type ConsentCategoryWithLiterals, type Consequence, type ConstOrDynamicParam, type ConstOrDynamicParamValueOneOf, type Constraint, type ContactData, ContactField, type ContactFieldWithLiterals, type ContactLabelsComponentData, type ContactNotification, type ContactsData, type ContactsNotificationData, type Container, type ContainerBehaviors, type ContainerDataOneOf, type ContainerLayout, type ContainerStyleOverrides, ContainerType, type ContainerTypeWithLiterals, type ContentData, type ContentDataOverrides, type ContentFill, type ContentProviderConfig, ContentResizeDirection, type ContentResizeDirectionWithLiterals, type Context, type ContextArrayItems, type ContextArrayItemsArrayDataOneOf, type ContextDataItems, type ContextImplementor, type ContextItem, type ContextItemSelectedDataTypeOneOf, type ContextSpecifier, type ConversationLimitations, type Coordinates, type CoreApps, type Corners, type CoverImageConfiguration, type CreateComponentCatalogRequest, type CreateNewItemInfo, Crop, type CropWithLiterals, type CrossSellConfig, type CssCustomPropertyAction, type CssCustomPropertyItem, type CssCustomPropertyItemSelectedCssPropertyTypeOneOf, CssDataType, type CssDataTypeWithLiterals, type CssNumber, type CssPropertyAction, type CssPropertyItem, type CssPropertyItemDefaults, type CssPropertyItemDefinitionOverrides, type CssPropertyItemSelectedCssPropertyTypeOneOf, CssPropertyType, CssPropertyTypeEnumCssPropertyType, type CssPropertyTypeEnumCssPropertyTypeWithLiterals, type CssPropertyTypeWithLiterals, CssVariableTypeEnumCssDataType, type CssVariableTypeEnumCssDataTypeWithLiterals, type CurrencyCodeListOptions, type CustomAction, type CustomActionActionExecuteOneOf, type CustomChargesConfig, type CustomElement, type CustomElementConsentCategoryOneOf, CustomElementScriptType, type CustomElementScriptTypeWithLiterals, type CustomElementWidget, type CustomEnum, type CustomEnumOption, type CustomEnumOptionCssProperty, type CustomExperimentExposureRule, type CustomFieldInfo, CustomFieldsType, type CustomFieldsTypeWithLiterals, type CustomInitialPreset, type CustomOption, type CustomPermission, type CustomPropertyEnum, type CustomPropertyEnumOption, type CustomPropertyEnumOptionStyle, type CustomRefData, type CustomReservationsApprovalConfig, type CustomRewardProviderConfig, type CustomScopeConfig, type CustomTriggerConfig, type DCConfigData, type Dashboard, type DashboardAction, type DashboardApplicationData, type DashboardButton, type DashboardComponentData, type DashboardItem, type DashboardPlatfromComponentData, type DataAction, type DataComponent, type DataExtensionsComponentData, type DataGroupsArrayItems, type DataItem, type DataItemOverrides, type DataItemOverridesSelectedDataTypeOneOf, type DataItemSelectedDataTypeOneOf, type DataItems, type DataPermissions, DataType, type DataTypeWithLiterals, type DateInput, type DatePicker, type DateTimeConstraints, type DateTimeInput, type Debounce, type DecimalListOptions, type Decoration, type DecorationDataOneOf, DecorationType, type DecorationTypeWithLiterals, type Deeplink, type DeeplinkOfOneOf, Default, type DefaultCountryConfig, type DefaultCountryConfigOptionsOneOf, DefaultCountryConfigType, type DefaultCountryConfigTypeWithLiterals, type DefaultPresets, type DefaultTaxGroupProviderConfig, DefaultTextStyle, type DefaultTextStyleWithLiterals, type DefaultWithLiterals, type Definition, type Delay, type DelayTypeOneOf, type DeleteComponentCatalogRequest, type DeleteTemplateFields, type DeploymentPipelineProviderConfig, type Description, type Design, DesignTarget, type DesignTargetWithLiterals, type DevCenterTestingComponentData, type DevCenterTestingComponentDataTranslatableOneOfOneOf, type Dimension, type Dimensions, type DirectMessageConfig, Direction, type DirectionWithLiterals, type DiscountConfig, type DiscountsSPIConfig, type DiscoveryMetaData, type Display, type DisplayField, type DisplayFieldDisplayFieldTypeOptionsOneOf, DisplayFieldType, type DisplayFieldTypeWithLiterals, type DisplayFilter, type DisplayFilters, type DisplayGroupAction, type DisplayGroupItem, type DisplayGroupItemSelectedGroupTypeOneOf, type DisplayProperties, type DisplayValue, DisplayValueEnumDisplayValue, type DisplayValueEnumDisplayValueWithLiterals, type DisputeServicePluginConfig, type DividerData, DividerDataAlignment, type DividerDataAlignmentWithLiterals, DividerDataWidth, type DividerDataWidthWithLiterals, type DmDirectMessageConfig, type Docking, type DockingProperties, type DocumentStyle, Domain, type DomainWithLiterals, type DonationInput, type DonationInputOption, type DrillInListItem, type DrillItem, type DrillItemDataOneOf, type DropDownLabeled, type Dropdown, type DropdownField, type DropdownFieldOption, type DropdownOption, type DropshippingProviderSPIConfig, type DtsContent, type DtsDefinitionReference, type DtsDefinitionReferenceDtsDefinitionOneOf, DtsDefinitionType, type DtsDefinitionTypeWithLiterals, type DtsHttpLink, type DurationInputConfiguration, type DurationInputConfigurationDurationRenameOptions, type DurationRenameOptions, type DynamicPriceOptions, type DynamicSiteStructureProviderConfig, type EditableFields, EditableProperties, type EditablePropertiesWithLiterals, type EditorAddon, type EditorBehaviors, type EditorContextProvider, type EditorContextProviderModuleConfiguration, type EditorContextProviderResources, type EditorDependencies, type EditorElement, type EditorElementLayout, type EditorFunction, type EditorFunctionLibrary, type EditorFunctionLibraryModuleConfiguration, type EditorPresence, type EditorReactComponent, type EditorReactComponentModuleConfiguration, EffectGroup, type EffectGroupWithLiterals, ElementDisplayOption, type ElementDisplayOptionWithLiterals, type ElementItem, type ElementItemSelectedElementTypeOneOf, type ElementState, type ElementStyleDefaults, type ElementStyleOverrides, ElementType, type ElementTypeWithLiterals, type EmailChannel, type EmailEmailMessageConfig, type EmailInfo, EmailInfoTag, type EmailInfoTagWithLiterals, type EmailMessageConfig, type EmailTemplateConfig, type EmailTemplateConfigProviderOneOf, EmbedCategory, type EmbedCategoryWithLiterals, type EmbedData, type EmbeddedScriptComponentData, EmbeddedScriptPages, type EmbeddedScriptPagesWithLiterals, EmbeddedScriptPlacement, type EmbeddedScriptPlacementWithLiterals, type Empty, Environment, type EnvironmentWithLiterals, type ErrorReporting, type ErrorReportingArtifact, Escalation, type EscalationWithLiterals, type EventAction, type EventBadgesSpiConfig, type EventData, type EventTimeSlotsProviderConfig, type EventTypeProviderConfig, type EventValidationProviderConfig, type Execution, type ExecutionActionExecuteOneOf, ExecutionType, type ExecutionTypeWithLiterals, type ExemptRegions, type ExpectedInputs, type ExperimentGroupWrapper, type ExportMetadata, Exposure, type ExposureRule, type ExposureRuleRuleOneOf, ExposureRuleType, type ExposureRuleTypeWithLiterals, type ExposureWithLiterals, type Extendable, ExtendingComponentType, type ExtendingComponentTypeWithLiterals, type ExtensionData, type ExtensionDetails, type ExtensionExposure, ExtensionExposureExposure, type ExtensionExposureExposureWithLiterals, ExtensionType, type ExtensionTypeWithLiterals, type ExternalDatabaseSpiConfig, type ExternalFilterProviderConfig, type FactorConfig, FactorType, type FactorTypeWithLiterals, type FeedAggregation, type FeedChannels, type FeedChannelsConfig, type FeesSPIConfig, type Field, FieldFieldType, type FieldFieldTypeWithLiterals, type FieldGroup, type FieldManagementConfig, type FieldOverride, type FieldOverrides, FieldType, type FieldTypeOptionsOneOf, type FieldTypeWithLiterals, type FieldsOverrides, type FieldsSettings, type FileData, FileMediaType, type FileMediaTypeWithLiterals, type FileSource, type FileSourceDataOneOf, type FileType, type FileUpload, type Filter, FilterFunction, type FilterFunctionWithLiterals, type FilterInfo, type FilterInfoOptionsOneOf, FilterOptionsType, type FilterOptionsTypeWithLiterals, FilterSelectionType, type FilterSelectionTypeWithLiterals, FilterValueDefinitionMode, type FilterValueDefinitionModeWithLiterals, type FilteringCapability, FirstDayOfWeek, type FirstDayOfWeekWithLiterals, type FirstLevelCategory, type FixedPayment, type FixedPositionBuilder, type FixedPositionOptions, type FixedPriceOptions, type FocalPoint, type Font, type FontDefinition, type FontFamilyData, type FontFamilyWithColorPicker, type FontSizeData, FontType, type FontTypeWithLiterals, type FormFieldContactInfo, type FormFieldContactInfoAdditionalInfoOneOf, type FormLayout, type FormOverride, type FormOverrideEntityTypeOptionsOneOf, type FormOverrideFieldOverride, type FormOverrideFieldOverridePropertyTypeOptionsOneOf, type FormSchemaDynamicValuesSpiConfig, type FormSchemaSpiConfig, type FormSpamSubmissionReportPermissions, type FormSpamSubmissionReportSpiConfig, type FormSpamSubmissionReportsNamespaceConfig, type FormSpamSubmissionSpiConfig, type FormSpiExtensionConfig, type FormSubmissionModerationSpiConfig, type FormSubmissionModerationSpiNamespaceConfig, type FormSubmissionSpiConfig, type FormSubmissionSpiExtensionConfig, type FormTemplate, type FormTemplateTemplateTypeOptionsOneOf, Format, type FormatWithLiterals, type FormsConfig, type FormsPermissions, type FormsSPIConfig, type FormsSchemaNamespaceConfig, type FormsSpamSubmissionsNamespaceConfig, type FormsSubmissionsExtensionNamespaceConfig, type FormsSubmissionsNamespaceConfig, type ForwardAction, type ForwardActionActionOneOf, type FreeOptionConfiguration, type FreePricingTypeConfiguration, type FreeTrialConfiguration, type FunctionAssistantToolProviderConfig, type FunctionDefinition, type FunctionEcomDiscountTriggerEligibilityProviderConfig, type FunctionParameter, type FunctionParameterArrayItems, type FunctionParameterArrayItemsArrayDataOneOf, type FunctionParameterItems, type FunctionParameterSelectedDataTypeOneOf, type FunctionRecipe, type FunctionResources, type FunctionReturnType, type FunctionReturnTypeSelectedDataTypeOneOf, type FunctionsShopPriceSpiConfig, type GIF, type GIFData, GIFType, type GIFTypeWithLiterals, type GalleryData, type GalleryOptions, type GalleryOptionsLayout, type GalleryOptionsThumbnails, type Gap, type GbpFeatureConfig, type GenericHookConfig, type GenericHooksConfig, type GenericOptions, type GetComponentsCatalogResponse, type GiftCardProviderConfig, type Gradient, GradientType, type GradientTypeWithLiterals, type GridAppFilesTransformerConfig, type Group, GroupType, type GroupTypeWithLiterals, type GroupedContent, type HTMLData, type HTMLDataDataOneOf, HTMLDataSource, type HTMLDataSourceWithLiterals, HTTPMethod, type HTTPMethodWithLiterals, type Header, type HeaderConfig, type HeaderConfigHeaderConfigOneOf, type HeaderConfigOneOf, type HeaderWidgetConfig, type HeadingData, type HeadlessOAuth, type Height, HeightMode, type HeightModeWithLiterals, type HelpArticle, type HelpArticleArticleTypeOneOf, type HelpResources, type HiddenOptions, HookType, type HookTypeWithLiterals, Horizontal, HorizontalDocking, type HorizontalDockingWithLiterals, type HorizontalWithLiterals, HostContainerId, type HostContainerIdWithLiterals, type HostedComponent, type HostedPage, type IDPConnectionConfig, type Icon, type IconDataOneOf, IconType, type IconTypeWithLiterals, type Illustration, type IllustrationIllustrationOneOf, type Image, ImageCategoryTypes, type ImageCategoryTypesWithLiterals, type ImageConfig, type ImageData, type ImageDataStyles, type ImageDataStylesBorder, ImageFit, type ImageFitWithLiterals, type ImageOverrides, ImagePosition, ImagePositionPosition, type ImagePositionPositionWithLiterals, type ImagePositionWithLiterals, ImageScalingScaling, type ImageScalingScalingWithLiterals, ImageShape, type ImageShapeWithLiterals, type ImageStyles, ImageStylesPosition, type ImageStylesPositionWithLiterals, ImageType, type ImageTypeWithLiterals, type Implementation, type ImplementedMethods, ImportanceLevel, type ImportanceLevelWithLiterals, type InPersonOptions, Indentation, type IndentationWithLiterals, type Index, type IndexField, InitDirection, type InitDirectionWithLiterals, InitialExpandedItems, type InitialExpandedItemsWithLiterals, type InitialPosition, type InitialSizeSetting, type InitialSizeSettingSelectedSizingTypeOneOf, type Initiator, type InitiatorDataOneOf, InitiatorType, type InitiatorTypeWithLiterals, type InlineElement, type Input, type InputConfiguration, type InputField, type InputFieldInputTypeOptionsOneOf, type InputField_Number, type InputField_NumberComponentTypeOptionsOneOf, InputType, type InputTypeWithLiterals, type InputWithPlaceholder, InstallPage, type InstallPageWithLiterals, type InstallationInfo, type InstallationInfoTargetContainerOneOf, type InstallationSettings, type InstallationSettingsOptionsOneOf, type IntListOptions, type IntegerType, type IntegrationOptions, type IntegrationOptionsOptionsOneOf, IntegrationType, type IntegrationTypeWithLiterals, Intent, type IntentWithLiterals, type Interactions, type InterfaceConfiguration, type InterfaceConfigurationOfTypeOneOf, InterfaceConfigurationType, type InterfaceConfigurationTypeWithLiterals, type InternalComponentMetadata, type InventorySpiConfig, type InvoicesActionsComponentData, type InvoicesConfig, type IsStretched, type Item, type ItemDataOneOf, type ItemImage, type ItemLayout, type ItemLayoutItemOneOf, type ItemPath, type ItemSelection, type ItemSelectionOptions, type ItemStyle, type ItemThumbnail, type ItemThumbnailOptionsOneOf, ItemType, type ItemTypeWithLiterals, type ItemVideo, type ItemsGroup, type ItemsSelectionProviderConfig, type KeepAliveConfig, type Keywords, type LanguageTagListOptions, Layout, type LayoutCellData, type LayoutData, type LayoutDataBackground, type LayoutDataBackgroundImage, LayoutDataBackgroundType, type LayoutDataBackgroundTypeWithLiterals, LayoutDataImagePosition, type LayoutDataImagePositionWithLiterals, LayoutMode, type LayoutModeWithLiterals, LayoutType, type LayoutTypeWithLiterals, type LayoutWithLiterals, type LearnMore, type LeftPanel, type LeftPanelWidgetConfig, type LegacyBackOfficeExtensionWidget, type LegacyBackOfficeExtensionWidgetAssetOneOf, type LegacyBackOfficeMenuItem, type LegacyBackOfficeMenuItemAction, type LegendsSpiConfig, Level, type LevelWithLiterals, type LightboxCloseOptions, type LightboxContent, type LightboxEditorSettings, type LightboxOptions, type LimiterField, type LineItemsEnricherConfig, LineStyle, type LineStyleWithLiterals, type Link, type LinkData, type LinkPreviewData, type LinkPreviewDataStyles, type LinkSuffix, LinkTarget, type LinkTargetWithLiterals, LinkType, type LinkTypeWithLiterals, ListEventFromCalendars, type ListEventFromCalendarsWithLiterals, type ListItem, ListStyle, type ListStyleWithLiterals, type ListValue, type LiveSiteActionDeeplink, type LocalDeliveryComponentData, type Location, type LocationLocationInfoOneOf, LockableOperation, type LockableOperationWithLiterals, type Logo, type Logos, type Main, type MainPresets, type MainPropsData, type ManagedMenuEntities, MandatoryField, type MandatoryFieldWithLiterals, type MapData, type MapSettings, MapType, type MapTypeWithLiterals, type Margin, type Margins, type MarketplaceProviderConfig, type MarketplaceSPIConfig, type MaskImage, Maturity, type MaturityWithLiterals, MeasurementSystem, type MeasurementSystemWithLiterals, type Media, type MediaCapabilities, type MediaItem, type MediaItemMediaOneOf, MediaMimeType, type MediaMimeTypeWithLiterals, type MediaSettings, type MembershipsSPIConfig, type MentionData, type MenuAction, type MenuActionActionOneOf, type MenuDropdown, type MenuLink, type MenuSlot, type MessageContainingTranslatables, type Metadata, Method, type MethodWithLiterals, type MinMaxRange, MobileApplication, type MobileApplicationWithLiterals, type MobileFeedChannel, type MobileFeedContentKeys, type MobilePushChannel, type MobilePushChannelConfig, type MobilePushContentKeys, type ModalParams, type Monitoring, type MonitoringOptionsOneOf, MonitoringType, type MonitoringTypeWithLiterals, MpaNavigation, type MpaNavigationWithLiterals, type MultiReferenceOptions, type MultiServiceBookingPolicyProviderConfig, type MultilineAddress, type MultilineAddressValidation, type MultilingualTranslationSchema, type MultipleDashboardsComponentData, type NPMPackage, type NPMPackageEntry, type Namespace, type NamespaceConfig, type NamespaceConfigV2, NativeStateType, type NativeStateTypeWithLiterals, type NavigateToPageAction, NavigationType, type NavigationTypeWithLiterals, type NestedWidgets, type Node, type NodeDataOneOf, type NodeStyle, NodeType, type NodeTypeWithLiterals, type NotificationChannels, type NotificationContent, type NotificationPreferencesFilterConfig, type NotificationTopic, NotificationTopicState, type NotificationTopicStateWithLiterals, NotificationTopicType, type NotificationTopicTypeWithLiterals, type Npm, NullValue, type NullValueWithLiterals, NumberComponentType, type NumberComponentTypeWithLiterals, type NumberInput, NumberOfColumns, type NumberOfColumnsWithLiterals, type NumberType, OAuthAppType, type OAuthAppTypeWithLiterals, OAuthTechnologies, type OAuthTechnologiesWithLiterals, type ObjectField, type ObjectFieldTypeOptionsOneOf, type ObjectOptions, type ObjectType, type Oembed, type Offset, type OffsetValueOneOf, type OneTimeOptionConfiguration, type OneTimePricingTypeConfiguration, type OpenApiOptions, type OpenComponent, type OpenModalAction, type OperationExecutorConfig, Operator, type OperatorConfiguration, OperatorEnumOperator, type OperatorEnumOperatorWithLiterals, type OperatorWithLiterals, type Option, type OptionDesign, type OptionLayout, type OrCondition, Order, type OrderValue, type OrderWithLiterals, type OrderedListData, Orientation, type OrientationWithLiterals, Origin, type OriginInfo, type OriginWithLiterals, type OutOfIframeData, type Output, OverrideEntityType, type OverrideEntityTypeWithLiterals, type OverrideTemplateFields, type PDFSettings, PDFSettingsViewMode, type PDFSettingsViewModeWithLiterals, type PackageDimension, type PackageType, type Padding, type Page, type PageAnchor, type PageComponentData, type PageContent, type PageDashboardApplicationComponent, type PageEditorSettings, type PageInstallation, type PageInstallationSettings, type PageNavigationOptions, type PageOptions, type PageOutOfIframeComponentData, type PageReplace, type PageReplaceOptions, type PageReplaceOptionsOptionsOneOf, type PageWidgetAsContent, type PagesConfig, PaginationMode, type PaginationModeWithLiterals, type Panel, type PanelAction, type PanelActionSelectedPanelTypeOneOf, PanelContentType, type PanelContentTypeWithLiterals, PanelMode, type PanelModeWithLiterals, type PanelSelectedContentTypeOneOf, type PanelSize, PanelType, type PanelTypeWithLiterals, type PanoramaOptions, type ParagraphData, type Param, type Parameter, ParameterType, type ParameterTypeWithLiterals, type ParameterValueDefinitionDetailsOneOf, PartialPaymentRestriction, type PartialPaymentRestrictionWithLiterals, ParticipantType, type ParticipantTypeWithLiterals, type Password, type PatternsWizard, type Payment, PaymentComponentType, type PaymentComponentTypeOptionsOneOf, type PaymentComponentTypeWithLiterals, type PaymentDateModification, type PaymentInput, type PaymentMethod, type PaymentMethodMethodOneOf, type PaymentServiceProviderConfig, type PaymentServiceProviderCredentialsField, type PaymentServiceProviderCredentialsFieldFieldOneOf, type PaymentSettingsSPIConfig, type PaymentType, type PaymentsGatewayComponentData, type PayoutsProviderConfig, type PerkValues, type PerksConfiguration, type PermissionOverrides, type Permissions, type PhoneConstraints, type PhoneInfo, PhoneInfoTag, type PhoneInfoTagWithLiterals, type PhoneInput, type PhoneOptions, type PingNotificationComponentData, type PingSettingsGroupComponentData, PingSettingsGroupComponentDataState, type PingSettingsGroupComponentDataStateWithLiterals, type PlaceHolder, Placement, type PlacementWithLiterals, type PlanDuration, type PlanFormBenefitsSection, type PlanFormCustomPricingRulesSection, type PlanFormCustomSection, PlanFormDefaultSection, type PlanFormDefaultSectionWithLiterals, type PlanFormDurationSection, type PlanFormInfoSection, type PlanFormInitialValue, type PlanFormPagePermissionsSection, type PlanFormPlanSettingsSection, type PlanFormPreviewSection, type PlanFormPricingAndDurationSection, type PlanFormPricingAndDurationSectionDurationInputConfiguration, type PlanFormPricingAndDurationSectionInputConfiguration, PlanFormPricingOption, type PlanFormPricingOptionWithLiterals, type PlanFormPricingSection, type PlanFormPricingSectionInputConfiguration, type PlanFormPricingSectionSetupFeeConfiguration, PlanFormPricingType, type PlanFormPricingTypeWithLiterals, type PlanFormSection, type PlanFormSectionSectionOneOf, type PlanFormStartDateRulesSection, type PlanFormTypeMetadata, PlanPeriodUnit, type PlanPeriodUnitWithLiterals, type PlanPriceData, type PlanPricing, type PlanPricingPricingModelOneOf, type PlanSettingsRowConfiguration, type PlatformHeaderConfig, type PlatfromComponentData, type PlaybackOptions, type PluginConfig, type PluginContainerData, PluginContainerDataAlignment, type PluginContainerDataAlignmentWithLiterals, type PluginContainerDataHeight, type PluginContainerDataWidth, type PluginContainerDataWidthDataOneOf, type PluginInstallationSettings, PluginInterface, type PluginInterfaceWithLiterals, type PluginMarketData, type PluginPlacement, type PointsAdjustmentProviderConfig, type PolicyConfig, type PolicyPermissionOverrides, type Poll, type PollData, type PollDataLayout, type PollDesign, type PollDesignBackground, type PollDesignBackgroundBackgroundOneOf, PollDesignBackgroundType, type PollDesignBackgroundTypeWithLiterals, type PollLayout, PollLayoutDirection, type PollLayoutDirectionWithLiterals, PollLayoutType, type PollLayoutTypeWithLiterals, type PollOption, type PollSettings, type PosProviderSettingsServicePluginConfig, type Position, type PostLoginConfig, type PreRegisterConfig, type PredefinedExpectedInput, type PredefinedExpectedInputConfiguration, type PredefinedExpectedInputConfigurationTypeOneOf, type PredefinedLabel, type PredefinedValues, type PremiumActionConfig, type Preset, type PresetEditorPresence, type PresetElementDefaults, type PresetInfo, type PresetInnerElementDefaults, type PresetItem, type PresetSize, type PresetStyleDefaults, type PresetStyleItemOverrides, type PresetStyleOverrides, type PreviewCardPlaceholders, type PreviewConfiguration, type PreviewFields, type PriceSPIConfig, PriceType, type PriceTypeWithLiterals, type PricingData, type PricingPlansFormConfiguration, type PricingRecurring, type Primitive, PrimitiveType, type PrimitiveTypeWithLiterals, type Product, type ProductCatalogProviderConfig, type ProductCheckboxGroup, type ProductCheckboxGroupOption, type ProductPriceOptionsOneOf, type ProductRestrictionsConfig, ProductType, type ProductTypeWithLiterals, type ProductsPathsConfig, type Project, type PropertiesType, PropertiesTypeEnum, type PropertiesTypeEnumWithLiterals, type PropertiesTypePropertiesTypeOptionsOneOf, type ProposalEditorProviderConfig, type Provider, type ProviderAccountServicePluginConfig, type ProviderConfig, type ProviderConfigMessage, type ProviderFilterOptions, type ProviderIdentifier, type ProviderSuppressionServicePluginConfig, type PurchaseValidationsConfig, type QuantityLimit, type RadioButtonLabeled, type RadioGroup, type RadioGroupOption, type RangeConstraints, type RateLimit, type RatingInput, type ReactElementContainer, type ReactElementContainerSelectedContainerTypeOneOf, type RecipientFilter, type RecipientFilterDataOneOf, RecipientFilterType, type RecipientFilterTypeWithLiterals, RecipientType, type RecipientTypeWithLiterals, type RecommendationsProviderConfig, type RecurringOptionConfiguration, type RecurringPricingTypeConfiguration, type RecurringPricingTypeConfigurationFreeTrialConfiguration, type RedirectOptions, type RefElement, type RefInnerElementDefaults, type ReferenceOptions, Region, RegionScopeScope, type RegionScopeScopeWithLiterals, RegionType, type RegionTypeWithLiterals, type RegionWithLiterals, type Rel, type RenderOverrides, type RepeatedFieldOverrideConfig, type ReplaceableOptions, ReplacementType, type ReplacementTypeWithLiterals, type ReplacingOptions, RequiredIndicator, RequiredIndicatorPlacement, type RequiredIndicatorPlacementWithLiterals, type RequiredIndicatorProperties, type RequiredIndicatorWithLiterals, type RequiredOptions, type ResetButton, ResizeDirection, type ResizeDirectionWithLiterals, Resizing, type ResizingWithLiterals, type Resource, type Resources, ResponsivenessBehaviour, type ResponsivenessBehaviourWithLiterals, type ResponsysEmail, type RestaurantsPOSComponentData, RestrictedOperation, type RestrictedOperationWithLiterals, type Restriction, RestrictionLevel, type RestrictionLevelWithLiterals, type Restrictions, type RestrictionsConfig, type ReviewsEntityCatalogProviderConfig, type ReviewsProductCatalogProviderConfig, type RewardProviderConfig, type RibbonStyles, type RichContent, type RichContentOptions, type RichText, RichTextAbilities, type RichTextAbilitiesWithLiterals, type RichTextWithIllustrationVertical, type RouterPage, type Rule, type SDKExports, type SDKExportsNpm, Scaling, type ScalingWithLiterals, type Scheduling, SchedulingComponentType, type SchedulingComponentTypeOptionsOneOf, type SchedulingComponentTypeWithLiterals, type Schema, type SchemaConfig, type SchemaField, SchemaFieldExposure, type SchemaFieldExposureWithLiterals, SchemaFieldFieldType, type SchemaFieldFieldTypeWithLiterals, type SchemaFieldType, type SchemaFieldTypeFieldTypeOneOf, type SchemaGroup, type SchemaGroupElement, type SchemaKey, SchemaScope, type SchemaScopeWithLiterals, Scope, ScopeType, type ScopeTypeWithLiterals, type ScopeWithLiterals, ScriptType, type ScriptTypeWithLiterals, type SdkDefinition, type SearchConfig, type SearchField, type SearchParams, type SecondLevelCategory, type Section, type SentryOptions, type SeoKeywordsSuggestionsSPIConfig, type ServiceAction, type ServiceAvailabilityPolicyProviderConfig, type ServicePermissionOverrides, type ServiceTagsConfig, type ServiceTrigger, type ServicesDropdown, type ServicesDropdownOption, type Settings, type SettingsPanel, type SettingsPermissions, type SettingsUrl, type SetupFeeConfiguration, type ShapeData, type ShapeDataStyles, type SharedPlatformMobilePushConfig, type ShippingLabelCarrierSpiConfig, type ShippingProviderConfig, type ShippingRatesConfig, type ShorthandGroupBackground, type ShoutoutEmail, type Sidebar, type SidebarChildItem, type SidebarChildItemItemOneOf, type SidebarConfig, type SidebarConfigOneOf, SidebarDataType, type SidebarDataTypeWithLiterals, SidebarEntityType, type SidebarEntityTypeWithLiterals, type SidebarRootItem, type SidebarRootItemItemOneOf, type SidebarSecondLevelChildItem, type SidebarSecondLevelChildItemItemOneOf, type SidebarWidget, type SidebarWidgetConfig, type SidebarWidgetConfigOneOf, type Signature, type Simple, type SimpleContainer, type SimpleField, SimpleType, type SimpleTypeWithLiterals, type SingleContent, type SingleKeyCondition, type SiteConfig, type SiteContributorsData, type SiteMapProviderConfig, type SiteMemberData, SiteMembersSsrCaching, type SiteMembersSsrCachingWithLiterals, type SiteMigrationSpiConfig, type SiteWidgetSlot, type Size, SizingType, type SizingTypeWithLiterals, type SliderLabeled, type Slot, type SlotData, type SlotDataSlotTypeOneOf, SlotDataType, type SlotDataTypeWithLiterals, type SlotParams, type SmsActionMessage, type SmsChannel, type SmsContentKeys, type SmsMessageConfig, type SmsSmsMessageConfig, type SnippetSolutionData, type SocialMarketingDesignSPIConfig, type SocialMarketingDesignsProviderConfig, type Source, type SourceOptionsOneOf, SourceType, type SourceTypeWithLiterals, type SpamSubmissionPermissions, type Spi, type SpiBaseUri, type Spoiler, type SpoilerData, type StaffSortingProviderConfig, type StartDateLimitsSPIConfig, type StartDateRulesSPIConfig, type State, StaticContainer, type StaticContainerWithLiterals, type StaticContent, type StaticFileComponentData, type StaticFilterOption, type StaticFilterOptions, Status, type StatusWithLiterals, type Step, type Stop, StorageDomain, type StorageDomainWithLiterals, StorageType, type StorageTypeWithLiterals, StringComponentType, type StringComponentTypeWithLiterals, type StringListOptions, type StringOption, type StringType, type StringTypeFormatOptionsOneOf, type StudioComponentData, type StudioWidgetComponentData, type StudioWidgetVariation, type StyleAction, type StyleItem, type StyleItemDefaults, type StyleItemOverrides, type StyleItemSelectedCssPropertyTypeOneOf, type StyleItemSelectedCssVariableTypeOneOf, type StyleItemSelectedItemTypeOneOf, StyleType, type StyleTypeWithLiterals, type Styles, type StylesBackground, type StylesBorder, StylesPosition, type StylesPositionWithLiterals, type SubPage, type SubmissionPermissions, type SubmitSettings, type SubmitSettingsSubmitSuccessActionOptionsOneOf, SubmitSuccessAction, type SubmitSuccessActionWithLiterals, type SubscriptionInfo, SyncToCalendar, type SyncToCalendarWithLiterals, type SyncedProjectsProviderConfig, type Tab, type TableCellData, type TableData, Tag, type TagOverrides, type TagOverridesEntry, type TagWithLiterals, type Tags, type TagsOption, Target, type TargetElement, type TargetWithLiterals, type TaskScope, type TaxCalculationConfig, type TaxCalculatorSpiConfig, type TaxCountriesConfig, type TaxExemptGroup, type TaxExemptGroupsProviderConfig, type TaxGroupsProviderConfig, type TaxIdValidatorConfig, type TaxTypesConfig, type TaxationCategoryProvider, type TemplateContainer, TemplateDefaultColor, type TemplateDefaultColorWithLiterals, TemplateType, type TemplateTypeWithLiterals, type TermsAndConditionsConfiguration, type TermsModalConfiguration, TestEnum, type TestEnumWithLiterals, type Text, TextAlignment, type TextAlignmentWithLiterals, type TextData, type TextDecoration, type TextEnum, type TextGroup, type TextInput, TextInputDisplayType, type TextInputDisplayTypeWithLiterals, type TextInputLabeled, type TextInputSettings, type TextNodeStyle, type TextStyle, type TextStyleDefaultColorOneOf, type TextToSpeechActionMessage, type TextWithSuffix, type TextWithSuffixSuffixOneOf, type TextWithTooltip, type ThankYouMessageOptions, type ThankYouPageConfiguration, type ThankYouPageInputConfig, type ThankYouPageModalConfiguration, type ThankYouPagePreviewConfiguration, type ThankYouPageRedirectsConfiguration, type ThumbnailData, ThumbnailType, type ThumbnailTypeWithLiterals, type Thumbnails, ThumbnailsAlignment, type ThumbnailsAlignmentWithLiterals, ThumbnailsSize, type ThumbnailsSizeWithLiterals, type TicketReservationsSpiConfig, type TimeConstraintConfiguration, type TimeConstraintConfigurationValueConstraintsOneOf, TimeConstraintType, type TimeConstraintTypeWithLiterals, type TimeInput, type TocData, type ToggleLabeled, type ToolPanelConfig, type TooltipSuffix, type TopologyComponentData, type TranslatedMessageWithIdRepeated, type TranslatedMessageWithUniqueFieldRepeated, type TranslationResources, Trigger, type TriggerFieldOverride, type TriggerFilter, type TriggerOverride, type TriggerProviderSPIConfig, type TriggerWithLiterals, Type, type TypeWithLiterals, type TypedDynamicParam, TypedDynamicParamType, type TypedDynamicParamTypeWithLiterals, type UnifiedLightbox, type UnifiedPage, type UnifiedPageEditorSettings, UnitType, type UnitTypeWithLiterals, type Until, type UpdateComponentCatalogRequest, UpdateMode, type UpdateModeWithLiterals, UploadFileFormat, UploadFileFormatEnumUploadFileFormat, type UploadFileFormatEnumUploadFileFormatWithLiterals, type UploadFileFormatWithLiterals, type UpstreamWixCommonImage, type Url, type UrlData, type UrlMapperProviderConfig, type UrlParam, type UserNotification, type UserNotificationData, type UserNotificationDataContext, type UserNotificationDataDeeplink, type UserNotificationDataDeeplinkOfOneOf, type UserNotificationDataInitiator, type UserNotificationDataInitiatorDataOneOf, type UserNotificationDataRecipientFilter, type UserNotificationDataRecipientFilterDataOneOf, UserNotificationDataRecipientFilterType, type UserNotificationDataRecipientFilterTypeWithLiterals, UserNotificationDataType, type UserNotificationDataTypeWithLiterals, type V1Image, type V1ImplementedMethods, type V1Link, type V1LinkDataOneOf, type V1Metadata, type V1Region, type V1SchemaField, V1Scope, type V1ScopeWithLiterals, type V1TextStyle, type V1ValidationTarget, type V2CommunicationChannelConfiguration, type V2Condition, type V2Field, type V2FieldFieldTypeOptionsOneOf, type V2ImplementedMethods, type V2Rule, type V2TriggerOverride, type ValidationMessages, type ValidationTarget, ValidationTargetMethod, type ValidationTargetMethodWithLiterals, type ValidationsSPIConfig, ValueConstraintType, type ValueConstraintTypeWithLiterals, type VectorArt, VectorArtCategoryTypes, type VectorArtCategoryTypesWithLiterals, type VectorArtOverrides, type VeloActionConfig, type VeloCustomCss, type VeloPublishPipelineTaskProviderConfig, type VelocityEmail, Vertical, VerticalAlignment, VerticalAlignmentAlignment, type VerticalAlignmentAlignmentWithLiterals, type VerticalAlignmentWithLiterals, VerticalDocking, type VerticalDockingWithLiterals, type VerticalWithLiterals, VibeActionType, type VibeActionTypeWithLiterals, type VibeCustomPanelAction, type VibeDashboardAction, type Video, VideoCategoryTypes, type VideoCategoryTypesWithLiterals, type VideoConferenceOptions, type VideoData, type VideoOverrides, ViewMode, type ViewModeWithLiterals, ViewRole, type ViewRoleWithLiterals, type ViewerRouterSPIConfig, type ViewerService, type ViewerServiceAssets, type ViewerServiceModuleConfiguration, type VisibleState, type VoiceChannel, type VoiceContentKeys, VoteRole, type VoteRoleWithLiterals, type WebComponentData, WebComponentDataElementType, type WebComponentDataElementTypeWithLiterals, type WebFeedChannel, type WebFeedContentKeys, type WebhookComponentData, type WidgetAsContent, type WidgetBehavior, type WidgetComponent, type WidgetComponentData, type WidgetComponentOptions, type WidgetData, type WidgetDetails, type WidgetDisplay, WidgetHorizontal, type WidgetHorizontalWithLiterals, type WidgetInstallation, type WidgetInstallationSettings, type WidgetInstallationSettingsTargetContainerOneOf, type WidgetOutOfIframeComponentData, type WidgetPluginComponentData, type WidgetSize, type WidgetSizeHeight, type WidgetSizeWidth, type WidgetSlot, WidgetVertical, type WidgetVerticalWithLiterals, WidgetWidthType, type WidgetWidthTypeWithLiterals, Width, WidthType, type WidthTypeWithLiterals, type WidthWithLiterals, type WixAiGatewaySpiConfig, type WixApiOptions, WixCodePublishTaskName, type WixCodePublishTaskNameWithLiterals, type WixCommonImage, type WixDependency, type WixFile, WixFileComponentType, type WixFileComponentTypeOptionsOneOf, type WixFileComponentTypeWithLiterals, type WixOfferingComponentData, type WixOfferingComponentDataOfferingOneOf, type WixPagesDomainMapping, type WixUserData, type WixUsersData, type WixVibeCodingInstructions, type WixVibeComponent, type WixelSPIConfig, type WorkerComponentData, type WritingMode, WritingModeValue, type WritingModeValueWithLiterals, type _Array, type _ArrayComponentTypeOptionsOneOf, type _Boolean, type _BooleanComponentTypeOptionsOneOf, type _Date, type _Function, type _Number, type _Object, type _String, type _StringComponentTypeOptionsOneOf, agentMakerApprovalProvider, aiAssistant, aiAssistantAction, alertEnricher, analyticsProductCatalog, appConfig, appRouter, applicationAutomation, applicationProfile, audienceProvider, automationTemplate, automationTrigger, automationsActionProvider, automationsTriggerProvider, automationsVeloActionProvider, availabilityTimeSlotsConfigurationProvider, backOfficeCustomization, backOfficeExtension, backOfficeExtensionContainer, backOfficeExtensionMenuItem, backOfficeExtensionWidget, backOfficeExternalUrl, backOfficeModal, backOfficePage, backOfficeRestrictedCustomization, backOfficeSidebarCategory, backOfficeWidget, backendWorker, bassValidateCancelAction, benefitProgramsPolicyProvider, billingOperation, billingSettings, billingTaxIdValidator, blogPaywallProvider, bookingActionUrlsProvider, bookingAutomationsConfiguration, bookingPolicyProvider, bookingsExternalCalendarProvider, bookingsPlatformConfiguration, bookingsPricingProvider, bookingsResourceTypesProvider, bookingsValidationProvider, broadcastList, browserStorage, calendarConferencingProvider, calendarEventTypeProvider, calendarEventValidationProvider, clientSideService, codePackage, commentsContextProvider, commentsFilterProvider, commentsModerationProvider, communicationChannel, communicationChannelProvider, componentEnricherProvider, componentReferenceDataProvider, componentsTranslationsAdditionalFieldsProvider, componentsValidatorProvider, contactLabels, contactNotification, contactsSegmentsV2FilterProvider, crossSell, customElementWidget, customTableReservationsProvider, dashboard, dashboardApplication, dashboardPlatform, dataComponent, dataExtensions, dcConfig, dealerAdaptiveComponentProvider, dealerExternalFilterProvider, deploymentPipelineProvider, devCenterTestingComponent, ecomAdditionalFees, ecomCatalog, ecomCheckoutContent, ecomCustomScope, ecomDefaultTaxationCategory, ecomDiscounts, ecomDiscountsTrigger, ecomDropshippingProvider, ecomForms, ecomInventory, ecomLineItemsEnricher, ecomMemberships, ecomPaymentSettings, ecomRecommendationsProvider, ecomShippingRates, ecomTaxCalculatorSpi, ecomValidations, editorAddon, editorAppPreviewsPoc, editorContextProvider, editorFunctionLibrary, editorReactComponent, embeddedScript, eventTimeSlotsConfigurationProvider, eventsEventBadges, eventsTicketReservations, extension, externalDatabaseProvider, fictionalShippingProvider, formSchemaDynamicValues, formSubmissionModeration, formTemplate, formsExtensionProvider, formsSchemaProvider, formsSpamSubmissionReportsProvider, formsSpamSubmissionsProvider, formsSubmissionsExtensionProvider, formsSubmissionsProvider, functionEcomDiscountTriggerEligibilityProvider, functionExtension, functionRecipe, functionsAssistantTools, functionsShopPriceProvider, genericHooks, giftCardsProvider, googleBusinessProfileFeatureProvider, gridAppFilesTransformer, headlessOauth, identityAuthenticator, identityFactor, identityIdpConnector, identityPostLogin, identityPreRegistration, invoicesActions, invoicesProvider, itemsSelectionProvider, legendsPersonaConfiguration, localDelivery, loyaltyCustomRewards, loyaltyCustomRewardsV2, loyaltyPointsAdjustment, monitoring, multiServiceBookingPolicyProvider, multilingualContentProvider, multilingualTranslationSchema, multilingualTranslationSchemaGroup, multipleDashboards, notificationContent, notificationPreferencesFilterProvider, notificationTopic, page, pageOutOfIframe, panel, papiProvider, partnersPayouts, patternsWizard, paymentProvider, paymentsDisputeServicePlugin, paymentsGateway, pingSettingsGroup, pingUouNotification, pingUserNotification, platform, portfolioSyncedProjectsProvider, premiumAction, premiumCustomCharges, premiumProductsPaths, premiumPurchaseValidations, pricingPlanStartDateLimits, pricingPlanStartDateRules, pricingPlansFees, pricingPlansFormConfiguration, pricingPlansPrice, proposalEditorProvider, providerSuppressionServicePlugin, reserved, restaurantsPos, restaurantsPosProviderSettingsServicePlugin, sdkDefinition, sdkExports, seoKeywordsSuggestions, serviceTagsConfiguration, shippingLabelCarrier, shubMarketplaceProvider, siteMapInfoProvider, siteMigration, siteWidgetSlot, smsActionMessage, snippetSolution, socialMarketingDesign, socialMarketingDesignsProvider, staffSortingProvider, staticFile, storesProductRestrictions, studio, studioWidget, suppliersHubMarketplace, taxCalculationProvider, taxExemptGroupsProvider, taxGroupsProvider, textToSpeechActionMessage, topology, unifiedLightbox, unifiedPage, urlMapperProvider, userNotification, veloCustomCss, veloPublishPipelineTaskProvider, viewerDynamicSiteStructureProvider, viewerService, web, webhook, widget, widgetOutOfIframe, widgetPlugin, wixAiGatewayCallback, wixHostingAppDeploymentProvider, wixHostingAppEnvironmentProvider, wixOffering, wixPaymentsProviderAccountServicePlugin, wixReviewsEntityCatalog, wixReviewsProductCatalog, wixVibeCodingInstructions, wixVibeComponent, wixel, wixelBinding, wixelViewerRouterProvider, worker };
26549
+ export { type A11y, A11yAttributes, type A11yAttributesWithLiterals, AcceptedDirectMessageType, type AcceptedDirectMessageTypeWithLiterals, AcceptedMessageTypesAcceptedDirectMessageType, type AcceptedMessageTypesAcceptedDirectMessageTypeWithLiterals, AcceptedMessageTypesAcceptedSmsMessageType, type AcceptedMessageTypesAcceptedSmsMessageTypeWithLiterals, AcceptedSmsMessageType, type AcceptedSmsMessageTypeWithLiterals, AccessLevel, type AccessLevelWithLiterals, type Action, type ActionCondition, ActionName, type ActionNameWithLiterals, type ActionProviderSPIConfig, type ActionSPIConfig, type ActionSPIConfigImplementedMethods, type ActionSPIConfigInterfaceConfiguration, type ActionSPIConfigInterfaceConfigurationOptionsOneOf, ActionSPIConfigInterfaceConfigurationType, type ActionSPIConfigInterfaceConfigurationTypeWithLiterals, type ActionSpiConfig, ActionType, type ActionTypeWithLiterals, type Actions, type AdaptiveComponentProviderConfig, type AddCustomFields, type AdditionalFeesSPIConfig, type AdditionalStepInfo, type AdditionalTaxGroup, type AddonMarketData, type Address, AddressComponentType, type AddressComponentTypeOptionsOneOf, type AddressComponentTypeWithLiterals, type AddressInfo, AddressInfoTag, type AddressInfoTagWithLiterals, type AddressLine2, type AdminConfigurableTextInput, type AlertEnricherSpiConfiguration, type AlgorithmConfig, AlgorithmType, type AlgorithmTypeWithLiterals, Alignment, type AlignmentWithLiterals, type AllowedValuesOptions, type AlternativeUri, type AnchorData, type AnchorMetaData, type AndCondition, type AndroidMobilePushConfig, AndroidStyle, type AndroidStyleWithLiterals, type ApiContext, type ApiSlot, type ApiWidth, type AppConfig, type AppConfiguration, type AppDeploymentProviderConfig, type AppEmbedData, type AppEmbedDataAppDataOneOf, type AppEnvironmentProviderConfig, type AppPreviewProviderConfig, type AppRouter, AppType, type AppTypeWithLiterals, type ApplicationAutomationComponent, type ApplicationProfile, type ApplicationProfileProviderConfig, type Appointment, AppointmentFormat, type AppointmentFormatInfoOneOf, type AppointmentFormatWithLiterals, type ApprovalProviderConfig, type ApprovalProviderConfigScopeOneOf, Archetype, type ArchetypeWithLiterals, ArrayComponentType, type ArrayComponentTypeWithLiterals, type ArrayItems, type ArrayItemsArrayDataOneOf, type ArrayOptions, type ArrayOptionsElementTypeOptionsOneOf, type ArrayType, type ArrayTypeArrayItems, type ArrayTypeArrayItemsItemTypeOptionsOneOf, AspectRatio, type AspectRatioWithLiterals, AssetType, type AssetTypeWithLiterals, type AssistantSpiConfig, type AudienceProviderConfig, type AudioData, type AuthenticatorConfig, type AutomationActionScope, type AutomationMetadata, type AutomationTemplateComponent, type AutomationTrigger, type AutomationsConfig, type AvailabilityTimeSlotsProviderConfig, type AvatarConfig, AvatarShape, type AvatarShapeWithLiterals, type BackOfficeCustomization, type BackOfficeCustomizationSidebarEntity, type BackOfficeCustomizationSidebarEntityItemOneOf, type BackOfficeExtension, type BackOfficeExtensionContainer, type BackOfficeExtensionExtensionOneOf, type BackOfficeExtensionMenuItem, type BackOfficeExtensionWidget, type BackOfficeExtensionWidgetAssetOneOf, type BackOfficeExternalUrl, BackOfficeHostingPlatforms, type BackOfficeHostingPlatformsWithLiterals, type BackOfficeModal, type BackOfficeModalContentOneOf, type BackOfficePage, type BackOfficePageAssetOneOf, type BackOfficeRestrictedCustomization, type BackOfficeScriptAsset, BackOfficeScriptAssetType, type BackOfficeScriptAssetTypeWithLiterals, type BackOfficeSidebarCategory, type BackOfficeWidget, type BackOfficeWidgetContentOneOf, type Backdrop, type BackdropFilter, BackdropType, type BackdropTypeWithLiterals, type BackendWorker, type Background, type BackgroundGradient, type BackgroundImage, BackgroundModeEnum, type BackgroundModeEnumWithLiterals, BackgroundType, type BackgroundTypeWithLiterals, type BackofficeActionDeeplink, type Banner, type BarAlignment, BarAlignmentSelected, type BarAlignmentSelectedWithLiterals, type BaseInfo, type BaseInstallation, type Behaviors, type BillingSettingsConfig, type BindingsSPIConfig, BlockType, type BlockTypeWithLiterals, type BlockquoteData, type BlocksData, type BlogPaywallProviderConfig, type BookingActionUrlsProviderConfig, type BookingAutomationsConfig, type BookingData, type BookingPermissionOverrides, type BookingPolicyProviderConfig, type BookingsPlatformConfig, type BookingsPricingProviderConfig, type BookingsResourceType, type BookingsResourceTypesProviderConfig, type BookingsValidationProviderConfig, type BoolListOptions, BooleanComponentType, type BooleanComponentTypeWithLiterals, type BooleanExperimentExposureRule, type BooleanType, type Border, type BorderColors, type BorderWidths, type BrandIcons, type BreakPoint, type BreakPointSection, type Breakpoint, BreakpointEnumBreakpoint, type BreakpointEnumBreakpointWithLiterals, type BreakpointPresetStyleOverrides, type Breakpoints, type BroadcastList, type BrowserPushChannel, type BrowserPushContentKeys, type BrowserStorage, type BuilderSpi, type BulletedListData, type Bundle, type BusinessManagerPage, type ButtonData, ButtonDataType, type ButtonDataTypeWithLiterals, type ButtonStyles, CalendarType, type CalendarTypeWithLiterals, type CancelSubscriptionsConfig, type CaptionData, type CardData, type CardDataBackground, type CardDataBackgroundImage, CardDataBackgroundType, type CardDataBackgroundTypeWithLiterals, type CardStyles, CardStylesAlignment, type CardStylesAlignmentWithLiterals, CardStylesType, type CardStylesTypeWithLiterals, type CatalogSPIConfig, type CatalogSyncConfiguration, Category, type CategoryWithLiterals, type CellStyle, type ChangeEvent, ChangeableProperty, type ChangeablePropertyWithLiterals, type ChannelBrandIcons, type ChannelBranding, type ChannelChannelBranding, type ChannelChannelConfiguration, type ChannelChannelConfigurationMessagingConfigOneOf, type ChannelConfiguration, ChannelConfigurationChannelType, type ChannelConfigurationChannelTypeWithLiterals, type ChannelConfigurationMessagingConfigOneOf, type ChannelIcon, type ChannelImplementedMethods, type ChannelMediaCapabilities, ChannelType, type ChannelTypeWithLiterals, type Checkbox, type CheckboxConfiguration, type CheckboxField, type CheckboxGroup, type CheckboxGroupOption, type CheckoutContentSPIConfig, type ClientResources, type ClientSideService, type CodeBlockData, type CodePackageComponentData, type CodePanel, type CollapsibleListData, type Collection, type Color, type ColorData, type ColorDefinition, type ColorSelectLabeled, type ColorSelectLabeledDataOneOf, type Colors, type CommentFilterProviderConfig, type CommentModerationProviderConfig, type CommentsContextProviderConfig, type CommonImage, type CommunicationChannelConfiguration, type ComponentCatalog, type ComponentData, type ComponentDataDataOneOf, type ComponentEnricherConfig, type ComponentInitialSize, type ComponentMetaData, type ComponentModel, ComponentPresent, type ComponentPresentWithLiterals, type ComponentReferenceDataConfig, type ComponentTranslationAdditionalFieldsConfig, ComponentType, type ComponentTypeWithLiterals, type ComponentsValidatorConfig, type Condition, type ConditionBlock, type ConditionNode, type ConditionNodeNodeOneOf, type Conditions, type ConferencingProviderConfig, type Configuration, ConfirmationLevel, type ConfirmationLevelWithLiterals, ConnectMethod, type ConnectMethodWithLiterals, ConnectionMethod, type ConnectionMethodWithLiterals, ConsentCategory, type ConsentCategoryWithLiterals, type Consequence, type ConstOrDynamicParam, type ConstOrDynamicParamValueOneOf, type Constraint, type ContactData, ContactField, type ContactFieldWithLiterals, type ContactLabelsComponentData, type ContactNotification, type ContactsData, type ContactsNotificationData, type Container, type ContainerBehaviors, type ContainerDataOneOf, type ContainerLayout, type ContainerStyleOverrides, ContainerType, type ContainerTypeWithLiterals, type ContentData, type ContentDataOverrides, type ContentFill, type ContentProviderConfig, ContentResizeDirection, type ContentResizeDirectionWithLiterals, type Context, type ContextArrayItems, type ContextArrayItemsArrayDataOneOf, type ContextDataItems, type ContextImplementor, type ContextItem, type ContextItemSelectedDataTypeOneOf, type ContextSpecifier, type ConversationLimitations, type Coordinates, type CoreApps, type Corners, type CoverImageConfiguration, type CreateComponentCatalogRequest, type CreateNewItemInfo, Crop, type CropWithLiterals, type CrossSellConfig, type CssCustomPropertyAction, type CssCustomPropertyItem, type CssCustomPropertyItemSelectedCssPropertyTypeOneOf, CssDataType, type CssDataTypeWithLiterals, type CssNumber, type CssPropertyAction, type CssPropertyItem, type CssPropertyItemDefaults, type CssPropertyItemDefinitionOverrides, type CssPropertyItemSelectedCssPropertyTypeOneOf, CssPropertyType, CssPropertyTypeEnumCssPropertyType, type CssPropertyTypeEnumCssPropertyTypeWithLiterals, type CssPropertyTypeWithLiterals, CssVariableTypeEnumCssDataType, type CssVariableTypeEnumCssDataTypeWithLiterals, type CurrencyCodeListOptions, type CustomAction, type CustomActionActionExecuteOneOf, type CustomChargesConfig, type CustomElement, type CustomElementConsentCategoryOneOf, CustomElementScriptType, type CustomElementScriptTypeWithLiterals, type CustomElementWidget, type CustomEnum, type CustomEnumOption, type CustomEnumOptionCssProperty, type CustomExperimentExposureRule, type CustomFieldInfo, CustomFieldsType, type CustomFieldsTypeWithLiterals, type CustomInitialPreset, type CustomOption, type CustomPermission, type CustomPropertyEnum, type CustomPropertyEnumOption, type CustomPropertyEnumOptionStyle, type CustomRefData, type CustomReservationsApprovalConfig, type CustomRewardProviderConfig, type CustomScopeConfig, type CustomTriggerConfig, type DCConfigData, type Dashboard, type DashboardAction, type DashboardApplicationData, type DashboardButton, type DashboardComponentData, type DashboardItem, type DashboardPlatfromComponentData, type DataAction, type DataComponent, type DataExtensionsComponentData, type DataGroupsArrayItems, type DataItem, type DataItemOverrides, type DataItemOverridesSelectedDataTypeOneOf, type DataItemSelectedDataTypeOneOf, type DataItems, type DataPermissions, DataType, type DataTypeWithLiterals, type DateInput, type DatePicker, type DateTimeConstraints, type DateTimeInput, type Debounce, type DecimalListOptions, type Decoration, type DecorationDataOneOf, DecorationType, type DecorationTypeWithLiterals, type Deeplink, type DeeplinkOfOneOf, Default, type DefaultCountryConfig, type DefaultCountryConfigOptionsOneOf, DefaultCountryConfigType, type DefaultCountryConfigTypeWithLiterals, type DefaultPresets, type DefaultTaxGroupProviderConfig, DefaultTextStyle, type DefaultTextStyleWithLiterals, type DefaultWithLiterals, type Definition, type Delay, type DelayTypeOneOf, type DeleteComponentCatalogRequest, type DeleteTemplateFields, type DeploymentPipelineProviderConfig, type Description, type Design, DesignTarget, type DesignTargetWithLiterals, type DevCenterTestingComponentData, type DevCenterTestingComponentDataTranslatableOneOfOneOf, type Dimension, type Dimensions, type DirectMessageConfig, Direction, type DirectionWithLiterals, type DiscountConfig, type DiscountsSPIConfig, type DiscoveryMetaData, type Display, type DisplayField, type DisplayFieldDisplayFieldTypeOptionsOneOf, DisplayFieldType, type DisplayFieldTypeWithLiterals, type DisplayFilter, type DisplayFilters, type DisplayGroupAction, type DisplayGroupItem, type DisplayGroupItemSelectedGroupTypeOneOf, type DisplayProperties, type DisplayValue, DisplayValueEnumDisplayValue, type DisplayValueEnumDisplayValueWithLiterals, type DisputeServicePluginConfig, type DividerData, DividerDataAlignment, type DividerDataAlignmentWithLiterals, DividerDataWidth, type DividerDataWidthWithLiterals, type DmDirectMessageConfig, type Docking, type DockingProperties, type DocumentStyle, DomEventType, type DomEventTypeWithLiterals, Domain, type DomainWithLiterals, type DonationInput, type DonationInputOption, type DrillInListItem, type DrillItem, type DrillItemDataOneOf, type DropDownLabeled, type Dropdown, type DropdownField, type DropdownFieldOption, type DropdownOption, type DropshippingProviderSPIConfig, type DtsContent, type DtsDefinitionReference, type DtsDefinitionReferenceDtsDefinitionOneOf, DtsDefinitionType, type DtsDefinitionTypeWithLiterals, type DtsHttpLink, type DurationInputConfiguration, type DurationInputConfigurationDurationRenameOptions, type DurationRenameOptions, type DynamicPriceOptions, type DynamicSiteStructureProviderConfig, type EditableFields, EditableProperties, type EditablePropertiesWithLiterals, type EditorAddon, type EditorBehaviors, type EditorContextProvider, type EditorContextProviderModuleConfiguration, type EditorContextProviderResources, type EditorDependencies, type EditorElement, type EditorElementLayout, type EditorFunction, type EditorFunctionLibrary, type EditorFunctionLibraryModuleConfiguration, type EditorPresence, type EditorReactComponent, type EditorReactComponentModuleConfiguration, EffectGroup, type EffectGroupWithLiterals, ElementDisplayOption, type ElementDisplayOptionWithLiterals, type ElementItem, type ElementItemSelectedElementTypeOneOf, type ElementState, type ElementStyleOverrides, ElementType, type ElementTypeWithLiterals, type EmailChannel, type EmailEmailMessageConfig, type EmailInfo, EmailInfoTag, type EmailInfoTagWithLiterals, type EmailMessageConfig, type EmailTemplateConfig, type EmailTemplateConfigProviderOneOf, EmbedCategory, type EmbedCategoryWithLiterals, type EmbedData, type EmbeddedScriptComponentData, EmbeddedScriptPages, type EmbeddedScriptPagesWithLiterals, EmbeddedScriptPlacement, type EmbeddedScriptPlacementWithLiterals, type Empty, Environment, type EnvironmentWithLiterals, type ErrorReporting, type ErrorReportingArtifact, Escalation, type EscalationWithLiterals, type EventAction, type EventBadgesSpiConfig, type EventData, type EventTimeSlotsProviderConfig, type EventTypeProviderConfig, type EventValidationProviderConfig, type Execution, type ExecutionActionExecuteOneOf, ExecutionType, type ExecutionTypeWithLiterals, type ExemptRegions, type ExpectedInputs, type ExperimentGroupWrapper, type ExportMetadata, Exposure, type ExposureRule, type ExposureRuleRuleOneOf, ExposureRuleType, type ExposureRuleTypeWithLiterals, type ExposureWithLiterals, type Extendable, ExtendingComponentType, type ExtendingComponentTypeWithLiterals, type ExtensionData, type ExtensionDetails, type ExtensionExposure, ExtensionExposureExposure, type ExtensionExposureExposureWithLiterals, ExtensionType, type ExtensionTypeWithLiterals, type ExternalDatabaseSpiConfig, type ExternalFilterProviderConfig, type FactorConfig, FactorType, type FactorTypeWithLiterals, type FeedAggregation, type FeedChannels, type FeedChannelsConfig, type FeesSPIConfig, type Field, FieldFieldType, type FieldFieldTypeWithLiterals, type FieldGroup, type FieldManagementConfig, type FieldOverride, type FieldOverrides, FieldType, type FieldTypeOptionsOneOf, type FieldTypeWithLiterals, type FieldsOverrides, type FieldsSettings, type FileData, FileMediaType, type FileMediaTypeWithLiterals, type FileSource, type FileSourceDataOneOf, type FileType, type FileUpload, type Filter, type FilterDefinition, FilterFunction, type FilterFunctionWithLiterals, type FilterInfo, type FilterInfoOptionsOneOf, type FilterItem, FilterOperator, type FilterOperatorWithLiterals, FilterOptionsType, type FilterOptionsTypeWithLiterals, FilterSelectionType, type FilterSelectionTypeWithLiterals, FilterValueDefinitionMode, type FilterValueDefinitionModeWithLiterals, type FilteringCapability, FirstDayOfWeek, type FirstDayOfWeekWithLiterals, type FirstLevelCategory, type FixedPayment, type FixedPositionBuilder, type FixedPositionOptions, type FixedPriceOptions, type FocalPoint, type Font, type FontDefinition, type FontFamilyData, type FontFamilyWithColorPicker, type FontSizeData, FontType, type FontTypeWithLiterals, type FormFieldContactInfo, type FormFieldContactInfoAdditionalInfoOneOf, type FormLayout, type FormOverride, type FormOverrideEntityTypeOptionsOneOf, type FormOverrideFieldOverride, type FormOverrideFieldOverridePropertyTypeOptionsOneOf, type FormSchemaDynamicValuesSpiConfig, type FormSchemaSpiConfig, type FormSpamSubmissionReportPermissions, type FormSpamSubmissionReportSpiConfig, type FormSpamSubmissionReportsNamespaceConfig, type FormSpamSubmissionSpiConfig, type FormSpiExtensionConfig, type FormSubmissionModerationSpiConfig, type FormSubmissionModerationSpiNamespaceConfig, type FormSubmissionSpiConfig, type FormSubmissionSpiExtensionConfig, type FormTemplate, type FormTemplateTemplateTypeOptionsOneOf, Format, type FormatWithLiterals, type FormsConfig, type FormsPermissions, type FormsSPIConfig, type FormsSchemaNamespaceConfig, type FormsSpamSubmissionsNamespaceConfig, type FormsSubmissionsExtensionNamespaceConfig, type FormsSubmissionsNamespaceConfig, type ForwardAction, type ForwardActionActionOneOf, type FreeOptionConfiguration, type FreePricingTypeConfiguration, type FreeTrialConfiguration, type FunctionAssistantToolProviderConfig, type FunctionDefinition, type FunctionEcomDiscountTriggerEligibilityProviderConfig, type FunctionParameter, type FunctionParameterArrayItems, type FunctionParameterArrayItemsArrayDataOneOf, type FunctionParameterItems, type FunctionParameterSelectedDataTypeOneOf, type FunctionRecipe, type FunctionResources, type FunctionReturnType, type FunctionReturnTypeSelectedDataTypeOneOf, type FunctionsShopPriceSpiConfig, type GIF, type GIFData, GIFType, type GIFTypeWithLiterals, type GalleryData, type GalleryOptions, type GalleryOptionsLayout, type GalleryOptionsThumbnails, type Gap, type GbpFeatureConfig, type GenericHookConfig, type GenericHooksConfig, type GenericOptions, type GetComponentsCatalogResponse, type GiftCardProviderConfig, type Gradient, GradientType, type GradientTypeWithLiterals, type GridAppFilesTransformerConfig, type Group, GroupType, type GroupTypeWithLiterals, type GroupedContent, type HTMLData, type HTMLDataDataOneOf, HTMLDataSource, type HTMLDataSourceWithLiterals, HTTPMethod, type HTTPMethodWithLiterals, type Header, type HeaderConfig, type HeaderConfigHeaderConfigOneOf, type HeaderConfigOneOf, type HeaderWidgetConfig, type HeadingData, type HeadlessOAuth, type Height, HeightMode, type HeightModeWithLiterals, type HelpArticle, type HelpArticleArticleTypeOneOf, type HelpResources, type HiddenOptions, HookType, type HookTypeWithLiterals, Horizontal, HorizontalDocking, type HorizontalDockingWithLiterals, type HorizontalWithLiterals, HostContainerId, type HostContainerIdWithLiterals, type HostedComponent, type HostedPage, type IDPConnectionConfig, type Icon, type IconDataOneOf, IconType, type IconTypeWithLiterals, type Illustration, type IllustrationIllustrationOneOf, type Image, ImageCategoryTypes, type ImageCategoryTypesWithLiterals, type ImageConfig, type ImageData, type ImageDataStyles, type ImageDataStylesBorder, ImageFit, type ImageFitWithLiterals, type ImageOverrides, ImagePosition, ImagePositionPosition, type ImagePositionPositionWithLiterals, type ImagePositionWithLiterals, ImageScalingScaling, type ImageScalingScalingWithLiterals, ImageShape, type ImageShapeWithLiterals, type ImageStyles, ImageStylesPosition, type ImageStylesPositionWithLiterals, ImageType, type ImageTypeWithLiterals, type Implementation, type ImplementedMethods, ImportanceLevel, type ImportanceLevelWithLiterals, type InPersonOptions, Indentation, type IndentationWithLiterals, type Index, type IndexField, InitDirection, type InitDirectionWithLiterals, InitialExpandedItems, type InitialExpandedItemsWithLiterals, type InitialPosition, type InitialSizeSetting, type InitialSizeSettingSelectedSizingTypeOneOf, type Initiator, type InitiatorDataOneOf, InitiatorType, type InitiatorTypeWithLiterals, type InlineElement, type InlineFilterItem, type InlineSortItem, type Input, type InputConfiguration, type InputField, InputFieldInputType, type InputFieldInputTypeOptionsOneOf, type InputFieldInputTypeWithLiterals, type InputField_Number, type InputField_NumberComponentTypeOptionsOneOf, InputType, type InputTypeWithLiterals, type InputWithPlaceholder, InstallPage, type InstallPageWithLiterals, type InstallationInfo, type InstallationInfoTargetContainerOneOf, type InstallationSettings, type InstallationSettingsOptionsOneOf, type IntListOptions, type IntegerType, type IntegrationOptions, type IntegrationOptionsOptionsOneOf, IntegrationType, type IntegrationTypeWithLiterals, Intent, type IntentWithLiterals, type Interactions, type InterfaceConfiguration, type InterfaceConfigurationOfTypeOneOf, InterfaceConfigurationType, type InterfaceConfigurationTypeWithLiterals, type InternalComponentMetadata, type InventorySpiConfig, type InvoicesActionsComponentData, type InvoicesConfig, type IsStretched, type Item, type ItemDataOneOf, type ItemImage, type ItemLayout, type ItemLayoutItemOneOf, type ItemPath, type ItemSelection, type ItemSelectionOptions, type ItemStyle, type ItemThumbnail, type ItemThumbnailOptionsOneOf, ItemType, type ItemTypeWithLiterals, type ItemVideo, type ItemsGroup, type ItemsSelectionProviderConfig, type KeepAliveConfig, type Keywords, type LanguageTagListOptions, Layout, type LayoutCellData, type LayoutData, type LayoutDataBackground, type LayoutDataBackgroundImage, LayoutDataBackgroundType, type LayoutDataBackgroundTypeWithLiterals, LayoutDataImagePosition, type LayoutDataImagePositionWithLiterals, LayoutMode, type LayoutModeWithLiterals, LayoutType, type LayoutTypeWithLiterals, type LayoutWithLiterals, type LearnMore, type LeftPanel, type LeftPanelWidgetConfig, type LegacyBackOfficeExtensionWidget, type LegacyBackOfficeExtensionWidgetAssetOneOf, type LegacyBackOfficeMenuItem, type LegacyBackOfficeMenuItemAction, type LegendsSpiConfig, Level, type LevelWithLiterals, type LightboxCloseOptions, type LightboxContent, type LightboxEditorSettings, type LightboxOptions, type LimiterField, type LineItemsEnricherConfig, LineStyle, type LineStyleWithLiterals, type Link, type LinkData, type LinkPreviewData, type LinkPreviewDataStyles, type LinkSuffix, LinkTarget, type LinkTargetWithLiterals, LinkType, type LinkTypeWithLiterals, ListEventFromCalendars, type ListEventFromCalendarsWithLiterals, type ListItem, ListStyle, type ListStyleWithLiterals, type ListValue, type LiveSiteActionDeeplink, type LocalDeliveryComponentData, type Location, type LocationLocationInfoOneOf, LockableOperation, type LockableOperationWithLiterals, type Logo, type Logos, type Main, type MainPresets, type MainPropsData, type ManagedMenuEntities, MandatoryField, type MandatoryFieldWithLiterals, type MapData, type MapSettings, MapType, type MapTypeWithLiterals, type Margin, type Margins, type MarketplaceProviderConfig, type MarketplaceSPIConfig, type MaskImage, Maturity, type MaturityWithLiterals, MeasurementSystem, type MeasurementSystemWithLiterals, type Media, type MediaCapabilities, type MediaItem, type MediaItemMediaOneOf, MediaMimeType, type MediaMimeTypeWithLiterals, type MediaSettings, type MembershipsSPIConfig, type MentionData, type MenuAction, type MenuActionActionOneOf, type MenuDropdown, type MenuLink, type MenuSlot, type MessageContainingTranslatables, type Metadata, Method, type MethodWithLiterals, type MinMaxRange, MobileApplication, type MobileApplicationWithLiterals, type MobileFeedChannel, type MobileFeedContentKeys, type MobilePushChannel, type MobilePushChannelConfig, type MobilePushContentKeys, type ModalParams, type Monitoring, type MonitoringOptionsOneOf, MonitoringType, type MonitoringTypeWithLiterals, MpaNavigation, type MpaNavigationWithLiterals, type MultiReferenceOptions, type MultiServiceBookingPolicyProviderConfig, type MultilineAddress, type MultilineAddressValidation, type MultilingualTranslationSchema, type MultipleDashboardsComponentData, type NPMPackage, type NPMPackageEntry, type Namespace, type NamespaceConfig, type NamespaceConfigV2, NativeStateType, type NativeStateTypeWithLiterals, type NavigateToPageAction, NavigationType, type NavigationTypeWithLiterals, type NestedWidgets, type Node, type NodeDataOneOf, type NodeStyle, NodeType, type NodeTypeWithLiterals, type NotificationChannels, type NotificationContent, type NotificationPreferencesFilterConfig, type NotificationTopic, NotificationTopicState, type NotificationTopicStateWithLiterals, NotificationTopicType, type NotificationTopicTypeWithLiterals, type Npm, NullValue, type NullValueWithLiterals, NumberComponentType, type NumberComponentTypeWithLiterals, type NumberInput, NumberOfColumns, type NumberOfColumnsWithLiterals, type NumberType, OAuthAppType, type OAuthAppTypeWithLiterals, OAuthTechnologies, type OAuthTechnologiesWithLiterals, type ObjectField, type ObjectFieldTypeOptionsOneOf, type ObjectOptions, type ObjectType, type Oembed, type Offset, type OffsetValueOneOf, type OneTimeOptionConfiguration, type OneTimePricingTypeConfiguration, type OpenApiOptions, type OpenComponent, type OpenModalAction, type OperationExecutorConfig, Operator, type OperatorConfiguration, OperatorEnumOperator, type OperatorEnumOperatorWithLiterals, type OperatorWithLiterals, type Option, type OptionDesign, type OptionLayout, type OrCondition, Order, type OrderValue, type OrderWithLiterals, type OrderedListData, Orientation, type OrientationWithLiterals, Origin, type OriginInfo, type OriginWithLiterals, type OutOfIframeData, type Output, OverrideEntityType, type OverrideEntityTypeWithLiterals, type OverrideTemplateFields, type PDFSettings, PDFSettingsViewMode, type PDFSettingsViewModeWithLiterals, type PackageDimension, type PackageType, type Padding, type Page, type PageAnchor, type PageComponentData, type PageContent, type PageDashboardApplicationComponent, type PageEditorSettings, type PageInstallation, type PageInstallationSettings, type PageNavigationOptions, type PageOptions, type PageOutOfIframeComponentData, type PageReplace, type PageReplaceOptions, type PageReplaceOptionsOptionsOneOf, type PageWidgetAsContent, type PagesConfig, PaginationMode, type PaginationModeWithLiterals, type Panel, type PanelAction, type PanelActionSelectedPanelTypeOneOf, PanelContentType, type PanelContentTypeWithLiterals, PanelMode, type PanelModeWithLiterals, type PanelSelectedContentTypeOneOf, type PanelSize, PanelType, type PanelTypeWithLiterals, type PanoramaOptions, type ParagraphData, type Param, type Parameter, ParameterType, type ParameterTypeWithLiterals, type ParameterValueDefinitionDetailsOneOf, PartialPaymentRestriction, type PartialPaymentRestrictionWithLiterals, ParticipantType, type ParticipantTypeWithLiterals, type Password, type PatternsWizard, type Payment, PaymentComponentType, type PaymentComponentTypeOptionsOneOf, type PaymentComponentTypeWithLiterals, type PaymentDateModification, type PaymentInput, type PaymentMethod, type PaymentMethodMethodOneOf, type PaymentServiceProviderConfig, type PaymentServiceProviderCredentialsField, type PaymentServiceProviderCredentialsFieldFieldOneOf, type PaymentSettingsSPIConfig, type PaymentType, type PaymentsGatewayComponentData, type PayoutsProviderConfig, type PerkValues, type PerksConfiguration, type PermissionOverrides, type Permissions, type PhoneConstraints, type PhoneInfo, PhoneInfoTag, type PhoneInfoTagWithLiterals, type PhoneInput, type PhoneOptions, type PingNotificationComponentData, type PingSettingsGroupComponentData, PingSettingsGroupComponentDataState, type PingSettingsGroupComponentDataStateWithLiterals, type PlaceHolder, Placement, type PlacementWithLiterals, type PlanDuration, type PlanFormBenefitsSection, type PlanFormCustomPricingRulesSection, type PlanFormCustomSection, PlanFormDefaultSection, type PlanFormDefaultSectionWithLiterals, type PlanFormDurationSection, type PlanFormInfoSection, type PlanFormInitialValue, type PlanFormPagePermissionsSection, type PlanFormPlanSettingsSection, type PlanFormPreviewSection, type PlanFormPricingAndDurationSection, type PlanFormPricingAndDurationSectionDurationInputConfiguration, type PlanFormPricingAndDurationSectionInputConfiguration, PlanFormPricingOption, type PlanFormPricingOptionWithLiterals, type PlanFormPricingSection, type PlanFormPricingSectionInputConfiguration, type PlanFormPricingSectionSetupFeeConfiguration, PlanFormPricingType, type PlanFormPricingTypeWithLiterals, type PlanFormSection, type PlanFormSectionSectionOneOf, type PlanFormStartDateRulesSection, type PlanFormTypeMetadata, PlanPeriodUnit, type PlanPeriodUnitWithLiterals, type PlanPriceData, type PlanPricing, type PlanPricingPricingModelOneOf, type PlanSettingsRowConfiguration, type PlatformHeaderConfig, type PlatfromComponentData, type PlaybackOptions, type PluginConfig, type PluginContainerData, PluginContainerDataAlignment, type PluginContainerDataAlignmentWithLiterals, type PluginContainerDataHeight, type PluginContainerDataWidth, type PluginContainerDataWidthDataOneOf, type PluginInstallationSettings, PluginInterface, type PluginInterfaceWithLiterals, type PluginMarketData, type PluginPlacement, type PointsAdjustmentProviderConfig, type PolicyConfig, type PolicyPermissionOverrides, type Poll, type PollData, type PollDataLayout, type PollDesign, type PollDesignBackground, type PollDesignBackgroundBackgroundOneOf, PollDesignBackgroundType, type PollDesignBackgroundTypeWithLiterals, type PollLayout, PollLayoutDirection, type PollLayoutDirectionWithLiterals, PollLayoutType, type PollLayoutTypeWithLiterals, type PollOption, type PollSettings, type PosProviderSettingsServicePluginConfig, type Position, type PostLoginConfig, type PreRegisterConfig, type PredefinedExpectedInput, type PredefinedExpectedInputConfiguration, type PredefinedExpectedInputConfigurationTypeOneOf, type PredefinedLabel, type PredefinedValues, type PremiumActionConfig, type Preset, type PresetEditorPresence, type PresetElementDefaults, type PresetInfo, type PresetInnerElementDefaults, type PresetItem, type PresetSize, type PresetStyleItemOverrides, type PresetStyleOverrides, type PreviewCardPlaceholders, type PreviewConfiguration, type PreviewFields, type PriceSPIConfig, PriceType, type PriceTypeWithLiterals, type PricingData, type PricingPlansFormConfiguration, type PricingRecurring, type Primitive, PrimitiveType, type PrimitiveTypeWithLiterals, type Product, type ProductCatalogProviderConfig, type ProductCheckboxGroup, type ProductCheckboxGroupOption, type ProductPriceOptionsOneOf, type ProductRestrictionsConfig, ProductType, type ProductTypeWithLiterals, type ProductsPathsConfig, type Project, type PropertiesType, PropertiesTypeEnum, type PropertiesTypeEnumWithLiterals, type PropertiesTypePropertiesTypeOptionsOneOf, type ProposalEditorProviderConfig, type Provider, type ProviderAccountServicePluginConfig, type ProviderConfig, type ProviderConfigMessage, type ProviderFilterOptions, type ProviderIdentifier, type ProviderSuppressionServicePluginConfig, type PurchaseValidationsConfig, type QuantityLimit, type RadioButtonLabeled, type RadioGroup, type RadioGroupOption, type RangeConstraints, type RateLimit, type RatingInput, type ReactElementContainer, type ReactElementContainerSelectedContainerTypeOneOf, type RecipientFilter, type RecipientFilterDataOneOf, RecipientFilterType, type RecipientFilterTypeWithLiterals, RecipientType, type RecipientTypeWithLiterals, type RecommendationsProviderConfig, type RecurringOptionConfiguration, type RecurringPricingTypeConfiguration, type RecurringPricingTypeConfigurationFreeTrialConfiguration, type RedirectOptions, type RefElement, type RefInnerElementDefaults, type ReferenceOptions, Region, RegionScopeScope, type RegionScopeScopeWithLiterals, RegionType, type RegionTypeWithLiterals, type RegionWithLiterals, type Rel, type RenderOverrides, type RepeatedFieldOverrideConfig, type ReplaceableOptions, ReplacementType, type ReplacementTypeWithLiterals, type ReplacingOptions, RequiredIndicator, RequiredIndicatorPlacement, type RequiredIndicatorPlacementWithLiterals, type RequiredIndicatorProperties, type RequiredIndicatorWithLiterals, type RequiredOptions, type ResetButton, ResizeDirection, type ResizeDirectionWithLiterals, Resizing, type ResizingWithLiterals, type Resource, type Resources, ResponsivenessBehaviour, type ResponsivenessBehaviourWithLiterals, type ResponsysEmail, type RestaurantsPOSComponentData, RestrictedOperation, type RestrictedOperationWithLiterals, type Restriction, RestrictionLevel, type RestrictionLevelWithLiterals, type Restrictions, type RestrictionsConfig, type ReviewsEntityCatalogProviderConfig, type ReviewsProductCatalogProviderConfig, type RewardProviderConfig, type RibbonStyles, type RichContent, type RichContentOptions, type RichText, RichTextAbilities, type RichTextAbilitiesWithLiterals, type RichTextWithIllustrationVertical, type RouterPage, type Rule, type SDKExports, type SDKExportsNpm, Scaling, type ScalingWithLiterals, type Scheduling, SchedulingComponentType, type SchedulingComponentTypeOptionsOneOf, type SchedulingComponentTypeWithLiterals, type Schema, type SchemaConfig, type SchemaField, SchemaFieldExposure, type SchemaFieldExposureWithLiterals, SchemaFieldFieldType, type SchemaFieldFieldTypeWithLiterals, type SchemaFieldType, type SchemaFieldTypeFieldTypeOneOf, type SchemaGroup, type SchemaGroupElement, type SchemaKey, SchemaScope, type SchemaScopeWithLiterals, Scope, ScopeType, type ScopeTypeWithLiterals, type ScopeWithLiterals, ScriptType, type ScriptTypeWithLiterals, type SdkDefinition, type SearchConfig, type SearchField, type SearchParams, type SecondLevelCategory, type Section, type SentryOptions, type SeoKeywordsSuggestionsSPIConfig, type ServiceAction, type ServiceAvailabilityPolicyProviderConfig, type ServicePermissionOverrides, type ServiceTagsConfig, type ServiceTrigger, type ServicesDropdown, type ServicesDropdownOption, type Settings, type SettingsPanel, type SettingsPermissions, type SettingsUrl, type SetupFeeConfiguration, type ShapeData, type ShapeDataStyles, type SharedPlatformMobilePushConfig, type ShippingLabelCarrierSpiConfig, type ShippingProviderConfig, type ShippingRatesConfig, type ShorthandGroupBackground, type ShoutoutEmail, type Sidebar, type SidebarChildItem, type SidebarChildItemItemOneOf, type SidebarConfig, type SidebarConfigOneOf, SidebarDataType, type SidebarDataTypeWithLiterals, SidebarEntityType, type SidebarEntityTypeWithLiterals, type SidebarRootItem, type SidebarRootItemItemOneOf, type SidebarSecondLevelChildItem, type SidebarSecondLevelChildItemItemOneOf, type SidebarWidget, type SidebarWidgetConfig, type SidebarWidgetConfigOneOf, type Signature, type Simple, type SimpleContainer, type SimpleField, SimpleType, type SimpleTypeWithLiterals, type SingleContent, type SingleKeyCondition, type SiteConfig, type SiteContributorsData, type SiteMapProviderConfig, type SiteMemberData, SiteMembersSsrCaching, type SiteMembersSsrCachingWithLiterals, type SiteMigrationSpiConfig, type SiteWidgetSlot, type Size, SizingType, type SizingTypeWithLiterals, type SliderLabeled, type Slot, type SlotData, type SlotDataSlotTypeOneOf, SlotDataType, type SlotDataTypeWithLiterals, type SlotParams, type SmsActionMessage, type SmsChannel, type SmsContentKeys, type SmsMessageConfig, type SmsSmsMessageConfig, type SnippetSolutionData, type SocialMarketingDesignSPIConfig, type SocialMarketingDesignsProviderConfig, type SortDefinition, type Source, type SourceOptionsOneOf, SourceType, type SourceTypeWithLiterals, type SpamSubmissionPermissions, type Spi, type SpiBaseUri, type Spoiler, type SpoilerData, type StaffSortingProviderConfig, type StartDateLimitsSPIConfig, type StartDateRulesSPIConfig, type State, StaticContainer, type StaticContainerWithLiterals, type StaticContent, type StaticFileComponentData, type StaticFilterOption, type StaticFilterOptions, Status, type StatusWithLiterals, type Step, type Stop, StorageDomain, type StorageDomainWithLiterals, StorageType, type StorageTypeWithLiterals, StringComponentType, type StringComponentTypeWithLiterals, type StringListOptions, type StringOption, type StringType, type StringTypeFormatOptionsOneOf, type StudioComponentData, type StudioWidgetComponentData, type StudioWidgetVariation, type StyleAction, type StyleItem, type StyleItemOverrides, type StyleItemSelectedCssPropertyTypeOneOf, type StyleItemSelectedCssVariableTypeOneOf, type StyleItemSelectedItemTypeOneOf, StyleType, type StyleTypeWithLiterals, type Styles, type StylesBackground, type StylesBorder, StylesPosition, type StylesPositionWithLiterals, type SubPage, type SubmissionPermissions, type SubmitSettings, type SubmitSettingsSubmitSuccessActionOptionsOneOf, SubmitSuccessAction, type SubmitSuccessActionWithLiterals, type SubscriptionInfo, SyncToCalendar, type SyncToCalendarWithLiterals, type SyncedProjectsProviderConfig, type Tab, type TableCellData, type TableData, Tag, type TagOverrides, type TagOverridesEntry, type TagWithLiterals, type Tags, type TagsOption, Target, type TargetElement, type TargetWithLiterals, type TaskScope, type TaxCalculationConfig, type TaxCalculatorSpiConfig, type TaxCountriesConfig, type TaxExemptGroup, type TaxExemptGroupsProviderConfig, type TaxGroupsProviderConfig, type TaxIdValidatorConfig, type TaxTypesConfig, type TaxationCategoryProvider, type TemplateContainer, TemplateDefaultColor, type TemplateDefaultColorWithLiterals, TemplateType, type TemplateTypeWithLiterals, type TermsAndConditionsConfiguration, type TermsModalConfiguration, TestEnum, type TestEnumWithLiterals, type Text, TextAlignment, type TextAlignmentWithLiterals, type TextData, type TextDecoration, type TextEnum, type TextGroup, type TextInput, TextInputDisplayType, type TextInputDisplayTypeWithLiterals, type TextInputLabeled, type TextInputSettings, type TextNodeStyle, type TextStyle, type TextStyleDefaultColorOneOf, type TextToSpeechActionMessage, type TextWithSuffix, type TextWithSuffixSuffixOneOf, type TextWithTooltip, type ThankYouMessageOptions, type ThankYouPageConfiguration, type ThankYouPageInputConfig, type ThankYouPageModalConfiguration, type ThankYouPagePreviewConfiguration, type ThankYouPageRedirectsConfiguration, type ThumbnailData, ThumbnailType, type ThumbnailTypeWithLiterals, type Thumbnails, ThumbnailsAlignment, type ThumbnailsAlignmentWithLiterals, ThumbnailsSize, type ThumbnailsSizeWithLiterals, type TicketReservationsSpiConfig, type TimeConstraintConfiguration, type TimeConstraintConfigurationValueConstraintsOneOf, TimeConstraintType, type TimeConstraintTypeWithLiterals, type TimeInput, type TocData, type ToggleLabeled, type ToolPanelConfig, type TooltipSuffix, type TopologyComponentData, type TranslatedMessageWithIdRepeated, type TranslatedMessageWithUniqueFieldRepeated, type TranslationResources, Trigger, type TriggerFieldOverride, type TriggerFilter, type TriggerOverride, type TriggerProviderSPIConfig, type TriggerWithLiterals, Type, type TypeWithLiterals, type TypedDynamicParam, TypedDynamicParamType, type TypedDynamicParamTypeWithLiterals, type UnifiedLightbox, type UnifiedPage, type UnifiedPageEditorSettings, UnitType, type UnitTypeWithLiterals, type Until, type UpdateComponentCatalogRequest, UpdateMode, type UpdateModeWithLiterals, UploadFileFormat, UploadFileFormatEnumUploadFileFormat, type UploadFileFormatEnumUploadFileFormatWithLiterals, type UploadFileFormatWithLiterals, type UpstreamWixCommonImage, type Url, type UrlData, type UrlMapperProviderConfig, type UrlParam, type UserNotification, type UserNotificationData, type UserNotificationDataContext, type UserNotificationDataDeeplink, type UserNotificationDataDeeplinkOfOneOf, type UserNotificationDataInitiator, type UserNotificationDataInitiatorDataOneOf, type UserNotificationDataRecipientFilter, type UserNotificationDataRecipientFilterDataOneOf, UserNotificationDataRecipientFilterType, type UserNotificationDataRecipientFilterTypeWithLiterals, UserNotificationDataType, type UserNotificationDataTypeWithLiterals, type V1Image, type V1ImplementedMethods, type V1Link, type V1LinkDataOneOf, type V1Metadata, type V1Region, type V1SchemaField, V1Scope, type V1ScopeWithLiterals, type V1TextStyle, type V1ValidationTarget, type V2CommunicationChannelConfiguration, type V2Condition, type V2Field, type V2FieldFieldTypeOptionsOneOf, type V2ImplementedMethods, type V2Rule, type V2TriggerOverride, type ValidationMessages, type ValidationTarget, ValidationTargetMethod, type ValidationTargetMethodWithLiterals, type ValidationsSPIConfig, ValueConstraintType, type ValueConstraintTypeWithLiterals, type VectorArt, VectorArtCategoryTypes, type VectorArtCategoryTypesWithLiterals, type VectorArtOverrides, type VeloActionConfig, type VeloCustomCss, type VeloPublishPipelineTaskProviderConfig, type VelocityEmail, Vertical, VerticalAlignment, VerticalAlignmentAlignment, type VerticalAlignmentAlignmentWithLiterals, type VerticalAlignmentWithLiterals, VerticalDocking, type VerticalDockingWithLiterals, type VerticalWithLiterals, VibeActionType, type VibeActionTypeWithLiterals, type VibeCustomPanelAction, type VibeDashboardAction, type Video, VideoCategoryTypes, type VideoCategoryTypesWithLiterals, type VideoConferenceOptions, type VideoData, type VideoOverrides, ViewMode, type ViewModeWithLiterals, ViewRole, type ViewRoleWithLiterals, type ViewerRouterSPIConfig, type ViewerService, type ViewerServiceAssets, type ViewerServiceModuleConfiguration, type VisibleState, type VoiceChannel, type VoiceContentKeys, VoteRole, type VoteRoleWithLiterals, type WebComponentData, WebComponentDataElementType, type WebComponentDataElementTypeWithLiterals, type WebFeedChannel, type WebFeedContentKeys, type WebhookComponentData, type WidgetAsContent, type WidgetBehavior, type WidgetComponent, type WidgetComponentData, type WidgetComponentOptions, type WidgetData, type WidgetDetails, type WidgetDisplay, WidgetHorizontal, type WidgetHorizontalWithLiterals, type WidgetInstallation, type WidgetInstallationSettings, type WidgetInstallationSettingsTargetContainerOneOf, type WidgetOutOfIframeComponentData, type WidgetPluginComponentData, type WidgetSize, type WidgetSizeHeight, type WidgetSizeWidth, type WidgetSlot, WidgetVertical, type WidgetVerticalWithLiterals, WidgetWidthType, type WidgetWidthTypeWithLiterals, Width, WidthType, type WidthTypeWithLiterals, type WidthWithLiterals, type WixAiGatewaySpiConfig, type WixApiOptions, WixCodePublishTaskName, type WixCodePublishTaskNameWithLiterals, type WixCommonImage, type WixDependency, type WixFile, WixFileComponentType, type WixFileComponentTypeOptionsOneOf, type WixFileComponentTypeWithLiterals, type WixOfferingComponentData, type WixOfferingComponentDataOfferingOneOf, type WixPagesDomainMapping, type WixUserData, type WixUsersData, type WixVibeCodingInstructions, type WixVibeComponent, type WixelSPIConfig, type WorkerComponentData, type WritingMode, WritingModeValue, type WritingModeValueWithLiterals, type _Array, type _ArrayComponentTypeOptionsOneOf, type _Boolean, type _BooleanComponentTypeOptionsOneOf, type _Date, type _Function, type _Number, type _Object, type _String, type _StringComponentTypeOptionsOneOf, agentMakerApprovalProvider, aiAssistant, aiAssistantAction, alertEnricher, analyticsProductCatalog, appConfig, appRouter, applicationAutomation, applicationProfile, audienceProvider, automationTemplate, automationTrigger, automationsActionProvider, automationsTriggerProvider, automationsVeloActionProvider, availabilityTimeSlotsConfigurationProvider, backOfficeCustomization, backOfficeExtension, backOfficeExtensionContainer, backOfficeExtensionMenuItem, backOfficeExtensionWidget, backOfficeExternalUrl, backOfficeModal, backOfficePage, backOfficeRestrictedCustomization, backOfficeSidebarCategory, backOfficeWidget, backendWorker, bassValidateCancelAction, benefitProgramsPolicyProvider, billingOperation, billingSettings, billingTaxIdValidator, blogPaywallProvider, bookingActionUrlsProvider, bookingAutomationsConfiguration, bookingPolicyProvider, bookingsExternalCalendarProvider, bookingsPlatformConfiguration, bookingsPricingProvider, bookingsResourceTypesProvider, bookingsValidationProvider, broadcastList, browserStorage, calendarConferencingProvider, calendarEventTypeProvider, calendarEventValidationProvider, clientSideService, codePackage, commentsContextProvider, commentsFilterProvider, commentsModerationProvider, communicationChannel, communicationChannelProvider, componentEnricherProvider, componentReferenceDataProvider, componentsTranslationsAdditionalFieldsProvider, componentsValidatorProvider, contactLabels, contactNotification, contactsSegmentsV2FilterProvider, crossSell, customElementWidget, customTableReservationsProvider, dashboard, dashboardApplication, dashboardPlatform, dataComponent, dataExtensions, dcConfig, dealerAdaptiveComponentProvider, dealerExternalFilterProvider, deploymentPipelineProvider, devCenterTestingComponent, ecomAdditionalFees, ecomCatalog, ecomCheckoutContent, ecomCustomScope, ecomDefaultTaxationCategory, ecomDiscounts, ecomDiscountsTrigger, ecomDropshippingProvider, ecomForms, ecomInventory, ecomLineItemsEnricher, ecomMemberships, ecomPaymentSettings, ecomRecommendationsProvider, ecomShippingRates, ecomTaxCalculatorSpi, ecomValidations, editorAddon, editorAppPreviewsPoc, editorContextProvider, editorFunctionLibrary, editorReactComponent, embeddedScript, eventTimeSlotsConfigurationProvider, eventsEventBadges, eventsTicketReservations, extension, externalDatabaseProvider, fictionalShippingProvider, formSchemaDynamicValues, formSubmissionModeration, formTemplate, formsExtensionProvider, formsSchemaProvider, formsSpamSubmissionReportsProvider, formsSpamSubmissionsProvider, formsSubmissionsExtensionProvider, formsSubmissionsProvider, functionEcomDiscountTriggerEligibilityProvider, functionExtension, functionRecipe, functionsAssistantTools, functionsShopPriceProvider, genericHooks, giftCardsProvider, googleBusinessProfileFeatureProvider, gridAppFilesTransformer, headlessOauth, identityAuthenticator, identityFactor, identityIdpConnector, identityPostLogin, identityPreRegistration, invoicesActions, invoicesProvider, itemsSelectionProvider, legendsPersonaConfiguration, localDelivery, loyaltyCustomRewards, loyaltyCustomRewardsV2, loyaltyPointsAdjustment, monitoring, multiServiceBookingPolicyProvider, multilingualContentProvider, multilingualTranslationSchema, multilingualTranslationSchemaGroup, multipleDashboards, notificationContent, notificationPreferencesFilterProvider, notificationTopic, page, pageOutOfIframe, panel, papiProvider, partnersPayouts, patternsWizard, paymentProvider, paymentsDisputeServicePlugin, paymentsGateway, pingSettingsGroup, pingUouNotification, pingUserNotification, platform, portfolioSyncedProjectsProvider, premiumAction, premiumCustomCharges, premiumProductsPaths, premiumPurchaseValidations, pricingPlanStartDateLimits, pricingPlanStartDateRules, pricingPlansFees, pricingPlansFormConfiguration, pricingPlansPrice, proposalEditorProvider, providerSuppressionServicePlugin, reserved, restaurantsPos, restaurantsPosProviderSettingsServicePlugin, sdkDefinition, sdkExports, seoKeywordsSuggestions, serviceTagsConfiguration, shippingLabelCarrier, shubMarketplaceProvider, siteMapInfoProvider, siteMigration, siteWidgetSlot, smsActionMessage, snippetSolution, socialMarketingDesign, socialMarketingDesignsProvider, staffSortingProvider, staticFile, storesProductRestrictions, studio, studioWidget, suppliersHubMarketplace, taxCalculationProvider, taxExemptGroupsProvider, taxGroupsProvider, textToSpeechActionMessage, topology, unifiedLightbox, unifiedPage, urlMapperProvider, userNotification, veloCustomCss, veloPublishPipelineTaskProvider, viewerDynamicSiteStructureProvider, viewerService, web, webhook, widget, widgetOutOfIframe, widgetPlugin, wixAiGatewayCallback, wixHostingAppDeploymentProvider, wixHostingAppEnvironmentProvider, wixOffering, wixPaymentsProviderAccountServicePlugin, wixReviewsEntityCatalog, wixReviewsProductCatalog, wixVibeCodingInstructions, wixVibeComponent, wixel, wixelBinding, wixelViewerRouterProvider, worker };