@wix/auto_sdk_data-extension-schema_schemas 1.0.47 → 1.0.49
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/cjs/index.d.ts +1 -1
- package/build/cjs/index.js +23 -0
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +344 -27
- package/build/cjs/index.typings.js +23 -0
- package/build/cjs/index.typings.js.map +1 -1
- package/build/es/index.d.mts +1 -1
- package/build/es/index.mjs +22 -0
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +344 -27
- package/build/es/index.typings.mjs +22 -0
- package/build/es/index.typings.mjs.map +1 -1
- package/build/internal/cjs/index.d.ts +1 -1
- package/build/internal/cjs/index.js +23 -0
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +344 -27
- package/build/internal/cjs/index.typings.js +23 -0
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/es/index.d.mts +1 -1
- package/build/internal/es/index.mjs +22 -0
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +344 -27
- package/build/internal/es/index.typings.mjs +22 -0
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -5194,7 +5194,7 @@ interface ButtonData {
|
|
|
5194
5194
|
/** Button link details. */
|
|
5195
5195
|
link?: V1Link;
|
|
5196
5196
|
}
|
|
5197
|
-
interface
|
|
5197
|
+
interface StylesBorder {
|
|
5198
5198
|
/**
|
|
5199
5199
|
* Deprecated: Use `borderWidth` in `styles` instead.
|
|
5200
5200
|
* @deprecated
|
|
@@ -5307,7 +5307,7 @@ interface Styles {
|
|
|
5307
5307
|
* Deprecated: Use `borderWidth` and `borderRadius` instead.
|
|
5308
5308
|
* @deprecated
|
|
5309
5309
|
*/
|
|
5310
|
-
border?:
|
|
5310
|
+
border?: StylesBorder;
|
|
5311
5311
|
/**
|
|
5312
5312
|
* Deprecated: Use `textColor`, `borderColor` and `backgroundColor` instead.
|
|
5313
5313
|
* @deprecated
|
|
@@ -5783,7 +5783,7 @@ interface ImageData {
|
|
|
5783
5783
|
/** Styling for the image. */
|
|
5784
5784
|
styles?: ImageDataStyles;
|
|
5785
5785
|
}
|
|
5786
|
-
interface
|
|
5786
|
+
interface ImageDataStylesBorder {
|
|
5787
5787
|
/** Border width in pixels. */
|
|
5788
5788
|
width?: number | null;
|
|
5789
5789
|
/**
|
|
@@ -5796,7 +5796,7 @@ interface StylesBorder {
|
|
|
5796
5796
|
}
|
|
5797
5797
|
interface ImageDataStyles {
|
|
5798
5798
|
/** Border attributes. */
|
|
5799
|
-
border?:
|
|
5799
|
+
border?: ImageDataStylesBorder;
|
|
5800
5800
|
}
|
|
5801
5801
|
interface LinkPreviewData {
|
|
5802
5802
|
/** Styling for the link preview's container. */
|
|
@@ -12571,20 +12571,10 @@ interface EditorElement {
|
|
|
12571
12571
|
* The Element is the first in line to affect the display, Preset and State are after it
|
|
12572
12572
|
*/
|
|
12573
12573
|
displayFilters?: DisplayFilters;
|
|
12574
|
+
/** Display groups for the element, used to group elements in the editor for better UX */
|
|
12575
|
+
displayGroups?: Record<string, DisplayGroupItem>;
|
|
12574
12576
|
}
|
|
12575
|
-
interface StyleItem extends StyleItemSelectedCssPropertyTypeOneOf, StyleItemSelectedCssVariableTypeOneOf {
|
|
12576
|
-
/** Additional options to refine the filter variable */
|
|
12577
|
-
filter?: Filter;
|
|
12578
|
-
/** Additional options to refine the backdropFilter variable */
|
|
12579
|
-
backdropFilter?: BackdropFilter;
|
|
12580
|
-
/** Additional options to refine the display variable */
|
|
12581
|
-
display?: Display;
|
|
12582
|
-
/** Additional options to refine the writingMode variable */
|
|
12583
|
-
writingMode?: WritingMode;
|
|
12584
|
-
/** Additional options to refine the customEnum style item */
|
|
12585
|
-
customEnum?: CustomEnum;
|
|
12586
|
-
/** Additional options to refine the number style item */
|
|
12587
|
-
number?: CssNumber;
|
|
12577
|
+
interface StyleItem extends StyleItemSelectedItemTypeOneOf, StyleItemSelectedCssPropertyTypeOneOf, StyleItemSelectedCssVariableTypeOneOf {
|
|
12588
12578
|
/**
|
|
12589
12579
|
* DEPRECATED: use styleType instead
|
|
12590
12580
|
* @deprecated DEPRECATED: use styleType instead
|
|
@@ -12599,6 +12589,18 @@ interface StyleItem extends StyleItemSelectedCssPropertyTypeOneOf, StyleItemSele
|
|
|
12599
12589
|
* @targetRemovalDate 2025-08-10
|
|
12600
12590
|
*/
|
|
12601
12591
|
cssVariableType?: CssVariableTypeEnumCssDataTypeWithLiterals;
|
|
12592
|
+
/** Additional options to refine the filter variable */
|
|
12593
|
+
filter?: Filter;
|
|
12594
|
+
/** Additional options to refine the backdropFilter variable */
|
|
12595
|
+
backdropFilter?: BackdropFilter;
|
|
12596
|
+
/** Additional options to refine the display variable */
|
|
12597
|
+
display?: Display;
|
|
12598
|
+
/** Additional options to refine the writingMode variable */
|
|
12599
|
+
writingMode?: WritingMode;
|
|
12600
|
+
/** Additional options to refine the customEnum style item */
|
|
12601
|
+
customEnum?: CustomEnum;
|
|
12602
|
+
/** Additional options to refine the number style item */
|
|
12603
|
+
number?: CssNumber;
|
|
12602
12604
|
/** The type of the style-item, used to define the type of the css property or css variable */
|
|
12603
12605
|
styleType?: StyleTypeWithLiterals;
|
|
12604
12606
|
/** The default value for the style-item when the component is in the "regular" state */
|
|
@@ -12614,6 +12616,23 @@ interface StyleItem extends StyleItemSelectedCssPropertyTypeOneOf, StyleItemSele
|
|
|
12614
12616
|
cssCustomProperty?: boolean | null;
|
|
12615
12617
|
}
|
|
12616
12618
|
/** @oneof */
|
|
12619
|
+
interface StyleItemSelectedItemTypeOneOf {
|
|
12620
|
+
/**
|
|
12621
|
+
* DEPRECATED: use styleType instead
|
|
12622
|
+
* @deprecated DEPRECATED: use styleType instead
|
|
12623
|
+
* @replacedBy styleType
|
|
12624
|
+
* @targetRemovalDate 2025-08-10
|
|
12625
|
+
*/
|
|
12626
|
+
cssPropertyType?: CssPropertyTypeWithLiterals;
|
|
12627
|
+
/**
|
|
12628
|
+
* DEPRECATED: use styleType instead
|
|
12629
|
+
* @deprecated DEPRECATED: use styleType instead
|
|
12630
|
+
* @replacedBy styleType
|
|
12631
|
+
* @targetRemovalDate 2025-08-10
|
|
12632
|
+
*/
|
|
12633
|
+
cssVariableType?: CssVariableTypeEnumCssDataTypeWithLiterals;
|
|
12634
|
+
}
|
|
12635
|
+
/** @oneof */
|
|
12617
12636
|
interface StyleItemSelectedCssPropertyTypeOneOf {
|
|
12618
12637
|
/** Additional options to refine the filter variable */
|
|
12619
12638
|
filter?: Filter;
|
|
@@ -13497,6 +13516,8 @@ interface InlineElement {
|
|
|
13497
13516
|
* The Element is the first in line to affect the display, Preset and State are after it
|
|
13498
13517
|
*/
|
|
13499
13518
|
displayFilters?: DisplayFilters;
|
|
13519
|
+
/** Display groups for the element, used to group elements in the editor for better UX */
|
|
13520
|
+
displayGroups?: Record<string, DisplayGroupItem>;
|
|
13500
13521
|
}
|
|
13501
13522
|
interface Behaviors {
|
|
13502
13523
|
/** Determines if the inner-element can be selectable in the editor */
|
|
@@ -13520,8 +13541,6 @@ interface Actions {
|
|
|
13520
13541
|
manageMenu?: Action;
|
|
13521
13542
|
}
|
|
13522
13543
|
interface Action {
|
|
13523
|
-
/** Defines whether the action is being displayed */
|
|
13524
|
-
hidden?: boolean | null;
|
|
13525
13544
|
/**
|
|
13526
13545
|
* The public human-readable name given to the action by the developer.
|
|
13527
13546
|
* @minLength 4
|
|
@@ -13542,6 +13561,8 @@ interface Execution extends ExecutionActionExecuteOneOf {
|
|
|
13542
13561
|
panel?: PanelAction;
|
|
13543
13562
|
/** Executes an action on a target element (based on path) */
|
|
13544
13563
|
forward?: ForwardAction;
|
|
13564
|
+
/** Executes an action that is connected to a display-group */
|
|
13565
|
+
displayGroup?: DisplayGroupAction;
|
|
13545
13566
|
/** The action type allows to determine the return type of the execution function */
|
|
13546
13567
|
actionType?: ActionTypeWithLiterals;
|
|
13547
13568
|
}
|
|
@@ -13557,6 +13578,8 @@ interface ExecutionActionExecuteOneOf {
|
|
|
13557
13578
|
panel?: PanelAction;
|
|
13558
13579
|
/** Executes an action on a target element (based on path) */
|
|
13559
13580
|
forward?: ForwardAction;
|
|
13581
|
+
/** Executes an action that is connected to a display-group */
|
|
13582
|
+
displayGroup?: DisplayGroupAction;
|
|
13560
13583
|
}
|
|
13561
13584
|
declare enum ActionType {
|
|
13562
13585
|
UNKNOWN_ActionType = "UNKNOWN_ActionType",
|
|
@@ -13564,11 +13587,15 @@ declare enum ActionType {
|
|
|
13564
13587
|
event = "event",
|
|
13565
13588
|
panel = "panel",
|
|
13566
13589
|
forward = "forward",
|
|
13567
|
-
style = "style"
|
|
13590
|
+
style = "style",
|
|
13591
|
+
displayGroup = "displayGroup"
|
|
13568
13592
|
}
|
|
13569
13593
|
/** @enumType */
|
|
13570
|
-
type ActionTypeWithLiterals = ActionType | 'UNKNOWN_ActionType' | 'data' | 'event' | 'panel' | 'forward' | 'style';
|
|
13571
|
-
/**
|
|
13594
|
+
type ActionTypeWithLiterals = ActionType | 'UNKNOWN_ActionType' | 'data' | 'event' | 'panel' | 'forward' | 'style' | 'displayGroup';
|
|
13595
|
+
/**
|
|
13596
|
+
* Represents an action that points into a specific data-item-key,
|
|
13597
|
+
* the outcome of clicking such action will be determined by the editor
|
|
13598
|
+
*/
|
|
13572
13599
|
interface DataAction {
|
|
13573
13600
|
/**
|
|
13574
13601
|
* Points to the data item within the component’s data structure
|
|
@@ -13577,7 +13604,10 @@ interface DataAction {
|
|
|
13577
13604
|
*/
|
|
13578
13605
|
dataItemKey?: string;
|
|
13579
13606
|
}
|
|
13580
|
-
/**
|
|
13607
|
+
/**
|
|
13608
|
+
* Represents an action that points into a specific style-item-key,
|
|
13609
|
+
* the outcome of clicking such action will be determined by the editor
|
|
13610
|
+
*/
|
|
13581
13611
|
interface StyleAction {
|
|
13582
13612
|
/**
|
|
13583
13613
|
* Points to the style item within the component’s style structure
|
|
@@ -13665,9 +13695,19 @@ declare enum ActionName {
|
|
|
13665
13695
|
}
|
|
13666
13696
|
/** @enumType */
|
|
13667
13697
|
type ActionNameWithLiterals = ActionName | 'UNKNOWN_ActionName' | 'settings' | 'design' | 'media' | 'manageItems' | 'dashboard' | 'custom' | 'manageMenu';
|
|
13698
|
+
/**
|
|
13699
|
+
* Represents an action that points into a specific display-group-key,
|
|
13700
|
+
* the outcome will make the chosen display group visible to the user for changing the groups values in the component
|
|
13701
|
+
*/
|
|
13702
|
+
interface DisplayGroupAction {
|
|
13703
|
+
/**
|
|
13704
|
+
* The display group to be used
|
|
13705
|
+
* @minLength 1
|
|
13706
|
+
* @maxLength 50
|
|
13707
|
+
*/
|
|
13708
|
+
displayGroupKey?: string;
|
|
13709
|
+
}
|
|
13668
13710
|
interface DashboardAction {
|
|
13669
|
-
/** Defines whether the action is being displayed */
|
|
13670
|
-
hidden?: boolean | null;
|
|
13671
13711
|
/**
|
|
13672
13712
|
* The public human-readable name given to the action by the developer.
|
|
13673
13713
|
* @minLength 4
|
|
@@ -13772,7 +13812,7 @@ type SizingTypeWithLiterals = SizingType | 'UNKNOWN_SizingType' | 'content' | 's
|
|
|
13772
13812
|
* It is used to control the visibility of style items of elements in the editor.
|
|
13773
13813
|
* It is used to control the visibility of data items of elements in the editor.
|
|
13774
13814
|
* It is used to control the visibility of custom actions of elements in the editor.
|
|
13775
|
-
* The logical order of
|
|
13815
|
+
* The logical order of filtering is done from where the filter is defined.
|
|
13776
13816
|
* Element takes first priority in narrowing the list, then the Preset and last is the State
|
|
13777
13817
|
*/
|
|
13778
13818
|
interface DisplayFilters {
|
|
@@ -13784,6 +13824,8 @@ interface DisplayFilters {
|
|
|
13784
13824
|
data?: DisplayFilter;
|
|
13785
13825
|
/** DisplayFilter for custom actions, defines which custom actions to hide or show, uses the customAction key in the customActions map, optional */
|
|
13786
13826
|
customActions?: DisplayFilter;
|
|
13827
|
+
/** DisplayFilter for actions, defines which actions to hide or show, uses the key in the action map, optional */
|
|
13828
|
+
actions?: DisplayFilter;
|
|
13787
13829
|
}
|
|
13788
13830
|
/**
|
|
13789
13831
|
* The logic of the display filter is to define the minimal requirement
|
|
@@ -13895,6 +13937,279 @@ interface VisibleState {
|
|
|
13895
13937
|
*/
|
|
13896
13938
|
elementPath?: string;
|
|
13897
13939
|
}
|
|
13940
|
+
interface DisplayGroupItem extends DisplayGroupItemSelectedGroupTypeOneOf {
|
|
13941
|
+
/** A group that contains style items defined with cssVariableType */
|
|
13942
|
+
cssDataType?: ItemsGroup;
|
|
13943
|
+
/** A group that contains data items */
|
|
13944
|
+
dataType?: ItemsGroup;
|
|
13945
|
+
/** A group that contains background items */
|
|
13946
|
+
background?: ShorthandGroupBackground;
|
|
13947
|
+
/** A group that contains margin items */
|
|
13948
|
+
margin?: Coordinates;
|
|
13949
|
+
/** A group that contains padding items */
|
|
13950
|
+
padding?: Coordinates;
|
|
13951
|
+
/** A group that contains border items */
|
|
13952
|
+
border?: Border;
|
|
13953
|
+
/** A group that contains border-top items */
|
|
13954
|
+
borderTop?: Border;
|
|
13955
|
+
/** A group that contains border-right items */
|
|
13956
|
+
borderRight?: Border;
|
|
13957
|
+
/** A group that contains border-bottom items */
|
|
13958
|
+
borderBottom?: Border;
|
|
13959
|
+
/** A group that contains border-left items */
|
|
13960
|
+
borderLeft?: Border;
|
|
13961
|
+
/** A group that contains border-inline-start items */
|
|
13962
|
+
borderInlineStart?: Border;
|
|
13963
|
+
/** A group that contains border-inline-end items */
|
|
13964
|
+
borderInlineEnd?: Border;
|
|
13965
|
+
/** A group that contains border-radius items */
|
|
13966
|
+
borderRadius?: Corners;
|
|
13967
|
+
/** A group that contains font items */
|
|
13968
|
+
font?: Font;
|
|
13969
|
+
/** A group that contains text-decoration items */
|
|
13970
|
+
textDecoration?: TextDecoration;
|
|
13971
|
+
/** A group that contains gap items */
|
|
13972
|
+
gap?: Gap;
|
|
13973
|
+
/**
|
|
13974
|
+
* Display name for this Group
|
|
13975
|
+
* @maxLength 20
|
|
13976
|
+
*/
|
|
13977
|
+
displayName?: string | null;
|
|
13978
|
+
/** The type of the group, used to determine the group that will be displayed in the editor */
|
|
13979
|
+
groupType?: GroupTypeWithLiterals;
|
|
13980
|
+
}
|
|
13981
|
+
/** @oneof */
|
|
13982
|
+
interface DisplayGroupItemSelectedGroupTypeOneOf {
|
|
13983
|
+
/** A group that contains style items defined with cssVariableType */
|
|
13984
|
+
cssDataType?: ItemsGroup;
|
|
13985
|
+
/** A group that contains data items */
|
|
13986
|
+
dataType?: ItemsGroup;
|
|
13987
|
+
/** A group that contains background items */
|
|
13988
|
+
background?: ShorthandGroupBackground;
|
|
13989
|
+
/** A group that contains margin items */
|
|
13990
|
+
margin?: Coordinates;
|
|
13991
|
+
/** A group that contains padding items */
|
|
13992
|
+
padding?: Coordinates;
|
|
13993
|
+
/** A group that contains border items */
|
|
13994
|
+
border?: Border;
|
|
13995
|
+
/** A group that contains border-top items */
|
|
13996
|
+
borderTop?: Border;
|
|
13997
|
+
/** A group that contains border-right items */
|
|
13998
|
+
borderRight?: Border;
|
|
13999
|
+
/** A group that contains border-bottom items */
|
|
14000
|
+
borderBottom?: Border;
|
|
14001
|
+
/** A group that contains border-left items */
|
|
14002
|
+
borderLeft?: Border;
|
|
14003
|
+
/** A group that contains border-inline-start items */
|
|
14004
|
+
borderInlineStart?: Border;
|
|
14005
|
+
/** A group that contains border-inline-end items */
|
|
14006
|
+
borderInlineEnd?: Border;
|
|
14007
|
+
/** A group that contains border-radius items */
|
|
14008
|
+
borderRadius?: Corners;
|
|
14009
|
+
/** A group that contains font items */
|
|
14010
|
+
font?: Font;
|
|
14011
|
+
/** A group that contains text-decoration items */
|
|
14012
|
+
textDecoration?: TextDecoration;
|
|
14013
|
+
/** A group that contains gap items */
|
|
14014
|
+
gap?: Gap;
|
|
14015
|
+
}
|
|
14016
|
+
declare enum GroupType {
|
|
14017
|
+
/** A group that contains items */
|
|
14018
|
+
UNKNOWN_GroupType = "UNKNOWN_GroupType",
|
|
14019
|
+
/** A group that contains style items defined with cssDataType */
|
|
14020
|
+
cssDataTypeItems = "cssDataTypeItems",
|
|
14021
|
+
/** A group that contains data items */
|
|
14022
|
+
dataItems = "dataItems",
|
|
14023
|
+
/** Style Shorthand Groups */
|
|
14024
|
+
background = "background",
|
|
14025
|
+
margin = "margin",
|
|
14026
|
+
padding = "padding",
|
|
14027
|
+
border = "border",
|
|
14028
|
+
borderTop = "borderTop",
|
|
14029
|
+
borderRight = "borderRight",
|
|
14030
|
+
borderBottom = "borderBottom",
|
|
14031
|
+
borderLeft = "borderLeft",
|
|
14032
|
+
borderRadius = "borderRadius",
|
|
14033
|
+
borderInlineStart = "borderInlineStart",
|
|
14034
|
+
borderInlineEnd = "borderInlineEnd",
|
|
14035
|
+
font = "font",
|
|
14036
|
+
textDecoration = "textDecoration",
|
|
14037
|
+
gap = "gap"
|
|
14038
|
+
}
|
|
14039
|
+
/** @enumType */
|
|
14040
|
+
type GroupTypeWithLiterals = GroupType | 'UNKNOWN_GroupType' | 'cssDataTypeItems' | 'dataItems' | 'background' | 'margin' | 'padding' | 'border' | 'borderTop' | 'borderRight' | 'borderBottom' | 'borderLeft' | 'borderRadius' | 'borderInlineStart' | 'borderInlineEnd' | 'font' | 'textDecoration' | 'gap';
|
|
14041
|
+
interface ItemsGroup {
|
|
14042
|
+
/**
|
|
14043
|
+
* A list of items that should be in this group
|
|
14044
|
+
* @maxSize 300
|
|
14045
|
+
* @maxLength 100
|
|
14046
|
+
*/
|
|
14047
|
+
items?: string[];
|
|
14048
|
+
}
|
|
14049
|
+
interface ShorthandGroupBackground {
|
|
14050
|
+
/**
|
|
14051
|
+
* Stores the background-color property of the background shorthand
|
|
14052
|
+
* @maxLength 100
|
|
14053
|
+
*/
|
|
14054
|
+
backgroundColor?: string | null;
|
|
14055
|
+
/**
|
|
14056
|
+
* Stores the background-image property of the background shorthand
|
|
14057
|
+
* @maxLength 100
|
|
14058
|
+
*/
|
|
14059
|
+
backgroundImage?: string | null;
|
|
14060
|
+
/**
|
|
14061
|
+
* Stores the background-position property of the background shorthand
|
|
14062
|
+
* @maxLength 100
|
|
14063
|
+
*/
|
|
14064
|
+
backgroundPosition?: string | null;
|
|
14065
|
+
/**
|
|
14066
|
+
* Stores the background-size property of the background shorthand
|
|
14067
|
+
* @maxLength 100
|
|
14068
|
+
*/
|
|
14069
|
+
backgroundSize?: string | null;
|
|
14070
|
+
/**
|
|
14071
|
+
* Stores the background-repeat property of the background shorthand
|
|
14072
|
+
* @maxLength 100
|
|
14073
|
+
*/
|
|
14074
|
+
backgroundRepeat?: string | null;
|
|
14075
|
+
/**
|
|
14076
|
+
* Stores the background-origin property of the background shorthand
|
|
14077
|
+
* @maxLength 100
|
|
14078
|
+
*/
|
|
14079
|
+
backgroundOrigin?: string | null;
|
|
14080
|
+
/**
|
|
14081
|
+
* Stores the background-clip property of the background shorthand
|
|
14082
|
+
* @maxLength 100
|
|
14083
|
+
*/
|
|
14084
|
+
backgroundClip?: string | null;
|
|
14085
|
+
}
|
|
14086
|
+
interface Coordinates {
|
|
14087
|
+
/**
|
|
14088
|
+
* Stores the top coordinate of the property shorthand
|
|
14089
|
+
* @maxLength 100
|
|
14090
|
+
*/
|
|
14091
|
+
top?: string | null;
|
|
14092
|
+
/**
|
|
14093
|
+
* Stores the right coordinate of the property shorthand
|
|
14094
|
+
* @maxLength 100
|
|
14095
|
+
*/
|
|
14096
|
+
right?: string | null;
|
|
14097
|
+
/**
|
|
14098
|
+
* Stores the bottom coordinate of the property shorthand
|
|
14099
|
+
* @maxLength 100
|
|
14100
|
+
*/
|
|
14101
|
+
bottom?: string | null;
|
|
14102
|
+
/**
|
|
14103
|
+
* Stores the left coordinate of the property shorthand
|
|
14104
|
+
* @maxLength 100
|
|
14105
|
+
*/
|
|
14106
|
+
left?: string | null;
|
|
14107
|
+
}
|
|
14108
|
+
interface Border {
|
|
14109
|
+
/**
|
|
14110
|
+
* Stores the width property of a border shorthand
|
|
14111
|
+
* @maxLength 100
|
|
14112
|
+
*/
|
|
14113
|
+
width?: string | null;
|
|
14114
|
+
/**
|
|
14115
|
+
* Stores the style property of a border shorthand
|
|
14116
|
+
* @maxLength 100
|
|
14117
|
+
*/
|
|
14118
|
+
style?: string | null;
|
|
14119
|
+
/**
|
|
14120
|
+
* Stores the color property of a border shorthand
|
|
14121
|
+
* @maxLength 100
|
|
14122
|
+
*/
|
|
14123
|
+
color?: string | null;
|
|
14124
|
+
}
|
|
14125
|
+
interface Corners {
|
|
14126
|
+
/**
|
|
14127
|
+
* Stores the top-left property of the shorthand
|
|
14128
|
+
* @maxLength 100
|
|
14129
|
+
*/
|
|
14130
|
+
topLeft?: string | null;
|
|
14131
|
+
/**
|
|
14132
|
+
* Stores the top-right property of the shorthand
|
|
14133
|
+
* @maxLength 100
|
|
14134
|
+
*/
|
|
14135
|
+
topRight?: string | null;
|
|
14136
|
+
/**
|
|
14137
|
+
* Stores the bottom-right property of the shorthand
|
|
14138
|
+
* @maxLength 100
|
|
14139
|
+
*/
|
|
14140
|
+
bottomRight?: string | null;
|
|
14141
|
+
/**
|
|
14142
|
+
* Stores the bottom-left property of the shorthand
|
|
14143
|
+
* @maxLength 100
|
|
14144
|
+
*/
|
|
14145
|
+
bottomLeft?: string | null;
|
|
14146
|
+
}
|
|
14147
|
+
interface Font {
|
|
14148
|
+
/**
|
|
14149
|
+
* Stores the font-style property of the font shorthand
|
|
14150
|
+
* @maxLength 100
|
|
14151
|
+
*/
|
|
14152
|
+
fontStyle?: string | null;
|
|
14153
|
+
/**
|
|
14154
|
+
* Stores the font-variant property of the font shorthand
|
|
14155
|
+
* @maxLength 100
|
|
14156
|
+
*/
|
|
14157
|
+
fontVariant?: string | null;
|
|
14158
|
+
/**
|
|
14159
|
+
* Stores the font-weight property of the font shorthand
|
|
14160
|
+
* @maxLength 100
|
|
14161
|
+
*/
|
|
14162
|
+
fontWeight?: string | null;
|
|
14163
|
+
/**
|
|
14164
|
+
* Stores the font-size property of the font shorthand
|
|
14165
|
+
* @maxLength 100
|
|
14166
|
+
*/
|
|
14167
|
+
fontSize?: string | null;
|
|
14168
|
+
/**
|
|
14169
|
+
* Stores the line-height property of the font shorthand
|
|
14170
|
+
* @maxLength 100
|
|
14171
|
+
*/
|
|
14172
|
+
lineHeight?: string | null;
|
|
14173
|
+
/**
|
|
14174
|
+
* Stores the font-family property of the font shorthand
|
|
14175
|
+
* @maxLength 100
|
|
14176
|
+
*/
|
|
14177
|
+
fontFamily?: string | null;
|
|
14178
|
+
}
|
|
14179
|
+
interface TextDecoration {
|
|
14180
|
+
/**
|
|
14181
|
+
* Stores the text-decoration-line property of the text-decoration shorthand
|
|
14182
|
+
* @maxLength 100
|
|
14183
|
+
*/
|
|
14184
|
+
textDecorationLine?: string | null;
|
|
14185
|
+
/**
|
|
14186
|
+
* Stores the text-decoration-color property of the text-decoration shorthand
|
|
14187
|
+
* @maxLength 100
|
|
14188
|
+
*/
|
|
14189
|
+
textDecorationColor?: string | null;
|
|
14190
|
+
/**
|
|
14191
|
+
* Stores the text-decoration-style property of the text-decoration shorthand
|
|
14192
|
+
* @maxLength 100
|
|
14193
|
+
*/
|
|
14194
|
+
textDecorationStyle?: string | null;
|
|
14195
|
+
/**
|
|
14196
|
+
* Stores the text-decoration-thickness property of the text-decoration shorthand
|
|
14197
|
+
* @maxLength 100
|
|
14198
|
+
*/
|
|
14199
|
+
textDecorationThickness?: string | null;
|
|
14200
|
+
}
|
|
14201
|
+
interface Gap {
|
|
14202
|
+
/**
|
|
14203
|
+
* Stores the row-gap property of the gap shorthand
|
|
14204
|
+
* @maxLength 100
|
|
14205
|
+
*/
|
|
14206
|
+
rowGap?: string | null;
|
|
14207
|
+
/**
|
|
14208
|
+
* Stores the column-gap property of the gap shorthand
|
|
14209
|
+
* @maxLength 100
|
|
14210
|
+
*/
|
|
14211
|
+
columnGap?: string | null;
|
|
14212
|
+
}
|
|
13898
14213
|
interface RefElement {
|
|
13899
14214
|
/**
|
|
13900
14215
|
* The type of the referenced element. Must exist in the Wix Dev Center and be fully typed (`appSlug.componentType`).
|
|
@@ -14544,6 +14859,8 @@ interface NamespaceConfig {
|
|
|
14544
14859
|
voicePermissions?: Permissions;
|
|
14545
14860
|
/** PersonaInsightsService permissions associated with this namespace. */
|
|
14546
14861
|
personaInsightsPermissions?: Permissions;
|
|
14862
|
+
/** PersonaTopicClusteringService permissions associated with this namespace. */
|
|
14863
|
+
personaTopicClusteringPermissions?: Permissions;
|
|
14547
14864
|
}
|
|
14548
14865
|
interface Permissions {
|
|
14549
14866
|
/**
|
|
@@ -15444,4 +15761,4 @@ interface ListDataExtensionSchemasOptions {
|
|
|
15444
15761
|
*/
|
|
15445
15762
|
declare function deleteByWhiteListedMetaSite(metaSiteId: string): Promise<NonNullablePaths<DeleteByWhiteListedMetaSiteResponse, `hasMore`>>;
|
|
15446
15763
|
|
|
15447
|
-
export { type A11y, A11yAttributes, type A11yAttributesWithLiterals, AcceptedDirectMessageType, type AcceptedDirectMessageTypeWithLiterals, AcceptedMessageTypesAcceptedDirectMessageType, type AcceptedMessageTypesAcceptedDirectMessageTypeWithLiterals, AcceptedMessageTypesAcceptedSmsMessageType, type AcceptedMessageTypesAcceptedSmsMessageTypeWithLiterals, AcceptedSmsMessageType, type AcceptedSmsMessageTypeWithLiterals, type Action, type ActionCondition, type ActionEvent, ActionName, type ActionNameWithLiterals, type ActionProviderSPIConfig, type ActionSPIConfig, type ActionSPIConfigImplementedMethods, type ActionSPIConfigInterfaceConfiguration, type ActionSPIConfigInterfaceConfigurationOptionsOneOf, ActionSPIConfigInterfaceConfigurationType, type ActionSPIConfigInterfaceConfigurationTypeWithLiterals, type ActionSpiConfig, ActionType, type ActionTypeWithLiterals, type Actions, type AdaptiveComponentProviderConfig, type AddCustomFields, type AdditionalFeesSPIConfig, type AdditionalStepInfo, type AdditionalTaxGroup, type AddonMarketData, type AddressInfo, AddressInfoTag, type AddressInfoTagWithLiterals, type AddressLine2, type AdminConfigurableTextInput, type AlertEnricherSpiConfiguration, type AlgorithmConfig, AlgorithmType, type AlgorithmTypeWithLiterals, Alignment, type AlignmentWithLiterals, type AllowedValuesOptions, type AlternativeUri, type AnchorData, type AnchorMetaData, type AndCondition, type AndroidMobilePushConfig, AndroidStyle, type AndroidStyleWithLiterals, type ApiSlot, type ApiWidth, type AppConfig, type AppConfiguration, type AppData, type AppDeploymentProviderConfig, type AppEmbedData, type AppEmbedDataAppDataOneOf, type AppEnvironmentProviderConfig, type AppPermissions, type AppPreviewProviderConfig, type AppRuntimeDataCacheEntity, type AppRuntimeDataEvent, AppType, type AppTypeWithLiterals, type ApplicationAutomationComponent, type ApplicationProfile, type ApplicationProfileProviderConfig, Archetype, type ArchetypeWithLiterals, ArrayComponentType, type ArrayComponentTypeWithLiterals, type ArrayItems, type ArrayItemsArrayDataOneOf, type ArrayType, type ArrayTypeArrayItems, type ArrayTypeArrayItemsItemTypeOptionsOneOf, AspectRatio, type AspectRatioWithLiterals, type AssistantSpiConfig, type AudienceProviderConfig, type AudioData, type AuthenticatorConfig, type AutomationMetadata, type AutomationTrigger, type AvailabilityTimeSlotsProviderConfig, type AvatarConfig, AvatarShape, type AvatarShapeWithLiterals, type BackOfficeCustomization, type BackOfficeCustomizationSidebarEntity, type BackOfficeCustomizationSidebarEntityItemOneOf, type BackOfficeExtension, type BackOfficeExtensionContainer, type BackOfficeExtensionExtensionOneOf, type BackOfficeExtensionMenuItem, type BackOfficeExtensionWidget, type BackOfficeExtensionWidgetAssetOneOf, type BackOfficeExternalUrl, BackOfficeHostingPlatforms, type BackOfficeHostingPlatformsWithLiterals, type BackOfficeModal, type BackOfficeModalContentOneOf, type BackOfficePage, type BackOfficePageAssetOneOf, type BackOfficeRestrictedCustomization, type BackOfficeScriptAsset, BackOfficeScriptAssetType, type BackOfficeScriptAssetTypeWithLiterals, type BackOfficeSidebarCategory, type BackOfficeWidget, type BackOfficeWidgetContentOneOf, type BackdropFilter, type BackendWorker, type Background, BackgroundModeEnum, type BackgroundModeEnumWithLiterals, BackgroundType, type BackgroundTypeWithLiterals, type BackofficeActionDeeplink, type BarAlignment, BarAlignmentSelected, type BarAlignmentSelectedWithLiterals, type BaseEventMetadata, type BaseInfo, type BaseInstallation, type Behaviors, type BillingSettingsConfig, BlockType, type BlockTypeWithLiterals, type BlockquoteData, type BlocksData, type BlogPaywallProviderConfig, type BookingData, type BookingPolicyProviderConfig, type BookingsPricingProviderConfig, type BookingsResourceType, type BookingsResourceTypesProviderConfig, type BoolListOptions, BooleanComponentType, type BooleanComponentTypeWithLiterals, type BooleanExperimentExposureRule, type BooleanType, type Border, type BorderColors, type BrandIcons, type BreakPoint, type BreakPointSection, type Breakpoint, type Breakpoints, type BroadcastList, type BrowserPushChannel, type BrowserPushContentKeys, type BrowserStorage, type BuilderSpi, type BulletedListData, type Bundle, type BusinessManagerPage, type ButtonData, ButtonDataType, type ButtonDataTypeWithLiterals, type ButtonStyles, CalendarType, type CalendarTypeWithLiterals, type CaptionData, type CardStyles, CardStylesType, type CardStylesTypeWithLiterals, type CatalogSPIConfig, type CatalogSyncConfiguration, type CellStyle, ChangeableProperty, type ChangeablePropertyWithLiterals, type ChannelBrandIcons, type ChannelBranding, type ChannelChannelBranding, type ChannelChannelConfiguration, type ChannelChannelConfigurationMessagingConfigOneOf, type ChannelConfiguration, ChannelConfigurationChannelType, type ChannelConfigurationChannelTypeWithLiterals, type ChannelConfigurationMessagingConfigOneOf, type ChannelIcon, type ChannelImplementedMethods, type ChannelMediaCapabilities, ChannelType, type ChannelTypeWithLiterals, type Checkbox, type CheckboxConfiguration, type CheckboxField, type CheckboxGroup, type CheckboxGroupOption, type CheckoutContentSPIConfig, type ClientResources, type ClientSideService, type CodeBlockData, type CodePackageComponentData, type CodePanel, type CollapsibleListData, type Color, type ColorData, type ColorDefinition, type ColorSelectLabeled, type ColorSelectLabeledDataOneOf, type Colors, type CommentFilterProviderConfig, type CommentModerationProviderConfig, type CommentsContextProviderConfig, type CommonCustomOption, type CommonImage, type CommunicationChannelConfiguration, type ComponentData, type ComponentDataDataOneOf, type ComponentEnricherConfig, type ComponentInitialSize, type ComponentMetaData, type ComponentModel, type ComponentReferenceDataConfig, type ComponentTranslationAdditionalFieldsConfig, ComponentType, type ComponentTypeWithLiterals, type ComponentsMultilineAddress, type ComponentsValidatorConfig, type Condition, type ConditionBlock, type ConditionNode, type ConditionNodeNodeOneOf, type Conditions, type Configuration, ConfirmationLevel, type ConfirmationLevelWithLiterals, ConnectMethod, type ConnectMethodWithLiterals, ConsentCategory, type ConsentCategoryWithLiterals, type Consequence, type ConstOrDynamicParam, type ConstOrDynamicParamValueOneOf, type Constraint, type ContactData, ContactField, type ContactFieldWithLiterals, type ContactLabelsComponentData, type ContactNotification, type ContactsData, type ContactsNotificationData, type Container, type ContainerDataOneOf, type ContainerLayout, type ContainerStyleOverrides, ContainerType, type ContainerTypeWithLiterals, type ContentData, type ContentDataOverrides, type ContentProviderConfig, ContentResizeDirection, type ContentResizeDirectionWithLiterals, type Context, type ConversationLimitations, type CoreApps, type CountrySubdivisionListOptions, type CoverImageConfiguration, type CreateDataExtensionSchemaRequest, type CreateDataExtensionSchemaResponse, type CreateNewItemInfo, type CreatedByCacheEntity, Crop, type CropWithLiterals, type CrossSellConfig, CssDataType, type CssDataTypeWithLiterals, type CssNumber, CssPropertyType, type CssPropertyTypeWithLiterals, CssVariableTypeEnumCssDataType, type CssVariableTypeEnumCssDataTypeWithLiterals, type CurrencyCodeListOptions, type CustomChargesConfig, type CustomElement, type CustomElementConsentCategoryOneOf, CustomElementScriptType, type CustomElementScriptTypeWithLiterals, type CustomElementWidget, type CustomEnum, type CustomEnumOption, type CustomEnumOptionCssProperty, type CustomExperimentExposureRule, type CustomFieldInfo, CustomFieldsType, type CustomFieldsTypeWithLiterals, type CustomOption, type CustomPermission, type CustomRefData, type CustomReservationsApprovalConfig, type CustomRewardProviderConfig, type CustomScopeConfig, type CustomTriggerConfig, type DCConfigData, type Dashboard, type DashboardAction, type DashboardApplicationData, type DashboardButton, type DashboardComponentData, type DashboardItem, type DashboardPlatfromComponentData, type DataAction, type DataComponent, type DataExtensionSchema, type DataExtensionSchemaCreatedEnvelope, type DataExtensionSchemaDeletedEnvelope, DataExtensionSchemaState, type DataExtensionSchemaStateWithLiterals, type DataExtensionSchemaUpdatedEnvelope, type DataExtensionsComponentData, type DataItem, type DataItemOverrides, type DataItemSelectedDataTypeOneOf, type DataItems, DataType, type DataTypeWithLiterals, type DateInput, type DatePicker, type DateTimeConstraints, type DateTimeInput, type Debounce, type DecimalListOptions, type Decoration, type DecorationDataOneOf, DecorationType, type DecorationTypeWithLiterals, type Deeplink, type DeeplinkOfOneOf, Default, type DefaultCountryConfig, type DefaultCountryConfigOptionsOneOf, DefaultCountryConfigType, type DefaultCountryConfigTypeWithLiterals, type DefaultPresets, type DefaultTaxGroupProviderConfig, DefaultTextStyle, type DefaultTextStyleWithLiterals, type DefaultWithLiterals, type Definition, type Delay, type DelayTypeOneOf, type DeleteByWhiteListedMetaSiteRequest, type DeleteByWhiteListedMetaSiteResponse, type DeleteDemoDataExtensionSchemaRequest, type DeleteDemoDataExtensionSchemaResponse, type DeleteGlobalExtensionSchemaRequest, type DeleteGlobalExtensionSchemaResponse, type DeleteTemplateFields, type DeleteUserDefinedFieldsRequest, type DeleteUserDefinedFieldsResponse, type DeploymentPipelineProviderConfig, type Description, type Design, type DevCenterTestingComponentData, type DevCenterTestingComponentDataTranslatableOneOfOneOf, type Dimension, type Dimensions, type DirectMessageConfig, Direction, type DirectionWithLiterals, type DiscountConfig, type DiscountsSPIConfig, type DiscoveryMetaData, type Display, type DisplayField, type DisplayFieldDisplayFieldTypeOptionsOneOf, DisplayFieldType, type DisplayFieldTypeWithLiterals, type DisplayFilter, type DisplayFilters, type DisplayProperties, type DisplayValue, DisplayValueEnumDisplayValue, type DisplayValueEnumDisplayValueWithLiterals, type DisputeServicePluginConfig, type DividerData, DividerDataAlignment, type DividerDataAlignmentWithLiterals, DividerDataWidth, type DividerDataWidthWithLiterals, type DmDirectMessageConfig, type Docking, type DockingProperties, type DocumentStyle, Domain, type DomainEvent, type DomainEventBodyOneOf, type DomainWithLiterals, type DonationInput, type DonationInputOption, type DrillInListItem, type DrillItem, type DrillItemDataOneOf, type DropDownLabeled, type Dropdown, type DropdownCustomOption, type DropdownField, type DropdownFieldOption, type DropdownOption, type DropshippingProviderSPIConfig, type DtsContent, type DtsDefinitionReference, type DtsDefinitionReferenceDtsDefinitionOneOf, DtsDefinitionType, type DtsDefinitionTypeWithLiterals, type DtsHttpLink, type DurationInputConfiguration, type DurationRenameOptions, type DynamicPriceOptions, type DynamicSiteStructureProviderConfig, type EditableFields, EditableProperties, type EditablePropertiesWithLiterals, type EditorAddon, type EditorBehaviors, type EditorElement, type EditorElementLayout, type EditorPresence, type EditorReactComponent, EffectGroup, type EffectGroupWithLiterals, ElementDisplayOption, type ElementDisplayOptionWithLiterals, type ElementItem, type ElementItemSelectedElementTypeOneOf, type ElementState, type ElementStyleDefaults, ElementType, type ElementTypeWithLiterals, type EmailChannel, type EmailEmailMessageConfig, type EmailInfo, EmailInfoTag, type EmailInfoTagWithLiterals, type EmailMessageConfig, type EmailTemplateConfig, type EmailTemplateConfigProviderOneOf, EmbedCategory, type EmbedCategoryWithLiterals, type EmbedData, type EmbeddedScriptComponentData, EmbeddedScriptPages, type EmbeddedScriptPagesWithLiterals, EmbeddedScriptPlacement, type EmbeddedScriptPlacementWithLiterals, type Empty, type EntityCreatedEvent, type EntityDeletedEvent, type EntityUpdatedEvent, Environment, type EnvironmentWithLiterals, type ErrorReporting, type ErrorReportingArtifact, Escalation, type EscalationWithLiterals, type EventAction, type EventBadgesSpiConfig, type EventData, type EventMetadata, type EventTimeSlotsProviderConfig, type EventTypeProviderConfig, type EventValidationProviderConfig, type Execution, type ExecutionActionExecuteOneOf, ExecutionType, type ExecutionTypeWithLiterals, type ExpectedInputs, type ExperimentGroupWrapper, type ExportMetadata, Exposure, type ExposureRule, type ExposureRuleRuleOneOf, ExposureRuleType, type ExposureRuleTypeWithLiterals, type ExposureWithLiterals, type Extendable, ExtendingComponentType, type ExtendingComponentTypeWithLiterals, type ExtensionData, type ExtensionDetails, type ExtensionExposure, ExtensionType, type ExtensionTypeWithLiterals, type ExternalDatabaseSpiConfig, type ExternalFilterProviderConfig, type FactorConfig, FactorType, type FactorTypeWithLiterals, type FeedAggregation, type FeedChannels, type FeedChannelsConfig, type FeesSPIConfig, type Field, type FieldFieldTypeOptionsOneOf, type FieldGroup, type FieldOverride, type FieldOverridePropertyTypeOptionsOneOf, type FieldOverrides, FieldType, type FieldTypeWithLiterals, type FieldsOverrides, type FieldsSettings, type FileData, type FileSource, type FileSourceDataOneOf, type FileUpload, type Filter, FilterFunction, type FilterFunctionWithLiterals, type FilterInfo, type FilterInfoOptionsOneOf, FilterOptionsType, type FilterOptionsTypeWithLiterals, FilterSelectionType, type FilterSelectionTypeWithLiterals, FilterValueDefinitionMode, type FilterValueDefinitionModeWithLiterals, type FilteringCapability, FirstDayOfWeek, type FirstDayOfWeekWithLiterals, type FirstLevelCategory, type FixedPositionOptions, type FixedPriceOptions, type FocalPoint, type FontDefinition, type FontFamilyWithColorPicker, type FontSizeData, FontType, type FontTypeWithLiterals, type FormFieldContactInfo, type FormFieldContactInfoAdditionalInfoOneOf, type FormLayout, type FormOverride, type FormOverrideEntityTypeOptionsOneOf, type FormSchemaDynamicValuesSpiConfig, type FormSchemaSpiConfig, type FormSpamSubmissionReportPermissions, type FormSpamSubmissionReportSpiConfig, type FormSpamSubmissionReportsNamespaceConfig, type FormSpamSubmissionSpiConfig, type FormSpiExtensionConfig, type FormSubmissionModerationSpiConfig, type FormSubmissionModerationSpiNamespaceConfig, type FormSubmissionSpiConfig, type FormSubmissionSpiExtensionConfig, type FormTemplate, type FormTemplateTemplateTypeOptionsOneOf, Format, type FormatWithLiterals, type FormsPermissions, type FormsSchemaNamespaceConfig, type FormsSpamSubmissionsNamespaceConfig, type FormsSubmissionsExtensionNamespaceConfig, type FormsSubmissionsNamespaceConfig, type ForwardAction, type ForwardActionActionOneOf, type FreeOptionConfiguration, type FreeTrialConfiguration, type FunctionDefinition, type FunctionRecipe, type FunctionsShopPriceSpiConfig, type GIF, type GIFData, GIFType, type GIFTypeWithLiterals, type GalleryData, type GalleryOptions, type GalleryOptionsLayout, type GalleryOptionsThumbnails, type GbpFeatureConfig, type GenericHookConfig, type GenericHooksConfig, type GenericOptions, type GiftCardProviderConfig, type Gradient, type GradualDeleteCacheEntity, type GradualRolloutCacheEntity, type GradualUpdateCacheEntity, type GridAppFilesTransformerConfig, type GroupedContent, type HTMLData, type HTMLDataDataOneOf, HTMLDataSource, type HTMLDataSourceWithLiterals, HTTPMethod, type HTTPMethodWithLiterals, type Header, type HeaderConfig, type HeaderConfigHeaderConfigOneOf, type HeaderConfigOneOf, type HeaderWidgetConfig, type HeadingData, type HeadlessOAuth, type Height, HeightMode, type HeightModeWithLiterals, type HelpResources, type HiddenOptions, HookType, type HookTypeWithLiterals, HorizontalDocking, type HorizontalDockingWithLiterals, HostContainerId, type HostContainerIdWithLiterals, type HostedComponent, type HostedPage, type IDPConnectionConfig, type Icon, type IconDataOneOf, IconType, type IconTypeWithLiterals, type IdentificationData, type IdentificationDataIdOneOf, type Illustration, type IllustrationIllustrationOneOf, type Image, type ImageConfig, type ImageData, type ImageDataStyles, ImageFit, type ImageFitWithLiterals, ImageShape, type ImageShapeWithLiterals, type ImageStyles, ImageStylesPosition, type ImageStylesPositionWithLiterals, type Implementation, type ImplementedMethods, ImportanceLevel, type ImportanceLevelWithLiterals, InitDirection, type InitDirectionWithLiterals, InitialExpandedItems, type InitialExpandedItemsWithLiterals, type InitialPosition, type InitialSizeSetting, type InitialSizeSettingSelectedSizingTypeOneOf, type Initiator, type InitiatorDataOneOf, InitiatorType, type InitiatorTypeWithLiterals, type InlineElement, type Input, type InputConfiguration, type InputField, type InputFieldInputTypeOptionsOneOf, type InputField_Number, type InputField_NumberComponentTypeOptionsOneOf, InputType, type InputTypeWithLiterals, type InputWithPlaceholder, InstallPage, type InstallPageWithLiterals, type InstallationInfo, type InstallationInfoTargetContainerOneOf, type InstallationSettings, type InstallationSettingsOptionsOneOf, type IntListOptions, type IntegerType, Intent, type IntentWithLiterals, type Interactions, type InterfaceConfiguration, type InterfaceConfigurationOfTypeOneOf, InterfaceConfigurationType, type InterfaceConfigurationTypeWithLiterals, type InternalComponentMetadata, type InventorySpiConfig, type InvoicesActionsComponentData, type InvoicesConfig, type IsStretched, type Item, type ItemDataOneOf, type ItemImage, type ItemLayout, type ItemSelection, type ItemSelectionOptions, type ItemStyle, type ItemThumbnail, type ItemThumbnailOptionsOneOf, ItemType, type ItemTypeWithLiterals, type ItemsSelectionProviderConfig, type Keywords, type LanguageTagListOptions, Layout, type LayoutCellData, LayoutType, type LayoutTypeWithLiterals, type LayoutWithLiterals, type LearnMore, type LegacyBackOfficeExtensionWidget, type LegacyBackOfficeExtensionWidgetAssetOneOf, type LegacyBackOfficeMenuItem, type LegacyBackOfficeMenuItemAction, type LegendsSpiConfig, Level, type LevelWithLiterals, type LightboxCloseOptions, type LightboxContent, type LightboxEditorSettings, type LightboxOptions, type LimiterField, type LineItemsEnricherConfig, LineStyle, type LineStyleWithLiterals, type Link, type LinkData, type LinkPreviewData, type LinkPreviewDataStyles, type LinkSuffix, LinkTarget, type LinkTargetWithLiterals, LinkType, type LinkTypeWithLiterals, type ListDataExtensionSchemasOptions, type ListDataExtensionSchemasRequest, type ListDataExtensionSchemasResponse, ListEventFromCalendars, type ListEventFromCalendarsWithLiterals, type ListValue, type LiveSiteActionDeeplink, type LocalDeliveryComponentData, LockableOperation, type LockableOperationWithLiterals, type Logo, type Logos, type Main, type MainPresets, type MainPropsData, MandatoryField, type MandatoryFieldWithLiterals, type MapData, type MapSettings, MapType, type MapTypeWithLiterals, type Margin, type Margins, type MarketplaceSPIConfig, Maturity, type MaturityWithLiterals, MeasurementSystem, type MeasurementSystemWithLiterals, type Media, type MediaCapabilities, type MediaItem, type MediaItemMediaOneOf, MediaMimeType, type MediaMimeTypeWithLiterals, type MembershipsSPIConfig, type MentionData, type MenuAction, type MenuActionActionOneOf, type MenuDropdown, type MenuLink, type MenuSlot, type MessageContainingTranslatables, type MessageEnvelope, type Metadata, Method, type MethodWithLiterals, type MinMaxRange, MobileApplication, type MobileApplicationWithLiterals, type MobileFeedChannel, type MobileFeedContentKeys, type MobilePushChannel, type MobilePushChannelConfig, type MobilePushContentKeys, type ModalParams, type Monitoring, type MonitoringOptionsOneOf, MonitoringType, type MonitoringTypeWithLiterals, type MultiServiceBookingPolicyProviderConfig, type MultilineAddress, MultilineAddressComponentType, type MultilineAddressComponentTypeOptionsOneOf, type MultilineAddressComponentTypeWithLiterals, type MultilineAddressValidation, type MultilingualTranslationSchema, type MultipleDashboardsComponentData, type Namespace, type NamespaceConfig, NativeStateType, type NativeStateTypeWithLiterals, type NavigateToPageAction, NavigationType, type NavigationTypeWithLiterals, type NestedWidgets, type Node, type NodeDataOneOf, type NodeStyle, NodeType, type NodeTypeWithLiterals, type NotificationChannels, type NotificationContent, type NotificationPreferencesFilterConfig, type NotificationTopic, NotificationTopicState, type NotificationTopicStateWithLiterals, NotificationTopicType, type NotificationTopicTypeWithLiterals, type Npm, NullValue, type NullValueWithLiterals, NumberComponentType, type NumberComponentTypeWithLiterals, type NumberInput, NumberOfColumns, type NumberOfColumnsWithLiterals, type NumberType, OAuthAppType, type OAuthAppTypeWithLiterals, OAuthTechnologies, type OAuthTechnologiesWithLiterals, type ObjectType, type Oembed, type Offset, type OffsetValueOneOf, type OneTimeOptionConfiguration, type OpenComponent, type OpenModalAction, type OperationExecutorConfig, Operator, type OperatorConfiguration, OperatorEnumOperator, type OperatorEnumOperatorWithLiterals, type OperatorWithLiterals, type Option, type OptionDesign, type OptionLayout, type OrCondition, type OrderValue, type OrderedListData, Orientation, type OrientationWithLiterals, type OriginInfo, type OutOfIframeData, type Output, OverrideEntityType, type OverrideEntityTypeWithLiterals, type OverrideTemplateFields, type PDFSettings, PDFSettingsViewMode, type PDFSettingsViewModeWithLiterals, type PackageDimension, type PackageType, type Padding, type Page, type PageAnchor, type PageComponentData, type PageContent, type PageDashboardApplicationComponent, type PageEditorSettings, type PageInstallation, type PageInstallationSettings, type PageNavigationOptions, type PageOptions, type PageOutOfIframeComponentData, type PageReplace, type PageReplaceOptions, type PageReplaceOptionsOptionsOneOf, type PageWidgetAsContent, PaginationMode, type PaginationModeWithLiterals, type Panel, type PanelAction, type PanelActionSelectedPanelTypeOneOf, PanelContentType, type PanelContentTypeWithLiterals, type PanelSelectedContentTypeOneOf, type PanelSize, PanelType, type PanelTypeWithLiterals, type PanoramaOptions, type ParagraphData, type Param, type Parameter, ParameterType, type ParameterTypeWithLiterals, type ParameterValueDefinitionDetailsOneOf, PartialPaymentRestriction, type PartialPaymentRestrictionWithLiterals, type PartialUpdateCacheEntity, ParticipantType, type ParticipantTypeWithLiterals, type PatternsWizard, type Payment, PaymentComponentType, type PaymentComponentTypeOptionsOneOf, type PaymentComponentTypeWithLiterals, type PaymentDateModification, type PaymentMethod, type PaymentMethodMethodOneOf, type PaymentServiceProviderConfig, type PaymentServiceProviderCredentialsField, type PaymentServiceProviderCredentialsFieldFieldOneOf, type PaymentSettingsSPIConfig, type PaymentType, type PaymentsGatewayComponentData, type PayoutsProviderConfig, type PerkValues, type PerksConfiguration, type Permissions, type PhoneConstraints, type PhoneInfo, PhoneInfoTag, type PhoneInfoTagWithLiterals, type PhoneInput, type PingNotificationComponentData, type PingSettingsGroupComponentData, PingSettingsGroupComponentDataState, type PingSettingsGroupComponentDataStateWithLiterals, type PlaceHolder, Placement, type PlacementWithLiterals, type PlanDuration, type PlanFormBenefitsSection, type PlanFormCustomSection, PlanFormDefaultSection, type PlanFormDefaultSectionWithLiterals, type PlanFormInfoSection, type PlanFormInitialValue, type PlanFormPagePermissionsSection, type PlanFormPlanSettingsSection, type PlanFormPreviewSection, type PlanFormPricingAndDurationSection, PlanFormPricingOption, type PlanFormPricingOptionWithLiterals, type PlanFormSection, type PlanFormSectionSectionOneOf, type PlanFormTypeMetadata, PlanPeriodUnit, type PlanPeriodUnitWithLiterals, type PlanPriceData, type PlanPricing, type PlanPricingPricingModelOneOf, type PlanSettingsRowConfiguration, type PlatformHeaderConfig, type PlatfromComponentData, type PlaybackOptions, type PluginConfig, type PluginContainerData, PluginContainerDataAlignment, type PluginContainerDataAlignmentWithLiterals, type PluginContainerDataHeight, type PluginContainerDataWidth, type PluginContainerDataWidthDataOneOf, type PluginInstallationSettings, PluginInterface, type PluginInterfaceWithLiterals, type PluginMarketData, type PluginPlacement, type PolicyConfig, type Poll, type PollData, type PollDataLayout, type PollDesign, type PollDesignBackground, type PollDesignBackgroundBackgroundOneOf, type PollLayout, PollLayoutDirection, type PollLayoutDirectionWithLiterals, PollLayoutType, type PollLayoutTypeWithLiterals, type PollOption, type PollSettings, type Position, type PostLoginConfig, type PreRegisterConfig, type PredefinedExpectedInput, type PredefinedExpectedInputConfiguration, type PredefinedExpectedInputConfigurationTypeOneOf, type PredefinedLabel, type PredefinedValues, type Preset, type PresetEditorPresence, type PresetInfo, type PresetItem, type PresetSize, type PreviewCardPlaceholders, type PreviewConfiguration, type PreviewFields, type PriceSPIConfig, PriceType, type PriceTypeWithLiterals, type PricingPlansFormConfiguration, type PricingRecurring, type Primitive, PrimitiveType, type PrimitiveTypeWithLiterals, type Product, type ProductCatalogProviderConfig, type ProductCheckboxGroup, type ProductCheckboxGroupOption, type ProductPriceOptionsOneOf, type ProductRestrictionsConfig, ProductType, type ProductTypeWithLiterals, type ProductsPathsConfig, type Project, type PropertiesType, PropertiesTypeEnum, type PropertiesTypeEnumWithLiterals, type PropertiesTypePropertiesTypeOptionsOneOf, type ProposalEditorProviderConfig, type ProviderAccountServicePluginConfig, type ProviderConfig, type ProviderConfigMessage, type ProviderFilterOptions, type PurchaseValidationsConfig, type QuantityLimit, type RadioButtonLabeled, type RadioGroup, type RadioGroupCustomOption, type RadioGroupOption, type RangeConstraints, type RateLimit, type RatingInput, type ReactElementContainer, type ReactElementContainerSelectedContainerTypeOneOf, type RecipientFilter, type RecipientFilterDataOneOf, RecipientFilterType, type RecipientFilterTypeWithLiterals, RecipientType, type RecipientTypeWithLiterals, type RecommendationsProviderConfig, type RecurringOptionConfiguration, type RedirectOptions, type RefElement, type RefInnerElementDefaults, Region, RegionType, type RegionTypeWithLiterals, type RegionWithLiterals, type ReindexEvent, type ReindexField, type Rel, type RenderOverrides, type ReplaceableOptions, ReplacementType, type ReplacementTypeWithLiterals, type ReplacingOptions, RequestedField, type RequestedFieldWithLiterals, RequiredIndicator, RequiredIndicatorPlacement, type RequiredIndicatorPlacementWithLiterals, type RequiredIndicatorProperties, type RequiredIndicatorWithLiterals, type RequiredOptions, type ResetButton, ResizeDirection, type ResizeDirectionWithLiterals, Resizing, type ResizingWithLiterals, type Resource, type Resources, type ResponsysEmail, type RestaurantsPOSComponentData, type RestoreInfo, RestrictedOperation, type RestrictedOperationWithLiterals, type Restriction, RestrictionLevel, type RestrictionLevelWithLiterals, type Restrictions, type RestrictionsConfig, type ReviewsEntityCatalogProviderConfig, type ReviewsProductCatalogProviderConfig, type RewardProviderConfig, type RibbonStyles, type RichContent, type RichContentOptions, type RichTextWithIllustrationVertical, type Rule, type RuntimeComponentCacheEntity, type RuntimeComponentCacheEntityComponent, type RuntimeComponentCacheEntityComponentOneOf, type RuntimeComponentCacheEntityExperiment, type RuntimeComponentCacheEntityExperimentExperimentOneOf, type SDKExports, type SDKExportsNpm, type Schema, type SchemaConfig, type SchemaField, SchemaFieldExposure, type SchemaFieldExposureWithLiterals, SchemaFieldFieldType, type SchemaFieldFieldTypeWithLiterals, type SchemaFieldType, type SchemaFieldTypeFieldTypeOneOf, type SchemaGroup, type SchemaGroupElement, type SchemaKey, SchemaScope, type SchemaScopeWithLiterals, Scope, type ScopeWithLiterals, ScriptType, type ScriptTypeWithLiterals, type SdkDefinition, type SearchConfig, type SearchField, type SearchParams, type SecondLevelCategory, type Section, type SentryOptions, type SeoKeywordsSuggestionsSPIConfig, type ServiceAction, type ServiceAvailabilityPolicyProviderConfig, type ServiceTrigger, type Settings, type SettingsPanel, type SettingsPermissions, type SettingsUrl, type SetupFeeConfiguration, type SharedPlatformMobilePushConfig, type ShippingLabelCarrierSpiConfig, type ShippingProviderConfig, type ShippingRatesConfig, type ShoutoutEmail, type Sidebar, type SidebarChildItem, type SidebarChildItemItemOneOf, type SidebarConfig, type SidebarConfigOneOf, SidebarDataType, type SidebarDataTypeWithLiterals, SidebarEntityType, type SidebarEntityTypeWithLiterals, type SidebarRootItem, type SidebarRootItemItemOneOf, type SidebarSecondLevelChildItem, type SidebarSecondLevelChildItemItemOneOf, type SidebarWidget, type SidebarWidgetConfig, type SidebarWidgetConfigOneOf, type Signature, type Simple, type SimpleContainer, type SimpleField, SimpleType, type SimpleTypeWithLiterals, type SingleContent, type SingleKeyCondition, type SiteConfig, type SiteContributorsData, type SiteMemberData, type SiteWidgetSlot, type Size, SizingType, type SizingTypeWithLiterals, type SliderLabeled, type Slot, type SlotData, type SlotDataSlotTypeOneOf, SlotDataType, type SlotDataTypeWithLiterals, type SlotParams, type SmsActionMessage, type SmsChannel, type SmsContentKeys, type SmsMessageConfig, type SmsSmsMessageConfig, type SnippetSolutionData, type SocialMarketingDesignSPIConfig, type SocialMarketingDesignsProviderConfig, type Source, type SourceOptionsOneOf, SourceType, type SourceTypeWithLiterals, type SpamSubmissionPermissions, type Spi, type SpiBaseUri, type Spoiler, type SpoilerData, type StartDateLimitsSPIConfig, type StartDateRulesSPIConfig, type State, StaticContainer, type StaticContainerWithLiterals, type StaticFileComponentData, type StaticFilterOption, type StaticFilterOptions, Status, type StatusWithLiterals, type Step, StorageDomain, type StorageDomainWithLiterals, StorageType, type StorageTypeWithLiterals, StringComponentType, type StringComponentTypeWithLiterals, type StringListOptions, type StringType, type StringTypeFormatOptionsOneOf, type StudioComponentData, type StudioWidgetComponentData, type StudioWidgetVariation, type StyleAction, type StyleItem, type StyleItemDefaults, type StyleItemOverrides, type StyleItemSelectedCssPropertyTypeOneOf, type StyleItemSelectedCssVariableTypeOneOf, StyleType, type StyleTypeWithLiterals, type Styles, type StylesBorder, StylesPosition, type StylesPositionWithLiterals, type SubPage, type SubmitSettings, type SubmitSettingsSubmitSuccessActionOptionsOneOf, SubmitSuccessAction, type SubmitSuccessActionWithLiterals, type SubscriptionInfo, SyncToCalendar, type SyncToCalendarWithLiterals, type SyncedProjectsProviderConfig, type Tab, type TableCellData, type TableData, Tag, type TagOverrides, type TagOverridesEntry, type TagWithLiterals, Target, type TargetWithLiterals, type TaxCalculationConfig, type TaxCalculatorSpiConfig, type TaxCountriesConfig, type TaxGroupsProviderConfig, type TaxIdValidatorConfig, type TaxTypesConfig, type TaxationCategoryProvider, TemplateDefaultColor, type TemplateDefaultColorWithLiterals, TemplateType, type TemplateTypeWithLiterals, type TermsAndConditionsConfiguration, type TermsModalConfiguration, type Text, TextAlignment, type TextAlignmentWithLiterals, type TextData, type TextEnum, type TextInput, TextInputDisplayType, type TextInputDisplayTypeWithLiterals, type TextInputLabeled, type TextInputSettings, type TextNodeStyle, type TextStyle, type TextStyleDefaultColorOneOf, type TextToSpeechActionMessage, type TextWithSuffix, type TextWithSuffixSuffixOneOf, type TextWithTooltip, type ThankYouMessageOptions, type ThankYouPageConfiguration, type ThankYouPageInputConfig, type ThankYouPageModalConfiguration, type ThankYouPagePreviewConfiguration, type ThankYouPageRedirectsConfiguration, type ThumbnailData, ThumbnailType, type ThumbnailTypeWithLiterals, type Thumbnails, ThumbnailsAlignment, type ThumbnailsAlignmentWithLiterals, ThumbnailsSize, type ThumbnailsSizeWithLiterals, type TicketReservationsSpiConfig, type TimeConstraintConfiguration, type TimeConstraintConfigurationValueConstraintsOneOf, TimeConstraintType, type TimeConstraintTypeWithLiterals, type TimeInput, type ToggleLabeled, type ToolPanelConfig, type TooltipSuffix, type TopologyComponentData, type TranslatedData, type TranslatedMessageWithIdRepeated, type TranslatedMessageWithUniqueFieldRepeated, type TranslationResources, Trigger, type TriggerFilter, type TriggerProviderSPIConfig, type TriggerWithLiterals, Type, type TypeWithLiterals, type TypedDynamicParam, TypedDynamicParamType, type TypedDynamicParamTypeWithLiterals, type UnifiedLightbox, type UnifiedPage, type UnifiedPageEditorSettings, UnitType, type UnitTypeWithLiterals, type Until, type UpdateDataExtensionSchemaRequest, type UpdateDataExtensionSchemaResponse, UploadFileFormat, type UploadFileFormatWithLiterals, type UpstreamWixCommonImage, type Url, type UrlData, type UrlParam, type UserNotification, type UserNotificationData, type UserNotificationDataContext, type UserNotificationDataDeeplink, type UserNotificationDataDeeplinkOfOneOf, type UserNotificationDataInitiator, type UserNotificationDataInitiatorDataOneOf, type UserNotificationDataRecipientFilter, type UserNotificationDataRecipientFilterDataOneOf, UserNotificationDataRecipientFilterType, type UserNotificationDataRecipientFilterTypeWithLiterals, UserNotificationDataType, type UserNotificationDataTypeWithLiterals, type V1ImplementedMethods, type V1Link, type V1LinkDataOneOf, type V1Metadata, type V1SchemaField, type V1TextStyle, type V2CommunicationChannelConfiguration, type V2Condition, type V2ImplementedMethods, type V2Rule, type ValidationTarget, type ValidationsSPIConfig, ValueConstraintType, type ValueConstraintTypeWithLiterals, type VeloActionConfig, type VeloCustomCss, type VeloPublishPipelineTaskProviderConfig, type VelocityEmail, VerticalAlignment, type VerticalAlignmentWithLiterals, VerticalDocking, type VerticalDockingWithLiterals, type Video, type VideoData, ViewMode, type ViewModeWithLiterals, ViewRole, type ViewRoleWithLiterals, type ViewerService, type ViewerServiceAssets, type VisibleState, type VoiceChannel, type VoiceContentKeys, VoteRole, type VoteRoleWithLiterals, type WebComponentData, WebComponentDataElementType, type WebComponentDataElementTypeWithLiterals, type WebFeedChannel, type WebFeedContentKeys, type WebhookComponentData, WebhookIdentityType, type WebhookIdentityTypeWithLiterals, type WidgetAsContent, type WidgetBehavior, type WidgetComponent, type WidgetComponentData, type WidgetComponentOptions, type WidgetData, type WidgetDetails, type WidgetDisplay, WidgetHorizontal, type WidgetHorizontalWithLiterals, type WidgetInstallation, type WidgetInstallationSettings, type WidgetInstallationSettingsTargetContainerOneOf, type WidgetOutOfIframeComponentData, type WidgetPluginComponentData, type WidgetSize, type WidgetSizeHeight, type WidgetSizeWidth, type WidgetSlot, WidgetVertical, type WidgetVerticalWithLiterals, WidgetWidthType, type WidgetWidthTypeWithLiterals, Width, WidthType, type WidthTypeWithLiterals, type WidthWithLiterals, type WixApiOptions, WixCodePublishTaskName, type WixCodePublishTaskNameWithLiterals, type WixDependency, type WixFile, WixFileComponentType, type WixFileComponentTypeOptionsOneOf, type WixFileComponentTypeWithLiterals, type WixOfferingComponentData, type WixOfferingComponentDataOfferingOneOf, type WixPagesDomainMapping, type WixUserData, type WixUsersData, type WorkerComponentData, type WritingMode, WritingModeValue, type WritingModeValueWithLiterals, type _Array, type _ArrayComponentTypeOptionsOneOf, type _Boolean, type _BooleanComponentTypeOptionsOneOf, type _Date, type _Function, type _Number, type _Object, type _String, type _StringComponentTypeOptionsOneOf, createDataExtensionSchema, deleteByWhiteListedMetaSite, listDataExtensionSchemas, onDataExtensionSchemaCreated, onDataExtensionSchemaDeleted, onDataExtensionSchemaUpdated, updateDataExtensionSchema };
|
|
15764
|
+
export { type A11y, A11yAttributes, type A11yAttributesWithLiterals, AcceptedDirectMessageType, type AcceptedDirectMessageTypeWithLiterals, AcceptedMessageTypesAcceptedDirectMessageType, type AcceptedMessageTypesAcceptedDirectMessageTypeWithLiterals, AcceptedMessageTypesAcceptedSmsMessageType, type AcceptedMessageTypesAcceptedSmsMessageTypeWithLiterals, AcceptedSmsMessageType, type AcceptedSmsMessageTypeWithLiterals, type Action, type ActionCondition, type ActionEvent, ActionName, type ActionNameWithLiterals, type ActionProviderSPIConfig, type ActionSPIConfig, type ActionSPIConfigImplementedMethods, type ActionSPIConfigInterfaceConfiguration, type ActionSPIConfigInterfaceConfigurationOptionsOneOf, ActionSPIConfigInterfaceConfigurationType, type ActionSPIConfigInterfaceConfigurationTypeWithLiterals, type ActionSpiConfig, ActionType, type ActionTypeWithLiterals, type Actions, type AdaptiveComponentProviderConfig, type AddCustomFields, type AdditionalFeesSPIConfig, type AdditionalStepInfo, type AdditionalTaxGroup, type AddonMarketData, type AddressInfo, AddressInfoTag, type AddressInfoTagWithLiterals, type AddressLine2, type AdminConfigurableTextInput, type AlertEnricherSpiConfiguration, type AlgorithmConfig, AlgorithmType, type AlgorithmTypeWithLiterals, Alignment, type AlignmentWithLiterals, type AllowedValuesOptions, type AlternativeUri, type AnchorData, type AnchorMetaData, type AndCondition, type AndroidMobilePushConfig, AndroidStyle, type AndroidStyleWithLiterals, type ApiSlot, type ApiWidth, type AppConfig, type AppConfiguration, type AppData, type AppDeploymentProviderConfig, type AppEmbedData, type AppEmbedDataAppDataOneOf, type AppEnvironmentProviderConfig, type AppPermissions, type AppPreviewProviderConfig, type AppRuntimeDataCacheEntity, type AppRuntimeDataEvent, AppType, type AppTypeWithLiterals, type ApplicationAutomationComponent, type ApplicationProfile, type ApplicationProfileProviderConfig, Archetype, type ArchetypeWithLiterals, ArrayComponentType, type ArrayComponentTypeWithLiterals, type ArrayItems, type ArrayItemsArrayDataOneOf, type ArrayType, type ArrayTypeArrayItems, type ArrayTypeArrayItemsItemTypeOptionsOneOf, AspectRatio, type AspectRatioWithLiterals, type AssistantSpiConfig, type AudienceProviderConfig, type AudioData, type AuthenticatorConfig, type AutomationMetadata, type AutomationTrigger, type AvailabilityTimeSlotsProviderConfig, type AvatarConfig, AvatarShape, type AvatarShapeWithLiterals, type BackOfficeCustomization, type BackOfficeCustomizationSidebarEntity, type BackOfficeCustomizationSidebarEntityItemOneOf, type BackOfficeExtension, type BackOfficeExtensionContainer, type BackOfficeExtensionExtensionOneOf, type BackOfficeExtensionMenuItem, type BackOfficeExtensionWidget, type BackOfficeExtensionWidgetAssetOneOf, type BackOfficeExternalUrl, BackOfficeHostingPlatforms, type BackOfficeHostingPlatformsWithLiterals, type BackOfficeModal, type BackOfficeModalContentOneOf, type BackOfficePage, type BackOfficePageAssetOneOf, type BackOfficeRestrictedCustomization, type BackOfficeScriptAsset, BackOfficeScriptAssetType, type BackOfficeScriptAssetTypeWithLiterals, type BackOfficeSidebarCategory, type BackOfficeWidget, type BackOfficeWidgetContentOneOf, type BackdropFilter, type BackendWorker, type Background, BackgroundModeEnum, type BackgroundModeEnumWithLiterals, BackgroundType, type BackgroundTypeWithLiterals, type BackofficeActionDeeplink, type BarAlignment, BarAlignmentSelected, type BarAlignmentSelectedWithLiterals, type BaseEventMetadata, type BaseInfo, type BaseInstallation, type Behaviors, type BillingSettingsConfig, BlockType, type BlockTypeWithLiterals, type BlockquoteData, type BlocksData, type BlogPaywallProviderConfig, type BookingData, type BookingPolicyProviderConfig, type BookingsPricingProviderConfig, type BookingsResourceType, type BookingsResourceTypesProviderConfig, type BoolListOptions, BooleanComponentType, type BooleanComponentTypeWithLiterals, type BooleanExperimentExposureRule, type BooleanType, type Border, type BorderColors, type BrandIcons, type BreakPoint, type BreakPointSection, type Breakpoint, type Breakpoints, type BroadcastList, type BrowserPushChannel, type BrowserPushContentKeys, type BrowserStorage, type BuilderSpi, type BulletedListData, type Bundle, type BusinessManagerPage, type ButtonData, ButtonDataType, type ButtonDataTypeWithLiterals, type ButtonStyles, CalendarType, type CalendarTypeWithLiterals, type CaptionData, type CardStyles, CardStylesType, type CardStylesTypeWithLiterals, type CatalogSPIConfig, type CatalogSyncConfiguration, type CellStyle, ChangeableProperty, type ChangeablePropertyWithLiterals, type ChannelBrandIcons, type ChannelBranding, type ChannelChannelBranding, type ChannelChannelConfiguration, type ChannelChannelConfigurationMessagingConfigOneOf, type ChannelConfiguration, ChannelConfigurationChannelType, type ChannelConfigurationChannelTypeWithLiterals, type ChannelConfigurationMessagingConfigOneOf, type ChannelIcon, type ChannelImplementedMethods, type ChannelMediaCapabilities, ChannelType, type ChannelTypeWithLiterals, type Checkbox, type CheckboxConfiguration, type CheckboxField, type CheckboxGroup, type CheckboxGroupOption, type CheckoutContentSPIConfig, type ClientResources, type ClientSideService, type CodeBlockData, type CodePackageComponentData, type CodePanel, type CollapsibleListData, type Color, type ColorData, type ColorDefinition, type ColorSelectLabeled, type ColorSelectLabeledDataOneOf, type Colors, type CommentFilterProviderConfig, type CommentModerationProviderConfig, type CommentsContextProviderConfig, type CommonCustomOption, type CommonImage, type CommunicationChannelConfiguration, type ComponentData, type ComponentDataDataOneOf, type ComponentEnricherConfig, type ComponentInitialSize, type ComponentMetaData, type ComponentModel, type ComponentReferenceDataConfig, type ComponentTranslationAdditionalFieldsConfig, ComponentType, type ComponentTypeWithLiterals, type ComponentsMultilineAddress, type ComponentsValidatorConfig, type Condition, type ConditionBlock, type ConditionNode, type ConditionNodeNodeOneOf, type Conditions, type Configuration, ConfirmationLevel, type ConfirmationLevelWithLiterals, ConnectMethod, type ConnectMethodWithLiterals, ConsentCategory, type ConsentCategoryWithLiterals, type Consequence, type ConstOrDynamicParam, type ConstOrDynamicParamValueOneOf, type Constraint, type ContactData, ContactField, type ContactFieldWithLiterals, type ContactLabelsComponentData, type ContactNotification, type ContactsData, type ContactsNotificationData, type Container, type ContainerDataOneOf, type ContainerLayout, type ContainerStyleOverrides, ContainerType, type ContainerTypeWithLiterals, type ContentData, type ContentDataOverrides, type ContentProviderConfig, ContentResizeDirection, type ContentResizeDirectionWithLiterals, type Context, type ConversationLimitations, type Coordinates, type CoreApps, type Corners, type CountrySubdivisionListOptions, type CoverImageConfiguration, type CreateDataExtensionSchemaRequest, type CreateDataExtensionSchemaResponse, type CreateNewItemInfo, type CreatedByCacheEntity, Crop, type CropWithLiterals, type CrossSellConfig, CssDataType, type CssDataTypeWithLiterals, type CssNumber, CssPropertyType, type CssPropertyTypeWithLiterals, CssVariableTypeEnumCssDataType, type CssVariableTypeEnumCssDataTypeWithLiterals, type CurrencyCodeListOptions, type CustomChargesConfig, type CustomElement, type CustomElementConsentCategoryOneOf, CustomElementScriptType, type CustomElementScriptTypeWithLiterals, type CustomElementWidget, type CustomEnum, type CustomEnumOption, type CustomEnumOptionCssProperty, type CustomExperimentExposureRule, type CustomFieldInfo, CustomFieldsType, type CustomFieldsTypeWithLiterals, type CustomOption, type CustomPermission, type CustomRefData, type CustomReservationsApprovalConfig, type CustomRewardProviderConfig, type CustomScopeConfig, type CustomTriggerConfig, type DCConfigData, type Dashboard, type DashboardAction, type DashboardApplicationData, type DashboardButton, type DashboardComponentData, type DashboardItem, type DashboardPlatfromComponentData, type DataAction, type DataComponent, type DataExtensionSchema, type DataExtensionSchemaCreatedEnvelope, type DataExtensionSchemaDeletedEnvelope, DataExtensionSchemaState, type DataExtensionSchemaStateWithLiterals, type DataExtensionSchemaUpdatedEnvelope, type DataExtensionsComponentData, type DataItem, type DataItemOverrides, type DataItemSelectedDataTypeOneOf, type DataItems, DataType, type DataTypeWithLiterals, type DateInput, type DatePicker, type DateTimeConstraints, type DateTimeInput, type Debounce, type DecimalListOptions, type Decoration, type DecorationDataOneOf, DecorationType, type DecorationTypeWithLiterals, type Deeplink, type DeeplinkOfOneOf, Default, type DefaultCountryConfig, type DefaultCountryConfigOptionsOneOf, DefaultCountryConfigType, type DefaultCountryConfigTypeWithLiterals, type DefaultPresets, type DefaultTaxGroupProviderConfig, DefaultTextStyle, type DefaultTextStyleWithLiterals, type DefaultWithLiterals, type Definition, type Delay, type DelayTypeOneOf, type DeleteByWhiteListedMetaSiteRequest, type DeleteByWhiteListedMetaSiteResponse, type DeleteDemoDataExtensionSchemaRequest, type DeleteDemoDataExtensionSchemaResponse, type DeleteGlobalExtensionSchemaRequest, type DeleteGlobalExtensionSchemaResponse, type DeleteTemplateFields, type DeleteUserDefinedFieldsRequest, type DeleteUserDefinedFieldsResponse, type DeploymentPipelineProviderConfig, type Description, type Design, type DevCenterTestingComponentData, type DevCenterTestingComponentDataTranslatableOneOfOneOf, type Dimension, type Dimensions, type DirectMessageConfig, Direction, type DirectionWithLiterals, type DiscountConfig, type DiscountsSPIConfig, type DiscoveryMetaData, type Display, type DisplayField, type DisplayFieldDisplayFieldTypeOptionsOneOf, DisplayFieldType, type DisplayFieldTypeWithLiterals, type DisplayFilter, type DisplayFilters, type DisplayGroupAction, type DisplayGroupItem, type DisplayGroupItemSelectedGroupTypeOneOf, type DisplayProperties, type DisplayValue, DisplayValueEnumDisplayValue, type DisplayValueEnumDisplayValueWithLiterals, type DisputeServicePluginConfig, type DividerData, DividerDataAlignment, type DividerDataAlignmentWithLiterals, DividerDataWidth, type DividerDataWidthWithLiterals, type DmDirectMessageConfig, type Docking, type DockingProperties, type DocumentStyle, Domain, type DomainEvent, type DomainEventBodyOneOf, type DomainWithLiterals, type DonationInput, type DonationInputOption, type DrillInListItem, type DrillItem, type DrillItemDataOneOf, type DropDownLabeled, type Dropdown, type DropdownCustomOption, type DropdownField, type DropdownFieldOption, type DropdownOption, type DropshippingProviderSPIConfig, type DtsContent, type DtsDefinitionReference, type DtsDefinitionReferenceDtsDefinitionOneOf, DtsDefinitionType, type DtsDefinitionTypeWithLiterals, type DtsHttpLink, type DurationInputConfiguration, type DurationRenameOptions, type DynamicPriceOptions, type DynamicSiteStructureProviderConfig, type EditableFields, EditableProperties, type EditablePropertiesWithLiterals, type EditorAddon, type EditorBehaviors, type EditorElement, type EditorElementLayout, type EditorPresence, type EditorReactComponent, EffectGroup, type EffectGroupWithLiterals, ElementDisplayOption, type ElementDisplayOptionWithLiterals, type ElementItem, type ElementItemSelectedElementTypeOneOf, type ElementState, type ElementStyleDefaults, ElementType, type ElementTypeWithLiterals, type EmailChannel, type EmailEmailMessageConfig, type EmailInfo, EmailInfoTag, type EmailInfoTagWithLiterals, type EmailMessageConfig, type EmailTemplateConfig, type EmailTemplateConfigProviderOneOf, EmbedCategory, type EmbedCategoryWithLiterals, type EmbedData, type EmbeddedScriptComponentData, EmbeddedScriptPages, type EmbeddedScriptPagesWithLiterals, EmbeddedScriptPlacement, type EmbeddedScriptPlacementWithLiterals, type Empty, type EntityCreatedEvent, type EntityDeletedEvent, type EntityUpdatedEvent, Environment, type EnvironmentWithLiterals, type ErrorReporting, type ErrorReportingArtifact, Escalation, type EscalationWithLiterals, type EventAction, type EventBadgesSpiConfig, type EventData, type EventMetadata, type EventTimeSlotsProviderConfig, type EventTypeProviderConfig, type EventValidationProviderConfig, type Execution, type ExecutionActionExecuteOneOf, ExecutionType, type ExecutionTypeWithLiterals, type ExpectedInputs, type ExperimentGroupWrapper, type ExportMetadata, Exposure, type ExposureRule, type ExposureRuleRuleOneOf, ExposureRuleType, type ExposureRuleTypeWithLiterals, type ExposureWithLiterals, type Extendable, ExtendingComponentType, type ExtendingComponentTypeWithLiterals, type ExtensionData, type ExtensionDetails, type ExtensionExposure, ExtensionType, type ExtensionTypeWithLiterals, type ExternalDatabaseSpiConfig, type ExternalFilterProviderConfig, type FactorConfig, FactorType, type FactorTypeWithLiterals, type FeedAggregation, type FeedChannels, type FeedChannelsConfig, type FeesSPIConfig, type Field, type FieldFieldTypeOptionsOneOf, type FieldGroup, type FieldOverride, type FieldOverridePropertyTypeOptionsOneOf, type FieldOverrides, FieldType, type FieldTypeWithLiterals, type FieldsOverrides, type FieldsSettings, type FileData, type FileSource, type FileSourceDataOneOf, type FileUpload, type Filter, FilterFunction, type FilterFunctionWithLiterals, type FilterInfo, type FilterInfoOptionsOneOf, FilterOptionsType, type FilterOptionsTypeWithLiterals, FilterSelectionType, type FilterSelectionTypeWithLiterals, FilterValueDefinitionMode, type FilterValueDefinitionModeWithLiterals, type FilteringCapability, FirstDayOfWeek, type FirstDayOfWeekWithLiterals, type FirstLevelCategory, type FixedPositionOptions, type FixedPriceOptions, type FocalPoint, type Font, type FontDefinition, type FontFamilyWithColorPicker, type FontSizeData, FontType, type FontTypeWithLiterals, type FormFieldContactInfo, type FormFieldContactInfoAdditionalInfoOneOf, type FormLayout, type FormOverride, type FormOverrideEntityTypeOptionsOneOf, type FormSchemaDynamicValuesSpiConfig, type FormSchemaSpiConfig, type FormSpamSubmissionReportPermissions, type FormSpamSubmissionReportSpiConfig, type FormSpamSubmissionReportsNamespaceConfig, type FormSpamSubmissionSpiConfig, type FormSpiExtensionConfig, type FormSubmissionModerationSpiConfig, type FormSubmissionModerationSpiNamespaceConfig, type FormSubmissionSpiConfig, type FormSubmissionSpiExtensionConfig, type FormTemplate, type FormTemplateTemplateTypeOptionsOneOf, Format, type FormatWithLiterals, type FormsPermissions, type FormsSchemaNamespaceConfig, type FormsSpamSubmissionsNamespaceConfig, type FormsSubmissionsExtensionNamespaceConfig, type FormsSubmissionsNamespaceConfig, type ForwardAction, type ForwardActionActionOneOf, type FreeOptionConfiguration, type FreeTrialConfiguration, type FunctionDefinition, type FunctionRecipe, type FunctionsShopPriceSpiConfig, type GIF, type GIFData, GIFType, type GIFTypeWithLiterals, type GalleryData, type GalleryOptions, type GalleryOptionsLayout, type GalleryOptionsThumbnails, type Gap, type GbpFeatureConfig, type GenericHookConfig, type GenericHooksConfig, type GenericOptions, type GiftCardProviderConfig, type Gradient, type GradualDeleteCacheEntity, type GradualRolloutCacheEntity, type GradualUpdateCacheEntity, type GridAppFilesTransformerConfig, GroupType, type GroupTypeWithLiterals, type GroupedContent, type HTMLData, type HTMLDataDataOneOf, HTMLDataSource, type HTMLDataSourceWithLiterals, HTTPMethod, type HTTPMethodWithLiterals, type Header, type HeaderConfig, type HeaderConfigHeaderConfigOneOf, type HeaderConfigOneOf, type HeaderWidgetConfig, type HeadingData, type HeadlessOAuth, type Height, HeightMode, type HeightModeWithLiterals, type HelpResources, type HiddenOptions, HookType, type HookTypeWithLiterals, HorizontalDocking, type HorizontalDockingWithLiterals, HostContainerId, type HostContainerIdWithLiterals, type HostedComponent, type HostedPage, type IDPConnectionConfig, type Icon, type IconDataOneOf, IconType, type IconTypeWithLiterals, type IdentificationData, type IdentificationDataIdOneOf, type Illustration, type IllustrationIllustrationOneOf, type Image, type ImageConfig, type ImageData, type ImageDataStyles, type ImageDataStylesBorder, ImageFit, type ImageFitWithLiterals, ImageShape, type ImageShapeWithLiterals, type ImageStyles, ImageStylesPosition, type ImageStylesPositionWithLiterals, type Implementation, type ImplementedMethods, ImportanceLevel, type ImportanceLevelWithLiterals, InitDirection, type InitDirectionWithLiterals, InitialExpandedItems, type InitialExpandedItemsWithLiterals, type InitialPosition, type InitialSizeSetting, type InitialSizeSettingSelectedSizingTypeOneOf, type Initiator, type InitiatorDataOneOf, InitiatorType, type InitiatorTypeWithLiterals, type InlineElement, type Input, type InputConfiguration, type InputField, type InputFieldInputTypeOptionsOneOf, type InputField_Number, type InputField_NumberComponentTypeOptionsOneOf, InputType, type InputTypeWithLiterals, type InputWithPlaceholder, InstallPage, type InstallPageWithLiterals, type InstallationInfo, type InstallationInfoTargetContainerOneOf, type InstallationSettings, type InstallationSettingsOptionsOneOf, type IntListOptions, type IntegerType, Intent, type IntentWithLiterals, type Interactions, type InterfaceConfiguration, type InterfaceConfigurationOfTypeOneOf, InterfaceConfigurationType, type InterfaceConfigurationTypeWithLiterals, type InternalComponentMetadata, type InventorySpiConfig, type InvoicesActionsComponentData, type InvoicesConfig, type IsStretched, type Item, type ItemDataOneOf, type ItemImage, type ItemLayout, type ItemSelection, type ItemSelectionOptions, type ItemStyle, type ItemThumbnail, type ItemThumbnailOptionsOneOf, ItemType, type ItemTypeWithLiterals, type ItemsGroup, type ItemsSelectionProviderConfig, type Keywords, type LanguageTagListOptions, Layout, type LayoutCellData, LayoutType, type LayoutTypeWithLiterals, type LayoutWithLiterals, type LearnMore, type LegacyBackOfficeExtensionWidget, type LegacyBackOfficeExtensionWidgetAssetOneOf, type LegacyBackOfficeMenuItem, type LegacyBackOfficeMenuItemAction, type LegendsSpiConfig, Level, type LevelWithLiterals, type LightboxCloseOptions, type LightboxContent, type LightboxEditorSettings, type LightboxOptions, type LimiterField, type LineItemsEnricherConfig, LineStyle, type LineStyleWithLiterals, type Link, type LinkData, type LinkPreviewData, type LinkPreviewDataStyles, type LinkSuffix, LinkTarget, type LinkTargetWithLiterals, LinkType, type LinkTypeWithLiterals, type ListDataExtensionSchemasOptions, type ListDataExtensionSchemasRequest, type ListDataExtensionSchemasResponse, ListEventFromCalendars, type ListEventFromCalendarsWithLiterals, type ListValue, type LiveSiteActionDeeplink, type LocalDeliveryComponentData, LockableOperation, type LockableOperationWithLiterals, type Logo, type Logos, type Main, type MainPresets, type MainPropsData, MandatoryField, type MandatoryFieldWithLiterals, type MapData, type MapSettings, MapType, type MapTypeWithLiterals, type Margin, type Margins, type MarketplaceSPIConfig, Maturity, type MaturityWithLiterals, MeasurementSystem, type MeasurementSystemWithLiterals, type Media, type MediaCapabilities, type MediaItem, type MediaItemMediaOneOf, MediaMimeType, type MediaMimeTypeWithLiterals, type MembershipsSPIConfig, type MentionData, type MenuAction, type MenuActionActionOneOf, type MenuDropdown, type MenuLink, type MenuSlot, type MessageContainingTranslatables, type MessageEnvelope, type Metadata, Method, type MethodWithLiterals, type MinMaxRange, MobileApplication, type MobileApplicationWithLiterals, type MobileFeedChannel, type MobileFeedContentKeys, type MobilePushChannel, type MobilePushChannelConfig, type MobilePushContentKeys, type ModalParams, type Monitoring, type MonitoringOptionsOneOf, MonitoringType, type MonitoringTypeWithLiterals, type MultiServiceBookingPolicyProviderConfig, type MultilineAddress, MultilineAddressComponentType, type MultilineAddressComponentTypeOptionsOneOf, type MultilineAddressComponentTypeWithLiterals, type MultilineAddressValidation, type MultilingualTranslationSchema, type MultipleDashboardsComponentData, type Namespace, type NamespaceConfig, NativeStateType, type NativeStateTypeWithLiterals, type NavigateToPageAction, NavigationType, type NavigationTypeWithLiterals, type NestedWidgets, type Node, type NodeDataOneOf, type NodeStyle, NodeType, type NodeTypeWithLiterals, type NotificationChannels, type NotificationContent, type NotificationPreferencesFilterConfig, type NotificationTopic, NotificationTopicState, type NotificationTopicStateWithLiterals, NotificationTopicType, type NotificationTopicTypeWithLiterals, type Npm, NullValue, type NullValueWithLiterals, NumberComponentType, type NumberComponentTypeWithLiterals, type NumberInput, NumberOfColumns, type NumberOfColumnsWithLiterals, type NumberType, OAuthAppType, type OAuthAppTypeWithLiterals, OAuthTechnologies, type OAuthTechnologiesWithLiterals, type ObjectType, type Oembed, type Offset, type OffsetValueOneOf, type OneTimeOptionConfiguration, type OpenComponent, type OpenModalAction, type OperationExecutorConfig, Operator, type OperatorConfiguration, OperatorEnumOperator, type OperatorEnumOperatorWithLiterals, type OperatorWithLiterals, type Option, type OptionDesign, type OptionLayout, type OrCondition, type OrderValue, type OrderedListData, Orientation, type OrientationWithLiterals, type OriginInfo, type OutOfIframeData, type Output, OverrideEntityType, type OverrideEntityTypeWithLiterals, type OverrideTemplateFields, type PDFSettings, PDFSettingsViewMode, type PDFSettingsViewModeWithLiterals, type PackageDimension, type PackageType, type Padding, type Page, type PageAnchor, type PageComponentData, type PageContent, type PageDashboardApplicationComponent, type PageEditorSettings, type PageInstallation, type PageInstallationSettings, type PageNavigationOptions, type PageOptions, type PageOutOfIframeComponentData, type PageReplace, type PageReplaceOptions, type PageReplaceOptionsOptionsOneOf, type PageWidgetAsContent, PaginationMode, type PaginationModeWithLiterals, type Panel, type PanelAction, type PanelActionSelectedPanelTypeOneOf, PanelContentType, type PanelContentTypeWithLiterals, type PanelSelectedContentTypeOneOf, type PanelSize, PanelType, type PanelTypeWithLiterals, type PanoramaOptions, type ParagraphData, type Param, type Parameter, ParameterType, type ParameterTypeWithLiterals, type ParameterValueDefinitionDetailsOneOf, PartialPaymentRestriction, type PartialPaymentRestrictionWithLiterals, type PartialUpdateCacheEntity, ParticipantType, type ParticipantTypeWithLiterals, type PatternsWizard, type Payment, PaymentComponentType, type PaymentComponentTypeOptionsOneOf, type PaymentComponentTypeWithLiterals, type PaymentDateModification, type PaymentMethod, type PaymentMethodMethodOneOf, type PaymentServiceProviderConfig, type PaymentServiceProviderCredentialsField, type PaymentServiceProviderCredentialsFieldFieldOneOf, type PaymentSettingsSPIConfig, type PaymentType, type PaymentsGatewayComponentData, type PayoutsProviderConfig, type PerkValues, type PerksConfiguration, type Permissions, type PhoneConstraints, type PhoneInfo, PhoneInfoTag, type PhoneInfoTagWithLiterals, type PhoneInput, type PingNotificationComponentData, type PingSettingsGroupComponentData, PingSettingsGroupComponentDataState, type PingSettingsGroupComponentDataStateWithLiterals, type PlaceHolder, Placement, type PlacementWithLiterals, type PlanDuration, type PlanFormBenefitsSection, type PlanFormCustomSection, PlanFormDefaultSection, type PlanFormDefaultSectionWithLiterals, type PlanFormInfoSection, type PlanFormInitialValue, type PlanFormPagePermissionsSection, type PlanFormPlanSettingsSection, type PlanFormPreviewSection, type PlanFormPricingAndDurationSection, PlanFormPricingOption, type PlanFormPricingOptionWithLiterals, type PlanFormSection, type PlanFormSectionSectionOneOf, type PlanFormTypeMetadata, PlanPeriodUnit, type PlanPeriodUnitWithLiterals, type PlanPriceData, type PlanPricing, type PlanPricingPricingModelOneOf, type PlanSettingsRowConfiguration, type PlatformHeaderConfig, type PlatfromComponentData, type PlaybackOptions, type PluginConfig, type PluginContainerData, PluginContainerDataAlignment, type PluginContainerDataAlignmentWithLiterals, type PluginContainerDataHeight, type PluginContainerDataWidth, type PluginContainerDataWidthDataOneOf, type PluginInstallationSettings, PluginInterface, type PluginInterfaceWithLiterals, type PluginMarketData, type PluginPlacement, type PolicyConfig, type Poll, type PollData, type PollDataLayout, type PollDesign, type PollDesignBackground, type PollDesignBackgroundBackgroundOneOf, type PollLayout, PollLayoutDirection, type PollLayoutDirectionWithLiterals, PollLayoutType, type PollLayoutTypeWithLiterals, type PollOption, type PollSettings, type Position, type PostLoginConfig, type PreRegisterConfig, type PredefinedExpectedInput, type PredefinedExpectedInputConfiguration, type PredefinedExpectedInputConfigurationTypeOneOf, type PredefinedLabel, type PredefinedValues, type Preset, type PresetEditorPresence, type PresetInfo, type PresetItem, type PresetSize, type PreviewCardPlaceholders, type PreviewConfiguration, type PreviewFields, type PriceSPIConfig, PriceType, type PriceTypeWithLiterals, type PricingPlansFormConfiguration, type PricingRecurring, type Primitive, PrimitiveType, type PrimitiveTypeWithLiterals, type Product, type ProductCatalogProviderConfig, type ProductCheckboxGroup, type ProductCheckboxGroupOption, type ProductPriceOptionsOneOf, type ProductRestrictionsConfig, ProductType, type ProductTypeWithLiterals, type ProductsPathsConfig, type Project, type PropertiesType, PropertiesTypeEnum, type PropertiesTypeEnumWithLiterals, type PropertiesTypePropertiesTypeOptionsOneOf, type ProposalEditorProviderConfig, type ProviderAccountServicePluginConfig, type ProviderConfig, type ProviderConfigMessage, type ProviderFilterOptions, type PurchaseValidationsConfig, type QuantityLimit, type RadioButtonLabeled, type RadioGroup, type RadioGroupCustomOption, type RadioGroupOption, type RangeConstraints, type RateLimit, type RatingInput, type ReactElementContainer, type ReactElementContainerSelectedContainerTypeOneOf, type RecipientFilter, type RecipientFilterDataOneOf, RecipientFilterType, type RecipientFilterTypeWithLiterals, RecipientType, type RecipientTypeWithLiterals, type RecommendationsProviderConfig, type RecurringOptionConfiguration, type RedirectOptions, type RefElement, type RefInnerElementDefaults, Region, RegionType, type RegionTypeWithLiterals, type RegionWithLiterals, type ReindexEvent, type ReindexField, type Rel, type RenderOverrides, type ReplaceableOptions, ReplacementType, type ReplacementTypeWithLiterals, type ReplacingOptions, RequestedField, type RequestedFieldWithLiterals, RequiredIndicator, RequiredIndicatorPlacement, type RequiredIndicatorPlacementWithLiterals, type RequiredIndicatorProperties, type RequiredIndicatorWithLiterals, type RequiredOptions, type ResetButton, ResizeDirection, type ResizeDirectionWithLiterals, Resizing, type ResizingWithLiterals, type Resource, type Resources, type ResponsysEmail, type RestaurantsPOSComponentData, type RestoreInfo, RestrictedOperation, type RestrictedOperationWithLiterals, type Restriction, RestrictionLevel, type RestrictionLevelWithLiterals, type Restrictions, type RestrictionsConfig, type ReviewsEntityCatalogProviderConfig, type ReviewsProductCatalogProviderConfig, type RewardProviderConfig, type RibbonStyles, type RichContent, type RichContentOptions, type RichTextWithIllustrationVertical, type Rule, type RuntimeComponentCacheEntity, type RuntimeComponentCacheEntityComponent, type RuntimeComponentCacheEntityComponentOneOf, type RuntimeComponentCacheEntityExperiment, type RuntimeComponentCacheEntityExperimentExperimentOneOf, type SDKExports, type SDKExportsNpm, type Schema, type SchemaConfig, type SchemaField, SchemaFieldExposure, type SchemaFieldExposureWithLiterals, SchemaFieldFieldType, type SchemaFieldFieldTypeWithLiterals, type SchemaFieldType, type SchemaFieldTypeFieldTypeOneOf, type SchemaGroup, type SchemaGroupElement, type SchemaKey, SchemaScope, type SchemaScopeWithLiterals, Scope, type ScopeWithLiterals, ScriptType, type ScriptTypeWithLiterals, type SdkDefinition, type SearchConfig, type SearchField, type SearchParams, type SecondLevelCategory, type Section, type SentryOptions, type SeoKeywordsSuggestionsSPIConfig, type ServiceAction, type ServiceAvailabilityPolicyProviderConfig, type ServiceTrigger, type Settings, type SettingsPanel, type SettingsPermissions, type SettingsUrl, type SetupFeeConfiguration, type SharedPlatformMobilePushConfig, type ShippingLabelCarrierSpiConfig, type ShippingProviderConfig, type ShippingRatesConfig, type ShorthandGroupBackground, type ShoutoutEmail, type Sidebar, type SidebarChildItem, type SidebarChildItemItemOneOf, type SidebarConfig, type SidebarConfigOneOf, SidebarDataType, type SidebarDataTypeWithLiterals, SidebarEntityType, type SidebarEntityTypeWithLiterals, type SidebarRootItem, type SidebarRootItemItemOneOf, type SidebarSecondLevelChildItem, type SidebarSecondLevelChildItemItemOneOf, type SidebarWidget, type SidebarWidgetConfig, type SidebarWidgetConfigOneOf, type Signature, type Simple, type SimpleContainer, type SimpleField, SimpleType, type SimpleTypeWithLiterals, type SingleContent, type SingleKeyCondition, type SiteConfig, type SiteContributorsData, type SiteMemberData, type SiteWidgetSlot, type Size, SizingType, type SizingTypeWithLiterals, type SliderLabeled, type Slot, type SlotData, type SlotDataSlotTypeOneOf, SlotDataType, type SlotDataTypeWithLiterals, type SlotParams, type SmsActionMessage, type SmsChannel, type SmsContentKeys, type SmsMessageConfig, type SmsSmsMessageConfig, type SnippetSolutionData, type SocialMarketingDesignSPIConfig, type SocialMarketingDesignsProviderConfig, type Source, type SourceOptionsOneOf, SourceType, type SourceTypeWithLiterals, type SpamSubmissionPermissions, type Spi, type SpiBaseUri, type Spoiler, type SpoilerData, type StartDateLimitsSPIConfig, type StartDateRulesSPIConfig, type State, StaticContainer, type StaticContainerWithLiterals, type StaticFileComponentData, type StaticFilterOption, type StaticFilterOptions, Status, type StatusWithLiterals, type Step, StorageDomain, type StorageDomainWithLiterals, StorageType, type StorageTypeWithLiterals, StringComponentType, type StringComponentTypeWithLiterals, type StringListOptions, type StringType, type StringTypeFormatOptionsOneOf, type StudioComponentData, type StudioWidgetComponentData, type StudioWidgetVariation, type StyleAction, type StyleItem, type StyleItemDefaults, type StyleItemOverrides, type StyleItemSelectedCssPropertyTypeOneOf, type StyleItemSelectedCssVariableTypeOneOf, type StyleItemSelectedItemTypeOneOf, StyleType, type StyleTypeWithLiterals, type Styles, type StylesBorder, StylesPosition, type StylesPositionWithLiterals, type SubPage, type SubmitSettings, type SubmitSettingsSubmitSuccessActionOptionsOneOf, SubmitSuccessAction, type SubmitSuccessActionWithLiterals, type SubscriptionInfo, SyncToCalendar, type SyncToCalendarWithLiterals, type SyncedProjectsProviderConfig, type Tab, type TableCellData, type TableData, Tag, type TagOverrides, type TagOverridesEntry, type TagWithLiterals, Target, type TargetWithLiterals, type TaxCalculationConfig, type TaxCalculatorSpiConfig, type TaxCountriesConfig, type TaxGroupsProviderConfig, type TaxIdValidatorConfig, type TaxTypesConfig, type TaxationCategoryProvider, TemplateDefaultColor, type TemplateDefaultColorWithLiterals, TemplateType, type TemplateTypeWithLiterals, type TermsAndConditionsConfiguration, type TermsModalConfiguration, type Text, TextAlignment, type TextAlignmentWithLiterals, type TextData, type TextDecoration, type TextEnum, type TextInput, TextInputDisplayType, type TextInputDisplayTypeWithLiterals, type TextInputLabeled, type TextInputSettings, type TextNodeStyle, type TextStyle, type TextStyleDefaultColorOneOf, type TextToSpeechActionMessage, type TextWithSuffix, type TextWithSuffixSuffixOneOf, type TextWithTooltip, type ThankYouMessageOptions, type ThankYouPageConfiguration, type ThankYouPageInputConfig, type ThankYouPageModalConfiguration, type ThankYouPagePreviewConfiguration, type ThankYouPageRedirectsConfiguration, type ThumbnailData, ThumbnailType, type ThumbnailTypeWithLiterals, type Thumbnails, ThumbnailsAlignment, type ThumbnailsAlignmentWithLiterals, ThumbnailsSize, type ThumbnailsSizeWithLiterals, type TicketReservationsSpiConfig, type TimeConstraintConfiguration, type TimeConstraintConfigurationValueConstraintsOneOf, TimeConstraintType, type TimeConstraintTypeWithLiterals, type TimeInput, type ToggleLabeled, type ToolPanelConfig, type TooltipSuffix, type TopologyComponentData, type TranslatedData, type TranslatedMessageWithIdRepeated, type TranslatedMessageWithUniqueFieldRepeated, type TranslationResources, Trigger, type TriggerFilter, type TriggerProviderSPIConfig, type TriggerWithLiterals, Type, type TypeWithLiterals, type TypedDynamicParam, TypedDynamicParamType, type TypedDynamicParamTypeWithLiterals, type UnifiedLightbox, type UnifiedPage, type UnifiedPageEditorSettings, UnitType, type UnitTypeWithLiterals, type Until, type UpdateDataExtensionSchemaRequest, type UpdateDataExtensionSchemaResponse, UploadFileFormat, type UploadFileFormatWithLiterals, type UpstreamWixCommonImage, type Url, type UrlData, type UrlParam, type UserNotification, type UserNotificationData, type UserNotificationDataContext, type UserNotificationDataDeeplink, type UserNotificationDataDeeplinkOfOneOf, type UserNotificationDataInitiator, type UserNotificationDataInitiatorDataOneOf, type UserNotificationDataRecipientFilter, type UserNotificationDataRecipientFilterDataOneOf, UserNotificationDataRecipientFilterType, type UserNotificationDataRecipientFilterTypeWithLiterals, UserNotificationDataType, type UserNotificationDataTypeWithLiterals, type V1ImplementedMethods, type V1Link, type V1LinkDataOneOf, type V1Metadata, type V1SchemaField, type V1TextStyle, type V2CommunicationChannelConfiguration, type V2Condition, type V2ImplementedMethods, type V2Rule, type ValidationTarget, type ValidationsSPIConfig, ValueConstraintType, type ValueConstraintTypeWithLiterals, type VeloActionConfig, type VeloCustomCss, type VeloPublishPipelineTaskProviderConfig, type VelocityEmail, VerticalAlignment, type VerticalAlignmentWithLiterals, VerticalDocking, type VerticalDockingWithLiterals, type Video, type VideoData, ViewMode, type ViewModeWithLiterals, ViewRole, type ViewRoleWithLiterals, type ViewerService, type ViewerServiceAssets, type VisibleState, type VoiceChannel, type VoiceContentKeys, VoteRole, type VoteRoleWithLiterals, type WebComponentData, WebComponentDataElementType, type WebComponentDataElementTypeWithLiterals, type WebFeedChannel, type WebFeedContentKeys, type WebhookComponentData, WebhookIdentityType, type WebhookIdentityTypeWithLiterals, type WidgetAsContent, type WidgetBehavior, type WidgetComponent, type WidgetComponentData, type WidgetComponentOptions, type WidgetData, type WidgetDetails, type WidgetDisplay, WidgetHorizontal, type WidgetHorizontalWithLiterals, type WidgetInstallation, type WidgetInstallationSettings, type WidgetInstallationSettingsTargetContainerOneOf, type WidgetOutOfIframeComponentData, type WidgetPluginComponentData, type WidgetSize, type WidgetSizeHeight, type WidgetSizeWidth, type WidgetSlot, WidgetVertical, type WidgetVerticalWithLiterals, WidgetWidthType, type WidgetWidthTypeWithLiterals, Width, WidthType, type WidthTypeWithLiterals, type WidthWithLiterals, type WixApiOptions, WixCodePublishTaskName, type WixCodePublishTaskNameWithLiterals, type WixDependency, type WixFile, WixFileComponentType, type WixFileComponentTypeOptionsOneOf, type WixFileComponentTypeWithLiterals, type WixOfferingComponentData, type WixOfferingComponentDataOfferingOneOf, type WixPagesDomainMapping, type WixUserData, type WixUsersData, type WorkerComponentData, type WritingMode, WritingModeValue, type WritingModeValueWithLiterals, type _Array, type _ArrayComponentTypeOptionsOneOf, type _Boolean, type _BooleanComponentTypeOptionsOneOf, type _Date, type _Function, type _Number, type _Object, type _String, type _StringComponentTypeOptionsOneOf, createDataExtensionSchema, deleteByWhiteListedMetaSite, listDataExtensionSchemas, onDataExtensionSchemaCreated, onDataExtensionSchemaDeleted, onDataExtensionSchemaUpdated, updateDataExtensionSchema };
|