@wix/app-extensions 1.0.18 → 1.0.19
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/cjs/index.js +70 -12
- package/build/cjs/index.js.map +1 -1
- package/build/es/index.mjs +63 -12
- package/build/es/index.mjs.map +1 -1
- package/build/trusted/cjs/index.d.ts +244 -18
- package/build/trusted/cjs/index.js +70 -12
- package/build/trusted/cjs/index.js.map +1 -1
- package/build/trusted/es/index.d.mts +244 -18
- package/build/trusted/es/index.mjs +63 -12
- package/build/trusted/es/index.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -7739,6 +7739,8 @@ interface Node extends NodeDataOneOf {
|
|
|
7739
7739
|
layoutCellData?: LayoutCellData;
|
|
7740
7740
|
/** Data for a shape node. */
|
|
7741
7741
|
shapeData?: ShapeData;
|
|
7742
|
+
/** Data for a card node. */
|
|
7743
|
+
cardData?: CardData;
|
|
7742
7744
|
/** Node type. Use `APP_EMBED` for nodes that embed content from other Wix apps. Use `EMBED` to embed content in [oEmbed](https://oembed.com/) format. */
|
|
7743
7745
|
type?: NodeTypeWithLiterals;
|
|
7744
7746
|
/** Node ID. */
|
|
@@ -7809,6 +7811,8 @@ interface NodeDataOneOf {
|
|
|
7809
7811
|
layoutCellData?: LayoutCellData;
|
|
7810
7812
|
/** Data for a shape node. */
|
|
7811
7813
|
shapeData?: ShapeData;
|
|
7814
|
+
/** Data for a card node. */
|
|
7815
|
+
cardData?: CardData;
|
|
7812
7816
|
}
|
|
7813
7817
|
/** @internal */
|
|
7814
7818
|
declare enum NodeType {
|
|
@@ -7846,11 +7850,12 @@ declare enum NodeType {
|
|
|
7846
7850
|
CAPTION = "CAPTION",
|
|
7847
7851
|
LAYOUT = "LAYOUT",
|
|
7848
7852
|
LAYOUT_CELL = "LAYOUT_CELL",
|
|
7849
|
-
SHAPE = "SHAPE"
|
|
7853
|
+
SHAPE = "SHAPE",
|
|
7854
|
+
CARD = "CARD"
|
|
7850
7855
|
}
|
|
7851
7856
|
/** @enumType */
|
|
7852
7857
|
/** @internal */
|
|
7853
|
-
type NodeTypeWithLiterals = NodeType | 'PARAGRAPH' | 'TEXT' | 'HEADING' | 'BULLETED_LIST' | 'ORDERED_LIST' | 'LIST_ITEM' | 'BLOCKQUOTE' | 'CODE_BLOCK' | 'VIDEO' | 'DIVIDER' | 'FILE' | 'GALLERY' | 'GIF' | 'HTML' | 'IMAGE' | 'LINK_PREVIEW' | 'MAP' | 'POLL' | 'APP_EMBED' | 'BUTTON' | 'COLLAPSIBLE_LIST' | 'TABLE' | 'EMBED' | 'COLLAPSIBLE_ITEM' | 'COLLAPSIBLE_ITEM_TITLE' | 'COLLAPSIBLE_ITEM_BODY' | 'TABLE_CELL' | 'TABLE_ROW' | 'EXTERNAL' | 'AUDIO' | 'CAPTION' | 'LAYOUT' | 'LAYOUT_CELL' | 'SHAPE';
|
|
7858
|
+
type NodeTypeWithLiterals = NodeType | 'PARAGRAPH' | 'TEXT' | 'HEADING' | 'BULLETED_LIST' | 'ORDERED_LIST' | 'LIST_ITEM' | 'BLOCKQUOTE' | 'CODE_BLOCK' | 'VIDEO' | 'DIVIDER' | 'FILE' | 'GALLERY' | 'GIF' | 'HTML' | 'IMAGE' | 'LINK_PREVIEW' | 'MAP' | 'POLL' | 'APP_EMBED' | 'BUTTON' | 'COLLAPSIBLE_LIST' | 'TABLE' | 'EMBED' | 'COLLAPSIBLE_ITEM' | 'COLLAPSIBLE_ITEM_TITLE' | 'COLLAPSIBLE_ITEM_BODY' | 'TABLE_CELL' | 'TABLE_ROW' | 'EXTERNAL' | 'AUDIO' | 'CAPTION' | 'LAYOUT' | 'LAYOUT_CELL' | 'SHAPE' | 'CARD';
|
|
7854
7859
|
/** @internal */
|
|
7855
7860
|
interface NodeStyle {
|
|
7856
7861
|
/** The top padding value in pixels. */
|
|
@@ -7873,6 +7878,61 @@ interface ButtonData {
|
|
|
7873
7878
|
/** Button link details. */
|
|
7874
7879
|
link?: V1Link;
|
|
7875
7880
|
}
|
|
7881
|
+
/** Background type */
|
|
7882
|
+
/** @internal */
|
|
7883
|
+
declare enum BackgroundType {
|
|
7884
|
+
/** Solid color background */
|
|
7885
|
+
COLOR = "COLOR",
|
|
7886
|
+
/** Gradient background */
|
|
7887
|
+
GRADIENT = "GRADIENT"
|
|
7888
|
+
}
|
|
7889
|
+
/** @enumType */
|
|
7890
|
+
/** @internal */
|
|
7891
|
+
type BackgroundTypeWithLiterals = BackgroundType | 'COLOR' | 'GRADIENT';
|
|
7892
|
+
/** @internal */
|
|
7893
|
+
interface Gradient {
|
|
7894
|
+
/** Gradient type. */
|
|
7895
|
+
type?: GradientTypeWithLiterals;
|
|
7896
|
+
/**
|
|
7897
|
+
* Color stops for the gradient.
|
|
7898
|
+
* @maxSize 1000
|
|
7899
|
+
*/
|
|
7900
|
+
stops?: Stop[];
|
|
7901
|
+
/** Angle in degrees for linear gradient (0-360). */
|
|
7902
|
+
angle?: number | null;
|
|
7903
|
+
/**
|
|
7904
|
+
* Horizontal center position for radial gradient (0-100).
|
|
7905
|
+
* @max 100
|
|
7906
|
+
*/
|
|
7907
|
+
centerX?: number | null;
|
|
7908
|
+
/**
|
|
7909
|
+
* Vertical center position for radial gradient (0-100).
|
|
7910
|
+
* @max 100
|
|
7911
|
+
*/
|
|
7912
|
+
centerY?: number | null;
|
|
7913
|
+
}
|
|
7914
|
+
/** Gradient type. */
|
|
7915
|
+
/** @internal */
|
|
7916
|
+
declare enum GradientType {
|
|
7917
|
+
/** Linear gradient. */
|
|
7918
|
+
LINEAR = "LINEAR",
|
|
7919
|
+
/** Radial gradient. */
|
|
7920
|
+
RADIAL = "RADIAL"
|
|
7921
|
+
}
|
|
7922
|
+
/** @enumType */
|
|
7923
|
+
/** @internal */
|
|
7924
|
+
type GradientTypeWithLiterals = GradientType | 'LINEAR' | 'RADIAL';
|
|
7925
|
+
/** A single color stop in the gradient. */
|
|
7926
|
+
/** @internal */
|
|
7927
|
+
interface Stop {
|
|
7928
|
+
/**
|
|
7929
|
+
* Stop color as hex value.
|
|
7930
|
+
* @format COLOR_HEX
|
|
7931
|
+
*/
|
|
7932
|
+
color?: string | null;
|
|
7933
|
+
/** Stop position (0-1). */
|
|
7934
|
+
position?: number | null;
|
|
7935
|
+
}
|
|
7876
7936
|
/** @internal */
|
|
7877
7937
|
interface StylesBorder {
|
|
7878
7938
|
/**
|
|
@@ -7904,6 +7964,19 @@ interface Colors {
|
|
|
7904
7964
|
*/
|
|
7905
7965
|
background?: string | null;
|
|
7906
7966
|
}
|
|
7967
|
+
/** Background styling (color or gradient) */
|
|
7968
|
+
/** @internal */
|
|
7969
|
+
interface StylesBackground {
|
|
7970
|
+
/** Background type. */
|
|
7971
|
+
type?: BackgroundTypeWithLiterals;
|
|
7972
|
+
/**
|
|
7973
|
+
* Background color as a hexadecimal value.
|
|
7974
|
+
* @format COLOR_HEX
|
|
7975
|
+
*/
|
|
7976
|
+
color?: string | null;
|
|
7977
|
+
/** Gradient configuration. */
|
|
7978
|
+
gradient?: Gradient;
|
|
7979
|
+
}
|
|
7907
7980
|
/** @internal */
|
|
7908
7981
|
interface PluginContainerData {
|
|
7909
7982
|
/** The width of the node when it's displayed. */
|
|
@@ -8036,17 +8109,23 @@ interface Styles {
|
|
|
8036
8109
|
*/
|
|
8037
8110
|
textColorHover?: string | null;
|
|
8038
8111
|
/**
|
|
8039
|
-
*
|
|
8112
|
+
* Deprecated: Use `background` instead.
|
|
8040
8113
|
* @format COLOR_HEX
|
|
8114
|
+
* @deprecated
|
|
8041
8115
|
*/
|
|
8042
8116
|
backgroundColor?: string | null;
|
|
8043
8117
|
/**
|
|
8044
|
-
*
|
|
8118
|
+
* Deprecated: Use `backgroundHover` instead.
|
|
8045
8119
|
* @format COLOR_HEX
|
|
8120
|
+
* @deprecated
|
|
8046
8121
|
*/
|
|
8047
8122
|
backgroundColorHover?: string | null;
|
|
8048
8123
|
/** Button size option, one of `SMALL`, `MEDIUM` or `LARGE`. Defaults to `MEDIUM`. */
|
|
8049
8124
|
buttonSize?: string | null;
|
|
8125
|
+
/** Background styling (color or gradient). */
|
|
8126
|
+
background?: StylesBackground;
|
|
8127
|
+
/** Background styling for hover state (color or gradient). */
|
|
8128
|
+
backgroundHover?: StylesBackground;
|
|
8050
8129
|
}
|
|
8051
8130
|
/** @internal */
|
|
8052
8131
|
interface V1Link extends V1LinkDataOneOf {
|
|
@@ -8759,7 +8838,7 @@ interface OptionLayout {
|
|
|
8759
8838
|
enableImage?: boolean | null;
|
|
8760
8839
|
}
|
|
8761
8840
|
/** @internal */
|
|
8762
|
-
declare enum
|
|
8841
|
+
declare enum PollDesignBackgroundType {
|
|
8763
8842
|
/** Color background type */
|
|
8764
8843
|
COLOR = "COLOR",
|
|
8765
8844
|
/** Image background type */
|
|
@@ -8769,9 +8848,9 @@ declare enum BackgroundType {
|
|
|
8769
8848
|
}
|
|
8770
8849
|
/** @enumType */
|
|
8771
8850
|
/** @internal */
|
|
8772
|
-
type
|
|
8851
|
+
type PollDesignBackgroundTypeWithLiterals = PollDesignBackgroundType | 'COLOR' | 'IMAGE' | 'GRADIENT';
|
|
8773
8852
|
/** @internal */
|
|
8774
|
-
interface
|
|
8853
|
+
interface BackgroundGradient {
|
|
8775
8854
|
/** The gradient angle in degrees. */
|
|
8776
8855
|
angle?: number | null;
|
|
8777
8856
|
/**
|
|
@@ -8795,9 +8874,9 @@ interface PollDesignBackground extends PollDesignBackgroundBackgroundOneOf {
|
|
|
8795
8874
|
/** An image to use for the background. */
|
|
8796
8875
|
image?: Media;
|
|
8797
8876
|
/** Details for a gradient background. */
|
|
8798
|
-
gradient?:
|
|
8877
|
+
gradient?: BackgroundGradient;
|
|
8799
8878
|
/** Background type. For each option, include the relevant details. */
|
|
8800
|
-
type?:
|
|
8879
|
+
type?: PollDesignBackgroundTypeWithLiterals;
|
|
8801
8880
|
}
|
|
8802
8881
|
/** @oneof */
|
|
8803
8882
|
/** @internal */
|
|
@@ -8810,7 +8889,7 @@ interface PollDesignBackgroundBackgroundOneOf {
|
|
|
8810
8889
|
/** An image to use for the background. */
|
|
8811
8890
|
image?: Media;
|
|
8812
8891
|
/** Details for a gradient background. */
|
|
8813
|
-
gradient?:
|
|
8892
|
+
gradient?: BackgroundGradient;
|
|
8814
8893
|
}
|
|
8815
8894
|
/** @internal */
|
|
8816
8895
|
interface PollDesign {
|
|
@@ -9567,8 +9646,9 @@ interface CaptionData {
|
|
|
9567
9646
|
/** @internal */
|
|
9568
9647
|
interface LayoutData {
|
|
9569
9648
|
/**
|
|
9570
|
-
*
|
|
9649
|
+
* Deprecated: Use `background` instead.
|
|
9571
9650
|
* @format COLOR_HEX
|
|
9651
|
+
* @deprecated
|
|
9572
9652
|
*/
|
|
9573
9653
|
backgroundColor?: string | null;
|
|
9574
9654
|
/** Background image. */
|
|
@@ -9580,14 +9660,15 @@ interface LayoutData {
|
|
|
9580
9660
|
borderColor?: string | null;
|
|
9581
9661
|
/** Border width in pixels. */
|
|
9582
9662
|
borderWidth?: number | null;
|
|
9583
|
-
/** Border */
|
|
9663
|
+
/** Border radius in pixels. */
|
|
9584
9664
|
borderRadius?: number | null;
|
|
9585
9665
|
/**
|
|
9586
|
-
*
|
|
9666
|
+
* Deprecated: Use `backdrop` instead.
|
|
9587
9667
|
* @format COLOR_HEX
|
|
9668
|
+
* @deprecated
|
|
9588
9669
|
*/
|
|
9589
9670
|
backdropColor?: string | null;
|
|
9590
|
-
/** Backdrop image.
|
|
9671
|
+
/** Backdrop image. */
|
|
9591
9672
|
backdropImage?: LayoutDataBackgroundImage;
|
|
9592
9673
|
/** Backdrop top padding. */
|
|
9593
9674
|
backdropPaddingTop?: number | null;
|
|
@@ -9612,9 +9693,13 @@ interface LayoutData {
|
|
|
9612
9693
|
designTarget?: DesignTargetWithLiterals;
|
|
9613
9694
|
/** Banner configuration. When present, this layout is displayed as a banner. */
|
|
9614
9695
|
banner?: Banner;
|
|
9696
|
+
/** Background styling (color or gradient). */
|
|
9697
|
+
background?: LayoutDataBackground;
|
|
9698
|
+
/** Backdrop styling (color or gradient). */
|
|
9699
|
+
backdrop?: Backdrop;
|
|
9615
9700
|
}
|
|
9616
9701
|
/** @internal */
|
|
9617
|
-
declare enum
|
|
9702
|
+
declare enum ImageScalingScaling {
|
|
9618
9703
|
/** Auto image scaling */
|
|
9619
9704
|
AUTO = "AUTO",
|
|
9620
9705
|
/** Contain image scaling */
|
|
@@ -9624,7 +9709,7 @@ declare enum Scaling {
|
|
|
9624
9709
|
}
|
|
9625
9710
|
/** @enumType */
|
|
9626
9711
|
/** @internal */
|
|
9627
|
-
type
|
|
9712
|
+
type ImageScalingScalingWithLiterals = ImageScalingScaling | 'AUTO' | 'CONTAIN' | 'COVER';
|
|
9628
9713
|
/** @internal */
|
|
9629
9714
|
declare enum LayoutDataImagePosition {
|
|
9630
9715
|
/** Image positioned at the center */
|
|
@@ -9659,6 +9744,28 @@ declare enum Origin {
|
|
|
9659
9744
|
/** @enumType */
|
|
9660
9745
|
/** @internal */
|
|
9661
9746
|
type OriginWithLiterals = Origin | 'IMAGE' | 'LAYOUT';
|
|
9747
|
+
/** Background type */
|
|
9748
|
+
/** @internal */
|
|
9749
|
+
declare enum LayoutDataBackgroundType {
|
|
9750
|
+
/** Solid color background */
|
|
9751
|
+
COLOR = "COLOR",
|
|
9752
|
+
/** Gradient background */
|
|
9753
|
+
GRADIENT = "GRADIENT"
|
|
9754
|
+
}
|
|
9755
|
+
/** @enumType */
|
|
9756
|
+
/** @internal */
|
|
9757
|
+
type LayoutDataBackgroundTypeWithLiterals = LayoutDataBackgroundType | 'COLOR' | 'GRADIENT';
|
|
9758
|
+
/** Backdrop type */
|
|
9759
|
+
/** @internal */
|
|
9760
|
+
declare enum BackdropType {
|
|
9761
|
+
/** Solid color backdrop */
|
|
9762
|
+
COLOR = "COLOR",
|
|
9763
|
+
/** Gradient backdrop */
|
|
9764
|
+
GRADIENT = "GRADIENT"
|
|
9765
|
+
}
|
|
9766
|
+
/** @enumType */
|
|
9767
|
+
/** @internal */
|
|
9768
|
+
type BackdropTypeWithLiterals = BackdropType | 'COLOR' | 'GRADIENT';
|
|
9662
9769
|
/** @internal */
|
|
9663
9770
|
interface LayoutDataBackgroundImage {
|
|
9664
9771
|
/** Background image. */
|
|
@@ -9666,7 +9773,7 @@ interface LayoutDataBackgroundImage {
|
|
|
9666
9773
|
/** Background image opacity. */
|
|
9667
9774
|
opacity?: number | null;
|
|
9668
9775
|
/** Background image scaling. */
|
|
9669
|
-
scaling?:
|
|
9776
|
+
scaling?: ImageScalingScalingWithLiterals;
|
|
9670
9777
|
/** Position of background. Defaults to `CENTER`. */
|
|
9671
9778
|
position?: LayoutDataImagePositionWithLiterals;
|
|
9672
9779
|
}
|
|
@@ -9707,6 +9814,32 @@ interface Banner {
|
|
|
9707
9814
|
/** Origin of the banner */
|
|
9708
9815
|
origin?: OriginWithLiterals;
|
|
9709
9816
|
}
|
|
9817
|
+
/** Background styling (color or gradient) */
|
|
9818
|
+
/** @internal */
|
|
9819
|
+
interface LayoutDataBackground {
|
|
9820
|
+
/** Background type. */
|
|
9821
|
+
type?: LayoutDataBackgroundTypeWithLiterals;
|
|
9822
|
+
/**
|
|
9823
|
+
* Background color as a hexadecimal value.
|
|
9824
|
+
* @format COLOR_HEX
|
|
9825
|
+
*/
|
|
9826
|
+
color?: string | null;
|
|
9827
|
+
/** Gradient configuration. */
|
|
9828
|
+
gradient?: Gradient;
|
|
9829
|
+
}
|
|
9830
|
+
/** Backdrop styling (color or gradient) */
|
|
9831
|
+
/** @internal */
|
|
9832
|
+
interface Backdrop {
|
|
9833
|
+
/** Backdrop type. */
|
|
9834
|
+
type?: BackdropTypeWithLiterals;
|
|
9835
|
+
/**
|
|
9836
|
+
* Backdrop color as a hexadecimal value.
|
|
9837
|
+
* @format COLOR_HEX
|
|
9838
|
+
*/
|
|
9839
|
+
color?: string | null;
|
|
9840
|
+
/** Gradient configuration. */
|
|
9841
|
+
gradient?: Gradient;
|
|
9842
|
+
}
|
|
9710
9843
|
/** @internal */
|
|
9711
9844
|
interface LayoutCellData {
|
|
9712
9845
|
/** Size of the cell in 12 columns grid. */
|
|
@@ -9732,6 +9865,84 @@ interface ShapeDataStyles {
|
|
|
9732
9865
|
colors?: Record<string, string>;
|
|
9733
9866
|
}
|
|
9734
9867
|
/** @internal */
|
|
9868
|
+
interface CardData {
|
|
9869
|
+
/** Background styling (color or gradient). */
|
|
9870
|
+
background?: CardDataBackground;
|
|
9871
|
+
/** Background image. */
|
|
9872
|
+
backgroundImage?: CardDataBackgroundImage;
|
|
9873
|
+
}
|
|
9874
|
+
/** @internal */
|
|
9875
|
+
declare enum Scaling {
|
|
9876
|
+
/** Auto image scaling */
|
|
9877
|
+
AUTO = "AUTO",
|
|
9878
|
+
/** Contain image scaling */
|
|
9879
|
+
CONTAIN = "CONTAIN",
|
|
9880
|
+
/** Cover image scaling */
|
|
9881
|
+
COVER = "COVER"
|
|
9882
|
+
}
|
|
9883
|
+
/** @enumType */
|
|
9884
|
+
/** @internal */
|
|
9885
|
+
type ScalingWithLiterals = Scaling | 'AUTO' | 'CONTAIN' | 'COVER';
|
|
9886
|
+
/** @internal */
|
|
9887
|
+
declare enum ImagePositionPosition {
|
|
9888
|
+
/** Image positioned at the center */
|
|
9889
|
+
CENTER = "CENTER",
|
|
9890
|
+
/** Image positioned on the left */
|
|
9891
|
+
CENTER_LEFT = "CENTER_LEFT",
|
|
9892
|
+
/** Image positioned on the right */
|
|
9893
|
+
CENTER_RIGHT = "CENTER_RIGHT",
|
|
9894
|
+
/** Image positioned at the center top */
|
|
9895
|
+
TOP = "TOP",
|
|
9896
|
+
/** Image positioned at the top left */
|
|
9897
|
+
TOP_LEFT = "TOP_LEFT",
|
|
9898
|
+
/** Image positioned at the top right */
|
|
9899
|
+
TOP_RIGHT = "TOP_RIGHT",
|
|
9900
|
+
/** Image positioned at the center bottom */
|
|
9901
|
+
BOTTOM = "BOTTOM",
|
|
9902
|
+
/** Image positioned at the bottom left */
|
|
9903
|
+
BOTTOM_LEFT = "BOTTOM_LEFT",
|
|
9904
|
+
/** Image positioned at the bottom right */
|
|
9905
|
+
BOTTOM_RIGHT = "BOTTOM_RIGHT"
|
|
9906
|
+
}
|
|
9907
|
+
/** @enumType */
|
|
9908
|
+
/** @internal */
|
|
9909
|
+
type ImagePositionPositionWithLiterals = ImagePositionPosition | 'CENTER' | 'CENTER_LEFT' | 'CENTER_RIGHT' | 'TOP' | 'TOP_LEFT' | 'TOP_RIGHT' | 'BOTTOM' | 'BOTTOM_LEFT' | 'BOTTOM_RIGHT';
|
|
9910
|
+
/** Background type */
|
|
9911
|
+
/** @internal */
|
|
9912
|
+
declare enum CardDataBackgroundType {
|
|
9913
|
+
/** Solid color background */
|
|
9914
|
+
COLOR = "COLOR",
|
|
9915
|
+
/** Gradient background */
|
|
9916
|
+
GRADIENT = "GRADIENT"
|
|
9917
|
+
}
|
|
9918
|
+
/** @enumType */
|
|
9919
|
+
/** @internal */
|
|
9920
|
+
type CardDataBackgroundTypeWithLiterals = CardDataBackgroundType | 'COLOR' | 'GRADIENT';
|
|
9921
|
+
/** Background styling (color or gradient) */
|
|
9922
|
+
/** @internal */
|
|
9923
|
+
interface CardDataBackground {
|
|
9924
|
+
/** Background type. */
|
|
9925
|
+
type?: CardDataBackgroundTypeWithLiterals;
|
|
9926
|
+
/**
|
|
9927
|
+
* Background color as a hexadecimal value.
|
|
9928
|
+
* @format COLOR_HEX
|
|
9929
|
+
*/
|
|
9930
|
+
color?: string | null;
|
|
9931
|
+
/** Gradient configuration. */
|
|
9932
|
+
gradient?: Gradient;
|
|
9933
|
+
}
|
|
9934
|
+
/** @internal */
|
|
9935
|
+
interface CardDataBackgroundImage {
|
|
9936
|
+
/** Background image. */
|
|
9937
|
+
media?: Media;
|
|
9938
|
+
/** Background image opacity. */
|
|
9939
|
+
opacity?: number | null;
|
|
9940
|
+
/** Background image scaling. */
|
|
9941
|
+
scaling?: ScalingWithLiterals;
|
|
9942
|
+
/** Position of background. Defaults to `CENTER`. */
|
|
9943
|
+
position?: ImagePositionPositionWithLiterals;
|
|
9944
|
+
}
|
|
9945
|
+
/** @internal */
|
|
9735
9946
|
interface V1Metadata {
|
|
9736
9947
|
/** Schema version. */
|
|
9737
9948
|
version?: number;
|
|
@@ -16076,6 +16287,8 @@ interface Output {
|
|
|
16076
16287
|
defined?: State;
|
|
16077
16288
|
/** Empty state */
|
|
16078
16289
|
empty?: State;
|
|
16290
|
+
/** Static content for the output */
|
|
16291
|
+
staticContent?: StaticContent;
|
|
16079
16292
|
}
|
|
16080
16293
|
/** @internal */
|
|
16081
16294
|
interface State {
|
|
@@ -16086,6 +16299,19 @@ interface State {
|
|
|
16086
16299
|
description?: string | null;
|
|
16087
16300
|
}
|
|
16088
16301
|
/** @internal */
|
|
16302
|
+
interface StaticContent {
|
|
16303
|
+
/**
|
|
16304
|
+
* Static content title
|
|
16305
|
+
* @maxLength 100
|
|
16306
|
+
*/
|
|
16307
|
+
title?: string | null;
|
|
16308
|
+
/**
|
|
16309
|
+
* Static content description
|
|
16310
|
+
* @maxLength 200
|
|
16311
|
+
*/
|
|
16312
|
+
description?: string | null;
|
|
16313
|
+
}
|
|
16314
|
+
/** @internal */
|
|
16089
16315
|
interface Spi {
|
|
16090
16316
|
/**
|
|
16091
16317
|
* SPI fqdn
|
|
@@ -26130,4 +26356,4 @@ declare function serviceTagsConfiguration({ id, data, name, }: {
|
|
|
26130
26356
|
name?: string;
|
|
26131
26357
|
}): ExtensionData;
|
|
26132
26358
|
|
|
26133
|
-
export { type A11y, A11yAttributes, type A11yAttributesWithLiterals, AcceptedDirectMessageType, type AcceptedDirectMessageTypeWithLiterals, AcceptedMessageTypesAcceptedDirectMessageType, type AcceptedMessageTypesAcceptedDirectMessageTypeWithLiterals, AcceptedMessageTypesAcceptedSmsMessageType, type AcceptedMessageTypesAcceptedSmsMessageTypeWithLiterals, AcceptedSmsMessageType, type AcceptedSmsMessageTypeWithLiterals, AccessLevel, type AccessLevelWithLiterals, type Action, type ActionCondition, ActionName, type ActionNameWithLiterals, type ActionProviderSPIConfig, type ActionSPIConfig, type ActionSPIConfigImplementedMethods, type ActionSPIConfigInterfaceConfiguration, type ActionSPIConfigInterfaceConfigurationOptionsOneOf, ActionSPIConfigInterfaceConfigurationType, type ActionSPIConfigInterfaceConfigurationTypeWithLiterals, type ActionSpiConfig, ActionType, type ActionTypeWithLiterals, type Actions, type AdaptiveComponentProviderConfig, type AddCustomFields, type AdditionalFeesSPIConfig, type AdditionalStepInfo, type AdditionalTaxGroup, type AddonMarketData, type Address, AddressComponentType, type AddressComponentTypeOptionsOneOf, type AddressComponentTypeWithLiterals, type AddressInfo, AddressInfoTag, type AddressInfoTagWithLiterals, type AddressLine2, type AdminConfigurableTextInput, type AlertEnricherSpiConfiguration, type AlgorithmConfig, AlgorithmType, type AlgorithmTypeWithLiterals, Alignment, type AlignmentWithLiterals, type AllowedValuesOptions, type AlternativeUri, type AnchorData, type AnchorMetaData, type AndCondition, type AndroidMobilePushConfig, AndroidStyle, type AndroidStyleWithLiterals, type ApiContext, type ApiSlot, type ApiWidth, type AppConfig, type AppConfiguration, type AppDeploymentProviderConfig, type AppEmbedData, type AppEmbedDataAppDataOneOf, type AppEnvironmentProviderConfig, type AppPreviewProviderConfig, type AppRouter, AppType, type AppTypeWithLiterals, type ApplicationAutomationComponent, type ApplicationProfile, type ApplicationProfileProviderConfig, type Appointment, AppointmentFormat, type AppointmentFormatInfoOneOf, type AppointmentFormatWithLiterals, type ApprovalProviderConfig, type ApprovalProviderConfigScopeOneOf, Archetype, type ArchetypeWithLiterals, ArrayComponentType, type ArrayComponentTypeWithLiterals, type ArrayItems, type ArrayItemsArrayDataOneOf, type ArrayOptions, type ArrayOptionsElementTypeOptionsOneOf, type ArrayType, type ArrayTypeArrayItems, type ArrayTypeArrayItemsItemTypeOptionsOneOf, AspectRatio, type AspectRatioWithLiterals, AssetType, type AssetTypeWithLiterals, type AssistantSpiConfig, type AudienceProviderConfig, type AudioData, type AuthenticatorConfig, type AutomationActionScope, type AutomationMetadata, type AutomationTemplateComponent, type AutomationTrigger, type AutomationsConfig, type AvailabilityTimeSlotsProviderConfig, type AvatarConfig, AvatarShape, type AvatarShapeWithLiterals, type BackOfficeCustomization, type BackOfficeCustomizationSidebarEntity, type BackOfficeCustomizationSidebarEntityItemOneOf, type BackOfficeExtension, type BackOfficeExtensionContainer, type BackOfficeExtensionExtensionOneOf, type BackOfficeExtensionMenuItem, type BackOfficeExtensionWidget, type BackOfficeExtensionWidgetAssetOneOf, type BackOfficeExternalUrl, BackOfficeHostingPlatforms, type BackOfficeHostingPlatformsWithLiterals, type BackOfficeModal, type BackOfficeModalContentOneOf, type BackOfficePage, type BackOfficePageAssetOneOf, type BackOfficeRestrictedCustomization, type BackOfficeScriptAsset, BackOfficeScriptAssetType, type BackOfficeScriptAssetTypeWithLiterals, type BackOfficeSidebarCategory, type BackOfficeWidget, type BackOfficeWidgetContentOneOf, type BackdropFilter, type BackendWorker, type Background, type BackgroundImage, BackgroundModeEnum, type BackgroundModeEnumWithLiterals, BackgroundType, type BackgroundTypeWithLiterals, type BackofficeActionDeeplink, type Banner, type BarAlignment, BarAlignmentSelected, type BarAlignmentSelectedWithLiterals, type BaseInfo, type BaseInstallation, type Behaviors, type BillingSettingsConfig, type BindingsSPIConfig, BlockType, type BlockTypeWithLiterals, type BlockquoteData, type BlocksData, type BlogPaywallProviderConfig, type BookingActionUrlsProviderConfig, type BookingAutomationsConfig, type BookingData, type BookingPermissionOverrides, type BookingPolicyProviderConfig, type BookingsPlatformConfig, type BookingsPricingProviderConfig, type BookingsResourceType, type BookingsResourceTypesProviderConfig, type BookingsValidationProviderConfig, type BoolListOptions, BooleanComponentType, type BooleanComponentTypeWithLiterals, type BooleanExperimentExposureRule, type BooleanType, type Border, type BorderColors, type BorderWidths, type BrandIcons, type BreakPoint, type BreakPointSection, type Breakpoint, BreakpointEnumBreakpoint, type BreakpointEnumBreakpointWithLiterals, type BreakpointPresetStyleOverrides, type Breakpoints, type BroadcastList, type BrowserPushChannel, type BrowserPushContentKeys, type BrowserStorage, type BuilderSpi, type BulletedListData, type Bundle, type BusinessManagerPage, type ButtonData, ButtonDataType, type ButtonDataTypeWithLiterals, type ButtonStyles, CalendarType, type CalendarTypeWithLiterals, type CancelSubscriptionsConfig, type CaptionData, type CardStyles, CardStylesAlignment, type CardStylesAlignmentWithLiterals, CardStylesType, type CardStylesTypeWithLiterals, type CatalogSPIConfig, type CatalogSyncConfiguration, Category, type CategoryWithLiterals, type CellStyle, ChangeableProperty, type ChangeablePropertyWithLiterals, type ChannelBrandIcons, type ChannelBranding, type ChannelChannelBranding, type ChannelChannelConfiguration, type ChannelChannelConfigurationMessagingConfigOneOf, type ChannelConfiguration, ChannelConfigurationChannelType, type ChannelConfigurationChannelTypeWithLiterals, type ChannelConfigurationMessagingConfigOneOf, type ChannelIcon, type ChannelImplementedMethods, type ChannelMediaCapabilities, ChannelType, type ChannelTypeWithLiterals, type Checkbox, type CheckboxConfiguration, type CheckboxField, type CheckboxGroup, type CheckboxGroupOption, type CheckoutContentSPIConfig, type ClientResources, type ClientSideService, type CodeBlockData, type CodePackageComponentData, type CodePanel, type CollapsibleListData, type Collection, type Color, type ColorData, type ColorDefinition, type ColorSelectLabeled, type ColorSelectLabeledDataOneOf, type Colors, type CommentFilterProviderConfig, type CommentModerationProviderConfig, type CommentsContextProviderConfig, type CommonImage, type CommunicationChannelConfiguration, type ComponentCatalog, type ComponentData, type ComponentDataDataOneOf, type ComponentEnricherConfig, type ComponentInitialSize, type ComponentMetaData, type ComponentModel, ComponentPresent, type ComponentPresentWithLiterals, type ComponentReferenceDataConfig, type ComponentTranslationAdditionalFieldsConfig, ComponentType, type ComponentTypeWithLiterals, type ComponentsValidatorConfig, type Condition, type ConditionBlock, type ConditionNode, type ConditionNodeNodeOneOf, type Conditions, type ConferencingProviderConfig, type Configuration, ConfirmationLevel, type ConfirmationLevelWithLiterals, ConnectMethod, type ConnectMethodWithLiterals, ConnectionMethod, type ConnectionMethodWithLiterals, ConsentCategory, type ConsentCategoryWithLiterals, type Consequence, type ConstOrDynamicParam, type ConstOrDynamicParamValueOneOf, type Constraint, type ContactData, ContactField, type ContactFieldWithLiterals, type ContactLabelsComponentData, type ContactNotification, type ContactsData, type ContactsNotificationData, type Container, type ContainerBehaviors, type ContainerDataOneOf, type ContainerLayout, type ContainerStyleOverrides, ContainerType, type ContainerTypeWithLiterals, type ContentData, type ContentDataOverrides, type ContentFill, type ContentProviderConfig, ContentResizeDirection, type ContentResizeDirectionWithLiterals, type Context, type ContextArrayItems, type ContextArrayItemsArrayDataOneOf, type ContextDataItems, type ContextImplementor, type ContextItem, type ContextItemSelectedDataTypeOneOf, type ContextSpecifier, type ConversationLimitations, type Coordinates, type CoreApps, type Corners, type CoverImageConfiguration, type CreateComponentCatalogRequest, type CreateNewItemInfo, Crop, type CropWithLiterals, type CrossSellConfig, type CssCustomPropertyAction, type CssCustomPropertyItem, type CssCustomPropertyItemSelectedCssPropertyTypeOneOf, CssDataType, type CssDataTypeWithLiterals, type CssNumber, type CssPropertyAction, type CssPropertyItem, type CssPropertyItemDefaults, type CssPropertyItemDefinitionOverrides, type CssPropertyItemSelectedCssPropertyTypeOneOf, CssPropertyType, CssPropertyTypeEnumCssPropertyType, type CssPropertyTypeEnumCssPropertyTypeWithLiterals, type CssPropertyTypeWithLiterals, CssVariableTypeEnumCssDataType, type CssVariableTypeEnumCssDataTypeWithLiterals, type CurrencyCodeListOptions, type CustomAction, type CustomActionActionExecuteOneOf, type CustomChargesConfig, type CustomElement, type CustomElementConsentCategoryOneOf, CustomElementScriptType, type CustomElementScriptTypeWithLiterals, type CustomElementWidget, type CustomEnum, type CustomEnumOption, type CustomEnumOptionCssProperty, type CustomExperimentExposureRule, type CustomFieldInfo, CustomFieldsType, type CustomFieldsTypeWithLiterals, type CustomInitialPreset, type CustomOption, type CustomPermission, type CustomPropertyEnum, type CustomPropertyEnumOption, type CustomPropertyEnumOptionStyle, type CustomRefData, type CustomReservationsApprovalConfig, type CustomRewardProviderConfig, type CustomScopeConfig, type CustomTriggerConfig, type DCConfigData, type Dashboard, type DashboardAction, type DashboardApplicationData, type DashboardButton, type DashboardComponentData, type DashboardItem, type DashboardPlatfromComponentData, type DataAction, type DataComponent, type DataExtensionsComponentData, type DataGroupsArrayItems, type DataItem, type DataItemOverrides, type DataItemOverridesSelectedDataTypeOneOf, type DataItemSelectedDataTypeOneOf, type DataItems, type DataPermissions, DataType, type DataTypeWithLiterals, type DateInput, type DatePicker, type DateTimeConstraints, type DateTimeInput, type Debounce, type DecimalListOptions, type Decoration, type DecorationDataOneOf, DecorationType, type DecorationTypeWithLiterals, type Deeplink, type DeeplinkOfOneOf, Default, type DefaultCountryConfig, type DefaultCountryConfigOptionsOneOf, DefaultCountryConfigType, type DefaultCountryConfigTypeWithLiterals, type DefaultPresets, type DefaultTaxGroupProviderConfig, DefaultTextStyle, type DefaultTextStyleWithLiterals, type DefaultWithLiterals, type Definition, type Delay, type DelayTypeOneOf, type DeleteComponentCatalogRequest, type DeleteTemplateFields, type DeploymentPipelineProviderConfig, type Description, type Design, DesignTarget, type DesignTargetWithLiterals, type DevCenterTestingComponentData, type DevCenterTestingComponentDataTranslatableOneOfOneOf, type Dimension, type Dimensions, type DirectMessageConfig, Direction, type DirectionWithLiterals, type DiscountConfig, type DiscountsSPIConfig, type DiscoveryMetaData, type Display, type DisplayField, type DisplayFieldDisplayFieldTypeOptionsOneOf, DisplayFieldType, type DisplayFieldTypeWithLiterals, type DisplayFilter, type DisplayFilters, type DisplayGroupAction, type DisplayGroupItem, type DisplayGroupItemSelectedGroupTypeOneOf, type DisplayProperties, type DisplayValue, DisplayValueEnumDisplayValue, type DisplayValueEnumDisplayValueWithLiterals, type DisputeServicePluginConfig, type DividerData, DividerDataAlignment, type DividerDataAlignmentWithLiterals, DividerDataWidth, type DividerDataWidthWithLiterals, type DmDirectMessageConfig, type Docking, type DockingProperties, type DocumentStyle, Domain, type DomainWithLiterals, type DonationInput, type DonationInputOption, type DrillInListItem, type DrillItem, type DrillItemDataOneOf, type DropDownLabeled, type Dropdown, type DropdownField, type DropdownFieldOption, type DropdownOption, type DropshippingProviderSPIConfig, type DtsContent, type DtsDefinitionReference, type DtsDefinitionReferenceDtsDefinitionOneOf, DtsDefinitionType, type DtsDefinitionTypeWithLiterals, type DtsHttpLink, type DurationInputConfiguration, type DurationInputConfigurationDurationRenameOptions, type DurationRenameOptions, type DynamicPriceOptions, type DynamicSiteStructureProviderConfig, type EditableFields, EditableProperties, type EditablePropertiesWithLiterals, type EditorAddon, type EditorBehaviors, type EditorContextProvider, type EditorContextProviderModuleConfiguration, type EditorContextProviderResources, type EditorDependencies, type EditorElement, type EditorElementLayout, type EditorFunction, type EditorFunctionLibrary, type EditorFunctionLibraryModuleConfiguration, type EditorPresence, type EditorReactComponent, type EditorReactComponentModuleConfiguration, EffectGroup, type EffectGroupWithLiterals, ElementDisplayOption, type ElementDisplayOptionWithLiterals, type ElementItem, type ElementItemSelectedElementTypeOneOf, type ElementState, type ElementStyleDefaults, type ElementStyleOverrides, ElementType, type ElementTypeWithLiterals, type EmailChannel, type EmailEmailMessageConfig, type EmailInfo, EmailInfoTag, type EmailInfoTagWithLiterals, type EmailMessageConfig, type EmailTemplateConfig, type EmailTemplateConfigProviderOneOf, EmbedCategory, type EmbedCategoryWithLiterals, type EmbedData, type EmbeddedScriptComponentData, EmbeddedScriptPages, type EmbeddedScriptPagesWithLiterals, EmbeddedScriptPlacement, type EmbeddedScriptPlacementWithLiterals, type Empty, Environment, type EnvironmentWithLiterals, type ErrorReporting, type ErrorReportingArtifact, Escalation, type EscalationWithLiterals, type EventAction, type EventBadgesSpiConfig, type EventData, type EventTimeSlotsProviderConfig, type EventTypeProviderConfig, type EventValidationProviderConfig, type Execution, type ExecutionActionExecuteOneOf, ExecutionType, type ExecutionTypeWithLiterals, type ExemptRegions, type ExpectedInputs, type ExperimentGroupWrapper, type ExportMetadata, Exposure, type ExposureRule, type ExposureRuleRuleOneOf, ExposureRuleType, type ExposureRuleTypeWithLiterals, type ExposureWithLiterals, type Extendable, ExtendingComponentType, type ExtendingComponentTypeWithLiterals, type ExtensionData, type ExtensionDetails, type ExtensionExposure, ExtensionExposureExposure, type ExtensionExposureExposureWithLiterals, ExtensionType, type ExtensionTypeWithLiterals, type ExternalDatabaseSpiConfig, type ExternalFilterProviderConfig, type FactorConfig, FactorType, type FactorTypeWithLiterals, type FeedAggregation, type FeedChannels, type FeedChannelsConfig, type FeesSPIConfig, type Field, FieldFieldType, type FieldFieldTypeWithLiterals, type FieldGroup, type FieldManagementConfig, type FieldOverride, type FieldOverrides, FieldType, type FieldTypeOptionsOneOf, type FieldTypeWithLiterals, type FieldsOverrides, type FieldsSettings, type FileData, FileMediaType, type FileMediaTypeWithLiterals, type FileSource, type FileSourceDataOneOf, type FileType, type FileUpload, type Filter, FilterFunction, type FilterFunctionWithLiterals, type FilterInfo, type FilterInfoOptionsOneOf, FilterOptionsType, type FilterOptionsTypeWithLiterals, FilterSelectionType, type FilterSelectionTypeWithLiterals, FilterValueDefinitionMode, type FilterValueDefinitionModeWithLiterals, type FilteringCapability, FirstDayOfWeek, type FirstDayOfWeekWithLiterals, type FirstLevelCategory, type FixedPayment, type FixedPositionBuilder, type FixedPositionOptions, type FixedPriceOptions, type FocalPoint, type Font, type FontDefinition, type FontFamilyData, type FontFamilyWithColorPicker, type FontSizeData, FontType, type FontTypeWithLiterals, type FormFieldContactInfo, type FormFieldContactInfoAdditionalInfoOneOf, type FormLayout, type FormOverride, type FormOverrideEntityTypeOptionsOneOf, type FormOverrideFieldOverride, type FormOverrideFieldOverridePropertyTypeOptionsOneOf, type FormSchemaDynamicValuesSpiConfig, type FormSchemaSpiConfig, type FormSpamSubmissionReportPermissions, type FormSpamSubmissionReportSpiConfig, type FormSpamSubmissionReportsNamespaceConfig, type FormSpamSubmissionSpiConfig, type FormSpiExtensionConfig, type FormSubmissionModerationSpiConfig, type FormSubmissionModerationSpiNamespaceConfig, type FormSubmissionSpiConfig, type FormSubmissionSpiExtensionConfig, type FormTemplate, type FormTemplateTemplateTypeOptionsOneOf, Format, type FormatWithLiterals, type FormsConfig, type FormsPermissions, type FormsSPIConfig, type FormsSchemaNamespaceConfig, type FormsSpamSubmissionsNamespaceConfig, type FormsSubmissionsExtensionNamespaceConfig, type FormsSubmissionsNamespaceConfig, type ForwardAction, type ForwardActionActionOneOf, type FreeOptionConfiguration, type FreePricingTypeConfiguration, type FreeTrialConfiguration, type FunctionAssistantToolProviderConfig, type FunctionDefinition, type FunctionEcomDiscountTriggerEligibilityProviderConfig, type FunctionParameter, type FunctionParameterArrayItems, type FunctionParameterArrayItemsArrayDataOneOf, type FunctionParameterItems, type FunctionParameterSelectedDataTypeOneOf, type FunctionRecipe, type FunctionResources, type FunctionReturnType, type FunctionReturnTypeSelectedDataTypeOneOf, type FunctionsShopPriceSpiConfig, type GIF, type GIFData, GIFType, type GIFTypeWithLiterals, type GalleryData, type GalleryOptions, type GalleryOptionsLayout, type GalleryOptionsThumbnails, type Gap, type GbpFeatureConfig, type GenericHookConfig, type GenericHooksConfig, type GenericOptions, type GetComponentsCatalogResponse, type GiftCardProviderConfig, type Gradient, type GridAppFilesTransformerConfig, type Group, GroupType, type GroupTypeWithLiterals, type GroupedContent, type HTMLData, type HTMLDataDataOneOf, HTMLDataSource, type HTMLDataSourceWithLiterals, HTTPMethod, type HTTPMethodWithLiterals, type Header, type HeaderConfig, type HeaderConfigHeaderConfigOneOf, type HeaderConfigOneOf, type HeaderWidgetConfig, type HeadingData, type HeadlessOAuth, type Height, HeightMode, type HeightModeWithLiterals, type HelpArticle, type HelpArticleArticleTypeOneOf, type HelpResources, type HiddenOptions, HookType, type HookTypeWithLiterals, Horizontal, HorizontalDocking, type HorizontalDockingWithLiterals, type HorizontalWithLiterals, HostContainerId, type HostContainerIdWithLiterals, type HostedComponent, type HostedPage, type IDPConnectionConfig, type Icon, type IconDataOneOf, IconType, type IconTypeWithLiterals, type Illustration, type IllustrationIllustrationOneOf, type Image, ImageCategoryTypes, type ImageCategoryTypesWithLiterals, type ImageConfig, type ImageData, type ImageDataStyles, type ImageDataStylesBorder, ImageFit, type ImageFitWithLiterals, type ImageOverrides, ImagePosition, type ImagePositionWithLiterals, ImageShape, type ImageShapeWithLiterals, type ImageStyles, ImageStylesPosition, type ImageStylesPositionWithLiterals, ImageType, type ImageTypeWithLiterals, type Implementation, type ImplementedMethods, ImportanceLevel, type ImportanceLevelWithLiterals, type InPersonOptions, type Index, type IndexField, InitDirection, type InitDirectionWithLiterals, InitialExpandedItems, type InitialExpandedItemsWithLiterals, type InitialPosition, type InitialSizeSetting, type InitialSizeSettingSelectedSizingTypeOneOf, type Initiator, type InitiatorDataOneOf, InitiatorType, type InitiatorTypeWithLiterals, type InlineElement, type Input, type InputConfiguration, type InputField, type InputFieldInputTypeOptionsOneOf, type InputField_Number, type InputField_NumberComponentTypeOptionsOneOf, InputType, type InputTypeWithLiterals, type InputWithPlaceholder, InstallPage, type InstallPageWithLiterals, type InstallationInfo, type InstallationInfoTargetContainerOneOf, type InstallationSettings, type InstallationSettingsOptionsOneOf, type IntListOptions, type IntegerType, type IntegrationOptions, type IntegrationOptionsOptionsOneOf, IntegrationType, type IntegrationTypeWithLiterals, Intent, type IntentWithLiterals, type Interactions, type InterfaceConfiguration, type InterfaceConfigurationOfTypeOneOf, InterfaceConfigurationType, type InterfaceConfigurationTypeWithLiterals, type InternalComponentMetadata, type InventorySpiConfig, type InvoicesActionsComponentData, type InvoicesConfig, type IsStretched, type Item, type ItemDataOneOf, type ItemImage, type ItemLayout, type ItemLayoutItemOneOf, type ItemPath, type ItemSelection, type ItemSelectionOptions, type ItemStyle, type ItemThumbnail, type ItemThumbnailOptionsOneOf, ItemType, type ItemTypeWithLiterals, type ItemVideo, type ItemsGroup, type ItemsSelectionProviderConfig, type KeepAliveConfig, type Keywords, type LanguageTagListOptions, Layout, type LayoutCellData, type LayoutData, type LayoutDataBackgroundImage, LayoutDataImagePosition, type LayoutDataImagePositionWithLiterals, LayoutMode, type LayoutModeWithLiterals, LayoutType, type LayoutTypeWithLiterals, type LayoutWithLiterals, type LearnMore, type LeftPanel, type LeftPanelWidgetConfig, type LegacyBackOfficeExtensionWidget, type LegacyBackOfficeExtensionWidgetAssetOneOf, type LegacyBackOfficeMenuItem, type LegacyBackOfficeMenuItemAction, type LegendsSpiConfig, Level, type LevelWithLiterals, type LightboxCloseOptions, type LightboxContent, type LightboxEditorSettings, type LightboxOptions, type LimiterField, type LineItemsEnricherConfig, LineStyle, type LineStyleWithLiterals, type Link, type LinkData, type LinkPreviewData, type LinkPreviewDataStyles, type LinkSuffix, LinkTarget, type LinkTargetWithLiterals, LinkType, type LinkTypeWithLiterals, ListEventFromCalendars, type ListEventFromCalendarsWithLiterals, type ListItem, type ListValue, type LiveSiteActionDeeplink, type LocalDeliveryComponentData, type Location, type LocationLocationInfoOneOf, LockableOperation, type LockableOperationWithLiterals, type Logo, type Logos, type Main, type MainPresets, type MainPropsData, type ManagedMenuEntities, MandatoryField, type MandatoryFieldWithLiterals, type MapData, type MapSettings, MapType, type MapTypeWithLiterals, type Margin, type Margins, type MarketplaceProviderConfig, type MarketplaceSPIConfig, type MaskImage, Maturity, type MaturityWithLiterals, MeasurementSystem, type MeasurementSystemWithLiterals, type Media, type MediaCapabilities, type MediaItem, type MediaItemMediaOneOf, MediaMimeType, type MediaMimeTypeWithLiterals, type MediaSettings, type MembershipsSPIConfig, type MentionData, type MenuAction, type MenuActionActionOneOf, type MenuDropdown, type MenuLink, type MenuSlot, type MessageContainingTranslatables, type Metadata, Method, type MethodWithLiterals, type MinMaxRange, MobileApplication, type MobileApplicationWithLiterals, type MobileFeedChannel, type MobileFeedContentKeys, type MobilePushChannel, type MobilePushChannelConfig, type MobilePushContentKeys, type ModalParams, type Monitoring, type MonitoringOptionsOneOf, MonitoringType, type MonitoringTypeWithLiterals, MpaNavigation, type MpaNavigationWithLiterals, type MultiReferenceOptions, type MultiServiceBookingPolicyProviderConfig, type MultilineAddress, type MultilineAddressValidation, type MultilingualTranslationSchema, type MultipleDashboardsComponentData, type NPMPackage, type NPMPackageEntry, type Namespace, type NamespaceConfig, type NamespaceConfigV2, NativeStateType, type NativeStateTypeWithLiterals, type NavigateToPageAction, NavigationType, type NavigationTypeWithLiterals, type NestedWidgets, type Node, type NodeDataOneOf, type NodeStyle, NodeType, type NodeTypeWithLiterals, type NotificationChannels, type NotificationContent, type NotificationPreferencesFilterConfig, type NotificationTopic, NotificationTopicState, type NotificationTopicStateWithLiterals, NotificationTopicType, type NotificationTopicTypeWithLiterals, type Npm, NullValue, type NullValueWithLiterals, NumberComponentType, type NumberComponentTypeWithLiterals, type NumberInput, NumberOfColumns, type NumberOfColumnsWithLiterals, type NumberType, OAuthAppType, type OAuthAppTypeWithLiterals, OAuthTechnologies, type OAuthTechnologiesWithLiterals, type ObjectField, type ObjectFieldTypeOptionsOneOf, type ObjectOptions, type ObjectType, type Oembed, type Offset, type OffsetValueOneOf, type OneTimeOptionConfiguration, type OneTimePricingTypeConfiguration, type OpenApiOptions, type OpenComponent, type OpenModalAction, type OperationExecutorConfig, Operator, type OperatorConfiguration, OperatorEnumOperator, type OperatorEnumOperatorWithLiterals, type OperatorWithLiterals, type Option, type OptionDesign, type OptionLayout, type OrCondition, Order, type OrderValue, type OrderWithLiterals, type OrderedListData, Orientation, type OrientationWithLiterals, Origin, type OriginInfo, type OriginWithLiterals, type OutOfIframeData, type Output, OverrideEntityType, type OverrideEntityTypeWithLiterals, type OverrideTemplateFields, type PDFSettings, PDFSettingsViewMode, type PDFSettingsViewModeWithLiterals, type PackageDimension, type PackageType, type Padding, type Page, type PageAnchor, type PageComponentData, type PageContent, type PageDashboardApplicationComponent, type PageEditorSettings, type PageInstallation, type PageInstallationSettings, type PageNavigationOptions, type PageOptions, type PageOutOfIframeComponentData, type PageReplace, type PageReplaceOptions, type PageReplaceOptionsOptionsOneOf, type PageWidgetAsContent, type PagesConfig, PaginationMode, type PaginationModeWithLiterals, type Panel, type PanelAction, type PanelActionSelectedPanelTypeOneOf, PanelContentType, type PanelContentTypeWithLiterals, PanelMode, type PanelModeWithLiterals, type PanelSelectedContentTypeOneOf, type PanelSize, PanelType, type PanelTypeWithLiterals, type PanoramaOptions, type ParagraphData, type Param, type Parameter, ParameterType, type ParameterTypeWithLiterals, type ParameterValueDefinitionDetailsOneOf, PartialPaymentRestriction, type PartialPaymentRestrictionWithLiterals, ParticipantType, type ParticipantTypeWithLiterals, type Password, type PatternsWizard, type Payment, PaymentComponentType, type PaymentComponentTypeOptionsOneOf, type PaymentComponentTypeWithLiterals, type PaymentDateModification, type PaymentInput, type PaymentMethod, type PaymentMethodMethodOneOf, type PaymentServiceProviderConfig, type PaymentServiceProviderCredentialsField, type PaymentServiceProviderCredentialsFieldFieldOneOf, type PaymentSettingsSPIConfig, type PaymentType, type PaymentsGatewayComponentData, type PayoutsProviderConfig, type PerkValues, type PerksConfiguration, type PermissionOverrides, type Permissions, type PhoneConstraints, type PhoneInfo, PhoneInfoTag, type PhoneInfoTagWithLiterals, type PhoneInput, type PhoneOptions, type PingNotificationComponentData, type PingSettingsGroupComponentData, PingSettingsGroupComponentDataState, type PingSettingsGroupComponentDataStateWithLiterals, type PlaceHolder, Placement, type PlacementWithLiterals, type PlanDuration, type PlanFormBenefitsSection, type PlanFormCustomPricingRulesSection, type PlanFormCustomSection, PlanFormDefaultSection, type PlanFormDefaultSectionWithLiterals, type PlanFormDurationSection, type PlanFormInfoSection, type PlanFormInitialValue, type PlanFormPagePermissionsSection, type PlanFormPlanSettingsSection, type PlanFormPreviewSection, type PlanFormPricingAndDurationSection, type PlanFormPricingAndDurationSectionDurationInputConfiguration, type PlanFormPricingAndDurationSectionInputConfiguration, PlanFormPricingOption, type PlanFormPricingOptionWithLiterals, type PlanFormPricingSection, type PlanFormPricingSectionInputConfiguration, type PlanFormPricingSectionSetupFeeConfiguration, PlanFormPricingType, type PlanFormPricingTypeWithLiterals, type PlanFormSection, type PlanFormSectionSectionOneOf, type PlanFormStartDateRulesSection, type PlanFormTypeMetadata, PlanPeriodUnit, type PlanPeriodUnitWithLiterals, type PlanPriceData, type PlanPricing, type PlanPricingPricingModelOneOf, type PlanSettingsRowConfiguration, type PlatformHeaderConfig, type PlatfromComponentData, type PlaybackOptions, type PluginConfig, type PluginContainerData, PluginContainerDataAlignment, type PluginContainerDataAlignmentWithLiterals, type PluginContainerDataHeight, type PluginContainerDataWidth, type PluginContainerDataWidthDataOneOf, type PluginInstallationSettings, PluginInterface, type PluginInterfaceWithLiterals, type PluginMarketData, type PluginPlacement, type PolicyConfig, type PolicyPermissionOverrides, type Poll, type PollData, type PollDataLayout, type PollDesign, type PollDesignBackground, type PollDesignBackgroundBackgroundOneOf, type PollLayout, PollLayoutDirection, type PollLayoutDirectionWithLiterals, PollLayoutType, type PollLayoutTypeWithLiterals, type PollOption, type PollSettings, type PosProviderSettingsServicePluginConfig, type Position, type PostLoginConfig, type PreRegisterConfig, type PredefinedExpectedInput, type PredefinedExpectedInputConfiguration, type PredefinedExpectedInputConfigurationTypeOneOf, type PredefinedLabel, type PredefinedValues, type PremiumActionConfig, type Preset, type PresetEditorPresence, type PresetElementDefaults, type PresetInfo, type PresetInnerElementDefaults, type PresetItem, type PresetSize, type PresetStyleDefaults, type PresetStyleItemOverrides, type PresetStyleOverrides, type PreviewCardPlaceholders, type PreviewConfiguration, type PreviewFields, type PriceSPIConfig, PriceType, type PriceTypeWithLiterals, type PricingData, type PricingPlansFormConfiguration, type PricingRecurring, type Primitive, PrimitiveType, type PrimitiveTypeWithLiterals, type Product, type ProductCatalogProviderConfig, type ProductCheckboxGroup, type ProductCheckboxGroupOption, type ProductPriceOptionsOneOf, type ProductRestrictionsConfig, ProductType, type ProductTypeWithLiterals, type ProductsPathsConfig, type Project, type PropertiesType, PropertiesTypeEnum, type PropertiesTypeEnumWithLiterals, type PropertiesTypePropertiesTypeOptionsOneOf, type ProposalEditorProviderConfig, type Provider, type ProviderAccountServicePluginConfig, type ProviderConfig, type ProviderConfigMessage, type ProviderFilterOptions, type ProviderIdentifier, type ProviderSuppressionServicePluginConfig, type PurchaseValidationsConfig, type QuantityLimit, type RadioButtonLabeled, type RadioGroup, type RadioGroupOption, type RangeConstraints, type RateLimit, type RatingInput, type ReactElementContainer, type ReactElementContainerSelectedContainerTypeOneOf, type RecipientFilter, type RecipientFilterDataOneOf, RecipientFilterType, type RecipientFilterTypeWithLiterals, RecipientType, type RecipientTypeWithLiterals, type RecommendationsProviderConfig, type RecurringOptionConfiguration, type RecurringPricingTypeConfiguration, type RecurringPricingTypeConfigurationFreeTrialConfiguration, type RedirectOptions, type RefElement, type RefInnerElementDefaults, type ReferenceOptions, Region, RegionScopeScope, type RegionScopeScopeWithLiterals, RegionType, type RegionTypeWithLiterals, type RegionWithLiterals, type Rel, type RenderOverrides, type RepeatedFieldOverrideConfig, type ReplaceableOptions, ReplacementType, type ReplacementTypeWithLiterals, type ReplacingOptions, RequiredIndicator, RequiredIndicatorPlacement, type RequiredIndicatorPlacementWithLiterals, type RequiredIndicatorProperties, type RequiredIndicatorWithLiterals, type RequiredOptions, type ResetButton, ResizeDirection, type ResizeDirectionWithLiterals, Resizing, type ResizingWithLiterals, type Resource, type Resources, ResponsivenessBehaviour, type ResponsivenessBehaviourWithLiterals, type ResponsysEmail, type RestaurantsPOSComponentData, RestrictedOperation, type RestrictedOperationWithLiterals, type Restriction, RestrictionLevel, type RestrictionLevelWithLiterals, type Restrictions, type RestrictionsConfig, type ReviewsEntityCatalogProviderConfig, type ReviewsProductCatalogProviderConfig, type RewardProviderConfig, type RibbonStyles, type RichContent, type RichContentOptions, type RichText, RichTextAbilities, type RichTextAbilitiesWithLiterals, type RichTextWithIllustrationVertical, type RouterPage, type Rule, type SDKExports, type SDKExportsNpm, Scaling, type ScalingWithLiterals, type Scheduling, SchedulingComponentType, type SchedulingComponentTypeOptionsOneOf, type SchedulingComponentTypeWithLiterals, type Schema, type SchemaConfig, type SchemaField, SchemaFieldExposure, type SchemaFieldExposureWithLiterals, SchemaFieldFieldType, type SchemaFieldFieldTypeWithLiterals, type SchemaFieldType, type SchemaFieldTypeFieldTypeOneOf, type SchemaGroup, type SchemaGroupElement, type SchemaKey, SchemaScope, type SchemaScopeWithLiterals, Scope, ScopeType, type ScopeTypeWithLiterals, type ScopeWithLiterals, ScriptType, type ScriptTypeWithLiterals, type SdkDefinition, type SearchConfig, type SearchField, type SearchParams, type SecondLevelCategory, type Section, type SentryOptions, type SeoKeywordsSuggestionsSPIConfig, type ServiceAction, type ServiceAvailabilityPolicyProviderConfig, type ServicePermissionOverrides, type ServiceTagsConfig, type ServiceTrigger, type ServicesDropdown, type ServicesDropdownOption, type Settings, type SettingsPanel, type SettingsPermissions, type SettingsUrl, type SetupFeeConfiguration, type ShapeData, type ShapeDataStyles, type SharedPlatformMobilePushConfig, type ShippingLabelCarrierSpiConfig, type ShippingProviderConfig, type ShippingRatesConfig, type ShorthandGroupBackground, type ShoutoutEmail, type Sidebar, type SidebarChildItem, type SidebarChildItemItemOneOf, type SidebarConfig, type SidebarConfigOneOf, SidebarDataType, type SidebarDataTypeWithLiterals, SidebarEntityType, type SidebarEntityTypeWithLiterals, type SidebarRootItem, type SidebarRootItemItemOneOf, type SidebarSecondLevelChildItem, type SidebarSecondLevelChildItemItemOneOf, type SidebarWidget, type SidebarWidgetConfig, type SidebarWidgetConfigOneOf, type Signature, type Simple, type SimpleContainer, type SimpleField, SimpleType, type SimpleTypeWithLiterals, type SingleContent, type SingleKeyCondition, type SiteConfig, type SiteContributorsData, type SiteMapProviderConfig, type SiteMemberData, SiteMembersSsrCaching, type SiteMembersSsrCachingWithLiterals, type SiteMigrationSpiConfig, type SiteWidgetSlot, type Size, SizingType, type SizingTypeWithLiterals, type SliderLabeled, type Slot, type SlotData, type SlotDataSlotTypeOneOf, SlotDataType, type SlotDataTypeWithLiterals, type SlotParams, type SmsActionMessage, type SmsChannel, type SmsContentKeys, type SmsMessageConfig, type SmsSmsMessageConfig, type SnippetSolutionData, type SocialMarketingDesignSPIConfig, type SocialMarketingDesignsProviderConfig, type Source, type SourceOptionsOneOf, SourceType, type SourceTypeWithLiterals, type SpamSubmissionPermissions, type Spi, type SpiBaseUri, type Spoiler, type SpoilerData, type StaffSortingProviderConfig, type StartDateLimitsSPIConfig, type StartDateRulesSPIConfig, type State, StaticContainer, type StaticContainerWithLiterals, type StaticFileComponentData, type StaticFilterOption, type StaticFilterOptions, Status, type StatusWithLiterals, type Step, StorageDomain, type StorageDomainWithLiterals, StorageType, type StorageTypeWithLiterals, StringComponentType, type StringComponentTypeWithLiterals, type StringListOptions, type StringOption, type StringType, type StringTypeFormatOptionsOneOf, type StudioComponentData, type StudioWidgetComponentData, type StudioWidgetVariation, type StyleAction, type StyleItem, type StyleItemDefaults, type StyleItemOverrides, type StyleItemSelectedCssPropertyTypeOneOf, type StyleItemSelectedCssVariableTypeOneOf, type StyleItemSelectedItemTypeOneOf, StyleType, type StyleTypeWithLiterals, type Styles, type StylesBorder, StylesPosition, type StylesPositionWithLiterals, type SubPage, type SubmissionPermissions, type SubmitSettings, type SubmitSettingsSubmitSuccessActionOptionsOneOf, SubmitSuccessAction, type SubmitSuccessActionWithLiterals, type SubscriptionInfo, SyncToCalendar, type SyncToCalendarWithLiterals, type SyncedProjectsProviderConfig, type Tab, type TableCellData, type TableData, Tag, type TagOverrides, type TagOverridesEntry, type TagWithLiterals, type Tags, type TagsOption, Target, type TargetElement, type TargetWithLiterals, type TaskScope, type TaxCalculationConfig, type TaxCalculatorSpiConfig, type TaxCountriesConfig, type TaxExemptGroup, type TaxExemptGroupsProviderConfig, type TaxGroupsProviderConfig, type TaxIdValidatorConfig, type TaxTypesConfig, type TaxationCategoryProvider, type TemplateContainer, TemplateDefaultColor, type TemplateDefaultColorWithLiterals, TemplateType, type TemplateTypeWithLiterals, type TermsAndConditionsConfiguration, type TermsModalConfiguration, TestEnum, type TestEnumWithLiterals, type Text, TextAlignment, type TextAlignmentWithLiterals, type TextData, type TextDecoration, type TextEnum, type TextGroup, type TextInput, TextInputDisplayType, type TextInputDisplayTypeWithLiterals, type TextInputLabeled, type TextInputSettings, type TextNodeStyle, type TextStyle, type TextStyleDefaultColorOneOf, type TextToSpeechActionMessage, type TextWithSuffix, type TextWithSuffixSuffixOneOf, type TextWithTooltip, type ThankYouMessageOptions, type ThankYouPageConfiguration, type ThankYouPageInputConfig, type ThankYouPageModalConfiguration, type ThankYouPagePreviewConfiguration, type ThankYouPageRedirectsConfiguration, type ThumbnailData, ThumbnailType, type ThumbnailTypeWithLiterals, type Thumbnails, ThumbnailsAlignment, type ThumbnailsAlignmentWithLiterals, ThumbnailsSize, type ThumbnailsSizeWithLiterals, type TicketReservationsSpiConfig, type TimeConstraintConfiguration, type TimeConstraintConfigurationValueConstraintsOneOf, TimeConstraintType, type TimeConstraintTypeWithLiterals, type TimeInput, type ToggleLabeled, type ToolPanelConfig, type TooltipSuffix, type TopologyComponentData, type TranslatedMessageWithIdRepeated, type TranslatedMessageWithUniqueFieldRepeated, type TranslationResources, Trigger, type TriggerFieldOverride, type TriggerFilter, type TriggerOverride, type TriggerProviderSPIConfig, type TriggerWithLiterals, Type, type TypeWithLiterals, type TypedDynamicParam, TypedDynamicParamType, type TypedDynamicParamTypeWithLiterals, type UnifiedLightbox, type UnifiedPage, type UnifiedPageEditorSettings, UnitType, type UnitTypeWithLiterals, type Until, type UpdateComponentCatalogRequest, UpdateMode, type UpdateModeWithLiterals, UploadFileFormat, UploadFileFormatEnumUploadFileFormat, type UploadFileFormatEnumUploadFileFormatWithLiterals, type UploadFileFormatWithLiterals, type UpstreamWixCommonImage, type Url, type UrlData, type UrlMapperProviderConfig, type UrlParam, type UserNotification, type UserNotificationData, type UserNotificationDataContext, type UserNotificationDataDeeplink, type UserNotificationDataDeeplinkOfOneOf, type UserNotificationDataInitiator, type UserNotificationDataInitiatorDataOneOf, type UserNotificationDataRecipientFilter, type UserNotificationDataRecipientFilterDataOneOf, UserNotificationDataRecipientFilterType, type UserNotificationDataRecipientFilterTypeWithLiterals, UserNotificationDataType, type UserNotificationDataTypeWithLiterals, type V1Image, type V1ImplementedMethods, type V1Link, type V1LinkDataOneOf, type V1Metadata, type V1Region, type V1SchemaField, V1Scope, type V1ScopeWithLiterals, type V1TextStyle, type V1ValidationTarget, type V2CommunicationChannelConfiguration, type V2Condition, type V2Field, type V2FieldFieldTypeOptionsOneOf, type V2ImplementedMethods, type V2Rule, type V2TriggerOverride, type ValidationMessages, type ValidationTarget, ValidationTargetMethod, type ValidationTargetMethodWithLiterals, type ValidationsSPIConfig, ValueConstraintType, type ValueConstraintTypeWithLiterals, type VectorArt, VectorArtCategoryTypes, type VectorArtCategoryTypesWithLiterals, type VectorArtOverrides, type VeloActionConfig, type VeloCustomCss, type VeloPublishPipelineTaskProviderConfig, type VelocityEmail, Vertical, VerticalAlignment, VerticalAlignmentAlignment, type VerticalAlignmentAlignmentWithLiterals, type VerticalAlignmentWithLiterals, VerticalDocking, type VerticalDockingWithLiterals, type VerticalWithLiterals, VibeActionType, type VibeActionTypeWithLiterals, type VibeCustomPanelAction, type VibeDashboardAction, type Video, VideoCategoryTypes, type VideoCategoryTypesWithLiterals, type VideoConferenceOptions, type VideoData, type VideoOverrides, ViewMode, type ViewModeWithLiterals, ViewRole, type ViewRoleWithLiterals, type ViewerRouterSPIConfig, type ViewerService, type ViewerServiceAssets, type ViewerServiceModuleConfiguration, type VisibleState, type VoiceChannel, type VoiceContentKeys, VoteRole, type VoteRoleWithLiterals, type WebComponentData, WebComponentDataElementType, type WebComponentDataElementTypeWithLiterals, type WebFeedChannel, type WebFeedContentKeys, type WebhookComponentData, type WidgetAsContent, type WidgetBehavior, type WidgetComponent, type WidgetComponentData, type WidgetComponentOptions, type WidgetData, type WidgetDetails, type WidgetDisplay, WidgetHorizontal, type WidgetHorizontalWithLiterals, type WidgetInstallation, type WidgetInstallationSettings, type WidgetInstallationSettingsTargetContainerOneOf, type WidgetOutOfIframeComponentData, type WidgetPluginComponentData, type WidgetSize, type WidgetSizeHeight, type WidgetSizeWidth, type WidgetSlot, WidgetVertical, type WidgetVerticalWithLiterals, WidgetWidthType, type WidgetWidthTypeWithLiterals, Width, WidthType, type WidthTypeWithLiterals, type WidthWithLiterals, type WixAiGatewaySpiConfig, type WixApiOptions, WixCodePublishTaskName, type WixCodePublishTaskNameWithLiterals, type WixCommonImage, type WixDependency, type WixFile, WixFileComponentType, type WixFileComponentTypeOptionsOneOf, type WixFileComponentTypeWithLiterals, type WixOfferingComponentData, type WixOfferingComponentDataOfferingOneOf, type WixPagesDomainMapping, type WixUserData, type WixUsersData, type WixVibeCodingInstructions, type WixVibeComponent, type WixelSPIConfig, type WorkerComponentData, type WritingMode, WritingModeValue, type WritingModeValueWithLiterals, type _Array, type _ArrayComponentTypeOptionsOneOf, type _Boolean, type _BooleanComponentTypeOptionsOneOf, type _Date, type _Function, type _Number, type _Object, type _String, type _StringComponentTypeOptionsOneOf, agentMakerApprovalProvider, aiAssistant, aiAssistantAction, alertEnricher, analyticsProductCatalog, appConfig, appRouter, applicationAutomation, applicationProfile, audienceProvider, automationTemplate, automationTrigger, automationsActionProvider, automationsTriggerProvider, automationsVeloActionProvider, availabilityTimeSlotsConfigurationProvider, backOfficeCustomization, backOfficeExtension, backOfficeExtensionContainer, backOfficeExtensionMenuItem, backOfficeExtensionWidget, backOfficeExternalUrl, backOfficeModal, backOfficePage, backOfficeRestrictedCustomization, backOfficeSidebarCategory, backOfficeWidget, backendWorker, bassValidateCancelAction, benefitProgramsPolicyProvider, billingOperation, billingSettings, billingTaxIdValidator, blogPaywallProvider, bookingActionUrlsProvider, bookingAutomationsConfiguration, bookingPolicyProvider, bookingsExternalCalendarProvider, bookingsPlatformConfiguration, bookingsPricingProvider, bookingsResourceTypesProvider, bookingsValidationProvider, broadcastList, browserStorage, calendarConferencingProvider, calendarEventTypeProvider, calendarEventValidationProvider, clientSideService, codePackage, commentsContextProvider, commentsFilterProvider, commentsModerationProvider, communicationChannel, communicationChannelProvider, componentEnricherProvider, componentReferenceDataProvider, componentsTranslationsAdditionalFieldsProvider, componentsValidatorProvider, contactLabels, contactNotification, contactsSegmentsV2FilterProvider, crossSell, customElementWidget, customTableReservationsProvider, dashboard, dashboardApplication, dashboardPlatform, dataComponent, dataExtensions, dcConfig, dealerAdaptiveComponentProvider, dealerExternalFilterProvider, deploymentPipelineProvider, devCenterTestingComponent, ecomAdditionalFees, ecomCatalog, ecomCheckoutContent, ecomCustomScope, ecomDefaultTaxationCategory, ecomDiscounts, ecomDiscountsTrigger, ecomDropshippingProvider, ecomForms, ecomInventory, ecomLineItemsEnricher, ecomMemberships, ecomPaymentSettings, ecomRecommendationsProvider, ecomShippingRates, ecomTaxCalculatorSpi, ecomValidations, editorAddon, editorAppPreviewsPoc, editorContextProvider, editorFunctionLibrary, editorReactComponent, embeddedScript, eventTimeSlotsConfigurationProvider, eventsEventBadges, eventsTicketReservations, extension, externalDatabaseProvider, fictionalShippingProvider, formSchemaDynamicValues, formSubmissionModeration, formTemplate, formsExtensionProvider, formsSchemaProvider, formsSpamSubmissionReportsProvider, formsSpamSubmissionsProvider, formsSubmissionsExtensionProvider, formsSubmissionsProvider, functionEcomDiscountTriggerEligibilityProvider, functionExtension, functionRecipe, functionsAssistantTools, functionsShopPriceProvider, genericHooks, giftCardsProvider, googleBusinessProfileFeatureProvider, gridAppFilesTransformer, headlessOauth, identityAuthenticator, identityFactor, identityIdpConnector, identityPostLogin, identityPreRegistration, invoicesActions, invoicesProvider, itemsSelectionProvider, legendsPersonaConfiguration, localDelivery, loyaltyCustomRewards, loyaltyCustomRewardsV2, monitoring, multiServiceBookingPolicyProvider, multilingualContentProvider, multilingualTranslationSchema, multilingualTranslationSchemaGroup, multipleDashboards, notificationContent, notificationPreferencesFilterProvider, notificationTopic, page, pageOutOfIframe, panel, papiProvider, partnersPayouts, patternsWizard, paymentProvider, paymentsDisputeServicePlugin, paymentsGateway, pingSettingsGroup, pingUouNotification, pingUserNotification, platform, portfolioSyncedProjectsProvider, premiumAction, premiumCustomCharges, premiumProductsPaths, premiumPurchaseValidations, pricingPlanStartDateLimits, pricingPlanStartDateRules, pricingPlansFees, pricingPlansFormConfiguration, pricingPlansPrice, proposalEditorProvider, providerSuppressionServicePlugin, reserved, restaurantsPos, restaurantsPosProviderSettingsServicePlugin, sdkDefinition, sdkExports, seoKeywordsSuggestions, serviceTagsConfiguration, shippingLabelCarrier, shubMarketplaceProvider, siteMapInfoProvider, siteMigration, siteWidgetSlot, smsActionMessage, snippetSolution, socialMarketingDesign, socialMarketingDesignsProvider, staffSortingProvider, staticFile, storesProductRestrictions, studio, studioWidget, suppliersHubMarketplace, taxCalculationProvider, taxExemptGroupsProvider, taxGroupsProvider, textToSpeechActionMessage, topology, unifiedLightbox, unifiedPage, urlMapperProvider, userNotification, veloCustomCss, veloPublishPipelineTaskProvider, viewerDynamicSiteStructureProvider, viewerService, web, webhook, widget, widgetOutOfIframe, widgetPlugin, wixAiGatewayCallback, wixHostingAppDeploymentProvider, wixHostingAppEnvironmentProvider, wixOffering, wixPaymentsProviderAccountServicePlugin, wixReviewsEntityCatalog, wixReviewsProductCatalog, wixVibeCodingInstructions, wixVibeComponent, wixel, wixelBinding, wixelViewerRouterProvider, worker };
|
|
26359
|
+
export { type A11y, A11yAttributes, type A11yAttributesWithLiterals, AcceptedDirectMessageType, type AcceptedDirectMessageTypeWithLiterals, AcceptedMessageTypesAcceptedDirectMessageType, type AcceptedMessageTypesAcceptedDirectMessageTypeWithLiterals, AcceptedMessageTypesAcceptedSmsMessageType, type AcceptedMessageTypesAcceptedSmsMessageTypeWithLiterals, AcceptedSmsMessageType, type AcceptedSmsMessageTypeWithLiterals, AccessLevel, type AccessLevelWithLiterals, type Action, type ActionCondition, ActionName, type ActionNameWithLiterals, type ActionProviderSPIConfig, type ActionSPIConfig, type ActionSPIConfigImplementedMethods, type ActionSPIConfigInterfaceConfiguration, type ActionSPIConfigInterfaceConfigurationOptionsOneOf, ActionSPIConfigInterfaceConfigurationType, type ActionSPIConfigInterfaceConfigurationTypeWithLiterals, type ActionSpiConfig, ActionType, type ActionTypeWithLiterals, type Actions, type AdaptiveComponentProviderConfig, type AddCustomFields, type AdditionalFeesSPIConfig, type AdditionalStepInfo, type AdditionalTaxGroup, type AddonMarketData, type Address, AddressComponentType, type AddressComponentTypeOptionsOneOf, type AddressComponentTypeWithLiterals, type AddressInfo, AddressInfoTag, type AddressInfoTagWithLiterals, type AddressLine2, type AdminConfigurableTextInput, type AlertEnricherSpiConfiguration, type AlgorithmConfig, AlgorithmType, type AlgorithmTypeWithLiterals, Alignment, type AlignmentWithLiterals, type AllowedValuesOptions, type AlternativeUri, type AnchorData, type AnchorMetaData, type AndCondition, type AndroidMobilePushConfig, AndroidStyle, type AndroidStyleWithLiterals, type ApiContext, type ApiSlot, type ApiWidth, type AppConfig, type AppConfiguration, type AppDeploymentProviderConfig, type AppEmbedData, type AppEmbedDataAppDataOneOf, type AppEnvironmentProviderConfig, type AppPreviewProviderConfig, type AppRouter, AppType, type AppTypeWithLiterals, type ApplicationAutomationComponent, type ApplicationProfile, type ApplicationProfileProviderConfig, type Appointment, AppointmentFormat, type AppointmentFormatInfoOneOf, type AppointmentFormatWithLiterals, type ApprovalProviderConfig, type ApprovalProviderConfigScopeOneOf, Archetype, type ArchetypeWithLiterals, ArrayComponentType, type ArrayComponentTypeWithLiterals, type ArrayItems, type ArrayItemsArrayDataOneOf, type ArrayOptions, type ArrayOptionsElementTypeOptionsOneOf, type ArrayType, type ArrayTypeArrayItems, type ArrayTypeArrayItemsItemTypeOptionsOneOf, AspectRatio, type AspectRatioWithLiterals, AssetType, type AssetTypeWithLiterals, type AssistantSpiConfig, type AudienceProviderConfig, type AudioData, type AuthenticatorConfig, type AutomationActionScope, type AutomationMetadata, type AutomationTemplateComponent, type AutomationTrigger, type AutomationsConfig, type AvailabilityTimeSlotsProviderConfig, type AvatarConfig, AvatarShape, type AvatarShapeWithLiterals, type BackOfficeCustomization, type BackOfficeCustomizationSidebarEntity, type BackOfficeCustomizationSidebarEntityItemOneOf, type BackOfficeExtension, type BackOfficeExtensionContainer, type BackOfficeExtensionExtensionOneOf, type BackOfficeExtensionMenuItem, type BackOfficeExtensionWidget, type BackOfficeExtensionWidgetAssetOneOf, type BackOfficeExternalUrl, BackOfficeHostingPlatforms, type BackOfficeHostingPlatformsWithLiterals, type BackOfficeModal, type BackOfficeModalContentOneOf, type BackOfficePage, type BackOfficePageAssetOneOf, type BackOfficeRestrictedCustomization, type BackOfficeScriptAsset, BackOfficeScriptAssetType, type BackOfficeScriptAssetTypeWithLiterals, type BackOfficeSidebarCategory, type BackOfficeWidget, type BackOfficeWidgetContentOneOf, type Backdrop, type BackdropFilter, BackdropType, type BackdropTypeWithLiterals, type BackendWorker, type Background, type BackgroundGradient, type BackgroundImage, BackgroundModeEnum, type BackgroundModeEnumWithLiterals, BackgroundType, type BackgroundTypeWithLiterals, type BackofficeActionDeeplink, type Banner, type BarAlignment, BarAlignmentSelected, type BarAlignmentSelectedWithLiterals, type BaseInfo, type BaseInstallation, type Behaviors, type BillingSettingsConfig, type BindingsSPIConfig, BlockType, type BlockTypeWithLiterals, type BlockquoteData, type BlocksData, type BlogPaywallProviderConfig, type BookingActionUrlsProviderConfig, type BookingAutomationsConfig, type BookingData, type BookingPermissionOverrides, type BookingPolicyProviderConfig, type BookingsPlatformConfig, type BookingsPricingProviderConfig, type BookingsResourceType, type BookingsResourceTypesProviderConfig, type BookingsValidationProviderConfig, type BoolListOptions, BooleanComponentType, type BooleanComponentTypeWithLiterals, type BooleanExperimentExposureRule, type BooleanType, type Border, type BorderColors, type BorderWidths, type BrandIcons, type BreakPoint, type BreakPointSection, type Breakpoint, BreakpointEnumBreakpoint, type BreakpointEnumBreakpointWithLiterals, type BreakpointPresetStyleOverrides, type Breakpoints, type BroadcastList, type BrowserPushChannel, type BrowserPushContentKeys, type BrowserStorage, type BuilderSpi, type BulletedListData, type Bundle, type BusinessManagerPage, type ButtonData, ButtonDataType, type ButtonDataTypeWithLiterals, type ButtonStyles, CalendarType, type CalendarTypeWithLiterals, type CancelSubscriptionsConfig, type CaptionData, type CardData, type CardDataBackground, type CardDataBackgroundImage, CardDataBackgroundType, type CardDataBackgroundTypeWithLiterals, type CardStyles, CardStylesAlignment, type CardStylesAlignmentWithLiterals, CardStylesType, type CardStylesTypeWithLiterals, type CatalogSPIConfig, type CatalogSyncConfiguration, Category, type CategoryWithLiterals, type CellStyle, ChangeableProperty, type ChangeablePropertyWithLiterals, type ChannelBrandIcons, type ChannelBranding, type ChannelChannelBranding, type ChannelChannelConfiguration, type ChannelChannelConfigurationMessagingConfigOneOf, type ChannelConfiguration, ChannelConfigurationChannelType, type ChannelConfigurationChannelTypeWithLiterals, type ChannelConfigurationMessagingConfigOneOf, type ChannelIcon, type ChannelImplementedMethods, type ChannelMediaCapabilities, ChannelType, type ChannelTypeWithLiterals, type Checkbox, type CheckboxConfiguration, type CheckboxField, type CheckboxGroup, type CheckboxGroupOption, type CheckoutContentSPIConfig, type ClientResources, type ClientSideService, type CodeBlockData, type CodePackageComponentData, type CodePanel, type CollapsibleListData, type Collection, type Color, type ColorData, type ColorDefinition, type ColorSelectLabeled, type ColorSelectLabeledDataOneOf, type Colors, type CommentFilterProviderConfig, type CommentModerationProviderConfig, type CommentsContextProviderConfig, type CommonImage, type CommunicationChannelConfiguration, type ComponentCatalog, type ComponentData, type ComponentDataDataOneOf, type ComponentEnricherConfig, type ComponentInitialSize, type ComponentMetaData, type ComponentModel, ComponentPresent, type ComponentPresentWithLiterals, type ComponentReferenceDataConfig, type ComponentTranslationAdditionalFieldsConfig, ComponentType, type ComponentTypeWithLiterals, type ComponentsValidatorConfig, type Condition, type ConditionBlock, type ConditionNode, type ConditionNodeNodeOneOf, type Conditions, type ConferencingProviderConfig, type Configuration, ConfirmationLevel, type ConfirmationLevelWithLiterals, ConnectMethod, type ConnectMethodWithLiterals, ConnectionMethod, type ConnectionMethodWithLiterals, ConsentCategory, type ConsentCategoryWithLiterals, type Consequence, type ConstOrDynamicParam, type ConstOrDynamicParamValueOneOf, type Constraint, type ContactData, ContactField, type ContactFieldWithLiterals, type ContactLabelsComponentData, type ContactNotification, type ContactsData, type ContactsNotificationData, type Container, type ContainerBehaviors, type ContainerDataOneOf, type ContainerLayout, type ContainerStyleOverrides, ContainerType, type ContainerTypeWithLiterals, type ContentData, type ContentDataOverrides, type ContentFill, type ContentProviderConfig, ContentResizeDirection, type ContentResizeDirectionWithLiterals, type Context, type ContextArrayItems, type ContextArrayItemsArrayDataOneOf, type ContextDataItems, type ContextImplementor, type ContextItem, type ContextItemSelectedDataTypeOneOf, type ContextSpecifier, type ConversationLimitations, type Coordinates, type CoreApps, type Corners, type CoverImageConfiguration, type CreateComponentCatalogRequest, type CreateNewItemInfo, Crop, type CropWithLiterals, type CrossSellConfig, type CssCustomPropertyAction, type CssCustomPropertyItem, type CssCustomPropertyItemSelectedCssPropertyTypeOneOf, CssDataType, type CssDataTypeWithLiterals, type CssNumber, type CssPropertyAction, type CssPropertyItem, type CssPropertyItemDefaults, type CssPropertyItemDefinitionOverrides, type CssPropertyItemSelectedCssPropertyTypeOneOf, CssPropertyType, CssPropertyTypeEnumCssPropertyType, type CssPropertyTypeEnumCssPropertyTypeWithLiterals, type CssPropertyTypeWithLiterals, CssVariableTypeEnumCssDataType, type CssVariableTypeEnumCssDataTypeWithLiterals, type CurrencyCodeListOptions, type CustomAction, type CustomActionActionExecuteOneOf, type CustomChargesConfig, type CustomElement, type CustomElementConsentCategoryOneOf, CustomElementScriptType, type CustomElementScriptTypeWithLiterals, type CustomElementWidget, type CustomEnum, type CustomEnumOption, type CustomEnumOptionCssProperty, type CustomExperimentExposureRule, type CustomFieldInfo, CustomFieldsType, type CustomFieldsTypeWithLiterals, type CustomInitialPreset, type CustomOption, type CustomPermission, type CustomPropertyEnum, type CustomPropertyEnumOption, type CustomPropertyEnumOptionStyle, type CustomRefData, type CustomReservationsApprovalConfig, type CustomRewardProviderConfig, type CustomScopeConfig, type CustomTriggerConfig, type DCConfigData, type Dashboard, type DashboardAction, type DashboardApplicationData, type DashboardButton, type DashboardComponentData, type DashboardItem, type DashboardPlatfromComponentData, type DataAction, type DataComponent, type DataExtensionsComponentData, type DataGroupsArrayItems, type DataItem, type DataItemOverrides, type DataItemOverridesSelectedDataTypeOneOf, type DataItemSelectedDataTypeOneOf, type DataItems, type DataPermissions, DataType, type DataTypeWithLiterals, type DateInput, type DatePicker, type DateTimeConstraints, type DateTimeInput, type Debounce, type DecimalListOptions, type Decoration, type DecorationDataOneOf, DecorationType, type DecorationTypeWithLiterals, type Deeplink, type DeeplinkOfOneOf, Default, type DefaultCountryConfig, type DefaultCountryConfigOptionsOneOf, DefaultCountryConfigType, type DefaultCountryConfigTypeWithLiterals, type DefaultPresets, type DefaultTaxGroupProviderConfig, DefaultTextStyle, type DefaultTextStyleWithLiterals, type DefaultWithLiterals, type Definition, type Delay, type DelayTypeOneOf, type DeleteComponentCatalogRequest, type DeleteTemplateFields, type DeploymentPipelineProviderConfig, type Description, type Design, DesignTarget, type DesignTargetWithLiterals, type DevCenterTestingComponentData, type DevCenterTestingComponentDataTranslatableOneOfOneOf, type Dimension, type Dimensions, type DirectMessageConfig, Direction, type DirectionWithLiterals, type DiscountConfig, type DiscountsSPIConfig, type DiscoveryMetaData, type Display, type DisplayField, type DisplayFieldDisplayFieldTypeOptionsOneOf, DisplayFieldType, type DisplayFieldTypeWithLiterals, type DisplayFilter, type DisplayFilters, type DisplayGroupAction, type DisplayGroupItem, type DisplayGroupItemSelectedGroupTypeOneOf, type DisplayProperties, type DisplayValue, DisplayValueEnumDisplayValue, type DisplayValueEnumDisplayValueWithLiterals, type DisputeServicePluginConfig, type DividerData, DividerDataAlignment, type DividerDataAlignmentWithLiterals, DividerDataWidth, type DividerDataWidthWithLiterals, type DmDirectMessageConfig, type Docking, type DockingProperties, type DocumentStyle, Domain, type DomainWithLiterals, type DonationInput, type DonationInputOption, type DrillInListItem, type DrillItem, type DrillItemDataOneOf, type DropDownLabeled, type Dropdown, type DropdownField, type DropdownFieldOption, type DropdownOption, type DropshippingProviderSPIConfig, type DtsContent, type DtsDefinitionReference, type DtsDefinitionReferenceDtsDefinitionOneOf, DtsDefinitionType, type DtsDefinitionTypeWithLiterals, type DtsHttpLink, type DurationInputConfiguration, type DurationInputConfigurationDurationRenameOptions, type DurationRenameOptions, type DynamicPriceOptions, type DynamicSiteStructureProviderConfig, type EditableFields, EditableProperties, type EditablePropertiesWithLiterals, type EditorAddon, type EditorBehaviors, type EditorContextProvider, type EditorContextProviderModuleConfiguration, type EditorContextProviderResources, type EditorDependencies, type EditorElement, type EditorElementLayout, type EditorFunction, type EditorFunctionLibrary, type EditorFunctionLibraryModuleConfiguration, type EditorPresence, type EditorReactComponent, type EditorReactComponentModuleConfiguration, EffectGroup, type EffectGroupWithLiterals, ElementDisplayOption, type ElementDisplayOptionWithLiterals, type ElementItem, type ElementItemSelectedElementTypeOneOf, type ElementState, type ElementStyleDefaults, type ElementStyleOverrides, ElementType, type ElementTypeWithLiterals, type EmailChannel, type EmailEmailMessageConfig, type EmailInfo, EmailInfoTag, type EmailInfoTagWithLiterals, type EmailMessageConfig, type EmailTemplateConfig, type EmailTemplateConfigProviderOneOf, EmbedCategory, type EmbedCategoryWithLiterals, type EmbedData, type EmbeddedScriptComponentData, EmbeddedScriptPages, type EmbeddedScriptPagesWithLiterals, EmbeddedScriptPlacement, type EmbeddedScriptPlacementWithLiterals, type Empty, Environment, type EnvironmentWithLiterals, type ErrorReporting, type ErrorReportingArtifact, Escalation, type EscalationWithLiterals, type EventAction, type EventBadgesSpiConfig, type EventData, type EventTimeSlotsProviderConfig, type EventTypeProviderConfig, type EventValidationProviderConfig, type Execution, type ExecutionActionExecuteOneOf, ExecutionType, type ExecutionTypeWithLiterals, type ExemptRegions, type ExpectedInputs, type ExperimentGroupWrapper, type ExportMetadata, Exposure, type ExposureRule, type ExposureRuleRuleOneOf, ExposureRuleType, type ExposureRuleTypeWithLiterals, type ExposureWithLiterals, type Extendable, ExtendingComponentType, type ExtendingComponentTypeWithLiterals, type ExtensionData, type ExtensionDetails, type ExtensionExposure, ExtensionExposureExposure, type ExtensionExposureExposureWithLiterals, ExtensionType, type ExtensionTypeWithLiterals, type ExternalDatabaseSpiConfig, type ExternalFilterProviderConfig, type FactorConfig, FactorType, type FactorTypeWithLiterals, type FeedAggregation, type FeedChannels, type FeedChannelsConfig, type FeesSPIConfig, type Field, FieldFieldType, type FieldFieldTypeWithLiterals, type FieldGroup, type FieldManagementConfig, type FieldOverride, type FieldOverrides, FieldType, type FieldTypeOptionsOneOf, type FieldTypeWithLiterals, type FieldsOverrides, type FieldsSettings, type FileData, FileMediaType, type FileMediaTypeWithLiterals, type FileSource, type FileSourceDataOneOf, type FileType, type FileUpload, type Filter, FilterFunction, type FilterFunctionWithLiterals, type FilterInfo, type FilterInfoOptionsOneOf, FilterOptionsType, type FilterOptionsTypeWithLiterals, FilterSelectionType, type FilterSelectionTypeWithLiterals, FilterValueDefinitionMode, type FilterValueDefinitionModeWithLiterals, type FilteringCapability, FirstDayOfWeek, type FirstDayOfWeekWithLiterals, type FirstLevelCategory, type FixedPayment, type FixedPositionBuilder, type FixedPositionOptions, type FixedPriceOptions, type FocalPoint, type Font, type FontDefinition, type FontFamilyData, type FontFamilyWithColorPicker, type FontSizeData, FontType, type FontTypeWithLiterals, type FormFieldContactInfo, type FormFieldContactInfoAdditionalInfoOneOf, type FormLayout, type FormOverride, type FormOverrideEntityTypeOptionsOneOf, type FormOverrideFieldOverride, type FormOverrideFieldOverridePropertyTypeOptionsOneOf, type FormSchemaDynamicValuesSpiConfig, type FormSchemaSpiConfig, type FormSpamSubmissionReportPermissions, type FormSpamSubmissionReportSpiConfig, type FormSpamSubmissionReportsNamespaceConfig, type FormSpamSubmissionSpiConfig, type FormSpiExtensionConfig, type FormSubmissionModerationSpiConfig, type FormSubmissionModerationSpiNamespaceConfig, type FormSubmissionSpiConfig, type FormSubmissionSpiExtensionConfig, type FormTemplate, type FormTemplateTemplateTypeOptionsOneOf, Format, type FormatWithLiterals, type FormsConfig, type FormsPermissions, type FormsSPIConfig, type FormsSchemaNamespaceConfig, type FormsSpamSubmissionsNamespaceConfig, type FormsSubmissionsExtensionNamespaceConfig, type FormsSubmissionsNamespaceConfig, type ForwardAction, type ForwardActionActionOneOf, type FreeOptionConfiguration, type FreePricingTypeConfiguration, type FreeTrialConfiguration, type FunctionAssistantToolProviderConfig, type FunctionDefinition, type FunctionEcomDiscountTriggerEligibilityProviderConfig, type FunctionParameter, type FunctionParameterArrayItems, type FunctionParameterArrayItemsArrayDataOneOf, type FunctionParameterItems, type FunctionParameterSelectedDataTypeOneOf, type FunctionRecipe, type FunctionResources, type FunctionReturnType, type FunctionReturnTypeSelectedDataTypeOneOf, type FunctionsShopPriceSpiConfig, type GIF, type GIFData, GIFType, type GIFTypeWithLiterals, type GalleryData, type GalleryOptions, type GalleryOptionsLayout, type GalleryOptionsThumbnails, type Gap, type GbpFeatureConfig, type GenericHookConfig, type GenericHooksConfig, type GenericOptions, type GetComponentsCatalogResponse, type GiftCardProviderConfig, type Gradient, GradientType, type GradientTypeWithLiterals, type GridAppFilesTransformerConfig, type Group, GroupType, type GroupTypeWithLiterals, type GroupedContent, type HTMLData, type HTMLDataDataOneOf, HTMLDataSource, type HTMLDataSourceWithLiterals, HTTPMethod, type HTTPMethodWithLiterals, type Header, type HeaderConfig, type HeaderConfigHeaderConfigOneOf, type HeaderConfigOneOf, type HeaderWidgetConfig, type HeadingData, type HeadlessOAuth, type Height, HeightMode, type HeightModeWithLiterals, type HelpArticle, type HelpArticleArticleTypeOneOf, type HelpResources, type HiddenOptions, HookType, type HookTypeWithLiterals, Horizontal, HorizontalDocking, type HorizontalDockingWithLiterals, type HorizontalWithLiterals, HostContainerId, type HostContainerIdWithLiterals, type HostedComponent, type HostedPage, type IDPConnectionConfig, type Icon, type IconDataOneOf, IconType, type IconTypeWithLiterals, type Illustration, type IllustrationIllustrationOneOf, type Image, ImageCategoryTypes, type ImageCategoryTypesWithLiterals, type ImageConfig, type ImageData, type ImageDataStyles, type ImageDataStylesBorder, ImageFit, type ImageFitWithLiterals, type ImageOverrides, ImagePosition, ImagePositionPosition, type ImagePositionPositionWithLiterals, type ImagePositionWithLiterals, ImageScalingScaling, type ImageScalingScalingWithLiterals, ImageShape, type ImageShapeWithLiterals, type ImageStyles, ImageStylesPosition, type ImageStylesPositionWithLiterals, ImageType, type ImageTypeWithLiterals, type Implementation, type ImplementedMethods, ImportanceLevel, type ImportanceLevelWithLiterals, type InPersonOptions, type Index, type IndexField, InitDirection, type InitDirectionWithLiterals, InitialExpandedItems, type InitialExpandedItemsWithLiterals, type InitialPosition, type InitialSizeSetting, type InitialSizeSettingSelectedSizingTypeOneOf, type Initiator, type InitiatorDataOneOf, InitiatorType, type InitiatorTypeWithLiterals, type InlineElement, type Input, type InputConfiguration, type InputField, type InputFieldInputTypeOptionsOneOf, type InputField_Number, type InputField_NumberComponentTypeOptionsOneOf, InputType, type InputTypeWithLiterals, type InputWithPlaceholder, InstallPage, type InstallPageWithLiterals, type InstallationInfo, type InstallationInfoTargetContainerOneOf, type InstallationSettings, type InstallationSettingsOptionsOneOf, type IntListOptions, type IntegerType, type IntegrationOptions, type IntegrationOptionsOptionsOneOf, IntegrationType, type IntegrationTypeWithLiterals, Intent, type IntentWithLiterals, type Interactions, type InterfaceConfiguration, type InterfaceConfigurationOfTypeOneOf, InterfaceConfigurationType, type InterfaceConfigurationTypeWithLiterals, type InternalComponentMetadata, type InventorySpiConfig, type InvoicesActionsComponentData, type InvoicesConfig, type IsStretched, type Item, type ItemDataOneOf, type ItemImage, type ItemLayout, type ItemLayoutItemOneOf, type ItemPath, type ItemSelection, type ItemSelectionOptions, type ItemStyle, type ItemThumbnail, type ItemThumbnailOptionsOneOf, ItemType, type ItemTypeWithLiterals, type ItemVideo, type ItemsGroup, type ItemsSelectionProviderConfig, type KeepAliveConfig, type Keywords, type LanguageTagListOptions, Layout, type LayoutCellData, type LayoutData, type LayoutDataBackground, type LayoutDataBackgroundImage, LayoutDataBackgroundType, type LayoutDataBackgroundTypeWithLiterals, LayoutDataImagePosition, type LayoutDataImagePositionWithLiterals, LayoutMode, type LayoutModeWithLiterals, LayoutType, type LayoutTypeWithLiterals, type LayoutWithLiterals, type LearnMore, type LeftPanel, type LeftPanelWidgetConfig, type LegacyBackOfficeExtensionWidget, type LegacyBackOfficeExtensionWidgetAssetOneOf, type LegacyBackOfficeMenuItem, type LegacyBackOfficeMenuItemAction, type LegendsSpiConfig, Level, type LevelWithLiterals, type LightboxCloseOptions, type LightboxContent, type LightboxEditorSettings, type LightboxOptions, type LimiterField, type LineItemsEnricherConfig, LineStyle, type LineStyleWithLiterals, type Link, type LinkData, type LinkPreviewData, type LinkPreviewDataStyles, type LinkSuffix, LinkTarget, type LinkTargetWithLiterals, LinkType, type LinkTypeWithLiterals, ListEventFromCalendars, type ListEventFromCalendarsWithLiterals, type ListItem, type ListValue, type LiveSiteActionDeeplink, type LocalDeliveryComponentData, type Location, type LocationLocationInfoOneOf, LockableOperation, type LockableOperationWithLiterals, type Logo, type Logos, type Main, type MainPresets, type MainPropsData, type ManagedMenuEntities, MandatoryField, type MandatoryFieldWithLiterals, type MapData, type MapSettings, MapType, type MapTypeWithLiterals, type Margin, type Margins, type MarketplaceProviderConfig, type MarketplaceSPIConfig, type MaskImage, Maturity, type MaturityWithLiterals, MeasurementSystem, type MeasurementSystemWithLiterals, type Media, type MediaCapabilities, type MediaItem, type MediaItemMediaOneOf, MediaMimeType, type MediaMimeTypeWithLiterals, type MediaSettings, type MembershipsSPIConfig, type MentionData, type MenuAction, type MenuActionActionOneOf, type MenuDropdown, type MenuLink, type MenuSlot, type MessageContainingTranslatables, type Metadata, Method, type MethodWithLiterals, type MinMaxRange, MobileApplication, type MobileApplicationWithLiterals, type MobileFeedChannel, type MobileFeedContentKeys, type MobilePushChannel, type MobilePushChannelConfig, type MobilePushContentKeys, type ModalParams, type Monitoring, type MonitoringOptionsOneOf, MonitoringType, type MonitoringTypeWithLiterals, MpaNavigation, type MpaNavigationWithLiterals, type MultiReferenceOptions, type MultiServiceBookingPolicyProviderConfig, type MultilineAddress, type MultilineAddressValidation, type MultilingualTranslationSchema, type MultipleDashboardsComponentData, type NPMPackage, type NPMPackageEntry, type Namespace, type NamespaceConfig, type NamespaceConfigV2, NativeStateType, type NativeStateTypeWithLiterals, type NavigateToPageAction, NavigationType, type NavigationTypeWithLiterals, type NestedWidgets, type Node, type NodeDataOneOf, type NodeStyle, NodeType, type NodeTypeWithLiterals, type NotificationChannels, type NotificationContent, type NotificationPreferencesFilterConfig, type NotificationTopic, NotificationTopicState, type NotificationTopicStateWithLiterals, NotificationTopicType, type NotificationTopicTypeWithLiterals, type Npm, NullValue, type NullValueWithLiterals, NumberComponentType, type NumberComponentTypeWithLiterals, type NumberInput, NumberOfColumns, type NumberOfColumnsWithLiterals, type NumberType, OAuthAppType, type OAuthAppTypeWithLiterals, OAuthTechnologies, type OAuthTechnologiesWithLiterals, type ObjectField, type ObjectFieldTypeOptionsOneOf, type ObjectOptions, type ObjectType, type Oembed, type Offset, type OffsetValueOneOf, type OneTimeOptionConfiguration, type OneTimePricingTypeConfiguration, type OpenApiOptions, type OpenComponent, type OpenModalAction, type OperationExecutorConfig, Operator, type OperatorConfiguration, OperatorEnumOperator, type OperatorEnumOperatorWithLiterals, type OperatorWithLiterals, type Option, type OptionDesign, type OptionLayout, type OrCondition, Order, type OrderValue, type OrderWithLiterals, type OrderedListData, Orientation, type OrientationWithLiterals, Origin, type OriginInfo, type OriginWithLiterals, type OutOfIframeData, type Output, OverrideEntityType, type OverrideEntityTypeWithLiterals, type OverrideTemplateFields, type PDFSettings, PDFSettingsViewMode, type PDFSettingsViewModeWithLiterals, type PackageDimension, type PackageType, type Padding, type Page, type PageAnchor, type PageComponentData, type PageContent, type PageDashboardApplicationComponent, type PageEditorSettings, type PageInstallation, type PageInstallationSettings, type PageNavigationOptions, type PageOptions, type PageOutOfIframeComponentData, type PageReplace, type PageReplaceOptions, type PageReplaceOptionsOptionsOneOf, type PageWidgetAsContent, type PagesConfig, PaginationMode, type PaginationModeWithLiterals, type Panel, type PanelAction, type PanelActionSelectedPanelTypeOneOf, PanelContentType, type PanelContentTypeWithLiterals, PanelMode, type PanelModeWithLiterals, type PanelSelectedContentTypeOneOf, type PanelSize, PanelType, type PanelTypeWithLiterals, type PanoramaOptions, type ParagraphData, type Param, type Parameter, ParameterType, type ParameterTypeWithLiterals, type ParameterValueDefinitionDetailsOneOf, PartialPaymentRestriction, type PartialPaymentRestrictionWithLiterals, ParticipantType, type ParticipantTypeWithLiterals, type Password, type PatternsWizard, type Payment, PaymentComponentType, type PaymentComponentTypeOptionsOneOf, type PaymentComponentTypeWithLiterals, type PaymentDateModification, type PaymentInput, type PaymentMethod, type PaymentMethodMethodOneOf, type PaymentServiceProviderConfig, type PaymentServiceProviderCredentialsField, type PaymentServiceProviderCredentialsFieldFieldOneOf, type PaymentSettingsSPIConfig, type PaymentType, type PaymentsGatewayComponentData, type PayoutsProviderConfig, type PerkValues, type PerksConfiguration, type PermissionOverrides, type Permissions, type PhoneConstraints, type PhoneInfo, PhoneInfoTag, type PhoneInfoTagWithLiterals, type PhoneInput, type PhoneOptions, type PingNotificationComponentData, type PingSettingsGroupComponentData, PingSettingsGroupComponentDataState, type PingSettingsGroupComponentDataStateWithLiterals, type PlaceHolder, Placement, type PlacementWithLiterals, type PlanDuration, type PlanFormBenefitsSection, type PlanFormCustomPricingRulesSection, type PlanFormCustomSection, PlanFormDefaultSection, type PlanFormDefaultSectionWithLiterals, type PlanFormDurationSection, type PlanFormInfoSection, type PlanFormInitialValue, type PlanFormPagePermissionsSection, type PlanFormPlanSettingsSection, type PlanFormPreviewSection, type PlanFormPricingAndDurationSection, type PlanFormPricingAndDurationSectionDurationInputConfiguration, type PlanFormPricingAndDurationSectionInputConfiguration, PlanFormPricingOption, type PlanFormPricingOptionWithLiterals, type PlanFormPricingSection, type PlanFormPricingSectionInputConfiguration, type PlanFormPricingSectionSetupFeeConfiguration, PlanFormPricingType, type PlanFormPricingTypeWithLiterals, type PlanFormSection, type PlanFormSectionSectionOneOf, type PlanFormStartDateRulesSection, type PlanFormTypeMetadata, PlanPeriodUnit, type PlanPeriodUnitWithLiterals, type PlanPriceData, type PlanPricing, type PlanPricingPricingModelOneOf, type PlanSettingsRowConfiguration, type PlatformHeaderConfig, type PlatfromComponentData, type PlaybackOptions, type PluginConfig, type PluginContainerData, PluginContainerDataAlignment, type PluginContainerDataAlignmentWithLiterals, type PluginContainerDataHeight, type PluginContainerDataWidth, type PluginContainerDataWidthDataOneOf, type PluginInstallationSettings, PluginInterface, type PluginInterfaceWithLiterals, type PluginMarketData, type PluginPlacement, type PolicyConfig, type PolicyPermissionOverrides, type Poll, type PollData, type PollDataLayout, type PollDesign, type PollDesignBackground, type PollDesignBackgroundBackgroundOneOf, PollDesignBackgroundType, type PollDesignBackgroundTypeWithLiterals, type PollLayout, PollLayoutDirection, type PollLayoutDirectionWithLiterals, PollLayoutType, type PollLayoutTypeWithLiterals, type PollOption, type PollSettings, type PosProviderSettingsServicePluginConfig, type Position, type PostLoginConfig, type PreRegisterConfig, type PredefinedExpectedInput, type PredefinedExpectedInputConfiguration, type PredefinedExpectedInputConfigurationTypeOneOf, type PredefinedLabel, type PredefinedValues, type PremiumActionConfig, type Preset, type PresetEditorPresence, type PresetElementDefaults, type PresetInfo, type PresetInnerElementDefaults, type PresetItem, type PresetSize, type PresetStyleDefaults, type PresetStyleItemOverrides, type PresetStyleOverrides, type PreviewCardPlaceholders, type PreviewConfiguration, type PreviewFields, type PriceSPIConfig, PriceType, type PriceTypeWithLiterals, type PricingData, type PricingPlansFormConfiguration, type PricingRecurring, type Primitive, PrimitiveType, type PrimitiveTypeWithLiterals, type Product, type ProductCatalogProviderConfig, type ProductCheckboxGroup, type ProductCheckboxGroupOption, type ProductPriceOptionsOneOf, type ProductRestrictionsConfig, ProductType, type ProductTypeWithLiterals, type ProductsPathsConfig, type Project, type PropertiesType, PropertiesTypeEnum, type PropertiesTypeEnumWithLiterals, type PropertiesTypePropertiesTypeOptionsOneOf, type ProposalEditorProviderConfig, type Provider, type ProviderAccountServicePluginConfig, type ProviderConfig, type ProviderConfigMessage, type ProviderFilterOptions, type ProviderIdentifier, type ProviderSuppressionServicePluginConfig, type PurchaseValidationsConfig, type QuantityLimit, type RadioButtonLabeled, type RadioGroup, type RadioGroupOption, type RangeConstraints, type RateLimit, type RatingInput, type ReactElementContainer, type ReactElementContainerSelectedContainerTypeOneOf, type RecipientFilter, type RecipientFilterDataOneOf, RecipientFilterType, type RecipientFilterTypeWithLiterals, RecipientType, type RecipientTypeWithLiterals, type RecommendationsProviderConfig, type RecurringOptionConfiguration, type RecurringPricingTypeConfiguration, type RecurringPricingTypeConfigurationFreeTrialConfiguration, type RedirectOptions, type RefElement, type RefInnerElementDefaults, type ReferenceOptions, Region, RegionScopeScope, type RegionScopeScopeWithLiterals, RegionType, type RegionTypeWithLiterals, type RegionWithLiterals, type Rel, type RenderOverrides, type RepeatedFieldOverrideConfig, type ReplaceableOptions, ReplacementType, type ReplacementTypeWithLiterals, type ReplacingOptions, RequiredIndicator, RequiredIndicatorPlacement, type RequiredIndicatorPlacementWithLiterals, type RequiredIndicatorProperties, type RequiredIndicatorWithLiterals, type RequiredOptions, type ResetButton, ResizeDirection, type ResizeDirectionWithLiterals, Resizing, type ResizingWithLiterals, type Resource, type Resources, ResponsivenessBehaviour, type ResponsivenessBehaviourWithLiterals, type ResponsysEmail, type RestaurantsPOSComponentData, RestrictedOperation, type RestrictedOperationWithLiterals, type Restriction, RestrictionLevel, type RestrictionLevelWithLiterals, type Restrictions, type RestrictionsConfig, type ReviewsEntityCatalogProviderConfig, type ReviewsProductCatalogProviderConfig, type RewardProviderConfig, type RibbonStyles, type RichContent, type RichContentOptions, type RichText, RichTextAbilities, type RichTextAbilitiesWithLiterals, type RichTextWithIllustrationVertical, type RouterPage, type Rule, type SDKExports, type SDKExportsNpm, Scaling, type ScalingWithLiterals, type Scheduling, SchedulingComponentType, type SchedulingComponentTypeOptionsOneOf, type SchedulingComponentTypeWithLiterals, type Schema, type SchemaConfig, type SchemaField, SchemaFieldExposure, type SchemaFieldExposureWithLiterals, SchemaFieldFieldType, type SchemaFieldFieldTypeWithLiterals, type SchemaFieldType, type SchemaFieldTypeFieldTypeOneOf, type SchemaGroup, type SchemaGroupElement, type SchemaKey, SchemaScope, type SchemaScopeWithLiterals, Scope, ScopeType, type ScopeTypeWithLiterals, type ScopeWithLiterals, ScriptType, type ScriptTypeWithLiterals, type SdkDefinition, type SearchConfig, type SearchField, type SearchParams, type SecondLevelCategory, type Section, type SentryOptions, type SeoKeywordsSuggestionsSPIConfig, type ServiceAction, type ServiceAvailabilityPolicyProviderConfig, type ServicePermissionOverrides, type ServiceTagsConfig, type ServiceTrigger, type ServicesDropdown, type ServicesDropdownOption, type Settings, type SettingsPanel, type SettingsPermissions, type SettingsUrl, type SetupFeeConfiguration, type ShapeData, type ShapeDataStyles, type SharedPlatformMobilePushConfig, type ShippingLabelCarrierSpiConfig, type ShippingProviderConfig, type ShippingRatesConfig, type ShorthandGroupBackground, type ShoutoutEmail, type Sidebar, type SidebarChildItem, type SidebarChildItemItemOneOf, type SidebarConfig, type SidebarConfigOneOf, SidebarDataType, type SidebarDataTypeWithLiterals, SidebarEntityType, type SidebarEntityTypeWithLiterals, type SidebarRootItem, type SidebarRootItemItemOneOf, type SidebarSecondLevelChildItem, type SidebarSecondLevelChildItemItemOneOf, type SidebarWidget, type SidebarWidgetConfig, type SidebarWidgetConfigOneOf, type Signature, type Simple, type SimpleContainer, type SimpleField, SimpleType, type SimpleTypeWithLiterals, type SingleContent, type SingleKeyCondition, type SiteConfig, type SiteContributorsData, type SiteMapProviderConfig, type SiteMemberData, SiteMembersSsrCaching, type SiteMembersSsrCachingWithLiterals, type SiteMigrationSpiConfig, type SiteWidgetSlot, type Size, SizingType, type SizingTypeWithLiterals, type SliderLabeled, type Slot, type SlotData, type SlotDataSlotTypeOneOf, SlotDataType, type SlotDataTypeWithLiterals, type SlotParams, type SmsActionMessage, type SmsChannel, type SmsContentKeys, type SmsMessageConfig, type SmsSmsMessageConfig, type SnippetSolutionData, type SocialMarketingDesignSPIConfig, type SocialMarketingDesignsProviderConfig, type Source, type SourceOptionsOneOf, SourceType, type SourceTypeWithLiterals, type SpamSubmissionPermissions, type Spi, type SpiBaseUri, type Spoiler, type SpoilerData, type StaffSortingProviderConfig, type StartDateLimitsSPIConfig, type StartDateRulesSPIConfig, type State, StaticContainer, type StaticContainerWithLiterals, type StaticContent, type StaticFileComponentData, type StaticFilterOption, type StaticFilterOptions, Status, type StatusWithLiterals, type Step, type Stop, StorageDomain, type StorageDomainWithLiterals, StorageType, type StorageTypeWithLiterals, StringComponentType, type StringComponentTypeWithLiterals, type StringListOptions, type StringOption, type StringType, type StringTypeFormatOptionsOneOf, type StudioComponentData, type StudioWidgetComponentData, type StudioWidgetVariation, type StyleAction, type StyleItem, type StyleItemDefaults, type StyleItemOverrides, type StyleItemSelectedCssPropertyTypeOneOf, type StyleItemSelectedCssVariableTypeOneOf, type StyleItemSelectedItemTypeOneOf, StyleType, type StyleTypeWithLiterals, type Styles, type StylesBackground, type StylesBorder, StylesPosition, type StylesPositionWithLiterals, type SubPage, type SubmissionPermissions, type SubmitSettings, type SubmitSettingsSubmitSuccessActionOptionsOneOf, SubmitSuccessAction, type SubmitSuccessActionWithLiterals, type SubscriptionInfo, SyncToCalendar, type SyncToCalendarWithLiterals, type SyncedProjectsProviderConfig, type Tab, type TableCellData, type TableData, Tag, type TagOverrides, type TagOverridesEntry, type TagWithLiterals, type Tags, type TagsOption, Target, type TargetElement, type TargetWithLiterals, type TaskScope, type TaxCalculationConfig, type TaxCalculatorSpiConfig, type TaxCountriesConfig, type TaxExemptGroup, type TaxExemptGroupsProviderConfig, type TaxGroupsProviderConfig, type TaxIdValidatorConfig, type TaxTypesConfig, type TaxationCategoryProvider, type TemplateContainer, TemplateDefaultColor, type TemplateDefaultColorWithLiterals, TemplateType, type TemplateTypeWithLiterals, type TermsAndConditionsConfiguration, type TermsModalConfiguration, TestEnum, type TestEnumWithLiterals, type Text, TextAlignment, type TextAlignmentWithLiterals, type TextData, type TextDecoration, type TextEnum, type TextGroup, type TextInput, TextInputDisplayType, type TextInputDisplayTypeWithLiterals, type TextInputLabeled, type TextInputSettings, type TextNodeStyle, type TextStyle, type TextStyleDefaultColorOneOf, type TextToSpeechActionMessage, type TextWithSuffix, type TextWithSuffixSuffixOneOf, type TextWithTooltip, type ThankYouMessageOptions, type ThankYouPageConfiguration, type ThankYouPageInputConfig, type ThankYouPageModalConfiguration, type ThankYouPagePreviewConfiguration, type ThankYouPageRedirectsConfiguration, type ThumbnailData, ThumbnailType, type ThumbnailTypeWithLiterals, type Thumbnails, ThumbnailsAlignment, type ThumbnailsAlignmentWithLiterals, ThumbnailsSize, type ThumbnailsSizeWithLiterals, type TicketReservationsSpiConfig, type TimeConstraintConfiguration, type TimeConstraintConfigurationValueConstraintsOneOf, TimeConstraintType, type TimeConstraintTypeWithLiterals, type TimeInput, type ToggleLabeled, type ToolPanelConfig, type TooltipSuffix, type TopologyComponentData, type TranslatedMessageWithIdRepeated, type TranslatedMessageWithUniqueFieldRepeated, type TranslationResources, Trigger, type TriggerFieldOverride, type TriggerFilter, type TriggerOverride, type TriggerProviderSPIConfig, type TriggerWithLiterals, Type, type TypeWithLiterals, type TypedDynamicParam, TypedDynamicParamType, type TypedDynamicParamTypeWithLiterals, type UnifiedLightbox, type UnifiedPage, type UnifiedPageEditorSettings, UnitType, type UnitTypeWithLiterals, type Until, type UpdateComponentCatalogRequest, UpdateMode, type UpdateModeWithLiterals, UploadFileFormat, UploadFileFormatEnumUploadFileFormat, type UploadFileFormatEnumUploadFileFormatWithLiterals, type UploadFileFormatWithLiterals, type UpstreamWixCommonImage, type Url, type UrlData, type UrlMapperProviderConfig, type UrlParam, type UserNotification, type UserNotificationData, type UserNotificationDataContext, type UserNotificationDataDeeplink, type UserNotificationDataDeeplinkOfOneOf, type UserNotificationDataInitiator, type UserNotificationDataInitiatorDataOneOf, type UserNotificationDataRecipientFilter, type UserNotificationDataRecipientFilterDataOneOf, UserNotificationDataRecipientFilterType, type UserNotificationDataRecipientFilterTypeWithLiterals, UserNotificationDataType, type UserNotificationDataTypeWithLiterals, type V1Image, type V1ImplementedMethods, type V1Link, type V1LinkDataOneOf, type V1Metadata, type V1Region, type V1SchemaField, V1Scope, type V1ScopeWithLiterals, type V1TextStyle, type V1ValidationTarget, type V2CommunicationChannelConfiguration, type V2Condition, type V2Field, type V2FieldFieldTypeOptionsOneOf, type V2ImplementedMethods, type V2Rule, type V2TriggerOverride, type ValidationMessages, type ValidationTarget, ValidationTargetMethod, type ValidationTargetMethodWithLiterals, type ValidationsSPIConfig, ValueConstraintType, type ValueConstraintTypeWithLiterals, type VectorArt, VectorArtCategoryTypes, type VectorArtCategoryTypesWithLiterals, type VectorArtOverrides, type VeloActionConfig, type VeloCustomCss, type VeloPublishPipelineTaskProviderConfig, type VelocityEmail, Vertical, VerticalAlignment, VerticalAlignmentAlignment, type VerticalAlignmentAlignmentWithLiterals, type VerticalAlignmentWithLiterals, VerticalDocking, type VerticalDockingWithLiterals, type VerticalWithLiterals, VibeActionType, type VibeActionTypeWithLiterals, type VibeCustomPanelAction, type VibeDashboardAction, type Video, VideoCategoryTypes, type VideoCategoryTypesWithLiterals, type VideoConferenceOptions, type VideoData, type VideoOverrides, ViewMode, type ViewModeWithLiterals, ViewRole, type ViewRoleWithLiterals, type ViewerRouterSPIConfig, type ViewerService, type ViewerServiceAssets, type ViewerServiceModuleConfiguration, type VisibleState, type VoiceChannel, type VoiceContentKeys, VoteRole, type VoteRoleWithLiterals, type WebComponentData, WebComponentDataElementType, type WebComponentDataElementTypeWithLiterals, type WebFeedChannel, type WebFeedContentKeys, type WebhookComponentData, type WidgetAsContent, type WidgetBehavior, type WidgetComponent, type WidgetComponentData, type WidgetComponentOptions, type WidgetData, type WidgetDetails, type WidgetDisplay, WidgetHorizontal, type WidgetHorizontalWithLiterals, type WidgetInstallation, type WidgetInstallationSettings, type WidgetInstallationSettingsTargetContainerOneOf, type WidgetOutOfIframeComponentData, type WidgetPluginComponentData, type WidgetSize, type WidgetSizeHeight, type WidgetSizeWidth, type WidgetSlot, WidgetVertical, type WidgetVerticalWithLiterals, WidgetWidthType, type WidgetWidthTypeWithLiterals, Width, WidthType, type WidthTypeWithLiterals, type WidthWithLiterals, type WixAiGatewaySpiConfig, type WixApiOptions, WixCodePublishTaskName, type WixCodePublishTaskNameWithLiterals, type WixCommonImage, type WixDependency, type WixFile, WixFileComponentType, type WixFileComponentTypeOptionsOneOf, type WixFileComponentTypeWithLiterals, type WixOfferingComponentData, type WixOfferingComponentDataOfferingOneOf, type WixPagesDomainMapping, type WixUserData, type WixUsersData, type WixVibeCodingInstructions, type WixVibeComponent, type WixelSPIConfig, type WorkerComponentData, type WritingMode, WritingModeValue, type WritingModeValueWithLiterals, type _Array, type _ArrayComponentTypeOptionsOneOf, type _Boolean, type _BooleanComponentTypeOptionsOneOf, type _Date, type _Function, type _Number, type _Object, type _String, type _StringComponentTypeOptionsOneOf, agentMakerApprovalProvider, aiAssistant, aiAssistantAction, alertEnricher, analyticsProductCatalog, appConfig, appRouter, applicationAutomation, applicationProfile, audienceProvider, automationTemplate, automationTrigger, automationsActionProvider, automationsTriggerProvider, automationsVeloActionProvider, availabilityTimeSlotsConfigurationProvider, backOfficeCustomization, backOfficeExtension, backOfficeExtensionContainer, backOfficeExtensionMenuItem, backOfficeExtensionWidget, backOfficeExternalUrl, backOfficeModal, backOfficePage, backOfficeRestrictedCustomization, backOfficeSidebarCategory, backOfficeWidget, backendWorker, bassValidateCancelAction, benefitProgramsPolicyProvider, billingOperation, billingSettings, billingTaxIdValidator, blogPaywallProvider, bookingActionUrlsProvider, bookingAutomationsConfiguration, bookingPolicyProvider, bookingsExternalCalendarProvider, bookingsPlatformConfiguration, bookingsPricingProvider, bookingsResourceTypesProvider, bookingsValidationProvider, broadcastList, browserStorage, calendarConferencingProvider, calendarEventTypeProvider, calendarEventValidationProvider, clientSideService, codePackage, commentsContextProvider, commentsFilterProvider, commentsModerationProvider, communicationChannel, communicationChannelProvider, componentEnricherProvider, componentReferenceDataProvider, componentsTranslationsAdditionalFieldsProvider, componentsValidatorProvider, contactLabels, contactNotification, contactsSegmentsV2FilterProvider, crossSell, customElementWidget, customTableReservationsProvider, dashboard, dashboardApplication, dashboardPlatform, dataComponent, dataExtensions, dcConfig, dealerAdaptiveComponentProvider, dealerExternalFilterProvider, deploymentPipelineProvider, devCenterTestingComponent, ecomAdditionalFees, ecomCatalog, ecomCheckoutContent, ecomCustomScope, ecomDefaultTaxationCategory, ecomDiscounts, ecomDiscountsTrigger, ecomDropshippingProvider, ecomForms, ecomInventory, ecomLineItemsEnricher, ecomMemberships, ecomPaymentSettings, ecomRecommendationsProvider, ecomShippingRates, ecomTaxCalculatorSpi, ecomValidations, editorAddon, editorAppPreviewsPoc, editorContextProvider, editorFunctionLibrary, editorReactComponent, embeddedScript, eventTimeSlotsConfigurationProvider, eventsEventBadges, eventsTicketReservations, extension, externalDatabaseProvider, fictionalShippingProvider, formSchemaDynamicValues, formSubmissionModeration, formTemplate, formsExtensionProvider, formsSchemaProvider, formsSpamSubmissionReportsProvider, formsSpamSubmissionsProvider, formsSubmissionsExtensionProvider, formsSubmissionsProvider, functionEcomDiscountTriggerEligibilityProvider, functionExtension, functionRecipe, functionsAssistantTools, functionsShopPriceProvider, genericHooks, giftCardsProvider, googleBusinessProfileFeatureProvider, gridAppFilesTransformer, headlessOauth, identityAuthenticator, identityFactor, identityIdpConnector, identityPostLogin, identityPreRegistration, invoicesActions, invoicesProvider, itemsSelectionProvider, legendsPersonaConfiguration, localDelivery, loyaltyCustomRewards, loyaltyCustomRewardsV2, monitoring, multiServiceBookingPolicyProvider, multilingualContentProvider, multilingualTranslationSchema, multilingualTranslationSchemaGroup, multipleDashboards, notificationContent, notificationPreferencesFilterProvider, notificationTopic, page, pageOutOfIframe, panel, papiProvider, partnersPayouts, patternsWizard, paymentProvider, paymentsDisputeServicePlugin, paymentsGateway, pingSettingsGroup, pingUouNotification, pingUserNotification, platform, portfolioSyncedProjectsProvider, premiumAction, premiumCustomCharges, premiumProductsPaths, premiumPurchaseValidations, pricingPlanStartDateLimits, pricingPlanStartDateRules, pricingPlansFees, pricingPlansFormConfiguration, pricingPlansPrice, proposalEditorProvider, providerSuppressionServicePlugin, reserved, restaurantsPos, restaurantsPosProviderSettingsServicePlugin, sdkDefinition, sdkExports, seoKeywordsSuggestions, serviceTagsConfiguration, shippingLabelCarrier, shubMarketplaceProvider, siteMapInfoProvider, siteMigration, siteWidgetSlot, smsActionMessage, snippetSolution, socialMarketingDesign, socialMarketingDesignsProvider, staffSortingProvider, staticFile, storesProductRestrictions, studio, studioWidget, suppliersHubMarketplace, taxCalculationProvider, taxExemptGroupsProvider, taxGroupsProvider, textToSpeechActionMessage, topology, unifiedLightbox, unifiedPage, urlMapperProvider, userNotification, veloCustomCss, veloPublishPipelineTaskProvider, viewerDynamicSiteStructureProvider, viewerService, web, webhook, widget, widgetOutOfIframe, widgetPlugin, wixAiGatewayCallback, wixHostingAppDeploymentProvider, wixHostingAppEnvironmentProvider, wixOffering, wixPaymentsProviderAccountServicePlugin, wixReviewsEntityCatalog, wixReviewsProductCatalog, wixVibeCodingInstructions, wixVibeComponent, wixel, wixelBinding, wixelViewerRouterProvider, worker };
|