@wix/auto_sdk_blog_posts 1.0.150 → 1.0.152
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 +7 -0
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +77 -52
- package/build/cjs/index.typings.js +7 -0
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +77 -52
- package/build/cjs/meta.js +7 -0
- package/build/cjs/meta.js.map +1 -1
- package/build/es/index.d.mts +1 -1
- package/build/es/index.mjs +6 -0
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +77 -52
- package/build/es/index.typings.mjs +6 -0
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +77 -52
- package/build/es/meta.mjs +6 -0
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/index.d.ts +1 -1
- package/build/internal/cjs/index.js +7 -0
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +77 -52
- package/build/internal/cjs/index.typings.js +7 -0
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +77 -52
- package/build/internal/cjs/meta.js +7 -0
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/index.d.mts +1 -1
- package/build/internal/es/index.mjs +6 -0
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +77 -52
- package/build/internal/es/index.typings.mjs +6 -0
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +77 -52
- package/build/internal/es/meta.mjs +6 -0
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -515,7 +515,7 @@ type GradientTypeWithLiterals = GradientType | 'LINEAR' | 'RADIAL';
|
|
|
515
515
|
interface Stop {
|
|
516
516
|
/**
|
|
517
517
|
* Stop color as hex value.
|
|
518
|
-
* @
|
|
518
|
+
* @maxLength 19
|
|
519
519
|
*/
|
|
520
520
|
color?: string | null;
|
|
521
521
|
/** Stop position (0-1). */
|
|
@@ -556,7 +556,7 @@ interface Background {
|
|
|
556
556
|
type?: BackgroundTypeWithLiterals;
|
|
557
557
|
/**
|
|
558
558
|
* Background color as a hexadecimal value.
|
|
559
|
-
* @
|
|
559
|
+
* @maxLength 19
|
|
560
560
|
*/
|
|
561
561
|
color?: string | null;
|
|
562
562
|
/** Gradient configuration. */
|
|
@@ -663,33 +663,33 @@ interface Styles {
|
|
|
663
663
|
borderRadius?: number | null;
|
|
664
664
|
/**
|
|
665
665
|
* Border color as a hexadecimal value.
|
|
666
|
-
* @
|
|
666
|
+
* @maxLength 19
|
|
667
667
|
*/
|
|
668
668
|
borderColor?: string | null;
|
|
669
669
|
/**
|
|
670
670
|
* Border color as a hexadecimal value (hover state).
|
|
671
|
-
* @
|
|
671
|
+
* @maxLength 19
|
|
672
672
|
*/
|
|
673
673
|
borderColorHover?: string | null;
|
|
674
674
|
/**
|
|
675
675
|
* Text color as a hexadecimal value.
|
|
676
|
-
* @
|
|
676
|
+
* @maxLength 19
|
|
677
677
|
*/
|
|
678
678
|
textColor?: string | null;
|
|
679
679
|
/**
|
|
680
680
|
* Text color as a hexadecimal value (hover state).
|
|
681
|
-
* @
|
|
681
|
+
* @maxLength 19
|
|
682
682
|
*/
|
|
683
683
|
textColorHover?: string | null;
|
|
684
684
|
/**
|
|
685
685
|
* Deprecated: Use `background` instead.
|
|
686
|
-
* @
|
|
686
|
+
* @maxLength 19
|
|
687
687
|
* @deprecated
|
|
688
688
|
*/
|
|
689
689
|
backgroundColor?: string | null;
|
|
690
690
|
/**
|
|
691
691
|
* Deprecated: Use `backgroundHover` instead.
|
|
692
|
-
* @
|
|
692
|
+
* @maxLength 19
|
|
693
693
|
* @deprecated
|
|
694
694
|
*/
|
|
695
695
|
backgroundColorHover?: string | null;
|
|
@@ -1141,7 +1141,7 @@ interface StylesBorder {
|
|
|
1141
1141
|
width?: number | null;
|
|
1142
1142
|
/**
|
|
1143
1143
|
* Border color as a hexadecimal value.
|
|
1144
|
-
* @
|
|
1144
|
+
* @maxLength 19
|
|
1145
1145
|
*/
|
|
1146
1146
|
color?: string | null;
|
|
1147
1147
|
/** Border radius in pixels. */
|
|
@@ -1182,22 +1182,22 @@ type StylesPositionWithLiterals = StylesPosition | 'START' | 'END' | 'TOP' | 'HI
|
|
|
1182
1182
|
interface LinkPreviewDataStyles {
|
|
1183
1183
|
/**
|
|
1184
1184
|
* Background color as a hexadecimal value.
|
|
1185
|
-
* @
|
|
1185
|
+
* @maxLength 19
|
|
1186
1186
|
*/
|
|
1187
1187
|
backgroundColor?: string | null;
|
|
1188
1188
|
/**
|
|
1189
1189
|
* Title color as a hexadecimal value.
|
|
1190
|
-
* @
|
|
1190
|
+
* @maxLength 19
|
|
1191
1191
|
*/
|
|
1192
1192
|
titleColor?: string | null;
|
|
1193
1193
|
/**
|
|
1194
1194
|
* Subtitle color as a hexadecimal value.
|
|
1195
|
-
* @
|
|
1195
|
+
* @maxLength 19
|
|
1196
1196
|
*/
|
|
1197
1197
|
subtitleColor?: string | null;
|
|
1198
1198
|
/**
|
|
1199
1199
|
* Link color as a hexadecimal value.
|
|
1200
|
-
* @
|
|
1200
|
+
* @maxLength 19
|
|
1201
1201
|
*/
|
|
1202
1202
|
linkColor?: string | null;
|
|
1203
1203
|
/** Border width in pixels. */
|
|
@@ -1206,7 +1206,7 @@ interface LinkPreviewDataStyles {
|
|
|
1206
1206
|
borderRadius?: number | null;
|
|
1207
1207
|
/**
|
|
1208
1208
|
* Border color as a hexadecimal value.
|
|
1209
|
-
* @
|
|
1209
|
+
* @maxLength 19
|
|
1210
1210
|
*/
|
|
1211
1211
|
borderColor?: string | null;
|
|
1212
1212
|
/** Position of thumbnail. Defaults to `START`. */
|
|
@@ -1357,19 +1357,19 @@ interface BackgroundGradient {
|
|
|
1357
1357
|
angle?: number | null;
|
|
1358
1358
|
/**
|
|
1359
1359
|
* The start color as a hexademical value.
|
|
1360
|
-
* @
|
|
1360
|
+
* @maxLength 19
|
|
1361
1361
|
*/
|
|
1362
1362
|
startColor?: string | null;
|
|
1363
1363
|
/**
|
|
1364
1364
|
* The end color as a hexademical value.
|
|
1365
|
-
* @
|
|
1365
|
+
* @maxLength 19
|
|
1366
1366
|
*/
|
|
1367
1367
|
lastColor?: string | null;
|
|
1368
1368
|
}
|
|
1369
1369
|
interface PollDesignBackground extends PollDesignBackgroundBackgroundOneOf {
|
|
1370
1370
|
/**
|
|
1371
1371
|
* The background color as a hexademical value.
|
|
1372
|
-
* @
|
|
1372
|
+
* @maxLength 19
|
|
1373
1373
|
*/
|
|
1374
1374
|
color?: string | null;
|
|
1375
1375
|
/** An image to use for the background. */
|
|
@@ -1383,7 +1383,7 @@ interface PollDesignBackground extends PollDesignBackgroundBackgroundOneOf {
|
|
|
1383
1383
|
interface PollDesignBackgroundBackgroundOneOf {
|
|
1384
1384
|
/**
|
|
1385
1385
|
* The background color as a hexademical value.
|
|
1386
|
-
* @
|
|
1386
|
+
* @maxLength 19
|
|
1387
1387
|
*/
|
|
1388
1388
|
color?: string | null;
|
|
1389
1389
|
/** An image to use for the background. */
|
|
@@ -1697,32 +1697,32 @@ interface ButtonStyles {
|
|
|
1697
1697
|
borderRadius?: number | null;
|
|
1698
1698
|
/**
|
|
1699
1699
|
* Border color as a hexadecimal value.
|
|
1700
|
-
* @
|
|
1700
|
+
* @maxLength 19
|
|
1701
1701
|
*/
|
|
1702
1702
|
borderColor?: string | null;
|
|
1703
1703
|
/**
|
|
1704
1704
|
* Text color as a hexadecimal value.
|
|
1705
|
-
* @
|
|
1705
|
+
* @maxLength 19
|
|
1706
1706
|
*/
|
|
1707
1707
|
textColor?: string | null;
|
|
1708
1708
|
/**
|
|
1709
1709
|
* Background color as a hexadecimal value.
|
|
1710
|
-
* @
|
|
1710
|
+
* @maxLength 19
|
|
1711
1711
|
*/
|
|
1712
1712
|
backgroundColor?: string | null;
|
|
1713
1713
|
/**
|
|
1714
1714
|
* Border color as a hexadecimal value (hover state).
|
|
1715
|
-
* @
|
|
1715
|
+
* @maxLength 19
|
|
1716
1716
|
*/
|
|
1717
1717
|
borderColorHover?: string | null;
|
|
1718
1718
|
/**
|
|
1719
1719
|
* Text color as a hexadecimal value (hover state).
|
|
1720
|
-
* @
|
|
1720
|
+
* @maxLength 19
|
|
1721
1721
|
*/
|
|
1722
1722
|
textColorHover?: string | null;
|
|
1723
1723
|
/**
|
|
1724
1724
|
* Background color as a hexadecimal value (hover state).
|
|
1725
|
-
* @
|
|
1725
|
+
* @maxLength 19
|
|
1726
1726
|
*/
|
|
1727
1727
|
backgroundColorHover?: string | null;
|
|
1728
1728
|
/** Button size option, one of `SMALL`, `MEDIUM` or `LARGE`. Defaults to `MEDIUM`. */
|
|
@@ -1739,7 +1739,7 @@ interface ImageStyles {
|
|
|
1739
1739
|
resizing?: ResizingWithLiterals;
|
|
1740
1740
|
/**
|
|
1741
1741
|
* Image border color as a hexadecimal value.
|
|
1742
|
-
* @
|
|
1742
|
+
* @maxLength 19
|
|
1743
1743
|
*/
|
|
1744
1744
|
borderColor?: string | null;
|
|
1745
1745
|
/** Image border width in pixels. */
|
|
@@ -1752,17 +1752,17 @@ interface RibbonStyles {
|
|
|
1752
1752
|
ribbonText?: string | null;
|
|
1753
1753
|
/**
|
|
1754
1754
|
* Ribbon background color as a hexadecimal value.
|
|
1755
|
-
* @
|
|
1755
|
+
* @maxLength 19
|
|
1756
1756
|
*/
|
|
1757
1757
|
backgroundColor?: string | null;
|
|
1758
1758
|
/**
|
|
1759
1759
|
* Ribbon text color as a hexadecimal value.
|
|
1760
|
-
* @
|
|
1760
|
+
* @maxLength 19
|
|
1761
1761
|
*/
|
|
1762
1762
|
textColor?: string | null;
|
|
1763
1763
|
/**
|
|
1764
1764
|
* Ribbon border color as a hexadecimal value.
|
|
1765
|
-
* @
|
|
1765
|
+
* @maxLength 19
|
|
1766
1766
|
*/
|
|
1767
1767
|
borderColor?: string | null;
|
|
1768
1768
|
/** Ribbon border width in pixels. */
|
|
@@ -1775,12 +1775,12 @@ interface RibbonStyles {
|
|
|
1775
1775
|
interface CardStyles {
|
|
1776
1776
|
/**
|
|
1777
1777
|
* Card background color as a hexadecimal value.
|
|
1778
|
-
* @
|
|
1778
|
+
* @maxLength 19
|
|
1779
1779
|
*/
|
|
1780
1780
|
backgroundColor?: string | null;
|
|
1781
1781
|
/**
|
|
1782
1782
|
* Card border color as a hexadecimal value.
|
|
1783
|
-
* @
|
|
1783
|
+
* @maxLength 19
|
|
1784
1784
|
*/
|
|
1785
1785
|
borderColor?: string | null;
|
|
1786
1786
|
/** Card border width in pixels. */
|
|
@@ -1795,12 +1795,12 @@ interface CardStyles {
|
|
|
1795
1795
|
titlePriceLayout?: LayoutWithLiterals;
|
|
1796
1796
|
/**
|
|
1797
1797
|
* Title text color as a hexadecimal value.
|
|
1798
|
-
* @
|
|
1798
|
+
* @maxLength 19
|
|
1799
1799
|
*/
|
|
1800
1800
|
titleColor?: string | null;
|
|
1801
1801
|
/**
|
|
1802
1802
|
* Text color as a hexadecimal value.
|
|
1803
|
-
* @
|
|
1803
|
+
* @maxLength 19
|
|
1804
1804
|
*/
|
|
1805
1805
|
textColor?: string | null;
|
|
1806
1806
|
}
|
|
@@ -1982,29 +1982,29 @@ interface CellStyle {
|
|
|
1982
1982
|
verticalAlignment?: VerticalAlignmentWithLiterals;
|
|
1983
1983
|
/**
|
|
1984
1984
|
* Cell background color as a hexadecimal value.
|
|
1985
|
-
* @
|
|
1985
|
+
* @maxLength 19
|
|
1986
1986
|
*/
|
|
1987
1987
|
backgroundColor?: string | null;
|
|
1988
1988
|
}
|
|
1989
1989
|
interface BorderColors {
|
|
1990
1990
|
/**
|
|
1991
1991
|
* Left border color as a hexadecimal value.
|
|
1992
|
-
* @
|
|
1992
|
+
* @maxLength 19
|
|
1993
1993
|
*/
|
|
1994
1994
|
left?: string | null;
|
|
1995
1995
|
/**
|
|
1996
1996
|
* Right border color as a hexadecimal value.
|
|
1997
|
-
* @
|
|
1997
|
+
* @maxLength 19
|
|
1998
1998
|
*/
|
|
1999
1999
|
right?: string | null;
|
|
2000
2000
|
/**
|
|
2001
2001
|
* Top border color as a hexadecimal value.
|
|
2002
|
-
* @
|
|
2002
|
+
* @maxLength 19
|
|
2003
2003
|
*/
|
|
2004
2004
|
top?: string | null;
|
|
2005
2005
|
/**
|
|
2006
2006
|
* Bottom border color as a hexadecimal value.
|
|
2007
|
-
* @
|
|
2007
|
+
* @maxLength 19
|
|
2008
2008
|
*/
|
|
2009
2009
|
bottom?: string | null;
|
|
2010
2010
|
}
|
|
@@ -2079,7 +2079,7 @@ interface CaptionData {
|
|
|
2079
2079
|
interface LayoutData {
|
|
2080
2080
|
/**
|
|
2081
2081
|
* Deprecated: Use `background` instead.
|
|
2082
|
-
* @
|
|
2082
|
+
* @maxLength 19
|
|
2083
2083
|
* @deprecated
|
|
2084
2084
|
*/
|
|
2085
2085
|
backgroundColor?: string | null;
|
|
@@ -2087,7 +2087,7 @@ interface LayoutData {
|
|
|
2087
2087
|
backgroundImage?: LayoutDataBackgroundImage;
|
|
2088
2088
|
/**
|
|
2089
2089
|
* Border color as a hexadecimal value.
|
|
2090
|
-
* @
|
|
2090
|
+
* @maxLength 19
|
|
2091
2091
|
*/
|
|
2092
2092
|
borderColor?: string | null;
|
|
2093
2093
|
/** Border width in pixels. */
|
|
@@ -2096,7 +2096,7 @@ interface LayoutData {
|
|
|
2096
2096
|
borderRadius?: number | null;
|
|
2097
2097
|
/**
|
|
2098
2098
|
* Deprecated: Use `backdrop` instead.
|
|
2099
|
-
* @
|
|
2099
|
+
* @maxLength 19
|
|
2100
2100
|
* @deprecated
|
|
2101
2101
|
*/
|
|
2102
2102
|
backdropColor?: string | null;
|
|
@@ -2123,7 +2123,7 @@ interface LayoutData {
|
|
|
2123
2123
|
containerData?: PluginContainerData;
|
|
2124
2124
|
/** Defines where selected design propertied applies to */
|
|
2125
2125
|
designTarget?: DesignTargetWithLiterals;
|
|
2126
|
-
/** Banner configuration. When present, this layout is
|
|
2126
|
+
/** Banner configuration. When present, this layout is attached to a document edge (top or bottom). */
|
|
2127
2127
|
banner?: Banner;
|
|
2128
2128
|
/** Background styling (color or gradient). */
|
|
2129
2129
|
background?: LayoutDataBackground;
|
|
@@ -2170,6 +2170,14 @@ declare enum BannerOrigin {
|
|
|
2170
2170
|
}
|
|
2171
2171
|
/** @enumType */
|
|
2172
2172
|
type BannerOriginWithLiterals = BannerOrigin | 'IMAGE' | 'LAYOUT';
|
|
2173
|
+
declare enum BannerPosition {
|
|
2174
|
+
/** Attached to the top edge (banner) */
|
|
2175
|
+
TOP = "TOP",
|
|
2176
|
+
/** Attached to the bottom edge (footer) */
|
|
2177
|
+
BOTTOM = "BOTTOM"
|
|
2178
|
+
}
|
|
2179
|
+
/** @enumType */
|
|
2180
|
+
type BannerPositionWithLiterals = BannerPosition | 'TOP' | 'BOTTOM';
|
|
2173
2181
|
/** Background type */
|
|
2174
2182
|
declare enum LayoutDataBackgroundType {
|
|
2175
2183
|
/** Solid color background */
|
|
@@ -2227,6 +2235,8 @@ type DesignTargetWithLiterals = DesignTarget | 'LAYOUT' | 'CELL';
|
|
|
2227
2235
|
interface Banner {
|
|
2228
2236
|
/** Origin of the banner */
|
|
2229
2237
|
origin?: BannerOriginWithLiterals;
|
|
2238
|
+
/** Position of the banner */
|
|
2239
|
+
position?: BannerPositionWithLiterals;
|
|
2230
2240
|
}
|
|
2231
2241
|
/** Background styling (color or gradient) */
|
|
2232
2242
|
interface LayoutDataBackground {
|
|
@@ -2234,7 +2244,7 @@ interface LayoutDataBackground {
|
|
|
2234
2244
|
type?: LayoutDataBackgroundTypeWithLiterals;
|
|
2235
2245
|
/**
|
|
2236
2246
|
* Background color as a hexadecimal value.
|
|
2237
|
-
* @
|
|
2247
|
+
* @maxLength 19
|
|
2238
2248
|
*/
|
|
2239
2249
|
color?: string | null;
|
|
2240
2250
|
/** Gradient configuration. */
|
|
@@ -2246,7 +2256,7 @@ interface Backdrop {
|
|
|
2246
2256
|
type?: BackdropTypeWithLiterals;
|
|
2247
2257
|
/**
|
|
2248
2258
|
* Backdrop color as a hexadecimal value.
|
|
2249
|
-
* @
|
|
2259
|
+
* @maxLength 19
|
|
2250
2260
|
*/
|
|
2251
2261
|
color?: string | null;
|
|
2252
2262
|
/** Gradient configuration. */
|
|
@@ -2267,7 +2277,7 @@ interface ShapeData {
|
|
|
2267
2277
|
interface ShapeDataStyles {
|
|
2268
2278
|
/**
|
|
2269
2279
|
* Shape fill color as a hexadecimal value.
|
|
2270
|
-
* @
|
|
2280
|
+
* @maxLength 19
|
|
2271
2281
|
*/
|
|
2272
2282
|
color?: string | null;
|
|
2273
2283
|
/** Map of original color keys to their new color values. */
|
|
@@ -2326,7 +2336,7 @@ interface CardDataBackground {
|
|
|
2326
2336
|
type?: CardDataBackgroundTypeWithLiterals;
|
|
2327
2337
|
/**
|
|
2328
2338
|
* Background color as a hexadecimal value.
|
|
2329
|
-
* @
|
|
2339
|
+
* @maxLength 19
|
|
2330
2340
|
*/
|
|
2331
2341
|
color?: string | null;
|
|
2332
2342
|
/** Gradient configuration. */
|
|
@@ -2353,7 +2363,7 @@ interface TocData {
|
|
|
2353
2363
|
itemSpacing?: number | null;
|
|
2354
2364
|
/**
|
|
2355
2365
|
* Optional override for the text color.
|
|
2356
|
-
* @
|
|
2366
|
+
* @maxLength 19
|
|
2357
2367
|
*/
|
|
2358
2368
|
color?: string | null;
|
|
2359
2369
|
/** Indentation style. Default: NESTED. */
|
|
@@ -2395,7 +2405,10 @@ interface SmartBlockData {
|
|
|
2395
2405
|
orientation?: string | null;
|
|
2396
2406
|
/** Column size controlling cells per row. */
|
|
2397
2407
|
columnSize?: ColumnSizeWithLiterals;
|
|
2398
|
-
/**
|
|
2408
|
+
/**
|
|
2409
|
+
* Border color (for SOLID_JOINED_BOXES variant).
|
|
2410
|
+
* @maxLength 19
|
|
2411
|
+
*/
|
|
2399
2412
|
borderColor?: string | null;
|
|
2400
2413
|
/** Border width in pixels (for SOLID_JOINED_BOXES variant). */
|
|
2401
2414
|
borderWidth?: number | null;
|
|
@@ -2454,7 +2467,10 @@ interface SmartBlockCellData {
|
|
|
2454
2467
|
label?: string | null;
|
|
2455
2468
|
/** Shape file details. */
|
|
2456
2469
|
shape?: V1Media;
|
|
2457
|
-
/**
|
|
2470
|
+
/**
|
|
2471
|
+
* Border color of the cell.
|
|
2472
|
+
* @maxLength 19
|
|
2473
|
+
*/
|
|
2458
2474
|
borderColor?: string | null;
|
|
2459
2475
|
/** Border width in pixels. */
|
|
2460
2476
|
borderWidth?: number | null;
|
|
@@ -2462,11 +2478,20 @@ interface SmartBlockCellData {
|
|
|
2462
2478
|
borderRadius?: number | null;
|
|
2463
2479
|
/** The type of the parent smart block (must match parent). */
|
|
2464
2480
|
type?: SmartBlockDataTypeWithLiterals;
|
|
2465
|
-
/**
|
|
2481
|
+
/**
|
|
2482
|
+
* Accent color for non-background variants (e.g., line, bullet, label color).
|
|
2483
|
+
* @maxLength 19
|
|
2484
|
+
*/
|
|
2466
2485
|
accentColor?: string | null;
|
|
2467
|
-
/**
|
|
2486
|
+
/**
|
|
2487
|
+
* Background color for background-based variants (SOLID_BOXES, SOLID_BOXES_ALTERNATING, SOLID_JOINED_BOXES).
|
|
2488
|
+
* @maxLength 19
|
|
2489
|
+
*/
|
|
2468
2490
|
backgroundColor?: string | null;
|
|
2469
|
-
/**
|
|
2491
|
+
/**
|
|
2492
|
+
* Shape fill color as a hexadecimal value.
|
|
2493
|
+
* @maxLength 19
|
|
2494
|
+
*/
|
|
2470
2495
|
shapeColor?: string | null;
|
|
2471
2496
|
}
|
|
2472
2497
|
interface Metadata {
|
|
@@ -4735,4 +4760,4 @@ declare const utils: {
|
|
|
4735
4760
|
*/
|
|
4736
4761
|
declare function getPostMetrics(postId: string): Promise<NonNullablePaths<GetPostMetricsResponse, `metrics.comments` | `metrics.likes` | `metrics.views`, 3>>;
|
|
4737
4762
|
|
|
4738
|
-
export { type AccountInfo, type AccountInfoMetadata, type ActionEvent, Alignment, type AlignmentWithLiterals, type AnchorData, type AppEmbedData, type AppEmbedDataAppDataOneOf, AppType, type AppTypeWithLiterals, AspectRatio, type AspectRatioWithLiterals, type AudioData, type Backdrop, BackdropType, type BackdropTypeWithLiterals, type Background, type BackgroundGradient, type BackgroundImage, BackgroundType, type BackgroundTypeWithLiterals, type Banner, BannerOrigin, type BannerOriginWithLiterals, type BaseEventMetadata, type BlockquoteData, type BlogPaging, type BookingData, type Border, type BorderColors, type BorderWidths, type BulkDeletePostsRequest, type BulkDeletePostsResponse, type BulkGetPostReactionsRequest, type BulkGetPostReactionsResponse, type BulletedListData, type ButtonData, ButtonDataType, type ButtonDataTypeWithLiterals, type ButtonStyles, type CaptionData, type CardData, type CardDataBackground, CardDataBackgroundType, type CardDataBackgroundTypeWithLiterals, type CardStyles, type Category, type CategoryTranslation, type CellStyle, type CodeBlockData, type CollapsibleListData, type ColorData, type Colors, ColumnSize, type ColumnSizeWithLiterals, type CommonQueryWithEntityContext, type ConvertDraftJsToRichContentRequest, type ConvertDraftJsToRichContentResponse, type ConvertRichContentToDraftJsRequest, type ConvertRichContentToDraftJsResponse, type CreateDraftPostFromTemplateRequest, type CreateDraftPostFromTemplateResponse, Crop, type CropWithLiterals, type CursorPaging, type Cursors, type Decoration, type DecorationDataOneOf, DecorationType, type DecorationTypeWithLiterals, type DeletePostRequest, type DeletePostResponse, type Design, DesignTarget, type DesignTargetWithLiterals, type Dimensions, Direction, type DirectionWithLiterals, type DividerData, DividerDataAlignment, type DividerDataAlignmentWithLiterals, type DocumentStyle, type DomainEvent, type DomainEventBodyOneOf, type DraftPost, type DraftPostTranslation, type EmbedData, type EmbedMedia, type EmbedThumbnail, type EmbedVideo, type EntityCreatedEvent, type EntityDeletedEvent, type EntityUpdatedEvent, type EventData, type EventMetadata, Field, type FieldWithLiterals, type FileData, type FileSource, type FileSourceDataOneOf, type FocalPoint, type FontFamilyData, type FontSizeData, FontType, type FontTypeWithLiterals, type GIF, type GIFData, GIFType, type GIFTypeWithLiterals, type GalleryData, type GalleryOptions, type GalleryOptionsLayout, type GetPostBySlugOptions, type GetPostBySlugRequest, type GetPostBySlugResponse, type GetPostCountPerMonthRequest, type GetPostCountPerMonthResponse, type GetPostCountsRequest, type GetPostCountsResponse, type GetPostMetricsRequest, type GetPostMetricsResponse, type GetPostOptions, type GetPostRequest, type GetPostResponse, GetPostTemplatesSort, type GetPostTemplatesSortWithLiterals, GetPostsSort, type GetPostsSortWithLiterals, type GetTemplateRequest, type GetTemplateResponse, type GetTotalLikesPerMemberRequest, type GetTotalLikesPerMemberResponse, type GetTotalPostsOptions, type GetTotalPostsRequest, type GetTotalPostsResponse, type GetTotalPublicationsRequest, type GetTotalPublicationsResponse, type Gradient, GradientType, type GradientTypeWithLiterals, type HTMLData, type HTMLDataDataOneOf, type HeadingData, type Height, type IdentificationData, type IdentificationDataIdOneOf, type Image, type ImageData, type ImageDataStyles, ImagePosition, ImagePositionPosition, type ImagePositionPositionWithLiterals, type ImagePositionWithLiterals, ImageScalingScaling, type ImageScalingScalingWithLiterals, type ImageStyles, Indentation, type IndentationWithLiterals, InitialExpandedItems, type InitialExpandedItemsWithLiterals, type InitialPostsCopied, type Item, type ItemDataOneOf, type ItemStyle, type Keyword, Layout, type LayoutCellData, type LayoutData, type LayoutDataBackground, type LayoutDataBackgroundImage, LayoutDataBackgroundType, type LayoutDataBackgroundTypeWithLiterals, LayoutType, type LayoutTypeWithLiterals, type LayoutWithLiterals, type LikePostRequest, type LikePostResponse, LineStyle, type LineStyleWithLiterals, type Link, type LinkData, type LinkDataOneOf, type LinkPreviewData, type LinkPreviewDataStyles, type ListDemoPostsRequest, type ListDemoPostsResponse, type ListPostsArchiveRequest, type ListPostsArchiveResponse, type ListPostsOptions, type ListPostsRequest, type ListPostsResponse, ListStyle, type ListStyleWithLiterals, type ListTemplatesRequest, type ListTemplatesResponse, type ListValue, type MapData, type MapSettings, MapType, type MapTypeWithLiterals, type Media, type MediaMediaOneOf, type MentionData, type MessageEnvelope, type MetaData, type Metadata, type Metrics, type ModerationDetails, ModerationStatusStatus, type ModerationStatusStatusWithLiterals, 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 Paging, type PagingMetadataV2, type ParagraphData, type PeriodPostCount, type PeriodPublicationsCount, type Permissions, type PinPostRequest, type PinPostResponse, Placement, type PlacementWithLiterals, type PlatformQuery, type PlatformQueryPagingMethodOneOf, 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, type PollSettings, Position, type PositionWithLiterals, type Post, type PostCategoriesUpdated, type PostCount, type PostCountInfo, type PostCountPerMonth, type PostCountersUpdated, type PostCountersUpdatedInitiatorOneOf, type PostCreatedEnvelope, type PostDeletedEnvelope, PostFieldField, type PostFieldFieldWithLiterals, type PostLiked, type PostLikedEnvelope, type PostLikedInitiatorOneOf, type PostOwnerChanged, type PostQuery, type PostQuerySpec, type PostTagsUpdated, type PostTranslation, type PostUnliked, type PostUnlikedEnvelope, type PostUnlikedInitiatorOneOf, type PostUpdatedEnvelope, type PostsQueryBuilder, type PostsQueryResult, type PricingData, type QueryPostCountStatsOptions, type QueryPostCountStatsRequest, type QueryPostCountStatsResponse, type QueryPostsOptions, type QueryPostsRequest, type QueryPostsResponse, type QueryPublicationsCountStatsRequest, QueryPublicationsCountStatsRequestOrder, type QueryPublicationsCountStatsRequestOrderWithLiterals, type QueryPublicationsCountStatsResponse, type Reactions, type Rel, Resizing, type ResizingWithLiterals, ResponsivenessBehaviour, type ResponsivenessBehaviourWithLiterals, type RestoreInfo, type RibbonStyles, type RichContent, Scaling, type ScalingWithLiterals, type ScheduledPostPublished, type SeoSchema, type Settings, type ShapeData, type ShapeDataStyles, type SmartBlockCellData, type SmartBlockData, SmartBlockDataType, type SmartBlockDataTypeWithLiterals, 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, type Tag, Target, type TargetWithLiterals, TextAlignment, type TextAlignmentWithLiterals, type TextData, type TextNodeStyle, type TextStyle, type Thumbnails, ThumbnailsAlignment, type ThumbnailsAlignmentWithLiterals, type TocData, Type, type TypeWithLiterals, type UnlikePostRequest, type UnlikePostResponse, type UnpinPostRequest, type UnpinPostResponse, type V1Media, VerticalAlignment, VerticalAlignmentAlignment, type VerticalAlignmentAlignmentWithLiterals, type VerticalAlignmentWithLiterals, type Video, type VideoData, type VideoResolution, ViewMode, type ViewModeWithLiterals, type ViewPostRequest, type ViewPostResponse, ViewRole, type ViewRoleWithLiterals, VoteRole, type VoteRoleWithLiterals, WebhookIdentityType, type WebhookIdentityTypeWithLiterals, Width, WidthType, type WidthTypeWithLiterals, type WidthWithLiterals, type WixMedia, getPost, getPostBySlug, getPostMetrics, getTotalPosts, listPosts, onPostCreated, onPostDeleted, onPostLiked, onPostUnliked, onPostUpdated, queryPostCountStats, queryPosts, typedQueryPosts, utils };
|
|
4763
|
+
export { type AccountInfo, type AccountInfoMetadata, type ActionEvent, Alignment, type AlignmentWithLiterals, type AnchorData, type AppEmbedData, type AppEmbedDataAppDataOneOf, AppType, type AppTypeWithLiterals, AspectRatio, type AspectRatioWithLiterals, type AudioData, type Backdrop, BackdropType, type BackdropTypeWithLiterals, type Background, type BackgroundGradient, type BackgroundImage, BackgroundType, type BackgroundTypeWithLiterals, type Banner, BannerOrigin, type BannerOriginWithLiterals, BannerPosition, type BannerPositionWithLiterals, type BaseEventMetadata, type BlockquoteData, type BlogPaging, type BookingData, type Border, type BorderColors, type BorderWidths, type BulkDeletePostsRequest, type BulkDeletePostsResponse, type BulkGetPostReactionsRequest, type BulkGetPostReactionsResponse, type BulletedListData, type ButtonData, ButtonDataType, type ButtonDataTypeWithLiterals, type ButtonStyles, type CaptionData, type CardData, type CardDataBackground, CardDataBackgroundType, type CardDataBackgroundTypeWithLiterals, type CardStyles, type Category, type CategoryTranslation, type CellStyle, type CodeBlockData, type CollapsibleListData, type ColorData, type Colors, ColumnSize, type ColumnSizeWithLiterals, type CommonQueryWithEntityContext, type ConvertDraftJsToRichContentRequest, type ConvertDraftJsToRichContentResponse, type ConvertRichContentToDraftJsRequest, type ConvertRichContentToDraftJsResponse, type CreateDraftPostFromTemplateRequest, type CreateDraftPostFromTemplateResponse, Crop, type CropWithLiterals, type CursorPaging, type Cursors, type Decoration, type DecorationDataOneOf, DecorationType, type DecorationTypeWithLiterals, type DeletePostRequest, type DeletePostResponse, type Design, DesignTarget, type DesignTargetWithLiterals, type Dimensions, Direction, type DirectionWithLiterals, type DividerData, DividerDataAlignment, type DividerDataAlignmentWithLiterals, type DocumentStyle, type DomainEvent, type DomainEventBodyOneOf, type DraftPost, type DraftPostTranslation, type EmbedData, type EmbedMedia, type EmbedThumbnail, type EmbedVideo, type EntityCreatedEvent, type EntityDeletedEvent, type EntityUpdatedEvent, type EventData, type EventMetadata, Field, type FieldWithLiterals, type FileData, type FileSource, type FileSourceDataOneOf, type FocalPoint, type FontFamilyData, type FontSizeData, FontType, type FontTypeWithLiterals, type GIF, type GIFData, GIFType, type GIFTypeWithLiterals, type GalleryData, type GalleryOptions, type GalleryOptionsLayout, type GetPostBySlugOptions, type GetPostBySlugRequest, type GetPostBySlugResponse, type GetPostCountPerMonthRequest, type GetPostCountPerMonthResponse, type GetPostCountsRequest, type GetPostCountsResponse, type GetPostMetricsRequest, type GetPostMetricsResponse, type GetPostOptions, type GetPostRequest, type GetPostResponse, GetPostTemplatesSort, type GetPostTemplatesSortWithLiterals, GetPostsSort, type GetPostsSortWithLiterals, type GetTemplateRequest, type GetTemplateResponse, type GetTotalLikesPerMemberRequest, type GetTotalLikesPerMemberResponse, type GetTotalPostsOptions, type GetTotalPostsRequest, type GetTotalPostsResponse, type GetTotalPublicationsRequest, type GetTotalPublicationsResponse, type Gradient, GradientType, type GradientTypeWithLiterals, type HTMLData, type HTMLDataDataOneOf, type HeadingData, type Height, type IdentificationData, type IdentificationDataIdOneOf, type Image, type ImageData, type ImageDataStyles, ImagePosition, ImagePositionPosition, type ImagePositionPositionWithLiterals, type ImagePositionWithLiterals, ImageScalingScaling, type ImageScalingScalingWithLiterals, type ImageStyles, Indentation, type IndentationWithLiterals, InitialExpandedItems, type InitialExpandedItemsWithLiterals, type InitialPostsCopied, type Item, type ItemDataOneOf, type ItemStyle, type Keyword, Layout, type LayoutCellData, type LayoutData, type LayoutDataBackground, type LayoutDataBackgroundImage, LayoutDataBackgroundType, type LayoutDataBackgroundTypeWithLiterals, LayoutType, type LayoutTypeWithLiterals, type LayoutWithLiterals, type LikePostRequest, type LikePostResponse, LineStyle, type LineStyleWithLiterals, type Link, type LinkData, type LinkDataOneOf, type LinkPreviewData, type LinkPreviewDataStyles, type ListDemoPostsRequest, type ListDemoPostsResponse, type ListPostsArchiveRequest, type ListPostsArchiveResponse, type ListPostsOptions, type ListPostsRequest, type ListPostsResponse, ListStyle, type ListStyleWithLiterals, type ListTemplatesRequest, type ListTemplatesResponse, type ListValue, type MapData, type MapSettings, MapType, type MapTypeWithLiterals, type Media, type MediaMediaOneOf, type MentionData, type MessageEnvelope, type MetaData, type Metadata, type Metrics, type ModerationDetails, ModerationStatusStatus, type ModerationStatusStatusWithLiterals, 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 Paging, type PagingMetadataV2, type ParagraphData, type PeriodPostCount, type PeriodPublicationsCount, type Permissions, type PinPostRequest, type PinPostResponse, Placement, type PlacementWithLiterals, type PlatformQuery, type PlatformQueryPagingMethodOneOf, 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, type PollSettings, Position, type PositionWithLiterals, type Post, type PostCategoriesUpdated, type PostCount, type PostCountInfo, type PostCountPerMonth, type PostCountersUpdated, type PostCountersUpdatedInitiatorOneOf, type PostCreatedEnvelope, type PostDeletedEnvelope, PostFieldField, type PostFieldFieldWithLiterals, type PostLiked, type PostLikedEnvelope, type PostLikedInitiatorOneOf, type PostOwnerChanged, type PostQuery, type PostQuerySpec, type PostTagsUpdated, type PostTranslation, type PostUnliked, type PostUnlikedEnvelope, type PostUnlikedInitiatorOneOf, type PostUpdatedEnvelope, type PostsQueryBuilder, type PostsQueryResult, type PricingData, type QueryPostCountStatsOptions, type QueryPostCountStatsRequest, type QueryPostCountStatsResponse, type QueryPostsOptions, type QueryPostsRequest, type QueryPostsResponse, type QueryPublicationsCountStatsRequest, QueryPublicationsCountStatsRequestOrder, type QueryPublicationsCountStatsRequestOrderWithLiterals, type QueryPublicationsCountStatsResponse, type Reactions, type Rel, Resizing, type ResizingWithLiterals, ResponsivenessBehaviour, type ResponsivenessBehaviourWithLiterals, type RestoreInfo, type RibbonStyles, type RichContent, Scaling, type ScalingWithLiterals, type ScheduledPostPublished, type SeoSchema, type Settings, type ShapeData, type ShapeDataStyles, type SmartBlockCellData, type SmartBlockData, SmartBlockDataType, type SmartBlockDataTypeWithLiterals, 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, type Tag, Target, type TargetWithLiterals, TextAlignment, type TextAlignmentWithLiterals, type TextData, type TextNodeStyle, type TextStyle, type Thumbnails, ThumbnailsAlignment, type ThumbnailsAlignmentWithLiterals, type TocData, Type, type TypeWithLiterals, type UnlikePostRequest, type UnlikePostResponse, type UnpinPostRequest, type UnpinPostResponse, type V1Media, VerticalAlignment, VerticalAlignmentAlignment, type VerticalAlignmentAlignmentWithLiterals, type VerticalAlignmentWithLiterals, type Video, type VideoData, type VideoResolution, ViewMode, type ViewModeWithLiterals, type ViewPostRequest, type ViewPostResponse, ViewRole, type ViewRoleWithLiterals, VoteRole, type VoteRoleWithLiterals, WebhookIdentityType, type WebhookIdentityTypeWithLiterals, Width, WidthType, type WidthTypeWithLiterals, type WidthWithLiterals, type WixMedia, getPost, getPostBySlug, getPostMetrics, getTotalPosts, listPosts, onPostCreated, onPostDeleted, onPostLiked, onPostUnliked, onPostUpdated, queryPostCountStats, queryPosts, typedQueryPosts, utils };
|
|
@@ -1259,6 +1259,11 @@ var BannerOrigin = /* @__PURE__ */ ((BannerOrigin2) => {
|
|
|
1259
1259
|
BannerOrigin2["LAYOUT"] = "LAYOUT";
|
|
1260
1260
|
return BannerOrigin2;
|
|
1261
1261
|
})(BannerOrigin || {});
|
|
1262
|
+
var BannerPosition = /* @__PURE__ */ ((BannerPosition2) => {
|
|
1263
|
+
BannerPosition2["TOP"] = "TOP";
|
|
1264
|
+
BannerPosition2["BOTTOM"] = "BOTTOM";
|
|
1265
|
+
return BannerPosition2;
|
|
1266
|
+
})(BannerPosition || {});
|
|
1262
1267
|
var LayoutDataBackgroundType = /* @__PURE__ */ ((LayoutDataBackgroundType2) => {
|
|
1263
1268
|
LayoutDataBackgroundType2["COLOR"] = "COLOR";
|
|
1264
1269
|
LayoutDataBackgroundType2["GRADIENT"] = "GRADIENT";
|
|
@@ -1829,6 +1834,7 @@ export {
|
|
|
1829
1834
|
BackdropType,
|
|
1830
1835
|
BackgroundType,
|
|
1831
1836
|
BannerOrigin,
|
|
1837
|
+
BannerPosition,
|
|
1832
1838
|
ButtonDataType,
|
|
1833
1839
|
CardDataBackgroundType,
|
|
1834
1840
|
ColumnSize,
|