@wix/auto_sdk_comments_comments 1.0.52 → 1.0.53
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/cjs/index.d.ts +1 -1
- package/build/cjs/index.js +2494 -36
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +214 -25
- package/build/cjs/index.typings.js +1533 -35
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +213 -24
- package/build/cjs/meta.js +1533 -35
- package/build/cjs/meta.js.map +1 -1
- package/build/es/index.d.mts +1 -1
- package/build/es/index.mjs +2487 -36
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +214 -25
- package/build/es/index.typings.mjs +1526 -35
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +213 -24
- package/build/es/meta.mjs +1526 -35
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/index.d.ts +1 -1
- package/build/internal/cjs/index.js +2494 -36
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +214 -25
- package/build/internal/cjs/index.typings.js +1533 -35
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +213 -24
- package/build/internal/cjs/meta.js +1533 -35
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/index.d.mts +1 -1
- package/build/internal/es/index.mjs +2487 -36
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +214 -25
- package/build/internal/es/index.typings.mjs +1526 -35
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +213 -24
- package/build/internal/es/meta.mjs +1526 -35
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -201,6 +201,8 @@ interface Node extends NodeDataOneOf {
|
|
|
201
201
|
layoutCellData?: LayoutCellData;
|
|
202
202
|
/** Data for a shape node. */
|
|
203
203
|
shapeData?: ShapeData;
|
|
204
|
+
/** Data for a card node. */
|
|
205
|
+
cardData?: CardData;
|
|
204
206
|
/** 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. */
|
|
205
207
|
type?: NodeTypeWithLiterals;
|
|
206
208
|
/** Node ID. */
|
|
@@ -270,6 +272,8 @@ interface NodeDataOneOf {
|
|
|
270
272
|
layoutCellData?: LayoutCellData;
|
|
271
273
|
/** Data for a shape node. */
|
|
272
274
|
shapeData?: ShapeData;
|
|
275
|
+
/** Data for a card node. */
|
|
276
|
+
cardData?: CardData;
|
|
273
277
|
}
|
|
274
278
|
declare enum NodeType {
|
|
275
279
|
PARAGRAPH = "PARAGRAPH",
|
|
@@ -306,10 +310,11 @@ declare enum NodeType {
|
|
|
306
310
|
CAPTION = "CAPTION",
|
|
307
311
|
LAYOUT = "LAYOUT",
|
|
308
312
|
LAYOUT_CELL = "LAYOUT_CELL",
|
|
309
|
-
SHAPE = "SHAPE"
|
|
313
|
+
SHAPE = "SHAPE",
|
|
314
|
+
CARD = "CARD"
|
|
310
315
|
}
|
|
311
316
|
/** @enumType */
|
|
312
|
-
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';
|
|
317
|
+
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';
|
|
313
318
|
interface NodeStyle {
|
|
314
319
|
/** The top padding value in pixels. */
|
|
315
320
|
paddingTop?: string | null;
|
|
@@ -479,17 +484,23 @@ interface Styles {
|
|
|
479
484
|
*/
|
|
480
485
|
textColorHover?: string | null;
|
|
481
486
|
/**
|
|
482
|
-
*
|
|
487
|
+
* Deprecated: Use `background` instead.
|
|
483
488
|
* @format COLOR_HEX
|
|
489
|
+
* @deprecated
|
|
484
490
|
*/
|
|
485
491
|
backgroundColor?: string | null;
|
|
486
492
|
/**
|
|
487
|
-
*
|
|
493
|
+
* Deprecated: Use `backgroundHover` instead.
|
|
488
494
|
* @format COLOR_HEX
|
|
495
|
+
* @deprecated
|
|
489
496
|
*/
|
|
490
497
|
backgroundColorHover?: string | null;
|
|
491
498
|
/** Button size option, one of `SMALL`, `MEDIUM` or `LARGE`. Defaults to `MEDIUM`. */
|
|
492
499
|
buttonSize?: string | null;
|
|
500
|
+
/** Background styling (color or gradient). */
|
|
501
|
+
background?: Background;
|
|
502
|
+
/** Background styling for hover state (color or gradient). */
|
|
503
|
+
backgroundHover?: Background;
|
|
493
504
|
}
|
|
494
505
|
interface Link extends LinkDataOneOf {
|
|
495
506
|
/** The absolute URL for the linked document. */
|
|
@@ -1126,7 +1137,7 @@ interface OptionLayout {
|
|
|
1126
1137
|
/** Sets whether to display option images. Defaults to `false`. */
|
|
1127
1138
|
enableImage?: boolean | null;
|
|
1128
1139
|
}
|
|
1129
|
-
declare enum
|
|
1140
|
+
declare enum PollDesignBackgroundType {
|
|
1130
1141
|
/** Color background type */
|
|
1131
1142
|
COLOR = "COLOR",
|
|
1132
1143
|
/** Image background type */
|
|
@@ -1135,8 +1146,8 @@ declare enum BackgroundType {
|
|
|
1135
1146
|
GRADIENT = "GRADIENT"
|
|
1136
1147
|
}
|
|
1137
1148
|
/** @enumType */
|
|
1138
|
-
type
|
|
1139
|
-
interface
|
|
1149
|
+
type PollDesignBackgroundTypeWithLiterals = PollDesignBackgroundType | 'COLOR' | 'IMAGE' | 'GRADIENT';
|
|
1150
|
+
interface BackgroundGradient {
|
|
1140
1151
|
/** The gradient angle in degrees. */
|
|
1141
1152
|
angle?: number | null;
|
|
1142
1153
|
/**
|
|
@@ -1150,7 +1161,7 @@ interface Gradient {
|
|
|
1150
1161
|
*/
|
|
1151
1162
|
lastColor?: string | null;
|
|
1152
1163
|
}
|
|
1153
|
-
interface
|
|
1164
|
+
interface PollDesignBackground extends PollDesignBackgroundBackgroundOneOf {
|
|
1154
1165
|
/**
|
|
1155
1166
|
* The background color as a hexademical value.
|
|
1156
1167
|
* @format COLOR_HEX
|
|
@@ -1159,12 +1170,12 @@ interface Background extends BackgroundBackgroundOneOf {
|
|
|
1159
1170
|
/** An image to use for the background. */
|
|
1160
1171
|
image?: Media;
|
|
1161
1172
|
/** Details for a gradient background. */
|
|
1162
|
-
gradient?:
|
|
1173
|
+
gradient?: BackgroundGradient;
|
|
1163
1174
|
/** Background type. For each option, include the relevant details. */
|
|
1164
|
-
type?:
|
|
1175
|
+
type?: PollDesignBackgroundTypeWithLiterals;
|
|
1165
1176
|
}
|
|
1166
1177
|
/** @oneof */
|
|
1167
|
-
interface
|
|
1178
|
+
interface PollDesignBackgroundBackgroundOneOf {
|
|
1168
1179
|
/**
|
|
1169
1180
|
* The background color as a hexademical value.
|
|
1170
1181
|
* @format COLOR_HEX
|
|
@@ -1173,11 +1184,11 @@ interface BackgroundBackgroundOneOf {
|
|
|
1173
1184
|
/** An image to use for the background. */
|
|
1174
1185
|
image?: Media;
|
|
1175
1186
|
/** Details for a gradient background. */
|
|
1176
|
-
gradient?:
|
|
1187
|
+
gradient?: BackgroundGradient;
|
|
1177
1188
|
}
|
|
1178
1189
|
interface PollDesign {
|
|
1179
1190
|
/** Background styling. */
|
|
1180
|
-
background?:
|
|
1191
|
+
background?: PollDesignBackground;
|
|
1181
1192
|
/** Border radius in pixels. */
|
|
1182
1193
|
borderRadius?: number | null;
|
|
1183
1194
|
}
|
|
@@ -1860,12 +1871,13 @@ interface CaptionData {
|
|
|
1860
1871
|
}
|
|
1861
1872
|
interface LayoutData {
|
|
1862
1873
|
/**
|
|
1863
|
-
*
|
|
1874
|
+
* Deprecated: Use `background` instead.
|
|
1864
1875
|
* @format COLOR_HEX
|
|
1876
|
+
* @deprecated
|
|
1865
1877
|
*/
|
|
1866
1878
|
backgroundColor?: string | null;
|
|
1867
1879
|
/** Background image. */
|
|
1868
|
-
backgroundImage?:
|
|
1880
|
+
backgroundImage?: LayoutDataBackgroundImage;
|
|
1869
1881
|
/**
|
|
1870
1882
|
* Border color as a hexadecimal value.
|
|
1871
1883
|
* @format COLOR_HEX
|
|
@@ -1873,15 +1885,16 @@ interface LayoutData {
|
|
|
1873
1885
|
borderColor?: string | null;
|
|
1874
1886
|
/** Border width in pixels. */
|
|
1875
1887
|
borderWidth?: number | null;
|
|
1876
|
-
/** Border */
|
|
1888
|
+
/** Border radius in pixels. */
|
|
1877
1889
|
borderRadius?: number | null;
|
|
1878
1890
|
/**
|
|
1879
|
-
*
|
|
1891
|
+
* Deprecated: Use `backdrop` instead.
|
|
1880
1892
|
* @format COLOR_HEX
|
|
1893
|
+
* @deprecated
|
|
1881
1894
|
*/
|
|
1882
1895
|
backdropColor?: string | null;
|
|
1883
|
-
/** Backdrop image.
|
|
1884
|
-
backdropImage?:
|
|
1896
|
+
/** Backdrop image. */
|
|
1897
|
+
backdropImage?: LayoutDataBackgroundImage;
|
|
1885
1898
|
/** Backdrop top padding. */
|
|
1886
1899
|
backdropPaddingTop?: number | null;
|
|
1887
1900
|
/** Backdrop bottom padding */
|
|
@@ -1905,8 +1918,12 @@ interface LayoutData {
|
|
|
1905
1918
|
designTarget?: DesignTargetWithLiterals;
|
|
1906
1919
|
/** Banner configuration. When present, this layout is displayed as a banner. */
|
|
1907
1920
|
banner?: Banner;
|
|
1921
|
+
/** Background styling (color or gradient). */
|
|
1922
|
+
background?: LayoutDataBackground;
|
|
1923
|
+
/** Backdrop styling (color or gradient). */
|
|
1924
|
+
backdrop?: Backdrop;
|
|
1908
1925
|
}
|
|
1909
|
-
declare enum
|
|
1926
|
+
declare enum ImageScalingScaling {
|
|
1910
1927
|
/** Auto image scaling */
|
|
1911
1928
|
AUTO = "AUTO",
|
|
1912
1929
|
/** Contain image scaling */
|
|
@@ -1915,7 +1932,7 @@ declare enum Scaling {
|
|
|
1915
1932
|
COVER = "COVER"
|
|
1916
1933
|
}
|
|
1917
1934
|
/** @enumType */
|
|
1918
|
-
type
|
|
1935
|
+
type ImageScalingScalingWithLiterals = ImageScalingScaling | 'AUTO' | 'CONTAIN' | 'COVER';
|
|
1919
1936
|
declare enum ImagePosition {
|
|
1920
1937
|
/** Image positioned at the center */
|
|
1921
1938
|
CENTER = "CENTER",
|
|
@@ -1946,13 +1963,13 @@ declare enum Origin {
|
|
|
1946
1963
|
}
|
|
1947
1964
|
/** @enumType */
|
|
1948
1965
|
type OriginWithLiterals = Origin | 'IMAGE' | 'LAYOUT';
|
|
1949
|
-
interface
|
|
1966
|
+
interface LayoutDataBackgroundImage {
|
|
1950
1967
|
/** Background image. */
|
|
1951
1968
|
media?: Media;
|
|
1952
1969
|
/** Background image opacity. */
|
|
1953
1970
|
opacity?: number | null;
|
|
1954
1971
|
/** Background image scaling. */
|
|
1955
|
-
scaling?:
|
|
1972
|
+
scaling?: ImageScalingScalingWithLiterals;
|
|
1956
1973
|
/** Position of background. Defaults to `CENTER`. */
|
|
1957
1974
|
position?: ImagePositionWithLiterals;
|
|
1958
1975
|
}
|
|
@@ -2617,6 +2634,178 @@ interface AccountInfo {
|
|
|
2617
2634
|
*/
|
|
2618
2635
|
siteId?: string | null;
|
|
2619
2636
|
}
|
|
2637
|
+
/** Background type */
|
|
2638
|
+
declare enum BackgroundType {
|
|
2639
|
+
/** Solid color background */
|
|
2640
|
+
COLOR = "COLOR",
|
|
2641
|
+
/** Gradient background */
|
|
2642
|
+
GRADIENT = "GRADIENT"
|
|
2643
|
+
}
|
|
2644
|
+
/** @enumType */
|
|
2645
|
+
type BackgroundTypeWithLiterals = BackgroundType | 'COLOR' | 'GRADIENT';
|
|
2646
|
+
interface Gradient {
|
|
2647
|
+
/** Gradient type. */
|
|
2648
|
+
type?: GradientTypeWithLiterals;
|
|
2649
|
+
/**
|
|
2650
|
+
* Color stops for the gradient.
|
|
2651
|
+
* @maxSize 1000
|
|
2652
|
+
*/
|
|
2653
|
+
stops?: Stop[];
|
|
2654
|
+
/** Angle in degrees for linear gradient (0-360). */
|
|
2655
|
+
angle?: number | null;
|
|
2656
|
+
/**
|
|
2657
|
+
* Horizontal center position for radial gradient (0-100).
|
|
2658
|
+
* @max 100
|
|
2659
|
+
*/
|
|
2660
|
+
centerX?: number | null;
|
|
2661
|
+
/**
|
|
2662
|
+
* Vertical center position for radial gradient (0-100).
|
|
2663
|
+
* @max 100
|
|
2664
|
+
*/
|
|
2665
|
+
centerY?: number | null;
|
|
2666
|
+
}
|
|
2667
|
+
/** Gradient type. */
|
|
2668
|
+
declare enum GradientType {
|
|
2669
|
+
/** Linear gradient. */
|
|
2670
|
+
LINEAR = "LINEAR",
|
|
2671
|
+
/** Radial gradient. */
|
|
2672
|
+
RADIAL = "RADIAL"
|
|
2673
|
+
}
|
|
2674
|
+
/** @enumType */
|
|
2675
|
+
type GradientTypeWithLiterals = GradientType | 'LINEAR' | 'RADIAL';
|
|
2676
|
+
/** A single color stop in the gradient. */
|
|
2677
|
+
interface Stop {
|
|
2678
|
+
/**
|
|
2679
|
+
* Stop color as hex value.
|
|
2680
|
+
* @format COLOR_HEX
|
|
2681
|
+
*/
|
|
2682
|
+
color?: string | null;
|
|
2683
|
+
/** Stop position (0-1). */
|
|
2684
|
+
position?: number | null;
|
|
2685
|
+
}
|
|
2686
|
+
/** Background styling (color or gradient) */
|
|
2687
|
+
interface Background {
|
|
2688
|
+
/** Background type. */
|
|
2689
|
+
type?: BackgroundTypeWithLiterals;
|
|
2690
|
+
/**
|
|
2691
|
+
* Background color as a hexadecimal value.
|
|
2692
|
+
* @format COLOR_HEX
|
|
2693
|
+
*/
|
|
2694
|
+
color?: string | null;
|
|
2695
|
+
/** Gradient configuration. */
|
|
2696
|
+
gradient?: Gradient;
|
|
2697
|
+
}
|
|
2698
|
+
/** Background type */
|
|
2699
|
+
declare enum LayoutDataBackgroundType {
|
|
2700
|
+
/** Solid color background */
|
|
2701
|
+
COLOR = "COLOR",
|
|
2702
|
+
/** Gradient background */
|
|
2703
|
+
GRADIENT = "GRADIENT"
|
|
2704
|
+
}
|
|
2705
|
+
/** @enumType */
|
|
2706
|
+
type LayoutDataBackgroundTypeWithLiterals = LayoutDataBackgroundType | 'COLOR' | 'GRADIENT';
|
|
2707
|
+
/** Backdrop type */
|
|
2708
|
+
declare enum BackdropType {
|
|
2709
|
+
/** Solid color backdrop */
|
|
2710
|
+
COLOR = "COLOR",
|
|
2711
|
+
/** Gradient backdrop */
|
|
2712
|
+
GRADIENT = "GRADIENT"
|
|
2713
|
+
}
|
|
2714
|
+
/** @enumType */
|
|
2715
|
+
type BackdropTypeWithLiterals = BackdropType | 'COLOR' | 'GRADIENT';
|
|
2716
|
+
/** Background styling (color or gradient) */
|
|
2717
|
+
interface LayoutDataBackground {
|
|
2718
|
+
/** Background type. */
|
|
2719
|
+
type?: LayoutDataBackgroundTypeWithLiterals;
|
|
2720
|
+
/**
|
|
2721
|
+
* Background color as a hexadecimal value.
|
|
2722
|
+
* @format COLOR_HEX
|
|
2723
|
+
*/
|
|
2724
|
+
color?: string | null;
|
|
2725
|
+
/** Gradient configuration. */
|
|
2726
|
+
gradient?: Gradient;
|
|
2727
|
+
}
|
|
2728
|
+
/** Backdrop styling (color or gradient) */
|
|
2729
|
+
interface Backdrop {
|
|
2730
|
+
/** Backdrop type. */
|
|
2731
|
+
type?: BackdropTypeWithLiterals;
|
|
2732
|
+
/**
|
|
2733
|
+
* Backdrop color as a hexadecimal value.
|
|
2734
|
+
* @format COLOR_HEX
|
|
2735
|
+
*/
|
|
2736
|
+
color?: string | null;
|
|
2737
|
+
/** Gradient configuration. */
|
|
2738
|
+
gradient?: Gradient;
|
|
2739
|
+
}
|
|
2740
|
+
interface CardData {
|
|
2741
|
+
/** Background styling (color or gradient). */
|
|
2742
|
+
background?: CardDataBackground;
|
|
2743
|
+
/** Background image. */
|
|
2744
|
+
backgroundImage?: BackgroundImage;
|
|
2745
|
+
}
|
|
2746
|
+
declare enum Scaling {
|
|
2747
|
+
/** Auto image scaling */
|
|
2748
|
+
AUTO = "AUTO",
|
|
2749
|
+
/** Contain image scaling */
|
|
2750
|
+
CONTAIN = "CONTAIN",
|
|
2751
|
+
/** Cover image scaling */
|
|
2752
|
+
COVER = "COVER"
|
|
2753
|
+
}
|
|
2754
|
+
/** @enumType */
|
|
2755
|
+
type ScalingWithLiterals = Scaling | 'AUTO' | 'CONTAIN' | 'COVER';
|
|
2756
|
+
declare enum ImagePositionPosition {
|
|
2757
|
+
/** Image positioned at the center */
|
|
2758
|
+
CENTER = "CENTER",
|
|
2759
|
+
/** Image positioned on the left */
|
|
2760
|
+
CENTER_LEFT = "CENTER_LEFT",
|
|
2761
|
+
/** Image positioned on the right */
|
|
2762
|
+
CENTER_RIGHT = "CENTER_RIGHT",
|
|
2763
|
+
/** Image positioned at the center top */
|
|
2764
|
+
TOP = "TOP",
|
|
2765
|
+
/** Image positioned at the top left */
|
|
2766
|
+
TOP_LEFT = "TOP_LEFT",
|
|
2767
|
+
/** Image positioned at the top right */
|
|
2768
|
+
TOP_RIGHT = "TOP_RIGHT",
|
|
2769
|
+
/** Image positioned at the center bottom */
|
|
2770
|
+
BOTTOM = "BOTTOM",
|
|
2771
|
+
/** Image positioned at the bottom left */
|
|
2772
|
+
BOTTOM_LEFT = "BOTTOM_LEFT",
|
|
2773
|
+
/** Image positioned at the bottom right */
|
|
2774
|
+
BOTTOM_RIGHT = "BOTTOM_RIGHT"
|
|
2775
|
+
}
|
|
2776
|
+
/** @enumType */
|
|
2777
|
+
type ImagePositionPositionWithLiterals = ImagePositionPosition | 'CENTER' | 'CENTER_LEFT' | 'CENTER_RIGHT' | 'TOP' | 'TOP_LEFT' | 'TOP_RIGHT' | 'BOTTOM' | 'BOTTOM_LEFT' | 'BOTTOM_RIGHT';
|
|
2778
|
+
/** Background type */
|
|
2779
|
+
declare enum CardDataBackgroundType {
|
|
2780
|
+
/** Solid color background */
|
|
2781
|
+
COLOR = "COLOR",
|
|
2782
|
+
/** Gradient background */
|
|
2783
|
+
GRADIENT = "GRADIENT"
|
|
2784
|
+
}
|
|
2785
|
+
/** @enumType */
|
|
2786
|
+
type CardDataBackgroundTypeWithLiterals = CardDataBackgroundType | 'COLOR' | 'GRADIENT';
|
|
2787
|
+
/** Background styling (color or gradient) */
|
|
2788
|
+
interface CardDataBackground {
|
|
2789
|
+
/** Background type. */
|
|
2790
|
+
type?: CardDataBackgroundTypeWithLiterals;
|
|
2791
|
+
/**
|
|
2792
|
+
* Background color as a hexadecimal value.
|
|
2793
|
+
* @format COLOR_HEX
|
|
2794
|
+
*/
|
|
2795
|
+
color?: string | null;
|
|
2796
|
+
/** Gradient configuration. */
|
|
2797
|
+
gradient?: Gradient;
|
|
2798
|
+
}
|
|
2799
|
+
interface BackgroundImage {
|
|
2800
|
+
/** Background image. */
|
|
2801
|
+
media?: Media;
|
|
2802
|
+
/** Background image opacity. */
|
|
2803
|
+
opacity?: number | null;
|
|
2804
|
+
/** Background image scaling. */
|
|
2805
|
+
scaling?: ScalingWithLiterals;
|
|
2806
|
+
/** Position of background. Defaults to `CENTER`. */
|
|
2807
|
+
position?: ImagePositionPositionWithLiterals;
|
|
2808
|
+
}
|
|
2620
2809
|
interface UpdateInternalDocumentsEvent extends UpdateInternalDocumentsEventOperationOneOf {
|
|
2621
2810
|
/** insert/update documents */
|
|
2622
2811
|
update?: InternalDocumentUpdateOperation;
|
|
@@ -3915,7 +4104,7 @@ type CommentQuery = {
|
|
|
3915
4104
|
declare const utils: {
|
|
3916
4105
|
query: {
|
|
3917
4106
|
QueryBuilder: () => _wix_sdk_types.QueryBuilder<Comment, CommentQuerySpec, CommentQuery>;
|
|
3918
|
-
Filter: _wix_sdk_types.FilterFactory<Comment, CommentQuerySpec>;
|
|
4107
|
+
Filter: _wix_sdk_types.FilterFactory<Comment, CommentQuerySpec>;
|
|
3919
4108
|
Sort: _wix_sdk_types.SortFactory<CommentQuerySpec>;
|
|
3920
4109
|
};
|
|
3921
4110
|
};
|
|
@@ -4142,4 +4331,4 @@ interface BulkMoveCommentByFilterOptions {
|
|
|
4142
4331
|
destination?: Destination;
|
|
4143
4332
|
}
|
|
4144
4333
|
|
|
4145
|
-
export { type AccountInfo, type AccountInfoMetadata, Action, type ActionEvent, type ActionWithLiterals, Alignment, type AlignmentWithLiterals, type AnchorData, type App, type AppEmbedData, type AppEmbedDataAppDataOneOf, AppType, type AppTypeWithLiterals, AspectRatio, type AspectRatioWithLiterals, type Attachment, type AttachmentMediaOneOf, type AudioData, type Background, type
|
|
4334
|
+
export { type AccountInfo, type AccountInfoMetadata, Action, type ActionEvent, type ActionWithLiterals, Alignment, type AlignmentWithLiterals, type AnchorData, type App, type AppEmbedData, type AppEmbedDataAppDataOneOf, AppType, type AppTypeWithLiterals, AspectRatio, type AspectRatioWithLiterals, type Attachment, type AttachmentMediaOneOf, type AudioData, type Backdrop, BackdropType, type BackdropTypeWithLiterals, type Background, type BackgroundGradient, type BackgroundImage, BackgroundType, type BackgroundTypeWithLiterals, type Banner, type BaseEventMetadata, type BlockquoteData, type BookingData, type Border, type BorderColors, type BorderWidths, type BulkDeleteCommentOptions, type BulkDeleteCommentRequest, type BulkDeleteCommentResponse, type BulkHideCommentOptions, type BulkHideCommentRequest, type BulkHideCommentResponse, type BulkModerateDraftContentOptions, type BulkModerateDraftContentRequest, type BulkModerateDraftContentResponse, type BulkMoveCommentByFilterOptions, type BulkMoveCommentByFilterRequest, type BulkMoveCommentByFilterResponse, type BulkPublishCommentOptions, type BulkPublishCommentRequest, type BulkPublishCommentResponse, type BulletedListData, type ButtonData, ButtonDataType, type ButtonDataTypeWithLiterals, type ButtonStyles, type CaptionData, type CardData, type CardDataBackground, CardDataBackgroundType, type CardDataBackgroundTypeWithLiterals, type CardStyles, type CellStyle, type CodeBlockData, type CollapsibleListData, type ColorData, type Colors, type Comment, type CommentAuthor, type CommentAuthorIdentityOneOf, type CommentContent, type CommentContentChanged, type CommentContentChangedEnvelope, type CommentCreatedEnvelope, type CommentDeleted, type CommentDeletedEnvelope, type CommentHidden, type CommentHiddenEnvelope, type CommentMarked, type CommentMarkedEnvelope, type CommentModerated, type CommentMoved, type CommentMovedEnvelope, type CommentPublished, type CommentPublishedEnvelope, type CommentQuery, type CommentQuerySpec, type CommentReactionSummary, type CommentResourceCommentCountChangedEnvelope, type CommentSort, type CommentUnmarked, type CommentUnmarkedEnvelope, type CommentUpdatedEnvelope, type CommentsQueryBuilder, type CommentsQueryResult, type CommonQueryWithEntityContext, type ContactDetails, type ContentAuthor, type ContentAuthorAuthorOneOf, type CountCommentsApplicationErrors, type CountCommentsOptions, type CountCommentsRequest, type CountCommentsResponse, type CreateCommentApplicationErrors, type CreateCommentRequest, type CreateCommentResponse, Crop, type CropWithLiterals, type CursorPaging, type CursorPagingMetadata, type CursorQuery, type CursorQueryPagingMethodOneOf, type Cursors, type CustomTag, type Decoration, type DecorationDataOneOf, DecorationType, type DecorationTypeWithLiterals, type DeleteByFilterOperation, type DeleteByIdsOperation, type DeleteCommentRequest, type DeleteCommentResponse, type Design, DesignTarget, type DesignTargetWithLiterals, type Destination, type Dimensions, Direction, type DirectionWithLiterals, type DividerData, DividerDataAlignment, type DividerDataAlignmentWithLiterals, type DocumentStyle, type DomainEvent, type DomainEventBodyOneOf, type EmbedData, type Empty, type EntityCreatedEvent, type EntityDeletedEvent, type EntityUpdatedEvent, type EventData, type EventMetadata, type File, type FileData, type FileSource, type FileSourceDataOneOf, type FontFamilyData, type FontSizeData, FontType, type FontTypeWithLiterals, type GIF, type GIFData, GIFType, type GIFTypeWithLiterals, type GalleryData, type GalleryOptions, type GalleryOptionsLayout, type GetCommentRequest, type GetCommentResponse, type GetCommentThreadOptions, type GetCommentThreadRequest, type GetCommentThreadResponse, type Gradient, GradientType, type GradientTypeWithLiterals, type HTMLData, type HTMLDataDataOneOf, type HeadingData, type Height, type HideCommentRequest, type HideCommentResponse, type IdentificationData, type IdentificationDataIdOneOf, type Image, type ImageData, type ImageDataStyles, ImagePosition, ImagePositionPosition, type ImagePositionPositionWithLiterals, type ImagePositionWithLiterals, ImageScalingScaling, type ImageScalingScalingWithLiterals, type ImageStyles, InitialExpandedItems, type InitialExpandedItemsWithLiterals, type InternalDocument, type InternalDocumentUpdateByFilterOperation, type InternalDocumentUpdateOperation, type InternalUpdateExistingOperation, type InvalidateCache, type InvalidateCacheGetByOneOf, type Item, type ItemDataOneOf, type ItemStyle, Layout, type LayoutCellData, type LayoutData, type LayoutDataBackground, type LayoutDataBackgroundImage, LayoutDataBackgroundType, type LayoutDataBackgroundTypeWithLiterals, LayoutType, type LayoutTypeWithLiterals, type LayoutWithLiterals, LineStyle, type LineStyleWithLiterals, type Link, type LinkData, type LinkDataOneOf, type LinkPreviewData, type LinkPreviewDataStyles, type ListCommentsByResourceCursorPaging, type ListCommentsByResourceOptions, type ListCommentsByResourceRequest, type ListCommentsByResourceResponse, type ListValue, type MapData, type MapSettings, MapType, type MapTypeWithLiterals, type MarkCommentRequest, type MarkCommentResponse, type Media, type Mention, type MentionData, type MentionIdentityOneOf, type MessageEnvelope, type Metadata, type ModerateDraftContentOptions, type ModerateDraftContentRequest, type ModerateDraftContentResponse, type Node, type NodeDataOneOf, type NodeStyle, NodeType, type NodeTypeWithLiterals, NullValue, type NullValueWithLiterals, type Oembed, type Option, type OptionDesign, type OptionLayout, Order, type OrderWithLiterals, type OrderedListData, Orientation, type OrientationWithLiterals, Origin, type OriginWithLiterals, type PDFSettings, type Page, type Pages, type ParagraphData, type ParentComment, type Permissions, Placement, type PlacementWithLiterals, type PlaybackOptions, type PluginContainerData, PluginContainerDataAlignment, type PluginContainerDataAlignmentWithLiterals, type PluginContainerDataWidth, type PluginContainerDataWidthDataOneOf, type Poll, type PollData, type PollDataLayout, type PollDesign, type PollDesignBackground, type PollDesignBackgroundBackgroundOneOf, PollDesignBackgroundType, type PollDesignBackgroundTypeWithLiterals, type PollLayout, PollLayoutDirection, type PollLayoutDirectionWithLiterals, PollLayoutType, type PollLayoutTypeWithLiterals, Position, type PositionWithLiterals, type PricingData, type PublishCommentRequest, type PublishCommentResponse, type QueryCommentsOptions, type QueryCommentsRequest, type QueryCommentsResponse, type Rel, type RepliesListResponse, type ReplySort, ReplySortOrder, type ReplySortOrderWithLiterals, Resizing, type ResizingWithLiterals, type ResourceCommentCountChanged, ResponsivenessBehaviour, type ResponsivenessBehaviourWithLiterals, type RestoreInfo, type RibbonStyles, type RichContent, Scaling, type ScalingWithLiterals, type Settings, type ShapeData, type ShapeDataStyles, SortOrder, type SortOrderWithLiterals, type Sorting, Source, type SourceWithLiterals, type Spoiler, type SpoilerData, Status, type StatusWithLiterals, type Stop, type Styles, type StylesBorder, StylesPosition, type StylesPositionWithLiterals, type TableCellData, type TableData, Target, type TargetWithLiterals, TextAlignment, type TextAlignmentWithLiterals, type TextData, type TextNodeStyle, type TextStyle, type Thumbnails, ThumbnailsAlignment, type ThumbnailsAlignmentWithLiterals, Type, type TypeWithLiterals, type URI, type URIs, type UnmarkCommentRequest, type UnmarkCommentResponse, type UpdateComment, type UpdateCommentApplicationErrors, type UpdateCommentRequest, type UpdateCommentResponse, type UpdateInternalDocumentsEvent, type UpdateInternalDocumentsEventOperationOneOf, type VersionedDeleteByIdsOperation, type VersionedDocumentId, type VersionedDocumentUpdateOperation, VersioningMode, type VersioningModeWithLiterals, VerticalAlignment, VerticalAlignmentAlignment, type VerticalAlignmentAlignmentWithLiterals, type VerticalAlignmentWithLiterals, type Video, type VideoData, type VideoResolution, ViewMode, type ViewModeWithLiterals, ViewRole, type ViewRoleWithLiterals, VoteRole, type VoteRoleWithLiterals, type VoteSummary, WebhookIdentityType, type WebhookIdentityTypeWithLiterals, Width, WidthType, type WidthTypeWithLiterals, type WidthWithLiterals, bulkDeleteComment, bulkHideComment, bulkModerateDraftContent, bulkMoveCommentByFilter, bulkPublishComment, countComments, createComment, deleteComment, getComment, getCommentThread, hideComment, listCommentsByResource, markComment, moderateDraftContent, onCommentContentChanged, onCommentCreated, onCommentDeleted, onCommentHidden, onCommentMarked, onCommentMoved, onCommentPublished, onCommentResourceCommentCountChanged, onCommentUnmarked, onCommentUpdated, publishComment, queryComments, typedQueryComments, unmarkComment, updateComment, utils };
|