@wix/app-extensions 1.0.23 → 1.0.25
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/cjs/index.js +23 -0
- package/build/cjs/index.js.map +1 -1
- package/build/es/index.mjs +22 -0
- package/build/es/index.mjs.map +1 -1
- package/build/trusted/cjs/index.d.ts +317 -239
- package/build/trusted/cjs/index.js +23 -0
- package/build/trusted/cjs/index.js.map +1 -1
- package/build/trusted/es/index.d.mts +317 -239
- package/build/trusted/es/index.mjs +22 -0
- package/build/trusted/es/index.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -17767,6 +17767,11 @@ interface Resources {
|
|
|
17767
17767
|
* @format WEB_URL
|
|
17768
17768
|
*/
|
|
17769
17769
|
viewerRuntimeCss?: string | null;
|
|
17770
|
+
/**
|
|
17771
|
+
* The exported hooks for usage with the contexts defined inside the editorElement. key must ,match key in the contexts map of the editorElement, and the value is the name of the hook that will be used to consume this context in the component code. Example: { "MyContext": "useMyContext" }
|
|
17772
|
+
* @maxLength 20
|
|
17773
|
+
*/
|
|
17774
|
+
contextHooks?: Record<string, string>;
|
|
17770
17775
|
}
|
|
17771
17776
|
/** @internal */
|
|
17772
17777
|
interface ClientResources {
|
|
@@ -17855,6 +17860,8 @@ interface EditorElement {
|
|
|
17855
17860
|
displayName?: string;
|
|
17856
17861
|
/** data-api of this element, a map of data-items where the key is the data-item name and the value is the data-item definition. These will be manifested as `props` for the component */
|
|
17857
17862
|
data?: Record<string, DataItem>;
|
|
17863
|
+
/** A map of contexts this component exposes inside containers it supports */
|
|
17864
|
+
contexts?: Record<string, ApiContext>;
|
|
17858
17865
|
/** elements-map of this element, a map of inner-elements where the key is the element name and the value is the element definition */
|
|
17859
17866
|
elements?: Record<string, ElementItem>;
|
|
17860
17867
|
/** Native actions specified for the component */
|
|
@@ -17913,6 +17920,10 @@ interface DataItem extends DataItemSelectedDataTypeOneOf {
|
|
|
17913
17920
|
data?: DataItems;
|
|
17914
17921
|
/** A definition of a custom function */
|
|
17915
17922
|
function?: EditorFunction;
|
|
17923
|
+
/** A definition of what fields are available for filtering */
|
|
17924
|
+
filter?: FilterDefinition;
|
|
17925
|
+
/** A definition of what fields are available for sorting */
|
|
17926
|
+
sort?: SortDefinition;
|
|
17916
17927
|
/** Defines the type of data we are configuring */
|
|
17917
17928
|
dataType?: DataTypeWithLiterals;
|
|
17918
17929
|
/**
|
|
@@ -17959,6 +17970,10 @@ interface DataItemSelectedDataTypeOneOf {
|
|
|
17959
17970
|
data?: DataItems;
|
|
17960
17971
|
/** A definition of a custom function */
|
|
17961
17972
|
function?: EditorFunction;
|
|
17973
|
+
/** A definition of what fields are available for filtering */
|
|
17974
|
+
filter?: FilterDefinition;
|
|
17975
|
+
/** A definition of what fields are available for sorting */
|
|
17976
|
+
sort?: SortDefinition;
|
|
17962
17977
|
}
|
|
17963
17978
|
/** @internal */
|
|
17964
17979
|
declare enum DataType {
|
|
@@ -18026,11 +18041,15 @@ declare enum DataType {
|
|
|
18026
18041
|
/** Deprecated: use function with keyboardEvent parameter. Standard [onKeyUp handler](https://developer.mozilla.org/en-US/docs/Web/API/Element/keyup_event) */
|
|
18027
18042
|
onKeyUp = "onKeyUp",
|
|
18028
18043
|
/** Deprecated: use function with submitEvent parameter. Standard [onSubmit handler](https://developer.mozilla.org/en-US/docs/Web/API/HTMLFormElement/submit_event) */
|
|
18029
|
-
onSubmit = "onSubmit"
|
|
18044
|
+
onSubmit = "onSubmit",
|
|
18045
|
+
/** A WQL-compliant filter definition for querying data */
|
|
18046
|
+
filter = "filter",
|
|
18047
|
+
/** A WQL-compliant sort definition for ordering data */
|
|
18048
|
+
sort = "sort"
|
|
18030
18049
|
}
|
|
18031
18050
|
/** @enumType */
|
|
18032
18051
|
/** @internal */
|
|
18033
|
-
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';
|
|
18052
|
+
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';
|
|
18034
18053
|
/** @internal */
|
|
18035
18054
|
interface Text {
|
|
18036
18055
|
/** Indicates maximum length allowed for the text */
|
|
@@ -18264,6 +18283,13 @@ interface ReactElementContainer extends ReactElementContainerSelectedContainerTy
|
|
|
18264
18283
|
selector?: string;
|
|
18265
18284
|
/** The type of Container to be rendered */
|
|
18266
18285
|
containerType?: ContainerTypeWithLiterals;
|
|
18286
|
+
/** Contexts available in this container */
|
|
18287
|
+
contexts?: ContextReferences;
|
|
18288
|
+
/**
|
|
18289
|
+
* An optional override of the display name of the container.
|
|
18290
|
+
* @maxLength 50
|
|
18291
|
+
*/
|
|
18292
|
+
displayName?: string | null;
|
|
18267
18293
|
}
|
|
18268
18294
|
/** @oneof */
|
|
18269
18295
|
/** @internal */
|
|
@@ -18304,6 +18330,9 @@ interface SimpleContainer {
|
|
|
18304
18330
|
/**
|
|
18305
18331
|
* An optional override of the display name of the container.
|
|
18306
18332
|
* @maxLength 50
|
|
18333
|
+
* @deprecated
|
|
18334
|
+
* @replacedBy container.display_name
|
|
18335
|
+
* @targetRemovalDate 2026-06-30
|
|
18307
18336
|
*/
|
|
18308
18337
|
displayName?: string | null;
|
|
18309
18338
|
}
|
|
@@ -18422,13 +18451,33 @@ interface TemplateContainer {
|
|
|
18422
18451
|
/** A path to a data item within the same element scope. */
|
|
18423
18452
|
/** @internal */
|
|
18424
18453
|
interface ItemPath {
|
|
18454
|
+
/**
|
|
18455
|
+
* Deprecated, use item_key instead
|
|
18456
|
+
* @minLength 1
|
|
18457
|
+
* @deprecated Deprecated, use item_key instead
|
|
18458
|
+
* @replacedBy item_key
|
|
18459
|
+
* @targetRemovalDate 2026-09-30
|
|
18460
|
+
*/
|
|
18461
|
+
dataItemKey?: string;
|
|
18425
18462
|
/**
|
|
18426
18463
|
* The key of the data item within the element's data scope.
|
|
18427
18464
|
* Example: "items" – top-level data item 'items'
|
|
18428
18465
|
* Example: "slides.title" – inner key 'title' of data item 'slides'
|
|
18429
|
-
* @minLength 1
|
|
18430
18466
|
*/
|
|
18431
|
-
|
|
18467
|
+
itemKey?: string;
|
|
18468
|
+
}
|
|
18469
|
+
/** @internal */
|
|
18470
|
+
interface ContextReferences {
|
|
18471
|
+
/**
|
|
18472
|
+
* Available contexts in this container that were defined in the editorElement.contexts
|
|
18473
|
+
* Example: itemsList
|
|
18474
|
+
*/
|
|
18475
|
+
local?: string[];
|
|
18476
|
+
/**
|
|
18477
|
+
* A list of contexts this component exposes because it uses other context providers inside it's code
|
|
18478
|
+
* Example: @wix/stores-products-list-context
|
|
18479
|
+
*/
|
|
18480
|
+
reference?: string[];
|
|
18432
18481
|
}
|
|
18433
18482
|
/** rich text data type allow manipulation of text with html & inline styles */
|
|
18434
18483
|
/** @internal */
|
|
@@ -18714,6 +18763,176 @@ interface FunctionReturnTypeSelectedDataTypeOneOf {
|
|
|
18714
18763
|
/** In case of a text enum */
|
|
18715
18764
|
textEnum?: TextEnum;
|
|
18716
18765
|
}
|
|
18766
|
+
/** Filter type - declares which items are filterable and which operators each item supports */
|
|
18767
|
+
/** @internal */
|
|
18768
|
+
interface FilterDefinition {
|
|
18769
|
+
/** Fully described inline filter items */
|
|
18770
|
+
inlineItems?: InlineFilterItem[];
|
|
18771
|
+
/** Filter items referencing existing data items */
|
|
18772
|
+
dataItems?: FilterItem[];
|
|
18773
|
+
/** Filter items referencing existing context items */
|
|
18774
|
+
contextItems?: FilterItem[];
|
|
18775
|
+
}
|
|
18776
|
+
/** An inline filter item definition */
|
|
18777
|
+
/** @internal */
|
|
18778
|
+
interface InlineFilterItem {
|
|
18779
|
+
/**
|
|
18780
|
+
* Name of the filtered field
|
|
18781
|
+
* @maxLength 200
|
|
18782
|
+
*/
|
|
18783
|
+
name?: string | null;
|
|
18784
|
+
/**
|
|
18785
|
+
* Human-readable name for this field
|
|
18786
|
+
* @maxLength 100
|
|
18787
|
+
*/
|
|
18788
|
+
displayName?: string | null;
|
|
18789
|
+
/** The data type of the field (subset of DataType suitable for filtering) */
|
|
18790
|
+
dataType?: DataTypeWithLiterals;
|
|
18791
|
+
/** Explicitly supported operators. If omitted, all applicable operators for the fieldType are assumed */
|
|
18792
|
+
operators?: FilterOperatorWithLiterals[];
|
|
18793
|
+
}
|
|
18794
|
+
/** @internal */
|
|
18795
|
+
declare enum FilterOperator {
|
|
18796
|
+
UNKNOWN_FilterOperator = "UNKNOWN_FilterOperator",
|
|
18797
|
+
/** $eq - Equal */
|
|
18798
|
+
eq = "eq",
|
|
18799
|
+
/** $ne - Not equal */
|
|
18800
|
+
ne = "ne",
|
|
18801
|
+
/** $lt - Less than */
|
|
18802
|
+
lt = "lt",
|
|
18803
|
+
/** $lte - Less than or equal */
|
|
18804
|
+
lte = "lte",
|
|
18805
|
+
/** $gt - Greater than */
|
|
18806
|
+
gt = "gt",
|
|
18807
|
+
/** $gte - Greater than or equal */
|
|
18808
|
+
gte = "gte",
|
|
18809
|
+
/** $in - Value is in list */
|
|
18810
|
+
'in' = "in",
|
|
18811
|
+
/** $nin - Value is not in list */
|
|
18812
|
+
nin = "nin",
|
|
18813
|
+
/** $exists - Field exists (is not null) */
|
|
18814
|
+
exists = "exists",
|
|
18815
|
+
/** $isEmpty - Field value is empty */
|
|
18816
|
+
isEmpty = "isEmpty",
|
|
18817
|
+
/** $startsWith - String starts with (text fields only) */
|
|
18818
|
+
startsWith = "startsWith",
|
|
18819
|
+
/** $hasAll - Array contains all values */
|
|
18820
|
+
hasAll = "hasAll",
|
|
18821
|
+
/** $hasSome - Array contains at least one value */
|
|
18822
|
+
hasSome = "hasSome",
|
|
18823
|
+
/** $matchItems - Filter on inner fields of array items (arrayItems only) */
|
|
18824
|
+
matchItems = "matchItems"
|
|
18825
|
+
}
|
|
18826
|
+
/** @enumType */
|
|
18827
|
+
/** @internal */
|
|
18828
|
+
type FilterOperatorWithLiterals = FilterOperator | 'UNKNOWN_FilterOperator' | 'eq' | 'ne' | 'lt' | 'lte' | 'gt' | 'gte' | 'in' | 'nin' | 'exists' | 'isEmpty' | 'startsWith' | 'hasAll' | 'hasSome' | 'matchItems';
|
|
18829
|
+
/** A filter item referencing an existing item (e.g. DataItem or ContextItem) */
|
|
18830
|
+
/** @internal */
|
|
18831
|
+
interface FilterItem {
|
|
18832
|
+
/** Path to the item */
|
|
18833
|
+
itemPath?: ItemPath;
|
|
18834
|
+
/** Explicitly supported operators. If omitted, all applicable operators for the resolved type are assumed */
|
|
18835
|
+
operators?: FilterOperatorWithLiterals[];
|
|
18836
|
+
}
|
|
18837
|
+
/** Sort type - declares which items are available for sorting */
|
|
18838
|
+
/** @internal */
|
|
18839
|
+
interface SortDefinition {
|
|
18840
|
+
/** Fully described inline sort items */
|
|
18841
|
+
inlineItems?: InlineSortItem[];
|
|
18842
|
+
/** Sort items referencing existing data items */
|
|
18843
|
+
dataItems?: ItemPath[];
|
|
18844
|
+
/** Sort items referencing existing context items */
|
|
18845
|
+
contextItems?: ItemPath[];
|
|
18846
|
+
}
|
|
18847
|
+
/** An inline sort item definition */
|
|
18848
|
+
/** @internal */
|
|
18849
|
+
interface InlineSortItem {
|
|
18850
|
+
/**
|
|
18851
|
+
* Name of the sorted field
|
|
18852
|
+
* @maxLength 200
|
|
18853
|
+
*/
|
|
18854
|
+
name?: string | null;
|
|
18855
|
+
/**
|
|
18856
|
+
* Human-readable name for this field
|
|
18857
|
+
* @maxLength 100
|
|
18858
|
+
*/
|
|
18859
|
+
displayName?: string | null;
|
|
18860
|
+
}
|
|
18861
|
+
/** @internal */
|
|
18862
|
+
interface ApiContext {
|
|
18863
|
+
/** A map of keys describing the context provided by this component */
|
|
18864
|
+
items?: Record<string, ContextItem>;
|
|
18865
|
+
}
|
|
18866
|
+
/** @internal */
|
|
18867
|
+
interface ContextItem extends ContextItemSelectedDataTypeOneOf {
|
|
18868
|
+
/** For arrays, the items are defined here */
|
|
18869
|
+
arrayItems?: ContextArrayItems;
|
|
18870
|
+
/** For data objects, the items are defined here */
|
|
18871
|
+
data?: ContextDataItems;
|
|
18872
|
+
/** For functions, the function definition is defined here */
|
|
18873
|
+
function?: EditorFunction;
|
|
18874
|
+
/** For text enums, the enum options are defined here */
|
|
18875
|
+
textEnum?: TextEnum;
|
|
18876
|
+
/** The type exposed by the context item (can't be "container") */
|
|
18877
|
+
dataType?: DataTypeWithLiterals;
|
|
18878
|
+
/**
|
|
18879
|
+
* The display name of the context item for user facing and AI usage
|
|
18880
|
+
* @maxLength 100
|
|
18881
|
+
*/
|
|
18882
|
+
displayName?: string | null;
|
|
18883
|
+
/** For sub types that implement parts of context, points to a context provider component type */
|
|
18884
|
+
contextImplementor?: ContextImplementor;
|
|
18885
|
+
/**
|
|
18886
|
+
* Will be set to true in case an item has been removed from the Context
|
|
18887
|
+
* @internal
|
|
18888
|
+
*/
|
|
18889
|
+
deprecated?: boolean | null;
|
|
18890
|
+
}
|
|
18891
|
+
/** @oneof */
|
|
18892
|
+
/** @internal */
|
|
18893
|
+
interface ContextItemSelectedDataTypeOneOf {
|
|
18894
|
+
/** For arrays, the items are defined here */
|
|
18895
|
+
arrayItems?: ContextArrayItems;
|
|
18896
|
+
/** For data objects, the items are defined here */
|
|
18897
|
+
data?: ContextDataItems;
|
|
18898
|
+
/** For functions, the function definition is defined here */
|
|
18899
|
+
function?: EditorFunction;
|
|
18900
|
+
/** For text enums, the enum options are defined here */
|
|
18901
|
+
textEnum?: TextEnum;
|
|
18902
|
+
}
|
|
18903
|
+
/** @internal */
|
|
18904
|
+
interface ContextImplementor {
|
|
18905
|
+
/**
|
|
18906
|
+
* The component type to implement the context item
|
|
18907
|
+
* @maxLength 100
|
|
18908
|
+
*/
|
|
18909
|
+
componentType?: string;
|
|
18910
|
+
/**
|
|
18911
|
+
* The prop key the component expects the context to be passed in to it (optional)
|
|
18912
|
+
* @maxLength 100
|
|
18913
|
+
*/
|
|
18914
|
+
propKey?: string | null;
|
|
18915
|
+
}
|
|
18916
|
+
/** An array of data items or complex data types */
|
|
18917
|
+
/** @internal */
|
|
18918
|
+
interface ContextArrayItems extends ContextArrayItemsArrayDataOneOf {
|
|
18919
|
+
/** Specify the type of data inside the array */
|
|
18920
|
+
item?: ContextItem;
|
|
18921
|
+
}
|
|
18922
|
+
/** @oneof */
|
|
18923
|
+
/** @internal */
|
|
18924
|
+
interface ContextArrayItemsArrayDataOneOf {
|
|
18925
|
+
/** Specify the type of data inside the array */
|
|
18926
|
+
item?: ContextItem;
|
|
18927
|
+
}
|
|
18928
|
+
/** A map of keys describing the context items provided by this component */
|
|
18929
|
+
/** @internal */
|
|
18930
|
+
interface ContextDataItems {
|
|
18931
|
+
/** A map of keys describing the data items provided by this component */
|
|
18932
|
+
items?: Record<string, ContextItem>;
|
|
18933
|
+
/** For sub types that implement parts of context, points to a context provider component type */
|
|
18934
|
+
contextImplementor?: ContextImplementor;
|
|
18935
|
+
}
|
|
18717
18936
|
/** @internal */
|
|
18718
18937
|
interface ElementItem extends ElementItemSelectedElementTypeOneOf {
|
|
18719
18938
|
/** An new element definition */
|
|
@@ -19689,16 +19908,6 @@ interface DashboardAction {
|
|
|
19689
19908
|
}
|
|
19690
19909
|
/** @internal */
|
|
19691
19910
|
interface PresetItem {
|
|
19692
|
-
/**
|
|
19693
|
-
* DEPRECATED - use preset_css_url instead
|
|
19694
|
-
* @format WEB_URL
|
|
19695
|
-
* @minLength 13
|
|
19696
|
-
* @maxLength 500
|
|
19697
|
-
* @deprecated DEPRECATED - use preset_css_url instead
|
|
19698
|
-
* @replacedBy preset_css_url
|
|
19699
|
-
* @targetRemovalDate 2025-08-01
|
|
19700
|
-
*/
|
|
19701
|
-
cssUrl?: string;
|
|
19702
19911
|
/**
|
|
19703
19912
|
* Preset name for displaying purposes in the editor
|
|
19704
19913
|
* @maxLength 100
|
|
@@ -19712,22 +19921,6 @@ interface PresetItem {
|
|
|
19712
19921
|
thumbnailUrl?: string | null;
|
|
19713
19922
|
/** Optional initial size of the component when switching into this preset (will not be applied when element is used as an inner element) */
|
|
19714
19923
|
initialSize?: ComponentInitialSize;
|
|
19715
|
-
/**
|
|
19716
|
-
* Display filters for the Preset, used to define the visibility of inner / ref elements, style items, data items and custom actions in the editor
|
|
19717
|
-
* The Preset is the second in line to affect the display, Element is before and State is after it
|
|
19718
|
-
* @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
|
|
19719
|
-
* The Preset is the second in line to affect the display, Element is before and State is after it
|
|
19720
|
-
* @replacedBy preset_defaults
|
|
19721
|
-
* @targetRemovalDate 2025-08-01
|
|
19722
|
-
*/
|
|
19723
|
-
displayFilters?: DisplayFilters;
|
|
19724
|
-
/**
|
|
19725
|
-
* The default styles for this preset and the inner elements
|
|
19726
|
-
* @deprecated The default styles for this preset and the inner elements
|
|
19727
|
-
* @replacedBy preset_defaults
|
|
19728
|
-
* @targetRemovalDate 2025-08-01
|
|
19729
|
-
*/
|
|
19730
|
-
styleDefaults?: PresetStyleDefaults;
|
|
19731
19924
|
/** The style overrides for this preset and the inner elements */
|
|
19732
19925
|
styleOverrides?: BreakpointPresetStyleOverrides;
|
|
19733
19926
|
/**
|
|
@@ -19737,13 +19930,6 @@ interface PresetItem {
|
|
|
19737
19930
|
* @maxSize 2
|
|
19738
19931
|
*/
|
|
19739
19932
|
optimizedFor?: BreakpointEnumBreakpointWithLiterals[];
|
|
19740
|
-
/**
|
|
19741
|
-
* Optional editor layout behaviors we want to apply when this preset is selected
|
|
19742
|
-
* @deprecated Optional editor layout behaviors we want to apply when this preset is selected
|
|
19743
|
-
* @replacedBy preset_defaults
|
|
19744
|
-
* @targetRemovalDate 2025-08-01
|
|
19745
|
-
*/
|
|
19746
|
-
layout?: EditorElementLayout;
|
|
19747
19933
|
/**
|
|
19748
19934
|
* 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
|
|
19749
19935
|
* @format WEB_URL
|
|
@@ -19797,77 +19983,6 @@ declare enum SizingType {
|
|
|
19797
19983
|
/** @enumType */
|
|
19798
19984
|
/** @internal */
|
|
19799
19985
|
type SizingTypeWithLiterals = SizingType | 'UNKNOWN_SizingType' | 'content' | 'stretched' | 'pixels';
|
|
19800
|
-
/**
|
|
19801
|
-
* DisplayFilters is a collection of display filters that can be used to hide or show elements in the editor.
|
|
19802
|
-
* It is used to control the visibility of elements in the editor.
|
|
19803
|
-
* It is used to control the visibility of style items of elements in the editor.
|
|
19804
|
-
* It is used to control the visibility of data items of elements in the editor.
|
|
19805
|
-
* It is used to control the visibility of custom actions of elements in the editor.
|
|
19806
|
-
* The logical order of filtering is done from where the filter is defined.
|
|
19807
|
-
* Element takes first priority in narrowing the list, then the Preset and last is the State
|
|
19808
|
-
*/
|
|
19809
|
-
/** @internal */
|
|
19810
|
-
interface DisplayFilters {
|
|
19811
|
-
/** DisplayFilter for elements, defines which elements to hide or show, uses the element key in the elements map, optional */
|
|
19812
|
-
elements?: DisplayFilter;
|
|
19813
|
-
/** DisplayFilter for data, defines which data items to hide or show, uses the dataItem key in the data map, optional */
|
|
19814
|
-
data?: DisplayFilter;
|
|
19815
|
-
/** DisplayFilter for custom actions, defines which custom actions to hide or show, uses the customAction key in the customActions map, optional */
|
|
19816
|
-
customActions?: DisplayFilter;
|
|
19817
|
-
/** DisplayFilter for actions, defines which actions to hide or show, uses the key in the action map, optional */
|
|
19818
|
-
actions?: DisplayFilter;
|
|
19819
|
-
/** DisplayFilter for css-properties, defines which properties to hide or show in the editor, uses the css-property name, optional */
|
|
19820
|
-
cssProperties?: DisplayFilter;
|
|
19821
|
-
/** 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 */
|
|
19822
|
-
cssCustomProperties?: DisplayFilter;
|
|
19823
|
-
/** DisplayFilter for states, defines which states to hide or show, uses the state key in the states map, optional */
|
|
19824
|
-
states?: DisplayFilter;
|
|
19825
|
-
}
|
|
19826
|
-
/**
|
|
19827
|
-
* The logic of the display filter is to define the minimal requirement
|
|
19828
|
-
* You can only provide one of the two fields, `hide` or `show`, but not both.
|
|
19829
|
-
* hide: *All items* not listed here will be shown by the editor. Useful for hiding a small list of items
|
|
19830
|
-
* show: *Only items* listed here will be show by the editor. Useful for hiding a large list of items
|
|
19831
|
-
*/
|
|
19832
|
-
/** @internal */
|
|
19833
|
-
interface DisplayFilter {
|
|
19834
|
-
/**
|
|
19835
|
-
* Selected items to hide
|
|
19836
|
-
* @maxSize 100
|
|
19837
|
-
* @maxLength 80
|
|
19838
|
-
*/
|
|
19839
|
-
hide?: string[];
|
|
19840
|
-
/**
|
|
19841
|
-
* Selected items to show
|
|
19842
|
-
* @maxSize 100
|
|
19843
|
-
* @maxLength 80
|
|
19844
|
-
*/
|
|
19845
|
-
show?: string[];
|
|
19846
|
-
}
|
|
19847
|
-
/** DEPRECATED: This message is deprecated and will be removed in the future */
|
|
19848
|
-
/** @internal */
|
|
19849
|
-
interface PresetStyleDefaults {
|
|
19850
|
-
/** The default styles for this preset */
|
|
19851
|
-
style?: Record<string, StyleItemDefaults>;
|
|
19852
|
-
/** The default styles of inner elements for this preset */
|
|
19853
|
-
elements?: Record<string, ElementStyleDefaults>;
|
|
19854
|
-
}
|
|
19855
|
-
/** DEPRECATED: This message is deprecated and will be removed in the future */
|
|
19856
|
-
/** @internal */
|
|
19857
|
-
interface StyleItemDefaults {
|
|
19858
|
-
/** The default value of this style item */
|
|
19859
|
-
defaultValue?: any;
|
|
19860
|
-
/** The default values for the style-item when the component is in one of the defined states */
|
|
19861
|
-
statesDefaultValues?: Record<string, any>;
|
|
19862
|
-
}
|
|
19863
|
-
/** DEPRECATED: This message is deprecated and will be removed in the future */
|
|
19864
|
-
/** @internal */
|
|
19865
|
-
interface ElementStyleDefaults {
|
|
19866
|
-
/** The default styles for an element */
|
|
19867
|
-
style?: Record<string, StyleItemDefaults>;
|
|
19868
|
-
/** The default preset and styles for inner elements */
|
|
19869
|
-
elements?: Record<string, ElementStyleDefaults>;
|
|
19870
|
-
}
|
|
19871
19986
|
/** @internal */
|
|
19872
19987
|
interface BreakpointPresetStyleOverrides {
|
|
19873
19988
|
/** The style overrides values for the default breakpoint, which will cascade to all other breakpoints (if not overridden) */
|
|
@@ -19877,13 +19992,6 @@ interface BreakpointPresetStyleOverrides {
|
|
|
19877
19992
|
}
|
|
19878
19993
|
/** @internal */
|
|
19879
19994
|
interface PresetStyleOverrides {
|
|
19880
|
-
/**
|
|
19881
|
-
* The style overrides for this preset
|
|
19882
|
-
* @deprecated The style overrides for this preset
|
|
19883
|
-
* @replacedBy cssProperties or cssCustomProperties
|
|
19884
|
-
* @targetRemovalDate 2025-08-01
|
|
19885
|
-
*/
|
|
19886
|
-
style?: Record<string, PresetStyleItemOverrides>;
|
|
19887
19995
|
/** The style overrides of inner elements for this preset */
|
|
19888
19996
|
elements?: Record<string, ElementStyleOverrides>;
|
|
19889
19997
|
/** The default values for the element css-properties when the preset is selected */
|
|
@@ -19892,26 +20000,12 @@ interface PresetStyleOverrides {
|
|
|
19892
20000
|
cssCustomProperties?: Record<string, PresetStyleItemOverrides>;
|
|
19893
20001
|
}
|
|
19894
20002
|
/** @internal */
|
|
19895
|
-
interface PresetStyleItemOverrides {
|
|
19896
|
-
/** The override value of this style item */
|
|
19897
|
-
value?: any;
|
|
19898
|
-
/** The override values for the style item when the component is in one of the defined states */
|
|
19899
|
-
statesValues?: Record<string, any>;
|
|
19900
|
-
}
|
|
19901
|
-
/** @internal */
|
|
19902
20003
|
interface ElementStyleOverrides {
|
|
19903
20004
|
/**
|
|
19904
20005
|
* The override preset for an element
|
|
19905
20006
|
* @maxLength 100
|
|
19906
20007
|
*/
|
|
19907
20008
|
presetKey?: string | null;
|
|
19908
|
-
/**
|
|
19909
|
-
* The override styles for an element
|
|
19910
|
-
* @deprecated The override styles for an element
|
|
19911
|
-
* @replacedBy cssProperties or cssCustomProperties
|
|
19912
|
-
* @targetRemovalDate 2025-08-01
|
|
19913
|
-
*/
|
|
19914
|
-
style?: Record<string, PresetStyleItemOverrides>;
|
|
19915
20009
|
/** The override preset and styles for inner elements */
|
|
19916
20010
|
elements?: Record<string, ElementStyleOverrides>;
|
|
19917
20011
|
/** The default values for the element css-properties when the preset is selected */
|
|
@@ -19920,6 +20014,13 @@ interface ElementStyleOverrides {
|
|
|
19920
20014
|
cssCustomProperties?: Record<string, PresetStyleItemOverrides>;
|
|
19921
20015
|
}
|
|
19922
20016
|
/** @internal */
|
|
20017
|
+
interface PresetStyleItemOverrides {
|
|
20018
|
+
/** The override value of this style item */
|
|
20019
|
+
value?: any;
|
|
20020
|
+
/** The override values for the style item when the component is in one of the defined states */
|
|
20021
|
+
statesValues?: Record<string, any>;
|
|
20022
|
+
}
|
|
20023
|
+
/** @internal */
|
|
19923
20024
|
declare enum BreakpointEnumBreakpoint {
|
|
19924
20025
|
UNKNOWN_Breakpoint = "UNKNOWN_Breakpoint",
|
|
19925
20026
|
/** Represents the small (mobile) breakpoint */
|
|
@@ -19930,33 +20031,6 @@ declare enum BreakpointEnumBreakpoint {
|
|
|
19930
20031
|
/** @enumType */
|
|
19931
20032
|
/** @internal */
|
|
19932
20033
|
type BreakpointEnumBreakpointWithLiterals = BreakpointEnumBreakpoint | 'UNKNOWN_Breakpoint' | 'small' | 'large';
|
|
19933
|
-
/** Top-level message containing all layout capabilities */
|
|
19934
|
-
/** @internal */
|
|
19935
|
-
interface EditorElementLayout {
|
|
19936
|
-
/** The resizing capabilities this component can supports */
|
|
19937
|
-
resizeDirection?: ResizeDirectionWithLiterals;
|
|
19938
|
-
/** Describes the ability of content to impact on the size of this component */
|
|
19939
|
-
contentResizeDirection?: ContentResizeDirectionWithLiterals;
|
|
19940
|
-
/** Will control the availability of the stretch capability for this component */
|
|
19941
|
-
disableStretching?: boolean | null;
|
|
19942
|
-
/** Will control the availability of freely positioning this component */
|
|
19943
|
-
disablePositioning?: boolean | null;
|
|
19944
|
-
/** Will control if the editor allows rotating the element */
|
|
19945
|
-
disableRotation?: boolean | null;
|
|
19946
|
-
/** Information related to content that fills the whole component visible space */
|
|
19947
|
-
contentFill?: ContentFill;
|
|
19948
|
-
/** Will control the availability of the duplicate capability for this component */
|
|
19949
|
-
disableDuplication?: boolean | null;
|
|
19950
|
-
}
|
|
19951
|
-
/** @internal */
|
|
19952
|
-
interface ContentFill {
|
|
19953
|
-
/**
|
|
19954
|
-
* 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
|
|
19955
|
-
* Restricted to data-items that hold specific data-types: "image", "video", "vectorArt", "container"
|
|
19956
|
-
* @maxLength 100
|
|
19957
|
-
*/
|
|
19958
|
-
dataItemKey?: string | null;
|
|
19959
|
-
}
|
|
19960
20034
|
/** @internal */
|
|
19961
20035
|
interface PresetElementDefaults {
|
|
19962
20036
|
/**
|
|
@@ -19994,6 +20068,80 @@ interface PresetInnerElementDefaults {
|
|
|
19994
20068
|
/** The default preset and styles for inner elements */
|
|
19995
20069
|
elements?: Record<string, PresetInnerElementDefaults>;
|
|
19996
20070
|
}
|
|
20071
|
+
/** Top-level message containing all layout capabilities */
|
|
20072
|
+
/** @internal */
|
|
20073
|
+
interface EditorElementLayout {
|
|
20074
|
+
/** The resizing capabilities this component can supports */
|
|
20075
|
+
resizeDirection?: ResizeDirectionWithLiterals;
|
|
20076
|
+
/** Describes the ability of content to impact on the size of this component */
|
|
20077
|
+
contentResizeDirection?: ContentResizeDirectionWithLiterals;
|
|
20078
|
+
/** Will control the availability of the stretch capability for this component */
|
|
20079
|
+
disableStretching?: boolean | null;
|
|
20080
|
+
/** Will control the availability of freely positioning this component */
|
|
20081
|
+
disablePositioning?: boolean | null;
|
|
20082
|
+
/** Will control if the editor allows rotating the element */
|
|
20083
|
+
disableRotation?: boolean | null;
|
|
20084
|
+
/** Information related to content that fills the whole component visible space */
|
|
20085
|
+
contentFill?: ContentFill;
|
|
20086
|
+
/** Will control the availability of the duplicate capability for this component */
|
|
20087
|
+
disableDuplication?: boolean | null;
|
|
20088
|
+
}
|
|
20089
|
+
/** @internal */
|
|
20090
|
+
interface ContentFill {
|
|
20091
|
+
/**
|
|
20092
|
+
* 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
|
|
20093
|
+
* Restricted to data-items that hold specific data-types: "image", "video", "vectorArt", "container"
|
|
20094
|
+
* @maxLength 100
|
|
20095
|
+
*/
|
|
20096
|
+
dataItemKey?: string | null;
|
|
20097
|
+
}
|
|
20098
|
+
/**
|
|
20099
|
+
* DisplayFilters is a collection of display filters that can be used to hide or show elements in the editor.
|
|
20100
|
+
* It is used to control the visibility of elements in the editor.
|
|
20101
|
+
* It is used to control the visibility of style items of elements in the editor.
|
|
20102
|
+
* It is used to control the visibility of data items of elements in the editor.
|
|
20103
|
+
* It is used to control the visibility of custom actions of elements in the editor.
|
|
20104
|
+
* The logical order of filtering is done from where the filter is defined.
|
|
20105
|
+
* Element takes first priority in narrowing the list, then the Preset and last is the State
|
|
20106
|
+
*/
|
|
20107
|
+
/** @internal */
|
|
20108
|
+
interface DisplayFilters {
|
|
20109
|
+
/** DisplayFilter for elements, defines which elements to hide or show, uses the element key in the elements map, optional */
|
|
20110
|
+
elements?: DisplayFilter;
|
|
20111
|
+
/** DisplayFilter for data, defines which data items to hide or show, uses the dataItem key in the data map, optional */
|
|
20112
|
+
data?: DisplayFilter;
|
|
20113
|
+
/** DisplayFilter for custom actions, defines which custom actions to hide or show, uses the customAction key in the customActions map, optional */
|
|
20114
|
+
customActions?: DisplayFilter;
|
|
20115
|
+
/** DisplayFilter for actions, defines which actions to hide or show, uses the key in the action map, optional */
|
|
20116
|
+
actions?: DisplayFilter;
|
|
20117
|
+
/** DisplayFilter for css-properties, defines which properties to hide or show in the editor, uses the css-property name, optional */
|
|
20118
|
+
cssProperties?: DisplayFilter;
|
|
20119
|
+
/** 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 */
|
|
20120
|
+
cssCustomProperties?: DisplayFilter;
|
|
20121
|
+
/** DisplayFilter for states, defines which states to hide or show, uses the state key in the states map, optional */
|
|
20122
|
+
states?: DisplayFilter;
|
|
20123
|
+
}
|
|
20124
|
+
/**
|
|
20125
|
+
* The logic of the display filter is to define the minimal requirement
|
|
20126
|
+
* You can only provide one of the two fields, `hide` or `show`, but not both.
|
|
20127
|
+
* hide: *All items* not listed here will be shown by the editor. Useful for hiding a small list of items
|
|
20128
|
+
* show: *Only items* listed here will be show by the editor. Useful for hiding a large list of items
|
|
20129
|
+
*/
|
|
20130
|
+
/** @internal */
|
|
20131
|
+
interface DisplayFilter {
|
|
20132
|
+
/**
|
|
20133
|
+
* Selected items to hide
|
|
20134
|
+
* @maxSize 100
|
|
20135
|
+
* @maxLength 80
|
|
20136
|
+
*/
|
|
20137
|
+
hide?: string[];
|
|
20138
|
+
/**
|
|
20139
|
+
* Selected items to show
|
|
20140
|
+
* @maxSize 100
|
|
20141
|
+
* @maxLength 80
|
|
20142
|
+
*/
|
|
20143
|
+
show?: string[];
|
|
20144
|
+
}
|
|
19997
20145
|
/** @internal */
|
|
19998
20146
|
declare enum Archetype {
|
|
19999
20147
|
UNKNOWN_Archetype = "UNKNOWN_Archetype",
|
|
@@ -20109,14 +20257,16 @@ interface VisibleState {
|
|
|
20109
20257
|
interface DisplayGroupItem extends DisplayGroupItemSelectedGroupTypeOneOf {
|
|
20110
20258
|
/** A group that contains cssCustomProperties items that used one of the supported css-data-types (length, angle, number, ..._) */
|
|
20111
20259
|
cssDataType?: ItemsGroup;
|
|
20112
|
-
/** A group that contains data items */
|
|
20260
|
+
/** A group that contains data items, should be used for grouping and ordering purposes in the editor */
|
|
20113
20261
|
data?: ItemsGroup;
|
|
20114
20262
|
/** A group that contains preset items, which will be displayed in the editor as a category in the presets panel */
|
|
20115
20263
|
presets?: ItemsGroup;
|
|
20116
|
-
/** A group that contains cssCustomProperties items that use the same cssPropertyType, should be used
|
|
20264
|
+
/** A group that contains cssCustomProperties items that use the same cssPropertyType, should be used for grouping and ordering purposes */
|
|
20117
20265
|
cssCustomProperties?: ItemsGroup;
|
|
20118
|
-
/** A group that contains other displayGroups items that use the same groupType,
|
|
20266
|
+
/** A group that contains other displayGroups items that use the same groupType, should be used for ordering purposes */
|
|
20119
20267
|
displayGroups?: ItemsGroup;
|
|
20268
|
+
/** 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. */
|
|
20269
|
+
elements?: ItemsGroup;
|
|
20120
20270
|
/** A group that contains background items */
|
|
20121
20271
|
background?: ShorthandGroupBackground;
|
|
20122
20272
|
/** A group that contains margin items */
|
|
@@ -20170,14 +20320,16 @@ interface DisplayGroupItem extends DisplayGroupItemSelectedGroupTypeOneOf {
|
|
|
20170
20320
|
interface DisplayGroupItemSelectedGroupTypeOneOf {
|
|
20171
20321
|
/** A group that contains cssCustomProperties items that used one of the supported css-data-types (length, angle, number, ..._) */
|
|
20172
20322
|
cssDataType?: ItemsGroup;
|
|
20173
|
-
/** A group that contains data items */
|
|
20323
|
+
/** A group that contains data items, should be used for grouping and ordering purposes in the editor */
|
|
20174
20324
|
data?: ItemsGroup;
|
|
20175
20325
|
/** A group that contains preset items, which will be displayed in the editor as a category in the presets panel */
|
|
20176
20326
|
presets?: ItemsGroup;
|
|
20177
|
-
/** A group that contains cssCustomProperties items that use the same cssPropertyType, should be used
|
|
20327
|
+
/** A group that contains cssCustomProperties items that use the same cssPropertyType, should be used for grouping and ordering purposes */
|
|
20178
20328
|
cssCustomProperties?: ItemsGroup;
|
|
20179
|
-
/** A group that contains other displayGroups items that use the same groupType,
|
|
20329
|
+
/** A group that contains other displayGroups items that use the same groupType, should be used for ordering purposes */
|
|
20180
20330
|
displayGroups?: ItemsGroup;
|
|
20331
|
+
/** 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. */
|
|
20332
|
+
elements?: ItemsGroup;
|
|
20181
20333
|
/** A group that contains background items */
|
|
20182
20334
|
background?: ShorthandGroupBackground;
|
|
20183
20335
|
/** A group that contains margin items */
|
|
@@ -20231,6 +20383,7 @@ declare enum GroupType {
|
|
|
20231
20383
|
presets = "presets",
|
|
20232
20384
|
cssCustomProperties = "cssCustomProperties",
|
|
20233
20385
|
displayGroups = "displayGroups",
|
|
20386
|
+
elements = "elements",
|
|
20234
20387
|
/** Style Shorthand Groups */
|
|
20235
20388
|
background = "background",
|
|
20236
20389
|
margin = "margin",
|
|
@@ -20259,7 +20412,7 @@ declare enum GroupType {
|
|
|
20259
20412
|
}
|
|
20260
20413
|
/** @enumType */
|
|
20261
20414
|
/** @internal */
|
|
20262
|
-
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';
|
|
20415
|
+
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';
|
|
20263
20416
|
/** @internal */
|
|
20264
20417
|
interface ItemsGroup {
|
|
20265
20418
|
/**
|
|
@@ -23292,81 +23445,6 @@ interface ContextSpecifier {
|
|
|
23292
23445
|
hook?: string;
|
|
23293
23446
|
}
|
|
23294
23447
|
/** @internal */
|
|
23295
|
-
interface ApiContext {
|
|
23296
|
-
/** A map of keys describing the context provided by this component */
|
|
23297
|
-
items?: Record<string, ContextItem>;
|
|
23298
|
-
}
|
|
23299
|
-
/** @internal */
|
|
23300
|
-
interface ContextItem extends ContextItemSelectedDataTypeOneOf {
|
|
23301
|
-
/** For arrays, the items are defined here */
|
|
23302
|
-
arrayItems?: ContextArrayItems;
|
|
23303
|
-
/** For data objects, the items are defined here */
|
|
23304
|
-
data?: ContextDataItems;
|
|
23305
|
-
/** For functions, the function definition is defined here */
|
|
23306
|
-
function?: EditorFunction;
|
|
23307
|
-
/** For text enums, the enum options are defined here */
|
|
23308
|
-
textEnum?: TextEnum;
|
|
23309
|
-
/** The type exposed by the context item (can't be "container") */
|
|
23310
|
-
dataType?: DataTypeWithLiterals;
|
|
23311
|
-
/**
|
|
23312
|
-
* The display name of the context item for user facing and AI usage
|
|
23313
|
-
* @maxLength 100
|
|
23314
|
-
*/
|
|
23315
|
-
displayName?: string | null;
|
|
23316
|
-
/** For sub types that implement parts of context, points to a context provider component type */
|
|
23317
|
-
contextImplementor?: ContextImplementor;
|
|
23318
|
-
/**
|
|
23319
|
-
* Will be set to true in case an item has been removed from the Context
|
|
23320
|
-
* @internal
|
|
23321
|
-
*/
|
|
23322
|
-
deprecated?: boolean | null;
|
|
23323
|
-
}
|
|
23324
|
-
/** @oneof */
|
|
23325
|
-
/** @internal */
|
|
23326
|
-
interface ContextItemSelectedDataTypeOneOf {
|
|
23327
|
-
/** For arrays, the items are defined here */
|
|
23328
|
-
arrayItems?: ContextArrayItems;
|
|
23329
|
-
/** For data objects, the items are defined here */
|
|
23330
|
-
data?: ContextDataItems;
|
|
23331
|
-
/** For functions, the function definition is defined here */
|
|
23332
|
-
function?: EditorFunction;
|
|
23333
|
-
/** For text enums, the enum options are defined here */
|
|
23334
|
-
textEnum?: TextEnum;
|
|
23335
|
-
}
|
|
23336
|
-
/** @internal */
|
|
23337
|
-
interface ContextImplementor {
|
|
23338
|
-
/**
|
|
23339
|
-
* The component type to implement the context item
|
|
23340
|
-
* @maxLength 100
|
|
23341
|
-
*/
|
|
23342
|
-
componentType?: string;
|
|
23343
|
-
/**
|
|
23344
|
-
* The prop key the component expects the context to be passed in to it (optional)
|
|
23345
|
-
* @maxLength 100
|
|
23346
|
-
*/
|
|
23347
|
-
propKey?: string | null;
|
|
23348
|
-
}
|
|
23349
|
-
/** An array of data items or complex data types */
|
|
23350
|
-
/** @internal */
|
|
23351
|
-
interface ContextArrayItems extends ContextArrayItemsArrayDataOneOf {
|
|
23352
|
-
/** Specify the type of data inside the array */
|
|
23353
|
-
item?: ContextItem;
|
|
23354
|
-
}
|
|
23355
|
-
/** @oneof */
|
|
23356
|
-
/** @internal */
|
|
23357
|
-
interface ContextArrayItemsArrayDataOneOf {
|
|
23358
|
-
/** Specify the type of data inside the array */
|
|
23359
|
-
item?: ContextItem;
|
|
23360
|
-
}
|
|
23361
|
-
/** A map of keys describing the context items provided by this component */
|
|
23362
|
-
/** @internal */
|
|
23363
|
-
interface ContextDataItems {
|
|
23364
|
-
/** A map of keys describing the data items provided by this component */
|
|
23365
|
-
items?: Record<string, ContextItem>;
|
|
23366
|
-
/** For sub types that implement parts of context, points to a context provider component type */
|
|
23367
|
-
contextImplementor?: ContextImplementor;
|
|
23368
|
-
}
|
|
23369
|
-
/** @internal */
|
|
23370
23448
|
interface EditorContextProviderModuleConfiguration {
|
|
23371
23449
|
/** Public NPM package details */
|
|
23372
23450
|
package?: NPMPackage;
|
|
@@ -26498,4 +26576,4 @@ declare function loyaltyPointsAdjustment({ id, data, name, }: {
|
|
|
26498
26576
|
name?: string;
|
|
26499
26577
|
}): ExtensionData;
|
|
26500
26578
|
|
|
26501
|
-
export { type A11y, A11yAttributes, type A11yAttributesWithLiterals, AcceptedDirectMessageType, type AcceptedDirectMessageTypeWithLiterals, AcceptedMessageTypesAcceptedDirectMessageType, type AcceptedMessageTypesAcceptedDirectMessageTypeWithLiterals, AcceptedMessageTypesAcceptedSmsMessageType, type AcceptedMessageTypesAcceptedSmsMessageTypeWithLiterals, AcceptedSmsMessageType, type AcceptedSmsMessageTypeWithLiterals, AccessLevel, type AccessLevelWithLiterals, type Action, type ActionCondition, ActionName, type ActionNameWithLiterals, type ActionProviderSPIConfig, type ActionSPIConfig, type ActionSPIConfigImplementedMethods, type ActionSPIConfigInterfaceConfiguration, type ActionSPIConfigInterfaceConfigurationOptionsOneOf, ActionSPIConfigInterfaceConfigurationType, type ActionSPIConfigInterfaceConfigurationTypeWithLiterals, type ActionSpiConfig, ActionType, type ActionTypeWithLiterals, type Actions, type AdaptiveComponentProviderConfig, type AddCustomFields, type AdditionalFeesSPIConfig, type AdditionalStepInfo, type AdditionalTaxGroup, type AddonMarketData, type Address, AddressComponentType, type AddressComponentTypeOptionsOneOf, type AddressComponentTypeWithLiterals, type AddressInfo, AddressInfoTag, type AddressInfoTagWithLiterals, type AddressLine2, type AdminConfigurableTextInput, type AlertEnricherSpiConfiguration, type AlgorithmConfig, AlgorithmType, type AlgorithmTypeWithLiterals, Alignment, type AlignmentWithLiterals, type AllowedValuesOptions, type AlternativeUri, type AnchorData, type AnchorMetaData, type AndCondition, type AndroidMobilePushConfig, AndroidStyle, type AndroidStyleWithLiterals, type ApiContext, type ApiSlot, type ApiWidth, type AppConfig, type AppConfiguration, type AppDeploymentProviderConfig, type AppEmbedData, type AppEmbedDataAppDataOneOf, type AppEnvironmentProviderConfig, type AppPreviewProviderConfig, type AppRouter, AppType, type AppTypeWithLiterals, type ApplicationAutomationComponent, type ApplicationProfile, type ApplicationProfileProviderConfig, type Appointment, AppointmentFormat, type AppointmentFormatInfoOneOf, type AppointmentFormatWithLiterals, type ApprovalProviderConfig, type ApprovalProviderConfigScopeOneOf, Archetype, type ArchetypeWithLiterals, ArrayComponentType, type ArrayComponentTypeWithLiterals, type ArrayItems, type ArrayItemsArrayDataOneOf, type ArrayOptions, type ArrayOptionsElementTypeOptionsOneOf, type ArrayType, type ArrayTypeArrayItems, type ArrayTypeArrayItemsItemTypeOptionsOneOf, AspectRatio, type AspectRatioWithLiterals, AssetType, type AssetTypeWithLiterals, type AssistantSpiConfig, type AudienceProviderConfig, type AudioData, type AuthenticatorConfig, type AutomationActionScope, type AutomationMetadata, type AutomationTemplateComponent, type AutomationTrigger, type AutomationsConfig, type AvailabilityTimeSlotsProviderConfig, type AvatarConfig, AvatarShape, type AvatarShapeWithLiterals, type BackOfficeCustomization, type BackOfficeCustomizationSidebarEntity, type BackOfficeCustomizationSidebarEntityItemOneOf, type BackOfficeExtension, type BackOfficeExtensionContainer, type BackOfficeExtensionExtensionOneOf, type BackOfficeExtensionMenuItem, type BackOfficeExtensionWidget, type BackOfficeExtensionWidgetAssetOneOf, type BackOfficeExternalUrl, BackOfficeHostingPlatforms, type BackOfficeHostingPlatformsWithLiterals, type BackOfficeModal, type BackOfficeModalContentOneOf, type BackOfficePage, type BackOfficePageAssetOneOf, type BackOfficeRestrictedCustomization, type BackOfficeScriptAsset, BackOfficeScriptAssetType, type BackOfficeScriptAssetTypeWithLiterals, type BackOfficeSidebarCategory, type BackOfficeWidget, type BackOfficeWidgetContentOneOf, type Backdrop, type BackdropFilter, BackdropType, type BackdropTypeWithLiterals, type BackendWorker, type Background, type BackgroundGradient, type BackgroundImage, BackgroundModeEnum, type BackgroundModeEnumWithLiterals, BackgroundType, type BackgroundTypeWithLiterals, type BackofficeActionDeeplink, type Banner, type BarAlignment, BarAlignmentSelected, type BarAlignmentSelectedWithLiterals, type BaseInfo, type BaseInstallation, type Behaviors, type BillingSettingsConfig, type BindingsSPIConfig, BlockType, type BlockTypeWithLiterals, type BlockquoteData, type BlocksData, type BlogPaywallProviderConfig, type BookingActionUrlsProviderConfig, type BookingAutomationsConfig, type BookingData, type BookingPermissionOverrides, type BookingPolicyProviderConfig, type BookingsPlatformConfig, type BookingsPricingProviderConfig, type BookingsResourceType, type BookingsResourceTypesProviderConfig, type BookingsValidationProviderConfig, type BoolListOptions, BooleanComponentType, type BooleanComponentTypeWithLiterals, type BooleanExperimentExposureRule, type BooleanType, type Border, type BorderColors, type BorderWidths, type BrandIcons, type BreakPoint, type BreakPointSection, type Breakpoint, BreakpointEnumBreakpoint, type BreakpointEnumBreakpointWithLiterals, type BreakpointPresetStyleOverrides, type Breakpoints, type BroadcastList, type BrowserPushChannel, type BrowserPushContentKeys, type BrowserStorage, type BuilderSpi, type BulletedListData, type Bundle, type BusinessManagerPage, type ButtonData, ButtonDataType, type ButtonDataTypeWithLiterals, type ButtonStyles, CalendarType, type CalendarTypeWithLiterals, type CancelSubscriptionsConfig, type CaptionData, type CardData, type CardDataBackground, type CardDataBackgroundImage, CardDataBackgroundType, type CardDataBackgroundTypeWithLiterals, type CardStyles, CardStylesAlignment, type CardStylesAlignmentWithLiterals, CardStylesType, type CardStylesTypeWithLiterals, type CatalogSPIConfig, type CatalogSyncConfiguration, Category, type CategoryWithLiterals, type CellStyle, type ChangeEvent, ChangeableProperty, type ChangeablePropertyWithLiterals, type ChannelBrandIcons, type ChannelBranding, type ChannelChannelBranding, type ChannelChannelConfiguration, type ChannelChannelConfigurationMessagingConfigOneOf, type ChannelConfiguration, ChannelConfigurationChannelType, type ChannelConfigurationChannelTypeWithLiterals, type ChannelConfigurationMessagingConfigOneOf, type ChannelIcon, type ChannelImplementedMethods, type ChannelMediaCapabilities, ChannelType, type ChannelTypeWithLiterals, type Checkbox, type CheckboxConfiguration, type CheckboxField, type CheckboxGroup, type CheckboxGroupOption, type CheckoutContentSPIConfig, type ClientResources, type ClientSideService, type CodeBlockData, type CodePackageComponentData, type CodePanel, type CollapsibleListData, type Collection, type Color, type ColorData, type ColorDefinition, type ColorSelectLabeled, type ColorSelectLabeledDataOneOf, type Colors, type CommentFilterProviderConfig, type CommentModerationProviderConfig, type CommentsContextProviderConfig, type CommonImage, type CommunicationChannelConfiguration, type ComponentCatalog, type ComponentData, type ComponentDataDataOneOf, type ComponentEnricherConfig, type ComponentInitialSize, type ComponentMetaData, type ComponentModel, ComponentPresent, type ComponentPresentWithLiterals, type ComponentReferenceDataConfig, type ComponentTranslationAdditionalFieldsConfig, ComponentType, type ComponentTypeWithLiterals, type ComponentsValidatorConfig, type Condition, type ConditionBlock, type ConditionNode, type ConditionNodeNodeOneOf, type Conditions, type ConferencingProviderConfig, type Configuration, ConfirmationLevel, type ConfirmationLevelWithLiterals, ConnectMethod, type ConnectMethodWithLiterals, ConnectionMethod, type ConnectionMethodWithLiterals, ConsentCategory, type ConsentCategoryWithLiterals, type Consequence, type ConstOrDynamicParam, type ConstOrDynamicParamValueOneOf, type Constraint, type ContactData, ContactField, type ContactFieldWithLiterals, type ContactLabelsComponentData, type ContactNotification, type ContactsData, type ContactsNotificationData, type Container, type ContainerBehaviors, type ContainerDataOneOf, type ContainerLayout, type ContainerStyleOverrides, ContainerType, type ContainerTypeWithLiterals, type ContentData, type ContentDataOverrides, type ContentFill, type ContentProviderConfig, ContentResizeDirection, type ContentResizeDirectionWithLiterals, type Context, type ContextArrayItems, type ContextArrayItemsArrayDataOneOf, type ContextDataItems, type ContextImplementor, type ContextItem, type ContextItemSelectedDataTypeOneOf, type ContextSpecifier, type ConversationLimitations, type Coordinates, type CoreApps, type Corners, type CoverImageConfiguration, type CreateComponentCatalogRequest, type CreateNewItemInfo, Crop, type CropWithLiterals, type CrossSellConfig, type CssCustomPropertyAction, type CssCustomPropertyItem, type CssCustomPropertyItemSelectedCssPropertyTypeOneOf, CssDataType, type CssDataTypeWithLiterals, type CssNumber, type CssPropertyAction, type CssPropertyItem, type CssPropertyItemDefaults, type CssPropertyItemDefinitionOverrides, type CssPropertyItemSelectedCssPropertyTypeOneOf, CssPropertyType, CssPropertyTypeEnumCssPropertyType, type CssPropertyTypeEnumCssPropertyTypeWithLiterals, type CssPropertyTypeWithLiterals, CssVariableTypeEnumCssDataType, type CssVariableTypeEnumCssDataTypeWithLiterals, type CurrencyCodeListOptions, type CustomAction, type CustomActionActionExecuteOneOf, type CustomChargesConfig, type CustomElement, type CustomElementConsentCategoryOneOf, CustomElementScriptType, type CustomElementScriptTypeWithLiterals, type CustomElementWidget, type CustomEnum, type CustomEnumOption, type CustomEnumOptionCssProperty, type CustomExperimentExposureRule, type CustomFieldInfo, CustomFieldsType, type CustomFieldsTypeWithLiterals, type CustomInitialPreset, type CustomOption, type CustomPermission, type CustomPropertyEnum, type CustomPropertyEnumOption, type CustomPropertyEnumOptionStyle, type CustomRefData, type CustomReservationsApprovalConfig, type CustomRewardProviderConfig, type CustomScopeConfig, type CustomTriggerConfig, type DCConfigData, type Dashboard, type DashboardAction, type DashboardApplicationData, type DashboardButton, type DashboardComponentData, type DashboardItem, type DashboardPlatfromComponentData, type DataAction, type DataComponent, type DataExtensionsComponentData, type DataGroupsArrayItems, type DataItem, type DataItemOverrides, type DataItemOverridesSelectedDataTypeOneOf, type DataItemSelectedDataTypeOneOf, type DataItems, type DataPermissions, DataType, type DataTypeWithLiterals, type DateInput, type DatePicker, type DateTimeConstraints, type DateTimeInput, type Debounce, type DecimalListOptions, type Decoration, type DecorationDataOneOf, DecorationType, type DecorationTypeWithLiterals, type Deeplink, type DeeplinkOfOneOf, Default, type DefaultCountryConfig, type DefaultCountryConfigOptionsOneOf, DefaultCountryConfigType, type DefaultCountryConfigTypeWithLiterals, type DefaultPresets, type DefaultTaxGroupProviderConfig, DefaultTextStyle, type DefaultTextStyleWithLiterals, type DefaultWithLiterals, type Definition, type Delay, type DelayTypeOneOf, type DeleteComponentCatalogRequest, type DeleteTemplateFields, type DeploymentPipelineProviderConfig, type Description, type Design, DesignTarget, type DesignTargetWithLiterals, type DevCenterTestingComponentData, type DevCenterTestingComponentDataTranslatableOneOfOneOf, type Dimension, type Dimensions, type DirectMessageConfig, Direction, type DirectionWithLiterals, type DiscountConfig, type DiscountsSPIConfig, type DiscoveryMetaData, type Display, type DisplayField, type DisplayFieldDisplayFieldTypeOptionsOneOf, DisplayFieldType, type DisplayFieldTypeWithLiterals, type DisplayFilter, type DisplayFilters, type DisplayGroupAction, type DisplayGroupItem, type DisplayGroupItemSelectedGroupTypeOneOf, type DisplayProperties, type DisplayValue, DisplayValueEnumDisplayValue, type DisplayValueEnumDisplayValueWithLiterals, type DisputeServicePluginConfig, type DividerData, DividerDataAlignment, type DividerDataAlignmentWithLiterals, DividerDataWidth, type DividerDataWidthWithLiterals, type DmDirectMessageConfig, type Docking, type DockingProperties, type DocumentStyle, DomEventType, type DomEventTypeWithLiterals, Domain, type DomainWithLiterals, type DonationInput, type DonationInputOption, type DrillInListItem, type DrillItem, type DrillItemDataOneOf, type DropDownLabeled, type Dropdown, type DropdownField, type DropdownFieldOption, type DropdownOption, type DropshippingProviderSPIConfig, type DtsContent, type DtsDefinitionReference, type DtsDefinitionReferenceDtsDefinitionOneOf, DtsDefinitionType, type DtsDefinitionTypeWithLiterals, type DtsHttpLink, type DurationInputConfiguration, type DurationInputConfigurationDurationRenameOptions, type DurationRenameOptions, type DynamicPriceOptions, type DynamicSiteStructureProviderConfig, type EditableFields, EditableProperties, type EditablePropertiesWithLiterals, type EditorAddon, type EditorBehaviors, type EditorContextProvider, type EditorContextProviderModuleConfiguration, type EditorContextProviderResources, type EditorDependencies, type EditorElement, type EditorElementLayout, type EditorFunction, type EditorFunctionLibrary, type EditorFunctionLibraryModuleConfiguration, type EditorPresence, type EditorReactComponent, type EditorReactComponentModuleConfiguration, EffectGroup, type EffectGroupWithLiterals, ElementDisplayOption, type ElementDisplayOptionWithLiterals, type ElementItem, type ElementItemSelectedElementTypeOneOf, type ElementState, type ElementStyleDefaults, type ElementStyleOverrides, ElementType, type ElementTypeWithLiterals, type EmailChannel, type EmailEmailMessageConfig, type EmailInfo, EmailInfoTag, type EmailInfoTagWithLiterals, type EmailMessageConfig, type EmailTemplateConfig, type EmailTemplateConfigProviderOneOf, EmbedCategory, type EmbedCategoryWithLiterals, type EmbedData, type EmbeddedScriptComponentData, EmbeddedScriptPages, type EmbeddedScriptPagesWithLiterals, EmbeddedScriptPlacement, type EmbeddedScriptPlacementWithLiterals, type Empty, Environment, type EnvironmentWithLiterals, type ErrorReporting, type ErrorReportingArtifact, Escalation, type EscalationWithLiterals, type EventAction, type EventBadgesSpiConfig, type EventData, type EventTimeSlotsProviderConfig, type EventTypeProviderConfig, type EventValidationProviderConfig, type Execution, type ExecutionActionExecuteOneOf, ExecutionType, type ExecutionTypeWithLiterals, type ExemptRegions, type ExpectedInputs, type ExperimentGroupWrapper, type ExportMetadata, Exposure, type ExposureRule, type ExposureRuleRuleOneOf, ExposureRuleType, type ExposureRuleTypeWithLiterals, type ExposureWithLiterals, type Extendable, ExtendingComponentType, type ExtendingComponentTypeWithLiterals, type ExtensionData, type ExtensionDetails, type ExtensionExposure, ExtensionExposureExposure, type ExtensionExposureExposureWithLiterals, ExtensionType, type ExtensionTypeWithLiterals, type ExternalDatabaseSpiConfig, type ExternalFilterProviderConfig, type FactorConfig, FactorType, type FactorTypeWithLiterals, type FeedAggregation, type FeedChannels, type FeedChannelsConfig, type FeesSPIConfig, type Field, FieldFieldType, type FieldFieldTypeWithLiterals, type FieldGroup, type FieldManagementConfig, type FieldOverride, type FieldOverrides, FieldType, type FieldTypeOptionsOneOf, type FieldTypeWithLiterals, type FieldsOverrides, type FieldsSettings, type FileData, FileMediaType, type FileMediaTypeWithLiterals, type FileSource, type FileSourceDataOneOf, type FileType, type FileUpload, type Filter, FilterFunction, type FilterFunctionWithLiterals, type FilterInfo, type FilterInfoOptionsOneOf, FilterOptionsType, type FilterOptionsTypeWithLiterals, FilterSelectionType, type FilterSelectionTypeWithLiterals, FilterValueDefinitionMode, type FilterValueDefinitionModeWithLiterals, type FilteringCapability, FirstDayOfWeek, type FirstDayOfWeekWithLiterals, type FirstLevelCategory, type FixedPayment, type FixedPositionBuilder, type FixedPositionOptions, type FixedPriceOptions, type FocalPoint, type Font, type FontDefinition, type FontFamilyData, type FontFamilyWithColorPicker, type FontSizeData, FontType, type FontTypeWithLiterals, type FormFieldContactInfo, type FormFieldContactInfoAdditionalInfoOneOf, type FormLayout, type FormOverride, type FormOverrideEntityTypeOptionsOneOf, type FormOverrideFieldOverride, type FormOverrideFieldOverridePropertyTypeOptionsOneOf, type FormSchemaDynamicValuesSpiConfig, type FormSchemaSpiConfig, type FormSpamSubmissionReportPermissions, type FormSpamSubmissionReportSpiConfig, type FormSpamSubmissionReportsNamespaceConfig, type FormSpamSubmissionSpiConfig, type FormSpiExtensionConfig, type FormSubmissionModerationSpiConfig, type FormSubmissionModerationSpiNamespaceConfig, type FormSubmissionSpiConfig, type FormSubmissionSpiExtensionConfig, type FormTemplate, type FormTemplateTemplateTypeOptionsOneOf, Format, type FormatWithLiterals, type FormsConfig, type FormsPermissions, type FormsSPIConfig, type FormsSchemaNamespaceConfig, type FormsSpamSubmissionsNamespaceConfig, type FormsSubmissionsExtensionNamespaceConfig, type FormsSubmissionsNamespaceConfig, type ForwardAction, type ForwardActionActionOneOf, type FreeOptionConfiguration, type FreePricingTypeConfiguration, type FreeTrialConfiguration, type FunctionAssistantToolProviderConfig, type FunctionDefinition, type FunctionEcomDiscountTriggerEligibilityProviderConfig, type FunctionParameter, type FunctionParameterArrayItems, type FunctionParameterArrayItemsArrayDataOneOf, type FunctionParameterItems, type FunctionParameterSelectedDataTypeOneOf, type FunctionRecipe, type FunctionResources, type FunctionReturnType, type FunctionReturnTypeSelectedDataTypeOneOf, type FunctionsShopPriceSpiConfig, type GIF, type GIFData, GIFType, type GIFTypeWithLiterals, type GalleryData, type GalleryOptions, type GalleryOptionsLayout, type GalleryOptionsThumbnails, type Gap, type GbpFeatureConfig, type GenericHookConfig, type GenericHooksConfig, type GenericOptions, type GetComponentsCatalogResponse, type GiftCardProviderConfig, type Gradient, GradientType, type GradientTypeWithLiterals, type GridAppFilesTransformerConfig, type Group, GroupType, type GroupTypeWithLiterals, type GroupedContent, type HTMLData, type HTMLDataDataOneOf, HTMLDataSource, type HTMLDataSourceWithLiterals, HTTPMethod, type HTTPMethodWithLiterals, type Header, type HeaderConfig, type HeaderConfigHeaderConfigOneOf, type HeaderConfigOneOf, type HeaderWidgetConfig, type HeadingData, type HeadlessOAuth, type Height, HeightMode, type HeightModeWithLiterals, type HelpArticle, type HelpArticleArticleTypeOneOf, type HelpResources, type HiddenOptions, HookType, type HookTypeWithLiterals, Horizontal, HorizontalDocking, type HorizontalDockingWithLiterals, type HorizontalWithLiterals, HostContainerId, type HostContainerIdWithLiterals, type HostedComponent, type HostedPage, type IDPConnectionConfig, type Icon, type IconDataOneOf, IconType, type IconTypeWithLiterals, type Illustration, type IllustrationIllustrationOneOf, type Image, ImageCategoryTypes, type ImageCategoryTypesWithLiterals, type ImageConfig, type ImageData, type ImageDataStyles, type ImageDataStylesBorder, ImageFit, type ImageFitWithLiterals, type ImageOverrides, ImagePosition, ImagePositionPosition, type ImagePositionPositionWithLiterals, type ImagePositionWithLiterals, ImageScalingScaling, type ImageScalingScalingWithLiterals, ImageShape, type ImageShapeWithLiterals, type ImageStyles, ImageStylesPosition, type ImageStylesPositionWithLiterals, ImageType, type ImageTypeWithLiterals, type Implementation, type ImplementedMethods, ImportanceLevel, type ImportanceLevelWithLiterals, type InPersonOptions, Indentation, type IndentationWithLiterals, type Index, type IndexField, InitDirection, type InitDirectionWithLiterals, InitialExpandedItems, type InitialExpandedItemsWithLiterals, type InitialPosition, type InitialSizeSetting, type InitialSizeSettingSelectedSizingTypeOneOf, type Initiator, type InitiatorDataOneOf, InitiatorType, type InitiatorTypeWithLiterals, type InlineElement, type Input, type InputConfiguration, type InputField, InputFieldInputType, type InputFieldInputTypeOptionsOneOf, type InputFieldInputTypeWithLiterals, type InputField_Number, type InputField_NumberComponentTypeOptionsOneOf, InputType, type InputTypeWithLiterals, type InputWithPlaceholder, InstallPage, type InstallPageWithLiterals, type InstallationInfo, type InstallationInfoTargetContainerOneOf, type InstallationSettings, type InstallationSettingsOptionsOneOf, type IntListOptions, type IntegerType, type IntegrationOptions, type IntegrationOptionsOptionsOneOf, IntegrationType, type IntegrationTypeWithLiterals, Intent, type IntentWithLiterals, type Interactions, type InterfaceConfiguration, type InterfaceConfigurationOfTypeOneOf, InterfaceConfigurationType, type InterfaceConfigurationTypeWithLiterals, type InternalComponentMetadata, type InventorySpiConfig, type InvoicesActionsComponentData, type InvoicesConfig, type IsStretched, type Item, type ItemDataOneOf, type ItemImage, type ItemLayout, type ItemLayoutItemOneOf, type ItemPath, type ItemSelection, type ItemSelectionOptions, type ItemStyle, type ItemThumbnail, type ItemThumbnailOptionsOneOf, ItemType, type ItemTypeWithLiterals, type ItemVideo, type ItemsGroup, type ItemsSelectionProviderConfig, type KeepAliveConfig, type Keywords, type LanguageTagListOptions, Layout, type LayoutCellData, type LayoutData, type LayoutDataBackground, type LayoutDataBackgroundImage, LayoutDataBackgroundType, type LayoutDataBackgroundTypeWithLiterals, LayoutDataImagePosition, type LayoutDataImagePositionWithLiterals, LayoutMode, type LayoutModeWithLiterals, LayoutType, type LayoutTypeWithLiterals, type LayoutWithLiterals, type LearnMore, type LeftPanel, type LeftPanelWidgetConfig, type LegacyBackOfficeExtensionWidget, type LegacyBackOfficeExtensionWidgetAssetOneOf, type LegacyBackOfficeMenuItem, type LegacyBackOfficeMenuItemAction, type LegendsSpiConfig, Level, type LevelWithLiterals, type LightboxCloseOptions, type LightboxContent, type LightboxEditorSettings, type LightboxOptions, type LimiterField, type LineItemsEnricherConfig, LineStyle, type LineStyleWithLiterals, type Link, type LinkData, type LinkPreviewData, type LinkPreviewDataStyles, type LinkSuffix, LinkTarget, type LinkTargetWithLiterals, LinkType, type LinkTypeWithLiterals, ListEventFromCalendars, type ListEventFromCalendarsWithLiterals, type ListItem, ListStyle, type ListStyleWithLiterals, type ListValue, type LiveSiteActionDeeplink, type LocalDeliveryComponentData, type Location, type LocationLocationInfoOneOf, LockableOperation, type LockableOperationWithLiterals, type Logo, type Logos, type Main, type MainPresets, type MainPropsData, type ManagedMenuEntities, MandatoryField, type MandatoryFieldWithLiterals, type MapData, type MapSettings, MapType, type MapTypeWithLiterals, type Margin, type Margins, type MarketplaceProviderConfig, type MarketplaceSPIConfig, type MaskImage, Maturity, type MaturityWithLiterals, MeasurementSystem, type MeasurementSystemWithLiterals, type Media, type MediaCapabilities, type MediaItem, type MediaItemMediaOneOf, MediaMimeType, type MediaMimeTypeWithLiterals, type MediaSettings, type MembershipsSPIConfig, type MentionData, type MenuAction, type MenuActionActionOneOf, type MenuDropdown, type MenuLink, type MenuSlot, type MessageContainingTranslatables, type Metadata, Method, type MethodWithLiterals, type MinMaxRange, MobileApplication, type MobileApplicationWithLiterals, type MobileFeedChannel, type MobileFeedContentKeys, type MobilePushChannel, type MobilePushChannelConfig, type MobilePushContentKeys, type ModalParams, type Monitoring, type MonitoringOptionsOneOf, MonitoringType, type MonitoringTypeWithLiterals, MpaNavigation, type MpaNavigationWithLiterals, type MultiReferenceOptions, type MultiServiceBookingPolicyProviderConfig, type MultilineAddress, type MultilineAddressValidation, type MultilingualTranslationSchema, type MultipleDashboardsComponentData, type NPMPackage, type NPMPackageEntry, type Namespace, type NamespaceConfig, type NamespaceConfigV2, NativeStateType, type NativeStateTypeWithLiterals, type NavigateToPageAction, NavigationType, type NavigationTypeWithLiterals, type NestedWidgets, type Node, type NodeDataOneOf, type NodeStyle, NodeType, type NodeTypeWithLiterals, type NotificationChannels, type NotificationContent, type NotificationPreferencesFilterConfig, type NotificationTopic, NotificationTopicState, type NotificationTopicStateWithLiterals, NotificationTopicType, type NotificationTopicTypeWithLiterals, type Npm, NullValue, type NullValueWithLiterals, NumberComponentType, type NumberComponentTypeWithLiterals, type NumberInput, NumberOfColumns, type NumberOfColumnsWithLiterals, type NumberType, OAuthAppType, type OAuthAppTypeWithLiterals, OAuthTechnologies, type OAuthTechnologiesWithLiterals, type ObjectField, type ObjectFieldTypeOptionsOneOf, type ObjectOptions, type ObjectType, type Oembed, type Offset, type OffsetValueOneOf, type OneTimeOptionConfiguration, type OneTimePricingTypeConfiguration, type OpenApiOptions, type OpenComponent, type OpenModalAction, type OperationExecutorConfig, Operator, type OperatorConfiguration, OperatorEnumOperator, type OperatorEnumOperatorWithLiterals, type OperatorWithLiterals, type Option, type OptionDesign, type OptionLayout, type OrCondition, Order, type OrderValue, type OrderWithLiterals, type OrderedListData, Orientation, type OrientationWithLiterals, Origin, type OriginInfo, type OriginWithLiterals, type OutOfIframeData, type Output, OverrideEntityType, type OverrideEntityTypeWithLiterals, type OverrideTemplateFields, type PDFSettings, PDFSettingsViewMode, type PDFSettingsViewModeWithLiterals, type PackageDimension, type PackageType, type Padding, type Page, type PageAnchor, type PageComponentData, type PageContent, type PageDashboardApplicationComponent, type PageEditorSettings, type PageInstallation, type PageInstallationSettings, type PageNavigationOptions, type PageOptions, type PageOutOfIframeComponentData, type PageReplace, type PageReplaceOptions, type PageReplaceOptionsOptionsOneOf, type PageWidgetAsContent, type PagesConfig, PaginationMode, type PaginationModeWithLiterals, type Panel, type PanelAction, type PanelActionSelectedPanelTypeOneOf, PanelContentType, type PanelContentTypeWithLiterals, PanelMode, type PanelModeWithLiterals, type PanelSelectedContentTypeOneOf, type PanelSize, PanelType, type PanelTypeWithLiterals, type PanoramaOptions, type ParagraphData, type Param, type Parameter, ParameterType, type ParameterTypeWithLiterals, type ParameterValueDefinitionDetailsOneOf, PartialPaymentRestriction, type PartialPaymentRestrictionWithLiterals, ParticipantType, type ParticipantTypeWithLiterals, type Password, type PatternsWizard, type Payment, PaymentComponentType, type PaymentComponentTypeOptionsOneOf, type PaymentComponentTypeWithLiterals, type PaymentDateModification, type PaymentInput, type PaymentMethod, type PaymentMethodMethodOneOf, type PaymentServiceProviderConfig, type PaymentServiceProviderCredentialsField, type PaymentServiceProviderCredentialsFieldFieldOneOf, type PaymentSettingsSPIConfig, type PaymentType, type PaymentsGatewayComponentData, type PayoutsProviderConfig, type PerkValues, type PerksConfiguration, type PermissionOverrides, type Permissions, type PhoneConstraints, type PhoneInfo, PhoneInfoTag, type PhoneInfoTagWithLiterals, type PhoneInput, type PhoneOptions, type PingNotificationComponentData, type PingSettingsGroupComponentData, PingSettingsGroupComponentDataState, type PingSettingsGroupComponentDataStateWithLiterals, type PlaceHolder, Placement, type PlacementWithLiterals, type PlanDuration, type PlanFormBenefitsSection, type PlanFormCustomPricingRulesSection, type PlanFormCustomSection, PlanFormDefaultSection, type PlanFormDefaultSectionWithLiterals, type PlanFormDurationSection, type PlanFormInfoSection, type PlanFormInitialValue, type PlanFormPagePermissionsSection, type PlanFormPlanSettingsSection, type PlanFormPreviewSection, type PlanFormPricingAndDurationSection, type PlanFormPricingAndDurationSectionDurationInputConfiguration, type PlanFormPricingAndDurationSectionInputConfiguration, PlanFormPricingOption, type PlanFormPricingOptionWithLiterals, type PlanFormPricingSection, type PlanFormPricingSectionInputConfiguration, type PlanFormPricingSectionSetupFeeConfiguration, PlanFormPricingType, type PlanFormPricingTypeWithLiterals, type PlanFormSection, type PlanFormSectionSectionOneOf, type PlanFormStartDateRulesSection, type PlanFormTypeMetadata, PlanPeriodUnit, type PlanPeriodUnitWithLiterals, type PlanPriceData, type PlanPricing, type PlanPricingPricingModelOneOf, type PlanSettingsRowConfiguration, type PlatformHeaderConfig, type PlatfromComponentData, type PlaybackOptions, type PluginConfig, type PluginContainerData, PluginContainerDataAlignment, type PluginContainerDataAlignmentWithLiterals, type PluginContainerDataHeight, type PluginContainerDataWidth, type PluginContainerDataWidthDataOneOf, type PluginInstallationSettings, PluginInterface, type PluginInterfaceWithLiterals, type PluginMarketData, type PluginPlacement, type PointsAdjustmentProviderConfig, type PolicyConfig, type PolicyPermissionOverrides, type Poll, type PollData, type PollDataLayout, type PollDesign, type PollDesignBackground, type PollDesignBackgroundBackgroundOneOf, PollDesignBackgroundType, type PollDesignBackgroundTypeWithLiterals, type PollLayout, PollLayoutDirection, type PollLayoutDirectionWithLiterals, PollLayoutType, type PollLayoutTypeWithLiterals, type PollOption, type PollSettings, type PosProviderSettingsServicePluginConfig, type Position, type PostLoginConfig, type PreRegisterConfig, type PredefinedExpectedInput, type PredefinedExpectedInputConfiguration, type PredefinedExpectedInputConfigurationTypeOneOf, type PredefinedLabel, type PredefinedValues, type PremiumActionConfig, type Preset, type PresetEditorPresence, type PresetElementDefaults, type PresetInfo, type PresetInnerElementDefaults, type PresetItem, type PresetSize, type PresetStyleDefaults, type PresetStyleItemOverrides, type PresetStyleOverrides, type PreviewCardPlaceholders, type PreviewConfiguration, type PreviewFields, type PriceSPIConfig, PriceType, type PriceTypeWithLiterals, type PricingData, type PricingPlansFormConfiguration, type PricingRecurring, type Primitive, PrimitiveType, type PrimitiveTypeWithLiterals, type Product, type ProductCatalogProviderConfig, type ProductCheckboxGroup, type ProductCheckboxGroupOption, type ProductPriceOptionsOneOf, type ProductRestrictionsConfig, ProductType, type ProductTypeWithLiterals, type ProductsPathsConfig, type Project, type PropertiesType, PropertiesTypeEnum, type PropertiesTypeEnumWithLiterals, type PropertiesTypePropertiesTypeOptionsOneOf, type ProposalEditorProviderConfig, type Provider, type ProviderAccountServicePluginConfig, type ProviderConfig, type ProviderConfigMessage, type ProviderFilterOptions, type ProviderIdentifier, type ProviderSuppressionServicePluginConfig, type PurchaseValidationsConfig, type QuantityLimit, type RadioButtonLabeled, type RadioGroup, type RadioGroupOption, type RangeConstraints, type RateLimit, type RatingInput, type ReactElementContainer, type ReactElementContainerSelectedContainerTypeOneOf, type RecipientFilter, type RecipientFilterDataOneOf, RecipientFilterType, type RecipientFilterTypeWithLiterals, RecipientType, type RecipientTypeWithLiterals, type RecommendationsProviderConfig, type RecurringOptionConfiguration, type RecurringPricingTypeConfiguration, type RecurringPricingTypeConfigurationFreeTrialConfiguration, type RedirectOptions, type RefElement, type RefInnerElementDefaults, type ReferenceOptions, Region, RegionScopeScope, type RegionScopeScopeWithLiterals, RegionType, type RegionTypeWithLiterals, type RegionWithLiterals, type Rel, type RenderOverrides, type RepeatedFieldOverrideConfig, type ReplaceableOptions, ReplacementType, type ReplacementTypeWithLiterals, type ReplacingOptions, RequiredIndicator, RequiredIndicatorPlacement, type RequiredIndicatorPlacementWithLiterals, type RequiredIndicatorProperties, type RequiredIndicatorWithLiterals, type RequiredOptions, type ResetButton, ResizeDirection, type ResizeDirectionWithLiterals, Resizing, type ResizingWithLiterals, type Resource, type Resources, ResponsivenessBehaviour, type ResponsivenessBehaviourWithLiterals, type ResponsysEmail, type RestaurantsPOSComponentData, RestrictedOperation, type RestrictedOperationWithLiterals, type Restriction, RestrictionLevel, type RestrictionLevelWithLiterals, type Restrictions, type RestrictionsConfig, type ReviewsEntityCatalogProviderConfig, type ReviewsProductCatalogProviderConfig, type RewardProviderConfig, type RibbonStyles, type RichContent, type RichContentOptions, type RichText, RichTextAbilities, type RichTextAbilitiesWithLiterals, type RichTextWithIllustrationVertical, type RouterPage, type Rule, type SDKExports, type SDKExportsNpm, Scaling, type ScalingWithLiterals, type Scheduling, SchedulingComponentType, type SchedulingComponentTypeOptionsOneOf, type SchedulingComponentTypeWithLiterals, type Schema, type SchemaConfig, type SchemaField, SchemaFieldExposure, type SchemaFieldExposureWithLiterals, SchemaFieldFieldType, type SchemaFieldFieldTypeWithLiterals, type SchemaFieldType, type SchemaFieldTypeFieldTypeOneOf, type SchemaGroup, type SchemaGroupElement, type SchemaKey, SchemaScope, type SchemaScopeWithLiterals, Scope, ScopeType, type ScopeTypeWithLiterals, type ScopeWithLiterals, ScriptType, type ScriptTypeWithLiterals, type SdkDefinition, type SearchConfig, type SearchField, type SearchParams, type SecondLevelCategory, type Section, type SentryOptions, type SeoKeywordsSuggestionsSPIConfig, type ServiceAction, type ServiceAvailabilityPolicyProviderConfig, type ServicePermissionOverrides, type ServiceTagsConfig, type ServiceTrigger, type ServicesDropdown, type ServicesDropdownOption, type Settings, type SettingsPanel, type SettingsPermissions, type SettingsUrl, type SetupFeeConfiguration, type ShapeData, type ShapeDataStyles, type SharedPlatformMobilePushConfig, type ShippingLabelCarrierSpiConfig, type ShippingProviderConfig, type ShippingRatesConfig, type ShorthandGroupBackground, type ShoutoutEmail, type Sidebar, type SidebarChildItem, type SidebarChildItemItemOneOf, type SidebarConfig, type SidebarConfigOneOf, SidebarDataType, type SidebarDataTypeWithLiterals, SidebarEntityType, type SidebarEntityTypeWithLiterals, type SidebarRootItem, type SidebarRootItemItemOneOf, type SidebarSecondLevelChildItem, type SidebarSecondLevelChildItemItemOneOf, type SidebarWidget, type SidebarWidgetConfig, type SidebarWidgetConfigOneOf, type Signature, type Simple, type SimpleContainer, type SimpleField, SimpleType, type SimpleTypeWithLiterals, type SingleContent, type SingleKeyCondition, type SiteConfig, type SiteContributorsData, type SiteMapProviderConfig, type SiteMemberData, SiteMembersSsrCaching, type SiteMembersSsrCachingWithLiterals, type SiteMigrationSpiConfig, type SiteWidgetSlot, type Size, SizingType, type SizingTypeWithLiterals, type SliderLabeled, type Slot, type SlotData, type SlotDataSlotTypeOneOf, SlotDataType, type SlotDataTypeWithLiterals, type SlotParams, type SmsActionMessage, type SmsChannel, type SmsContentKeys, type SmsMessageConfig, type SmsSmsMessageConfig, type SnippetSolutionData, type SocialMarketingDesignSPIConfig, type SocialMarketingDesignsProviderConfig, type Source, type SourceOptionsOneOf, SourceType, type SourceTypeWithLiterals, type SpamSubmissionPermissions, type Spi, type SpiBaseUri, type Spoiler, type SpoilerData, type StaffSortingProviderConfig, type StartDateLimitsSPIConfig, type StartDateRulesSPIConfig, type State, StaticContainer, type StaticContainerWithLiterals, type StaticContent, type StaticFileComponentData, type StaticFilterOption, type StaticFilterOptions, Status, type StatusWithLiterals, type Step, type Stop, StorageDomain, type StorageDomainWithLiterals, StorageType, type StorageTypeWithLiterals, StringComponentType, type StringComponentTypeWithLiterals, type StringListOptions, type StringOption, type StringType, type StringTypeFormatOptionsOneOf, type StudioComponentData, type StudioWidgetComponentData, type StudioWidgetVariation, type StyleAction, type StyleItem, type StyleItemDefaults, type StyleItemOverrides, type StyleItemSelectedCssPropertyTypeOneOf, type StyleItemSelectedCssVariableTypeOneOf, type StyleItemSelectedItemTypeOneOf, StyleType, type StyleTypeWithLiterals, type Styles, type StylesBackground, type StylesBorder, StylesPosition, type StylesPositionWithLiterals, type SubPage, type SubmissionPermissions, type SubmitSettings, type SubmitSettingsSubmitSuccessActionOptionsOneOf, SubmitSuccessAction, type SubmitSuccessActionWithLiterals, type SubscriptionInfo, SyncToCalendar, type SyncToCalendarWithLiterals, type SyncedProjectsProviderConfig, type Tab, type TableCellData, type TableData, Tag, type TagOverrides, type TagOverridesEntry, type TagWithLiterals, type Tags, type TagsOption, Target, type TargetElement, type TargetWithLiterals, type TaskScope, type TaxCalculationConfig, type TaxCalculatorSpiConfig, type TaxCountriesConfig, type TaxExemptGroup, type TaxExemptGroupsProviderConfig, type TaxGroupsProviderConfig, type TaxIdValidatorConfig, type TaxTypesConfig, type TaxationCategoryProvider, type TemplateContainer, TemplateDefaultColor, type TemplateDefaultColorWithLiterals, TemplateType, type TemplateTypeWithLiterals, type TermsAndConditionsConfiguration, type TermsModalConfiguration, TestEnum, type TestEnumWithLiterals, type Text, TextAlignment, type TextAlignmentWithLiterals, type TextData, type TextDecoration, type TextEnum, type TextGroup, type TextInput, TextInputDisplayType, type TextInputDisplayTypeWithLiterals, type TextInputLabeled, type TextInputSettings, type TextNodeStyle, type TextStyle, type TextStyleDefaultColorOneOf, type TextToSpeechActionMessage, type TextWithSuffix, type TextWithSuffixSuffixOneOf, type TextWithTooltip, type ThankYouMessageOptions, type ThankYouPageConfiguration, type ThankYouPageInputConfig, type ThankYouPageModalConfiguration, type ThankYouPagePreviewConfiguration, type ThankYouPageRedirectsConfiguration, type ThumbnailData, ThumbnailType, type ThumbnailTypeWithLiterals, type Thumbnails, ThumbnailsAlignment, type ThumbnailsAlignmentWithLiterals, ThumbnailsSize, type ThumbnailsSizeWithLiterals, type TicketReservationsSpiConfig, type TimeConstraintConfiguration, type TimeConstraintConfigurationValueConstraintsOneOf, TimeConstraintType, type TimeConstraintTypeWithLiterals, type TimeInput, type TocData, type ToggleLabeled, type ToolPanelConfig, type TooltipSuffix, type TopologyComponentData, type TranslatedMessageWithIdRepeated, type TranslatedMessageWithUniqueFieldRepeated, type TranslationResources, Trigger, type TriggerFieldOverride, type TriggerFilter, type TriggerOverride, type TriggerProviderSPIConfig, type TriggerWithLiterals, Type, type TypeWithLiterals, type TypedDynamicParam, TypedDynamicParamType, type TypedDynamicParamTypeWithLiterals, type UnifiedLightbox, type UnifiedPage, type UnifiedPageEditorSettings, UnitType, type UnitTypeWithLiterals, type Until, type UpdateComponentCatalogRequest, UpdateMode, type UpdateModeWithLiterals, UploadFileFormat, UploadFileFormatEnumUploadFileFormat, type UploadFileFormatEnumUploadFileFormatWithLiterals, type UploadFileFormatWithLiterals, type UpstreamWixCommonImage, type Url, type UrlData, type UrlMapperProviderConfig, type UrlParam, type UserNotification, type UserNotificationData, type UserNotificationDataContext, type UserNotificationDataDeeplink, type UserNotificationDataDeeplinkOfOneOf, type UserNotificationDataInitiator, type UserNotificationDataInitiatorDataOneOf, type UserNotificationDataRecipientFilter, type UserNotificationDataRecipientFilterDataOneOf, UserNotificationDataRecipientFilterType, type UserNotificationDataRecipientFilterTypeWithLiterals, UserNotificationDataType, type UserNotificationDataTypeWithLiterals, type V1Image, type V1ImplementedMethods, type V1Link, type V1LinkDataOneOf, type V1Metadata, type V1Region, type V1SchemaField, V1Scope, type V1ScopeWithLiterals, type V1TextStyle, type V1ValidationTarget, type V2CommunicationChannelConfiguration, type V2Condition, type V2Field, type V2FieldFieldTypeOptionsOneOf, type V2ImplementedMethods, type V2Rule, type V2TriggerOverride, type ValidationMessages, type ValidationTarget, ValidationTargetMethod, type ValidationTargetMethodWithLiterals, type ValidationsSPIConfig, ValueConstraintType, type ValueConstraintTypeWithLiterals, type VectorArt, VectorArtCategoryTypes, type VectorArtCategoryTypesWithLiterals, type VectorArtOverrides, type VeloActionConfig, type VeloCustomCss, type VeloPublishPipelineTaskProviderConfig, type VelocityEmail, Vertical, VerticalAlignment, VerticalAlignmentAlignment, type VerticalAlignmentAlignmentWithLiterals, type VerticalAlignmentWithLiterals, VerticalDocking, type VerticalDockingWithLiterals, type VerticalWithLiterals, VibeActionType, type VibeActionTypeWithLiterals, type VibeCustomPanelAction, type VibeDashboardAction, type Video, VideoCategoryTypes, type VideoCategoryTypesWithLiterals, type VideoConferenceOptions, type VideoData, type VideoOverrides, ViewMode, type ViewModeWithLiterals, ViewRole, type ViewRoleWithLiterals, type ViewerRouterSPIConfig, type ViewerService, type ViewerServiceAssets, type ViewerServiceModuleConfiguration, type VisibleState, type VoiceChannel, type VoiceContentKeys, VoteRole, type VoteRoleWithLiterals, type WebComponentData, WebComponentDataElementType, type WebComponentDataElementTypeWithLiterals, type WebFeedChannel, type WebFeedContentKeys, type WebhookComponentData, type WidgetAsContent, type WidgetBehavior, type WidgetComponent, type WidgetComponentData, type WidgetComponentOptions, type WidgetData, type WidgetDetails, type WidgetDisplay, WidgetHorizontal, type WidgetHorizontalWithLiterals, type WidgetInstallation, type WidgetInstallationSettings, type WidgetInstallationSettingsTargetContainerOneOf, type WidgetOutOfIframeComponentData, type WidgetPluginComponentData, type WidgetSize, type WidgetSizeHeight, type WidgetSizeWidth, type WidgetSlot, WidgetVertical, type WidgetVerticalWithLiterals, WidgetWidthType, type WidgetWidthTypeWithLiterals, Width, WidthType, type WidthTypeWithLiterals, type WidthWithLiterals, type WixAiGatewaySpiConfig, type WixApiOptions, WixCodePublishTaskName, type WixCodePublishTaskNameWithLiterals, type WixCommonImage, type WixDependency, type WixFile, WixFileComponentType, type WixFileComponentTypeOptionsOneOf, type WixFileComponentTypeWithLiterals, type WixOfferingComponentData, type WixOfferingComponentDataOfferingOneOf, type WixPagesDomainMapping, type WixUserData, type WixUsersData, type WixVibeCodingInstructions, type WixVibeComponent, type WixelSPIConfig, type WorkerComponentData, type WritingMode, WritingModeValue, type WritingModeValueWithLiterals, type _Array, type _ArrayComponentTypeOptionsOneOf, type _Boolean, type _BooleanComponentTypeOptionsOneOf, type _Date, type _Function, type _Number, type _Object, type _String, type _StringComponentTypeOptionsOneOf, agentMakerApprovalProvider, aiAssistant, aiAssistantAction, alertEnricher, analyticsProductCatalog, appConfig, appRouter, applicationAutomation, applicationProfile, audienceProvider, automationTemplate, automationTrigger, automationsActionProvider, automationsTriggerProvider, automationsVeloActionProvider, availabilityTimeSlotsConfigurationProvider, backOfficeCustomization, backOfficeExtension, backOfficeExtensionContainer, backOfficeExtensionMenuItem, backOfficeExtensionWidget, backOfficeExternalUrl, backOfficeModal, backOfficePage, backOfficeRestrictedCustomization, backOfficeSidebarCategory, backOfficeWidget, backendWorker, bassValidateCancelAction, benefitProgramsPolicyProvider, billingOperation, billingSettings, billingTaxIdValidator, blogPaywallProvider, bookingActionUrlsProvider, bookingAutomationsConfiguration, bookingPolicyProvider, bookingsExternalCalendarProvider, bookingsPlatformConfiguration, bookingsPricingProvider, bookingsResourceTypesProvider, bookingsValidationProvider, broadcastList, browserStorage, calendarConferencingProvider, calendarEventTypeProvider, calendarEventValidationProvider, clientSideService, codePackage, commentsContextProvider, commentsFilterProvider, commentsModerationProvider, communicationChannel, communicationChannelProvider, componentEnricherProvider, componentReferenceDataProvider, componentsTranslationsAdditionalFieldsProvider, componentsValidatorProvider, contactLabels, contactNotification, contactsSegmentsV2FilterProvider, crossSell, customElementWidget, customTableReservationsProvider, dashboard, dashboardApplication, dashboardPlatform, dataComponent, dataExtensions, dcConfig, dealerAdaptiveComponentProvider, dealerExternalFilterProvider, deploymentPipelineProvider, devCenterTestingComponent, ecomAdditionalFees, ecomCatalog, ecomCheckoutContent, ecomCustomScope, ecomDefaultTaxationCategory, ecomDiscounts, ecomDiscountsTrigger, ecomDropshippingProvider, ecomForms, ecomInventory, ecomLineItemsEnricher, ecomMemberships, ecomPaymentSettings, ecomRecommendationsProvider, ecomShippingRates, ecomTaxCalculatorSpi, ecomValidations, editorAddon, editorAppPreviewsPoc, editorContextProvider, editorFunctionLibrary, editorReactComponent, embeddedScript, eventTimeSlotsConfigurationProvider, eventsEventBadges, eventsTicketReservations, extension, externalDatabaseProvider, fictionalShippingProvider, formSchemaDynamicValues, formSubmissionModeration, formTemplate, formsExtensionProvider, formsSchemaProvider, formsSpamSubmissionReportsProvider, formsSpamSubmissionsProvider, formsSubmissionsExtensionProvider, formsSubmissionsProvider, functionEcomDiscountTriggerEligibilityProvider, functionExtension, functionRecipe, functionsAssistantTools, functionsShopPriceProvider, genericHooks, giftCardsProvider, googleBusinessProfileFeatureProvider, gridAppFilesTransformer, headlessOauth, identityAuthenticator, identityFactor, identityIdpConnector, identityPostLogin, identityPreRegistration, invoicesActions, invoicesProvider, itemsSelectionProvider, legendsPersonaConfiguration, localDelivery, loyaltyCustomRewards, loyaltyCustomRewardsV2, loyaltyPointsAdjustment, monitoring, multiServiceBookingPolicyProvider, multilingualContentProvider, multilingualTranslationSchema, multilingualTranslationSchemaGroup, multipleDashboards, notificationContent, notificationPreferencesFilterProvider, notificationTopic, page, pageOutOfIframe, panel, papiProvider, partnersPayouts, patternsWizard, paymentProvider, paymentsDisputeServicePlugin, paymentsGateway, pingSettingsGroup, pingUouNotification, pingUserNotification, platform, portfolioSyncedProjectsProvider, premiumAction, premiumCustomCharges, premiumProductsPaths, premiumPurchaseValidations, pricingPlanStartDateLimits, pricingPlanStartDateRules, pricingPlansFees, pricingPlansFormConfiguration, pricingPlansPrice, proposalEditorProvider, providerSuppressionServicePlugin, reserved, restaurantsPos, restaurantsPosProviderSettingsServicePlugin, sdkDefinition, sdkExports, seoKeywordsSuggestions, serviceTagsConfiguration, shippingLabelCarrier, shubMarketplaceProvider, siteMapInfoProvider, siteMigration, siteWidgetSlot, smsActionMessage, snippetSolution, socialMarketingDesign, socialMarketingDesignsProvider, staffSortingProvider, staticFile, storesProductRestrictions, studio, studioWidget, suppliersHubMarketplace, taxCalculationProvider, taxExemptGroupsProvider, taxGroupsProvider, textToSpeechActionMessage, topology, unifiedLightbox, unifiedPage, urlMapperProvider, userNotification, veloCustomCss, veloPublishPipelineTaskProvider, viewerDynamicSiteStructureProvider, viewerService, web, webhook, widget, widgetOutOfIframe, widgetPlugin, wixAiGatewayCallback, wixHostingAppDeploymentProvider, wixHostingAppEnvironmentProvider, wixOffering, wixPaymentsProviderAccountServicePlugin, wixReviewsEntityCatalog, wixReviewsProductCatalog, wixVibeCodingInstructions, wixVibeComponent, wixel, wixelBinding, wixelViewerRouterProvider, worker };
|
|
26579
|
+
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 ContextReferences, 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 };
|