@wix/auto_sdk_blog_draft-posts 1.0.83 → 1.0.85
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
|
@@ -480,7 +480,7 @@ type GradientTypeWithLiterals = GradientType | 'LINEAR' | 'RADIAL';
|
|
|
480
480
|
interface Stop {
|
|
481
481
|
/**
|
|
482
482
|
* Stop color as hex value.
|
|
483
|
-
* @
|
|
483
|
+
* @maxLength 19
|
|
484
484
|
*/
|
|
485
485
|
color?: string | null;
|
|
486
486
|
/** Stop position (0-1). */
|
|
@@ -521,7 +521,7 @@ interface Background {
|
|
|
521
521
|
type?: BackgroundTypeWithLiterals;
|
|
522
522
|
/**
|
|
523
523
|
* Background color as a hexadecimal value.
|
|
524
|
-
* @
|
|
524
|
+
* @maxLength 19
|
|
525
525
|
*/
|
|
526
526
|
color?: string | null;
|
|
527
527
|
/** Gradient configuration. */
|
|
@@ -628,33 +628,33 @@ interface Styles {
|
|
|
628
628
|
borderRadius?: number | null;
|
|
629
629
|
/**
|
|
630
630
|
* Border color as a hexadecimal value.
|
|
631
|
-
* @
|
|
631
|
+
* @maxLength 19
|
|
632
632
|
*/
|
|
633
633
|
borderColor?: string | null;
|
|
634
634
|
/**
|
|
635
635
|
* Border color as a hexadecimal value (hover state).
|
|
636
|
-
* @
|
|
636
|
+
* @maxLength 19
|
|
637
637
|
*/
|
|
638
638
|
borderColorHover?: string | null;
|
|
639
639
|
/**
|
|
640
640
|
* Text color as a hexadecimal value.
|
|
641
|
-
* @
|
|
641
|
+
* @maxLength 19
|
|
642
642
|
*/
|
|
643
643
|
textColor?: string | null;
|
|
644
644
|
/**
|
|
645
645
|
* Text color as a hexadecimal value (hover state).
|
|
646
|
-
* @
|
|
646
|
+
* @maxLength 19
|
|
647
647
|
*/
|
|
648
648
|
textColorHover?: string | null;
|
|
649
649
|
/**
|
|
650
650
|
* Deprecated: Use `background` instead.
|
|
651
|
-
* @
|
|
651
|
+
* @maxLength 19
|
|
652
652
|
* @deprecated
|
|
653
653
|
*/
|
|
654
654
|
backgroundColor?: string | null;
|
|
655
655
|
/**
|
|
656
656
|
* Deprecated: Use `backgroundHover` instead.
|
|
657
|
-
* @
|
|
657
|
+
* @maxLength 19
|
|
658
658
|
* @deprecated
|
|
659
659
|
*/
|
|
660
660
|
backgroundColorHover?: string | null;
|
|
@@ -1106,7 +1106,7 @@ interface StylesBorder {
|
|
|
1106
1106
|
width?: number | null;
|
|
1107
1107
|
/**
|
|
1108
1108
|
* Border color as a hexadecimal value.
|
|
1109
|
-
* @
|
|
1109
|
+
* @maxLength 19
|
|
1110
1110
|
*/
|
|
1111
1111
|
color?: string | null;
|
|
1112
1112
|
/** Border radius in pixels. */
|
|
@@ -1147,22 +1147,22 @@ type StylesPositionWithLiterals = StylesPosition | 'START' | 'END' | 'TOP' | 'HI
|
|
|
1147
1147
|
interface LinkPreviewDataStyles {
|
|
1148
1148
|
/**
|
|
1149
1149
|
* Background color as a hexadecimal value.
|
|
1150
|
-
* @
|
|
1150
|
+
* @maxLength 19
|
|
1151
1151
|
*/
|
|
1152
1152
|
backgroundColor?: string | null;
|
|
1153
1153
|
/**
|
|
1154
1154
|
* Title color as a hexadecimal value.
|
|
1155
|
-
* @
|
|
1155
|
+
* @maxLength 19
|
|
1156
1156
|
*/
|
|
1157
1157
|
titleColor?: string | null;
|
|
1158
1158
|
/**
|
|
1159
1159
|
* Subtitle color as a hexadecimal value.
|
|
1160
|
-
* @
|
|
1160
|
+
* @maxLength 19
|
|
1161
1161
|
*/
|
|
1162
1162
|
subtitleColor?: string | null;
|
|
1163
1163
|
/**
|
|
1164
1164
|
* Link color as a hexadecimal value.
|
|
1165
|
-
* @
|
|
1165
|
+
* @maxLength 19
|
|
1166
1166
|
*/
|
|
1167
1167
|
linkColor?: string | null;
|
|
1168
1168
|
/** Border width in pixels. */
|
|
@@ -1171,7 +1171,7 @@ interface LinkPreviewDataStyles {
|
|
|
1171
1171
|
borderRadius?: number | null;
|
|
1172
1172
|
/**
|
|
1173
1173
|
* Border color as a hexadecimal value.
|
|
1174
|
-
* @
|
|
1174
|
+
* @maxLength 19
|
|
1175
1175
|
*/
|
|
1176
1176
|
borderColor?: string | null;
|
|
1177
1177
|
/** Position of thumbnail. Defaults to `START`. */
|
|
@@ -1322,19 +1322,19 @@ interface BackgroundGradient {
|
|
|
1322
1322
|
angle?: number | null;
|
|
1323
1323
|
/**
|
|
1324
1324
|
* The start color as a hexademical value.
|
|
1325
|
-
* @
|
|
1325
|
+
* @maxLength 19
|
|
1326
1326
|
*/
|
|
1327
1327
|
startColor?: string | null;
|
|
1328
1328
|
/**
|
|
1329
1329
|
* The end color as a hexademical value.
|
|
1330
|
-
* @
|
|
1330
|
+
* @maxLength 19
|
|
1331
1331
|
*/
|
|
1332
1332
|
lastColor?: string | null;
|
|
1333
1333
|
}
|
|
1334
1334
|
interface PollDesignBackground extends PollDesignBackgroundBackgroundOneOf {
|
|
1335
1335
|
/**
|
|
1336
1336
|
* The background color as a hexademical value.
|
|
1337
|
-
* @
|
|
1337
|
+
* @maxLength 19
|
|
1338
1338
|
*/
|
|
1339
1339
|
color?: string | null;
|
|
1340
1340
|
/** An image to use for the background. */
|
|
@@ -1348,7 +1348,7 @@ interface PollDesignBackground extends PollDesignBackgroundBackgroundOneOf {
|
|
|
1348
1348
|
interface PollDesignBackgroundBackgroundOneOf {
|
|
1349
1349
|
/**
|
|
1350
1350
|
* The background color as a hexademical value.
|
|
1351
|
-
* @
|
|
1351
|
+
* @maxLength 19
|
|
1352
1352
|
*/
|
|
1353
1353
|
color?: string | null;
|
|
1354
1354
|
/** An image to use for the background. */
|
|
@@ -1662,32 +1662,32 @@ interface ButtonStyles {
|
|
|
1662
1662
|
borderRadius?: number | null;
|
|
1663
1663
|
/**
|
|
1664
1664
|
* Border color as a hexadecimal value.
|
|
1665
|
-
* @
|
|
1665
|
+
* @maxLength 19
|
|
1666
1666
|
*/
|
|
1667
1667
|
borderColor?: string | null;
|
|
1668
1668
|
/**
|
|
1669
1669
|
* Text color as a hexadecimal value.
|
|
1670
|
-
* @
|
|
1670
|
+
* @maxLength 19
|
|
1671
1671
|
*/
|
|
1672
1672
|
textColor?: string | null;
|
|
1673
1673
|
/**
|
|
1674
1674
|
* Background color as a hexadecimal value.
|
|
1675
|
-
* @
|
|
1675
|
+
* @maxLength 19
|
|
1676
1676
|
*/
|
|
1677
1677
|
backgroundColor?: string | null;
|
|
1678
1678
|
/**
|
|
1679
1679
|
* Border color as a hexadecimal value (hover state).
|
|
1680
|
-
* @
|
|
1680
|
+
* @maxLength 19
|
|
1681
1681
|
*/
|
|
1682
1682
|
borderColorHover?: string | null;
|
|
1683
1683
|
/**
|
|
1684
1684
|
* Text color as a hexadecimal value (hover state).
|
|
1685
|
-
* @
|
|
1685
|
+
* @maxLength 19
|
|
1686
1686
|
*/
|
|
1687
1687
|
textColorHover?: string | null;
|
|
1688
1688
|
/**
|
|
1689
1689
|
* Background color as a hexadecimal value (hover state).
|
|
1690
|
-
* @
|
|
1690
|
+
* @maxLength 19
|
|
1691
1691
|
*/
|
|
1692
1692
|
backgroundColorHover?: string | null;
|
|
1693
1693
|
/** Button size option, one of `SMALL`, `MEDIUM` or `LARGE`. Defaults to `MEDIUM`. */
|
|
@@ -1704,7 +1704,7 @@ interface ImageStyles {
|
|
|
1704
1704
|
resizing?: ResizingWithLiterals;
|
|
1705
1705
|
/**
|
|
1706
1706
|
* Image border color as a hexadecimal value.
|
|
1707
|
-
* @
|
|
1707
|
+
* @maxLength 19
|
|
1708
1708
|
*/
|
|
1709
1709
|
borderColor?: string | null;
|
|
1710
1710
|
/** Image border width in pixels. */
|
|
@@ -1717,17 +1717,17 @@ interface RibbonStyles {
|
|
|
1717
1717
|
ribbonText?: string | null;
|
|
1718
1718
|
/**
|
|
1719
1719
|
* Ribbon background color as a hexadecimal value.
|
|
1720
|
-
* @
|
|
1720
|
+
* @maxLength 19
|
|
1721
1721
|
*/
|
|
1722
1722
|
backgroundColor?: string | null;
|
|
1723
1723
|
/**
|
|
1724
1724
|
* Ribbon text color as a hexadecimal value.
|
|
1725
|
-
* @
|
|
1725
|
+
* @maxLength 19
|
|
1726
1726
|
*/
|
|
1727
1727
|
textColor?: string | null;
|
|
1728
1728
|
/**
|
|
1729
1729
|
* Ribbon border color as a hexadecimal value.
|
|
1730
|
-
* @
|
|
1730
|
+
* @maxLength 19
|
|
1731
1731
|
*/
|
|
1732
1732
|
borderColor?: string | null;
|
|
1733
1733
|
/** Ribbon border width in pixels. */
|
|
@@ -1740,12 +1740,12 @@ interface RibbonStyles {
|
|
|
1740
1740
|
interface CardStyles {
|
|
1741
1741
|
/**
|
|
1742
1742
|
* Card background color as a hexadecimal value.
|
|
1743
|
-
* @
|
|
1743
|
+
* @maxLength 19
|
|
1744
1744
|
*/
|
|
1745
1745
|
backgroundColor?: string | null;
|
|
1746
1746
|
/**
|
|
1747
1747
|
* Card border color as a hexadecimal value.
|
|
1748
|
-
* @
|
|
1748
|
+
* @maxLength 19
|
|
1749
1749
|
*/
|
|
1750
1750
|
borderColor?: string | null;
|
|
1751
1751
|
/** Card border width in pixels. */
|
|
@@ -1760,12 +1760,12 @@ interface CardStyles {
|
|
|
1760
1760
|
titlePriceLayout?: LayoutWithLiterals;
|
|
1761
1761
|
/**
|
|
1762
1762
|
* Title text color as a hexadecimal value.
|
|
1763
|
-
* @
|
|
1763
|
+
* @maxLength 19
|
|
1764
1764
|
*/
|
|
1765
1765
|
titleColor?: string | null;
|
|
1766
1766
|
/**
|
|
1767
1767
|
* Text color as a hexadecimal value.
|
|
1768
|
-
* @
|
|
1768
|
+
* @maxLength 19
|
|
1769
1769
|
*/
|
|
1770
1770
|
textColor?: string | null;
|
|
1771
1771
|
}
|
|
@@ -1947,29 +1947,29 @@ interface CellStyle {
|
|
|
1947
1947
|
verticalAlignment?: VerticalAlignmentWithLiterals;
|
|
1948
1948
|
/**
|
|
1949
1949
|
* Cell background color as a hexadecimal value.
|
|
1950
|
-
* @
|
|
1950
|
+
* @maxLength 19
|
|
1951
1951
|
*/
|
|
1952
1952
|
backgroundColor?: string | null;
|
|
1953
1953
|
}
|
|
1954
1954
|
interface BorderColors {
|
|
1955
1955
|
/**
|
|
1956
1956
|
* Left border color as a hexadecimal value.
|
|
1957
|
-
* @
|
|
1957
|
+
* @maxLength 19
|
|
1958
1958
|
*/
|
|
1959
1959
|
left?: string | null;
|
|
1960
1960
|
/**
|
|
1961
1961
|
* Right border color as a hexadecimal value.
|
|
1962
|
-
* @
|
|
1962
|
+
* @maxLength 19
|
|
1963
1963
|
*/
|
|
1964
1964
|
right?: string | null;
|
|
1965
1965
|
/**
|
|
1966
1966
|
* Top border color as a hexadecimal value.
|
|
1967
|
-
* @
|
|
1967
|
+
* @maxLength 19
|
|
1968
1968
|
*/
|
|
1969
1969
|
top?: string | null;
|
|
1970
1970
|
/**
|
|
1971
1971
|
* Bottom border color as a hexadecimal value.
|
|
1972
|
-
* @
|
|
1972
|
+
* @maxLength 19
|
|
1973
1973
|
*/
|
|
1974
1974
|
bottom?: string | null;
|
|
1975
1975
|
}
|
|
@@ -2044,7 +2044,7 @@ interface CaptionData {
|
|
|
2044
2044
|
interface LayoutData {
|
|
2045
2045
|
/**
|
|
2046
2046
|
* Deprecated: Use `background` instead.
|
|
2047
|
-
* @
|
|
2047
|
+
* @maxLength 19
|
|
2048
2048
|
* @deprecated
|
|
2049
2049
|
*/
|
|
2050
2050
|
backgroundColor?: string | null;
|
|
@@ -2052,7 +2052,7 @@ interface LayoutData {
|
|
|
2052
2052
|
backgroundImage?: LayoutDataBackgroundImage;
|
|
2053
2053
|
/**
|
|
2054
2054
|
* Border color as a hexadecimal value.
|
|
2055
|
-
* @
|
|
2055
|
+
* @maxLength 19
|
|
2056
2056
|
*/
|
|
2057
2057
|
borderColor?: string | null;
|
|
2058
2058
|
/** Border width in pixels. */
|
|
@@ -2061,7 +2061,7 @@ interface LayoutData {
|
|
|
2061
2061
|
borderRadius?: number | null;
|
|
2062
2062
|
/**
|
|
2063
2063
|
* Deprecated: Use `backdrop` instead.
|
|
2064
|
-
* @
|
|
2064
|
+
* @maxLength 19
|
|
2065
2065
|
* @deprecated
|
|
2066
2066
|
*/
|
|
2067
2067
|
backdropColor?: string | null;
|
|
@@ -2088,7 +2088,7 @@ interface LayoutData {
|
|
|
2088
2088
|
containerData?: PluginContainerData;
|
|
2089
2089
|
/** Defines where selected design propertied applies to */
|
|
2090
2090
|
designTarget?: DesignTargetWithLiterals;
|
|
2091
|
-
/** Banner configuration. When present, this layout is
|
|
2091
|
+
/** Banner configuration. When present, this layout is attached to a document edge (top or bottom). */
|
|
2092
2092
|
banner?: Banner;
|
|
2093
2093
|
/** Background styling (color or gradient). */
|
|
2094
2094
|
background?: LayoutDataBackground;
|
|
@@ -2135,6 +2135,14 @@ declare enum BannerOrigin {
|
|
|
2135
2135
|
}
|
|
2136
2136
|
/** @enumType */
|
|
2137
2137
|
type BannerOriginWithLiterals = BannerOrigin | 'IMAGE' | 'LAYOUT';
|
|
2138
|
+
declare enum BannerPosition {
|
|
2139
|
+
/** Attached to the top edge (banner) */
|
|
2140
|
+
TOP = "TOP",
|
|
2141
|
+
/** Attached to the bottom edge (footer) */
|
|
2142
|
+
BOTTOM = "BOTTOM"
|
|
2143
|
+
}
|
|
2144
|
+
/** @enumType */
|
|
2145
|
+
type BannerPositionWithLiterals = BannerPosition | 'TOP' | 'BOTTOM';
|
|
2138
2146
|
/** Background type */
|
|
2139
2147
|
declare enum LayoutDataBackgroundType {
|
|
2140
2148
|
/** Solid color background */
|
|
@@ -2192,6 +2200,8 @@ type DesignTargetWithLiterals = DesignTarget | 'LAYOUT' | 'CELL';
|
|
|
2192
2200
|
interface Banner {
|
|
2193
2201
|
/** Origin of the banner */
|
|
2194
2202
|
origin?: BannerOriginWithLiterals;
|
|
2203
|
+
/** Position of the banner */
|
|
2204
|
+
position?: BannerPositionWithLiterals;
|
|
2195
2205
|
}
|
|
2196
2206
|
/** Background styling (color or gradient) */
|
|
2197
2207
|
interface LayoutDataBackground {
|
|
@@ -2199,7 +2209,7 @@ interface LayoutDataBackground {
|
|
|
2199
2209
|
type?: LayoutDataBackgroundTypeWithLiterals;
|
|
2200
2210
|
/**
|
|
2201
2211
|
* Background color as a hexadecimal value.
|
|
2202
|
-
* @
|
|
2212
|
+
* @maxLength 19
|
|
2203
2213
|
*/
|
|
2204
2214
|
color?: string | null;
|
|
2205
2215
|
/** Gradient configuration. */
|
|
@@ -2211,7 +2221,7 @@ interface Backdrop {
|
|
|
2211
2221
|
type?: BackdropTypeWithLiterals;
|
|
2212
2222
|
/**
|
|
2213
2223
|
* Backdrop color as a hexadecimal value.
|
|
2214
|
-
* @
|
|
2224
|
+
* @maxLength 19
|
|
2215
2225
|
*/
|
|
2216
2226
|
color?: string | null;
|
|
2217
2227
|
/** Gradient configuration. */
|
|
@@ -2232,7 +2242,7 @@ interface ShapeData {
|
|
|
2232
2242
|
interface ShapeDataStyles {
|
|
2233
2243
|
/**
|
|
2234
2244
|
* Shape fill color as a hexadecimal value.
|
|
2235
|
-
* @
|
|
2245
|
+
* @maxLength 19
|
|
2236
2246
|
*/
|
|
2237
2247
|
color?: string | null;
|
|
2238
2248
|
/** Map of original color keys to their new color values. */
|
|
@@ -2291,7 +2301,7 @@ interface CardDataBackground {
|
|
|
2291
2301
|
type?: CardDataBackgroundTypeWithLiterals;
|
|
2292
2302
|
/**
|
|
2293
2303
|
* Background color as a hexadecimal value.
|
|
2294
|
-
* @
|
|
2304
|
+
* @maxLength 19
|
|
2295
2305
|
*/
|
|
2296
2306
|
color?: string | null;
|
|
2297
2307
|
/** Gradient configuration. */
|
|
@@ -2318,7 +2328,7 @@ interface TocData {
|
|
|
2318
2328
|
itemSpacing?: number | null;
|
|
2319
2329
|
/**
|
|
2320
2330
|
* Optional override for the text color.
|
|
2321
|
-
* @
|
|
2331
|
+
* @maxLength 19
|
|
2322
2332
|
*/
|
|
2323
2333
|
color?: string | null;
|
|
2324
2334
|
/** Indentation style. Default: NESTED. */
|
|
@@ -2360,7 +2370,10 @@ interface SmartBlockData {
|
|
|
2360
2370
|
orientation?: string | null;
|
|
2361
2371
|
/** Column size controlling cells per row. */
|
|
2362
2372
|
columnSize?: ColumnSizeWithLiterals;
|
|
2363
|
-
/**
|
|
2373
|
+
/**
|
|
2374
|
+
* Border color (for SOLID_JOINED_BOXES variant).
|
|
2375
|
+
* @maxLength 19
|
|
2376
|
+
*/
|
|
2364
2377
|
borderColor?: string | null;
|
|
2365
2378
|
/** Border width in pixels (for SOLID_JOINED_BOXES variant). */
|
|
2366
2379
|
borderWidth?: number | null;
|
|
@@ -2419,7 +2432,10 @@ interface SmartBlockCellData {
|
|
|
2419
2432
|
label?: string | null;
|
|
2420
2433
|
/** Shape file details. */
|
|
2421
2434
|
shape?: V1Media;
|
|
2422
|
-
/**
|
|
2435
|
+
/**
|
|
2436
|
+
* Border color of the cell.
|
|
2437
|
+
* @maxLength 19
|
|
2438
|
+
*/
|
|
2423
2439
|
borderColor?: string | null;
|
|
2424
2440
|
/** Border width in pixels. */
|
|
2425
2441
|
borderWidth?: number | null;
|
|
@@ -2427,11 +2443,20 @@ interface SmartBlockCellData {
|
|
|
2427
2443
|
borderRadius?: number | null;
|
|
2428
2444
|
/** The type of the parent smart block (must match parent). */
|
|
2429
2445
|
type?: SmartBlockDataTypeWithLiterals;
|
|
2430
|
-
/**
|
|
2446
|
+
/**
|
|
2447
|
+
* Accent color for non-background variants (e.g., line, bullet, label color).
|
|
2448
|
+
* @maxLength 19
|
|
2449
|
+
*/
|
|
2431
2450
|
accentColor?: string | null;
|
|
2432
|
-
/**
|
|
2451
|
+
/**
|
|
2452
|
+
* Background color for background-based variants (SOLID_BOXES, SOLID_BOXES_ALTERNATING, SOLID_JOINED_BOXES).
|
|
2453
|
+
* @maxLength 19
|
|
2454
|
+
*/
|
|
2433
2455
|
backgroundColor?: string | null;
|
|
2434
|
-
/**
|
|
2456
|
+
/**
|
|
2457
|
+
* Shape fill color as a hexadecimal value.
|
|
2458
|
+
* @maxLength 19
|
|
2459
|
+
*/
|
|
2435
2460
|
shapeColor?: string | null;
|
|
2436
2461
|
}
|
|
2437
2462
|
interface Metadata {
|
|
@@ -4447,4 +4472,4 @@ declare const utils: {
|
|
|
4447
4472
|
*/
|
|
4448
4473
|
declare function publishDraftPost(draftPostId: string): Promise<NonNullablePaths<PublishDraftPostResponse, `postId`, 2>>;
|
|
4449
4474
|
|
|
4450
|
-
export { type AccountInfo, type AccountInfoMetadata, Action, type ActionEvent, type ActionWithLiterals, Alignment, type AlignmentWithLiterals, type AnchorData, type AppEmbedData, type AppEmbedDataAppDataOneOf, AppType, type AppTypeWithLiterals, type ApplicationError, type ApproveDraftPostRequest, type ApproveDraftPostResponse, 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 BulkActionMetadata, type BulkCreateDraftPostsOptions, type BulkCreateDraftPostsRequest, type BulkCreateDraftPostsResponse, type BulkDeleteDraftPostsOptions, type BulkDeleteDraftPostsRequest, type BulkDeleteDraftPostsResponse, type BulkDraftPostResult, type BulkRejectDraftPostRequest, type BulkRejectDraftPostResponse, type BulkRevertToUnpublishedRequest, type BulkRevertToUnpublishedResponse, type BulkUpdateDraftPostsOptions, type BulkUpdateDraftPostsRequest, type BulkUpdateDraftPostsResponse, type BulletedListData, type ButtonData, ButtonDataType, type ButtonDataTypeWithLiterals, type ButtonStyles, type CaptionData, type CardData, type CardDataBackground, CardDataBackgroundType, type CardDataBackgroundTypeWithLiterals, type CardStyles, CardStylesType, type CardStylesTypeWithLiterals, type CellStyle, type CodeBlockData, type CollapsibleListData, type ColorData, type Colors, ColumnSize, type ColumnSizeWithLiterals, type CommonQueryWithEntityContext, type CreateDraftPostOptions, type CreateDraftPostRequest, type CreateDraftPostResponse, Crop, type CropWithLiterals, type CursorPaging, type Cursors, type Decoration, type DecorationDataOneOf, DecorationType, type DecorationTypeWithLiterals, type DeleteDraftPostOptions, type DeleteDraftPostRequest, type DeleteDraftPostResponse, type Design, DesignTarget, type DesignTargetWithLiterals, type Dimensions, Direction, type DirectionWithLiterals, type DividerData, DividerDataAlignment, type DividerDataAlignmentWithLiterals, type DocumentStyle, type DomainEvent, type DomainEventBodyOneOf, type DraftCategoriesUpdated, type DraftCreatedEnvelope, type DraftDeletedEnvelope, type DraftPost, type DraftPostCount, type DraftPostOwnerChanged, type DraftPostQuery, type DraftPostQuerySpec, type DraftPostTranslation, type DraftPostsQueryBuilder, type DraftPostsQueryResult, type DraftTagsUpdated, type DraftUpdatedEnvelope, 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 GetDeletedDraftPostRequest, type GetDeletedDraftPostResponse, type GetDraftPostCountsRequest, type GetDraftPostCountsResponse, type GetDraftPostOptions, type GetDraftPostRequest, type GetDraftPostResponse, type GetDraftPostTotalsRequest, type GetDraftPostTotalsResponse, GetDraftPostsSort, type GetDraftPostsSortWithLiterals, 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, type InitialDraftPostsCopied, InitialExpandedItems, type InitialExpandedItemsWithLiterals, type IsDraftPostAutoTranslatableRequest, type IsDraftPostAutoTranslatableResponse, type Item, type ItemDataOneOf, type ItemMetadata, type ItemStyle, type Keyword, 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 ListDeletedDraftPostsOptions, type ListDeletedDraftPostsRequest, type ListDeletedDraftPostsResponse, type ListDraftPostsOptions, type ListDraftPostsRequest, type ListDraftPostsResponse, ListStyle, type ListStyleWithLiterals, type ListValue, type MapData, type MapSettings, MapType, type MapTypeWithLiterals, type MarkPostAsInModerationRequest, type MarkPostAsInModerationResponse, type MaskedDraftPosts, type Media, type MediaMediaOneOf, type MentionData, type MessageEnvelope, type MetaData, type Metadata, 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, type OrderedListData, Orientation, type OrientationWithLiterals, Origin, type OriginWithLiterals, type PDFSettings, type Paging, type PagingMetadataV2, type ParagraphData, type Permissions, 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 PricingData, type PublishDraftPostRequest, type PublishDraftPostResponse, type QueryDraftPostsOptions, type QueryDraftPostsRequest, type QueryDraftPostsResponse, type RejectDraftPostRequest, type RejectDraftPostResponse, type Rel, type RemoveFromTrashBinRequest, type RemoveFromTrashBinResponse, Resizing, type ResizingWithLiterals, ResponsivenessBehaviour, type ResponsivenessBehaviourWithLiterals, type RestoreFromTrashBinRequest, type RestoreFromTrashBinResponse, type RestoreInfo, type RevertToUnpublishedRequest, type RevertToUnpublishedResponse, type RibbonStyles, type RichContent, Scaling, type ScalingWithLiterals, 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 TotalDraftPosts, TotalDraftPostsGroupingField, type TotalDraftPostsGroupingFieldWithLiterals, type TranslateDraftRequest, type TranslateDraftResponse, Type, type TypeWithLiterals, type UnpublishPostRequest, type UnpublishPostResponse, type UpdateDraftPost, type UpdateDraftPostContentRequest, type UpdateDraftPostContentResponse, type UpdateDraftPostLanguageRequest, type UpdateDraftPostLanguageResponse, type UpdateDraftPostOptions, type UpdateDraftPostRequest, type UpdateDraftPostResponse, type V1Media, VerticalAlignment, VerticalAlignmentAlignment, type VerticalAlignmentAlignmentWithLiterals, type VerticalAlignmentWithLiterals, type Video, type VideoData, type VideoResolution, ViewMode, type ViewModeWithLiterals, ViewRole, type ViewRoleWithLiterals, VoteRole, type VoteRoleWithLiterals, WebhookIdentityType, type WebhookIdentityTypeWithLiterals, Width, WidthType, type WidthTypeWithLiterals, type WidthWithLiterals, type WixMedia, bulkCreateDraftPosts, bulkDeleteDraftPosts, bulkUpdateDraftPosts, createDraftPost, deleteDraftPost, getDeletedDraftPost, getDraftPost, listDeletedDraftPosts, listDraftPosts, onDraftCreated, onDraftDeleted, onDraftUpdated, publishDraftPost, queryDraftPosts, removeFromTrashBin, restoreFromTrashBin, typedQueryDraftPosts, updateDraftPost, utils };
|
|
4475
|
+
export { type AccountInfo, type AccountInfoMetadata, Action, type ActionEvent, type ActionWithLiterals, Alignment, type AlignmentWithLiterals, type AnchorData, type AppEmbedData, type AppEmbedDataAppDataOneOf, AppType, type AppTypeWithLiterals, type ApplicationError, type ApproveDraftPostRequest, type ApproveDraftPostResponse, 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 BulkActionMetadata, type BulkCreateDraftPostsOptions, type BulkCreateDraftPostsRequest, type BulkCreateDraftPostsResponse, type BulkDeleteDraftPostsOptions, type BulkDeleteDraftPostsRequest, type BulkDeleteDraftPostsResponse, type BulkDraftPostResult, type BulkRejectDraftPostRequest, type BulkRejectDraftPostResponse, type BulkRevertToUnpublishedRequest, type BulkRevertToUnpublishedResponse, type BulkUpdateDraftPostsOptions, type BulkUpdateDraftPostsRequest, type BulkUpdateDraftPostsResponse, type BulletedListData, type ButtonData, ButtonDataType, type ButtonDataTypeWithLiterals, type ButtonStyles, type CaptionData, type CardData, type CardDataBackground, CardDataBackgroundType, type CardDataBackgroundTypeWithLiterals, type CardStyles, CardStylesType, type CardStylesTypeWithLiterals, type CellStyle, type CodeBlockData, type CollapsibleListData, type ColorData, type Colors, ColumnSize, type ColumnSizeWithLiterals, type CommonQueryWithEntityContext, type CreateDraftPostOptions, type CreateDraftPostRequest, type CreateDraftPostResponse, Crop, type CropWithLiterals, type CursorPaging, type Cursors, type Decoration, type DecorationDataOneOf, DecorationType, type DecorationTypeWithLiterals, type DeleteDraftPostOptions, type DeleteDraftPostRequest, type DeleteDraftPostResponse, type Design, DesignTarget, type DesignTargetWithLiterals, type Dimensions, Direction, type DirectionWithLiterals, type DividerData, DividerDataAlignment, type DividerDataAlignmentWithLiterals, type DocumentStyle, type DomainEvent, type DomainEventBodyOneOf, type DraftCategoriesUpdated, type DraftCreatedEnvelope, type DraftDeletedEnvelope, type DraftPost, type DraftPostCount, type DraftPostOwnerChanged, type DraftPostQuery, type DraftPostQuerySpec, type DraftPostTranslation, type DraftPostsQueryBuilder, type DraftPostsQueryResult, type DraftTagsUpdated, type DraftUpdatedEnvelope, 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 GetDeletedDraftPostRequest, type GetDeletedDraftPostResponse, type GetDraftPostCountsRequest, type GetDraftPostCountsResponse, type GetDraftPostOptions, type GetDraftPostRequest, type GetDraftPostResponse, type GetDraftPostTotalsRequest, type GetDraftPostTotalsResponse, GetDraftPostsSort, type GetDraftPostsSortWithLiterals, 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, type InitialDraftPostsCopied, InitialExpandedItems, type InitialExpandedItemsWithLiterals, type IsDraftPostAutoTranslatableRequest, type IsDraftPostAutoTranslatableResponse, type Item, type ItemDataOneOf, type ItemMetadata, type ItemStyle, type Keyword, 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 ListDeletedDraftPostsOptions, type ListDeletedDraftPostsRequest, type ListDeletedDraftPostsResponse, type ListDraftPostsOptions, type ListDraftPostsRequest, type ListDraftPostsResponse, ListStyle, type ListStyleWithLiterals, type ListValue, type MapData, type MapSettings, MapType, type MapTypeWithLiterals, type MarkPostAsInModerationRequest, type MarkPostAsInModerationResponse, type MaskedDraftPosts, type Media, type MediaMediaOneOf, type MentionData, type MessageEnvelope, type MetaData, type Metadata, 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, type OrderedListData, Orientation, type OrientationWithLiterals, Origin, type OriginWithLiterals, type PDFSettings, type Paging, type PagingMetadataV2, type ParagraphData, type Permissions, 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 PricingData, type PublishDraftPostRequest, type PublishDraftPostResponse, type QueryDraftPostsOptions, type QueryDraftPostsRequest, type QueryDraftPostsResponse, type RejectDraftPostRequest, type RejectDraftPostResponse, type Rel, type RemoveFromTrashBinRequest, type RemoveFromTrashBinResponse, Resizing, type ResizingWithLiterals, ResponsivenessBehaviour, type ResponsivenessBehaviourWithLiterals, type RestoreFromTrashBinRequest, type RestoreFromTrashBinResponse, type RestoreInfo, type RevertToUnpublishedRequest, type RevertToUnpublishedResponse, type RibbonStyles, type RichContent, Scaling, type ScalingWithLiterals, 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 TotalDraftPosts, TotalDraftPostsGroupingField, type TotalDraftPostsGroupingFieldWithLiterals, type TranslateDraftRequest, type TranslateDraftResponse, Type, type TypeWithLiterals, type UnpublishPostRequest, type UnpublishPostResponse, type UpdateDraftPost, type UpdateDraftPostContentRequest, type UpdateDraftPostContentResponse, type UpdateDraftPostLanguageRequest, type UpdateDraftPostLanguageResponse, type UpdateDraftPostOptions, type UpdateDraftPostRequest, type UpdateDraftPostResponse, type V1Media, VerticalAlignment, VerticalAlignmentAlignment, type VerticalAlignmentAlignmentWithLiterals, type VerticalAlignmentWithLiterals, type Video, type VideoData, type VideoResolution, ViewMode, type ViewModeWithLiterals, ViewRole, type ViewRoleWithLiterals, VoteRole, type VoteRoleWithLiterals, WebhookIdentityType, type WebhookIdentityTypeWithLiterals, Width, WidthType, type WidthTypeWithLiterals, type WidthWithLiterals, type WixMedia, bulkCreateDraftPosts, bulkDeleteDraftPosts, bulkUpdateDraftPosts, createDraftPost, deleteDraftPost, getDeletedDraftPost, getDraftPost, listDeletedDraftPosts, listDraftPosts, onDraftCreated, onDraftDeleted, onDraftUpdated, publishDraftPost, queryDraftPosts, removeFromTrashBin, restoreFromTrashBin, typedQueryDraftPosts, updateDraftPost, utils };
|
|
@@ -27,6 +27,7 @@ __export(index_typings_exports, {
|
|
|
27
27
|
BackdropType: () => BackdropType,
|
|
28
28
|
BackgroundType: () => BackgroundType,
|
|
29
29
|
BannerOrigin: () => BannerOrigin,
|
|
30
|
+
BannerPosition: () => BannerPosition,
|
|
30
31
|
ButtonDataType: () => ButtonDataType,
|
|
31
32
|
CardDataBackgroundType: () => CardDataBackgroundType,
|
|
32
33
|
CardStylesType: () => CardStylesType,
|
|
@@ -3063,6 +3064,11 @@ var BannerOrigin = /* @__PURE__ */ ((BannerOrigin2) => {
|
|
|
3063
3064
|
BannerOrigin2["LAYOUT"] = "LAYOUT";
|
|
3064
3065
|
return BannerOrigin2;
|
|
3065
3066
|
})(BannerOrigin || {});
|
|
3067
|
+
var BannerPosition = /* @__PURE__ */ ((BannerPosition2) => {
|
|
3068
|
+
BannerPosition2["TOP"] = "TOP";
|
|
3069
|
+
BannerPosition2["BOTTOM"] = "BOTTOM";
|
|
3070
|
+
return BannerPosition2;
|
|
3071
|
+
})(BannerPosition || {});
|
|
3066
3072
|
var LayoutDataBackgroundType = /* @__PURE__ */ ((LayoutDataBackgroundType2) => {
|
|
3067
3073
|
LayoutDataBackgroundType2["COLOR"] = "COLOR";
|
|
3068
3074
|
LayoutDataBackgroundType2["GRADIENT"] = "GRADIENT";
|
|
@@ -4061,6 +4067,7 @@ async function publishDraftPost2(draftPostId) {
|
|
|
4061
4067
|
BackdropType,
|
|
4062
4068
|
BackgroundType,
|
|
4063
4069
|
BannerOrigin,
|
|
4070
|
+
BannerPosition,
|
|
4064
4071
|
ButtonDataType,
|
|
4065
4072
|
CardDataBackgroundType,
|
|
4066
4073
|
CardStylesType,
|