@wix/auto_sdk_blog_draft-posts 1.0.83 → 1.0.84
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +65 -50
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +65 -50
- package/build/cjs/meta.js.map +1 -1
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +65 -50
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +65 -50
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +65 -50
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +65 -50
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +65 -50
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +65 -50
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
package/build/cjs/meta.d.ts
CHANGED
|
@@ -503,7 +503,7 @@ type GradientTypeWithLiterals = GradientType | 'LINEAR' | 'RADIAL';
|
|
|
503
503
|
interface Stop {
|
|
504
504
|
/**
|
|
505
505
|
* Stop color as hex value.
|
|
506
|
-
* @
|
|
506
|
+
* @maxLength 19
|
|
507
507
|
*/
|
|
508
508
|
color?: string | null;
|
|
509
509
|
/** Stop position (0-1). */
|
|
@@ -544,7 +544,7 @@ interface Background {
|
|
|
544
544
|
type?: BackgroundTypeWithLiterals;
|
|
545
545
|
/**
|
|
546
546
|
* Background color as a hexadecimal value.
|
|
547
|
-
* @
|
|
547
|
+
* @maxLength 19
|
|
548
548
|
*/
|
|
549
549
|
color?: string | null;
|
|
550
550
|
/** Gradient configuration. */
|
|
@@ -651,33 +651,33 @@ interface Styles {
|
|
|
651
651
|
borderRadius?: number | null;
|
|
652
652
|
/**
|
|
653
653
|
* Border color as a hexadecimal value.
|
|
654
|
-
* @
|
|
654
|
+
* @maxLength 19
|
|
655
655
|
*/
|
|
656
656
|
borderColor?: string | null;
|
|
657
657
|
/**
|
|
658
658
|
* Border color as a hexadecimal value (hover state).
|
|
659
|
-
* @
|
|
659
|
+
* @maxLength 19
|
|
660
660
|
*/
|
|
661
661
|
borderColorHover?: string | null;
|
|
662
662
|
/**
|
|
663
663
|
* Text color as a hexadecimal value.
|
|
664
|
-
* @
|
|
664
|
+
* @maxLength 19
|
|
665
665
|
*/
|
|
666
666
|
textColor?: string | null;
|
|
667
667
|
/**
|
|
668
668
|
* Text color as a hexadecimal value (hover state).
|
|
669
|
-
* @
|
|
669
|
+
* @maxLength 19
|
|
670
670
|
*/
|
|
671
671
|
textColorHover?: string | null;
|
|
672
672
|
/**
|
|
673
673
|
* Deprecated: Use `background` instead.
|
|
674
|
-
* @
|
|
674
|
+
* @maxLength 19
|
|
675
675
|
* @deprecated
|
|
676
676
|
*/
|
|
677
677
|
backgroundColor?: string | null;
|
|
678
678
|
/**
|
|
679
679
|
* Deprecated: Use `backgroundHover` instead.
|
|
680
|
-
* @
|
|
680
|
+
* @maxLength 19
|
|
681
681
|
* @deprecated
|
|
682
682
|
*/
|
|
683
683
|
backgroundColorHover?: string | null;
|
|
@@ -1129,7 +1129,7 @@ interface StylesBorder {
|
|
|
1129
1129
|
width?: number | null;
|
|
1130
1130
|
/**
|
|
1131
1131
|
* Border color as a hexadecimal value.
|
|
1132
|
-
* @
|
|
1132
|
+
* @maxLength 19
|
|
1133
1133
|
*/
|
|
1134
1134
|
color?: string | null;
|
|
1135
1135
|
/** Border radius in pixels. */
|
|
@@ -1170,22 +1170,22 @@ type StylesPositionWithLiterals = StylesPosition | 'START' | 'END' | 'TOP' | 'HI
|
|
|
1170
1170
|
interface LinkPreviewDataStyles {
|
|
1171
1171
|
/**
|
|
1172
1172
|
* Background color as a hexadecimal value.
|
|
1173
|
-
* @
|
|
1173
|
+
* @maxLength 19
|
|
1174
1174
|
*/
|
|
1175
1175
|
backgroundColor?: string | null;
|
|
1176
1176
|
/**
|
|
1177
1177
|
* Title color as a hexadecimal value.
|
|
1178
|
-
* @
|
|
1178
|
+
* @maxLength 19
|
|
1179
1179
|
*/
|
|
1180
1180
|
titleColor?: string | null;
|
|
1181
1181
|
/**
|
|
1182
1182
|
* Subtitle color as a hexadecimal value.
|
|
1183
|
-
* @
|
|
1183
|
+
* @maxLength 19
|
|
1184
1184
|
*/
|
|
1185
1185
|
subtitleColor?: string | null;
|
|
1186
1186
|
/**
|
|
1187
1187
|
* Link color as a hexadecimal value.
|
|
1188
|
-
* @
|
|
1188
|
+
* @maxLength 19
|
|
1189
1189
|
*/
|
|
1190
1190
|
linkColor?: string | null;
|
|
1191
1191
|
/** Border width in pixels. */
|
|
@@ -1194,7 +1194,7 @@ interface LinkPreviewDataStyles {
|
|
|
1194
1194
|
borderRadius?: number | null;
|
|
1195
1195
|
/**
|
|
1196
1196
|
* Border color as a hexadecimal value.
|
|
1197
|
-
* @
|
|
1197
|
+
* @maxLength 19
|
|
1198
1198
|
*/
|
|
1199
1199
|
borderColor?: string | null;
|
|
1200
1200
|
/** Position of thumbnail. Defaults to `START`. */
|
|
@@ -1345,19 +1345,19 @@ interface BackgroundGradient {
|
|
|
1345
1345
|
angle?: number | null;
|
|
1346
1346
|
/**
|
|
1347
1347
|
* The start color as a hexademical value.
|
|
1348
|
-
* @
|
|
1348
|
+
* @maxLength 19
|
|
1349
1349
|
*/
|
|
1350
1350
|
startColor?: string | null;
|
|
1351
1351
|
/**
|
|
1352
1352
|
* The end color as a hexademical value.
|
|
1353
|
-
* @
|
|
1353
|
+
* @maxLength 19
|
|
1354
1354
|
*/
|
|
1355
1355
|
lastColor?: string | null;
|
|
1356
1356
|
}
|
|
1357
1357
|
interface PollDesignBackground extends PollDesignBackgroundBackgroundOneOf {
|
|
1358
1358
|
/**
|
|
1359
1359
|
* The background color as a hexademical value.
|
|
1360
|
-
* @
|
|
1360
|
+
* @maxLength 19
|
|
1361
1361
|
*/
|
|
1362
1362
|
color?: string | null;
|
|
1363
1363
|
/** An image to use for the background. */
|
|
@@ -1371,7 +1371,7 @@ interface PollDesignBackground extends PollDesignBackgroundBackgroundOneOf {
|
|
|
1371
1371
|
interface PollDesignBackgroundBackgroundOneOf {
|
|
1372
1372
|
/**
|
|
1373
1373
|
* The background color as a hexademical value.
|
|
1374
|
-
* @
|
|
1374
|
+
* @maxLength 19
|
|
1375
1375
|
*/
|
|
1376
1376
|
color?: string | null;
|
|
1377
1377
|
/** An image to use for the background. */
|
|
@@ -1685,32 +1685,32 @@ interface ButtonStyles {
|
|
|
1685
1685
|
borderRadius?: number | null;
|
|
1686
1686
|
/**
|
|
1687
1687
|
* Border color as a hexadecimal value.
|
|
1688
|
-
* @
|
|
1688
|
+
* @maxLength 19
|
|
1689
1689
|
*/
|
|
1690
1690
|
borderColor?: string | null;
|
|
1691
1691
|
/**
|
|
1692
1692
|
* Text color as a hexadecimal value.
|
|
1693
|
-
* @
|
|
1693
|
+
* @maxLength 19
|
|
1694
1694
|
*/
|
|
1695
1695
|
textColor?: string | null;
|
|
1696
1696
|
/**
|
|
1697
1697
|
* Background color as a hexadecimal value.
|
|
1698
|
-
* @
|
|
1698
|
+
* @maxLength 19
|
|
1699
1699
|
*/
|
|
1700
1700
|
backgroundColor?: string | null;
|
|
1701
1701
|
/**
|
|
1702
1702
|
* Border color as a hexadecimal value (hover state).
|
|
1703
|
-
* @
|
|
1703
|
+
* @maxLength 19
|
|
1704
1704
|
*/
|
|
1705
1705
|
borderColorHover?: string | null;
|
|
1706
1706
|
/**
|
|
1707
1707
|
* Text color as a hexadecimal value (hover state).
|
|
1708
|
-
* @
|
|
1708
|
+
* @maxLength 19
|
|
1709
1709
|
*/
|
|
1710
1710
|
textColorHover?: string | null;
|
|
1711
1711
|
/**
|
|
1712
1712
|
* Background color as a hexadecimal value (hover state).
|
|
1713
|
-
* @
|
|
1713
|
+
* @maxLength 19
|
|
1714
1714
|
*/
|
|
1715
1715
|
backgroundColorHover?: string | null;
|
|
1716
1716
|
/** Button size option, one of `SMALL`, `MEDIUM` or `LARGE`. Defaults to `MEDIUM`. */
|
|
@@ -1727,7 +1727,7 @@ interface ImageStyles {
|
|
|
1727
1727
|
resizing?: ResizingWithLiterals;
|
|
1728
1728
|
/**
|
|
1729
1729
|
* Image border color as a hexadecimal value.
|
|
1730
|
-
* @
|
|
1730
|
+
* @maxLength 19
|
|
1731
1731
|
*/
|
|
1732
1732
|
borderColor?: string | null;
|
|
1733
1733
|
/** Image border width in pixels. */
|
|
@@ -1740,17 +1740,17 @@ interface RibbonStyles {
|
|
|
1740
1740
|
ribbonText?: string | null;
|
|
1741
1741
|
/**
|
|
1742
1742
|
* Ribbon background color as a hexadecimal value.
|
|
1743
|
-
* @
|
|
1743
|
+
* @maxLength 19
|
|
1744
1744
|
*/
|
|
1745
1745
|
backgroundColor?: string | null;
|
|
1746
1746
|
/**
|
|
1747
1747
|
* Ribbon text color as a hexadecimal value.
|
|
1748
|
-
* @
|
|
1748
|
+
* @maxLength 19
|
|
1749
1749
|
*/
|
|
1750
1750
|
textColor?: string | null;
|
|
1751
1751
|
/**
|
|
1752
1752
|
* Ribbon border color as a hexadecimal value.
|
|
1753
|
-
* @
|
|
1753
|
+
* @maxLength 19
|
|
1754
1754
|
*/
|
|
1755
1755
|
borderColor?: string | null;
|
|
1756
1756
|
/** Ribbon border width in pixels. */
|
|
@@ -1763,12 +1763,12 @@ interface RibbonStyles {
|
|
|
1763
1763
|
interface CardStyles {
|
|
1764
1764
|
/**
|
|
1765
1765
|
* Card background color as a hexadecimal value.
|
|
1766
|
-
* @
|
|
1766
|
+
* @maxLength 19
|
|
1767
1767
|
*/
|
|
1768
1768
|
backgroundColor?: string | null;
|
|
1769
1769
|
/**
|
|
1770
1770
|
* Card border color as a hexadecimal value.
|
|
1771
|
-
* @
|
|
1771
|
+
* @maxLength 19
|
|
1772
1772
|
*/
|
|
1773
1773
|
borderColor?: string | null;
|
|
1774
1774
|
/** Card border width in pixels. */
|
|
@@ -1783,12 +1783,12 @@ interface CardStyles {
|
|
|
1783
1783
|
titlePriceLayout?: LayoutWithLiterals;
|
|
1784
1784
|
/**
|
|
1785
1785
|
* Title text color as a hexadecimal value.
|
|
1786
|
-
* @
|
|
1786
|
+
* @maxLength 19
|
|
1787
1787
|
*/
|
|
1788
1788
|
titleColor?: string | null;
|
|
1789
1789
|
/**
|
|
1790
1790
|
* Text color as a hexadecimal value.
|
|
1791
|
-
* @
|
|
1791
|
+
* @maxLength 19
|
|
1792
1792
|
*/
|
|
1793
1793
|
textColor?: string | null;
|
|
1794
1794
|
}
|
|
@@ -1970,29 +1970,29 @@ interface CellStyle {
|
|
|
1970
1970
|
verticalAlignment?: VerticalAlignmentWithLiterals;
|
|
1971
1971
|
/**
|
|
1972
1972
|
* Cell background color as a hexadecimal value.
|
|
1973
|
-
* @
|
|
1973
|
+
* @maxLength 19
|
|
1974
1974
|
*/
|
|
1975
1975
|
backgroundColor?: string | null;
|
|
1976
1976
|
}
|
|
1977
1977
|
interface BorderColors {
|
|
1978
1978
|
/**
|
|
1979
1979
|
* Left border color as a hexadecimal value.
|
|
1980
|
-
* @
|
|
1980
|
+
* @maxLength 19
|
|
1981
1981
|
*/
|
|
1982
1982
|
left?: string | null;
|
|
1983
1983
|
/**
|
|
1984
1984
|
* Right border color as a hexadecimal value.
|
|
1985
|
-
* @
|
|
1985
|
+
* @maxLength 19
|
|
1986
1986
|
*/
|
|
1987
1987
|
right?: string | null;
|
|
1988
1988
|
/**
|
|
1989
1989
|
* Top border color as a hexadecimal value.
|
|
1990
|
-
* @
|
|
1990
|
+
* @maxLength 19
|
|
1991
1991
|
*/
|
|
1992
1992
|
top?: string | null;
|
|
1993
1993
|
/**
|
|
1994
1994
|
* Bottom border color as a hexadecimal value.
|
|
1995
|
-
* @
|
|
1995
|
+
* @maxLength 19
|
|
1996
1996
|
*/
|
|
1997
1997
|
bottom?: string | null;
|
|
1998
1998
|
}
|
|
@@ -2067,7 +2067,7 @@ interface CaptionData {
|
|
|
2067
2067
|
interface LayoutData {
|
|
2068
2068
|
/**
|
|
2069
2069
|
* Deprecated: Use `background` instead.
|
|
2070
|
-
* @
|
|
2070
|
+
* @maxLength 19
|
|
2071
2071
|
* @deprecated
|
|
2072
2072
|
*/
|
|
2073
2073
|
backgroundColor?: string | null;
|
|
@@ -2075,7 +2075,7 @@ interface LayoutData {
|
|
|
2075
2075
|
backgroundImage?: LayoutDataBackgroundImage;
|
|
2076
2076
|
/**
|
|
2077
2077
|
* Border color as a hexadecimal value.
|
|
2078
|
-
* @
|
|
2078
|
+
* @maxLength 19
|
|
2079
2079
|
*/
|
|
2080
2080
|
borderColor?: string | null;
|
|
2081
2081
|
/** Border width in pixels. */
|
|
@@ -2084,7 +2084,7 @@ interface LayoutData {
|
|
|
2084
2084
|
borderRadius?: number | null;
|
|
2085
2085
|
/**
|
|
2086
2086
|
* Deprecated: Use `backdrop` instead.
|
|
2087
|
-
* @
|
|
2087
|
+
* @maxLength 19
|
|
2088
2088
|
* @deprecated
|
|
2089
2089
|
*/
|
|
2090
2090
|
backdropColor?: string | null;
|
|
@@ -2222,7 +2222,7 @@ interface LayoutDataBackground {
|
|
|
2222
2222
|
type?: LayoutDataBackgroundTypeWithLiterals;
|
|
2223
2223
|
/**
|
|
2224
2224
|
* Background color as a hexadecimal value.
|
|
2225
|
-
* @
|
|
2225
|
+
* @maxLength 19
|
|
2226
2226
|
*/
|
|
2227
2227
|
color?: string | null;
|
|
2228
2228
|
/** Gradient configuration. */
|
|
@@ -2234,7 +2234,7 @@ interface Backdrop {
|
|
|
2234
2234
|
type?: BackdropTypeWithLiterals;
|
|
2235
2235
|
/**
|
|
2236
2236
|
* Backdrop color as a hexadecimal value.
|
|
2237
|
-
* @
|
|
2237
|
+
* @maxLength 19
|
|
2238
2238
|
*/
|
|
2239
2239
|
color?: string | null;
|
|
2240
2240
|
/** Gradient configuration. */
|
|
@@ -2255,7 +2255,7 @@ interface ShapeData {
|
|
|
2255
2255
|
interface ShapeDataStyles {
|
|
2256
2256
|
/**
|
|
2257
2257
|
* Shape fill color as a hexadecimal value.
|
|
2258
|
-
* @
|
|
2258
|
+
* @maxLength 19
|
|
2259
2259
|
*/
|
|
2260
2260
|
color?: string | null;
|
|
2261
2261
|
/** Map of original color keys to their new color values. */
|
|
@@ -2314,7 +2314,7 @@ interface CardDataBackground {
|
|
|
2314
2314
|
type?: CardDataBackgroundTypeWithLiterals;
|
|
2315
2315
|
/**
|
|
2316
2316
|
* Background color as a hexadecimal value.
|
|
2317
|
-
* @
|
|
2317
|
+
* @maxLength 19
|
|
2318
2318
|
*/
|
|
2319
2319
|
color?: string | null;
|
|
2320
2320
|
/** Gradient configuration. */
|
|
@@ -2341,7 +2341,7 @@ interface TocData {
|
|
|
2341
2341
|
itemSpacing?: number | null;
|
|
2342
2342
|
/**
|
|
2343
2343
|
* Optional override for the text color.
|
|
2344
|
-
* @
|
|
2344
|
+
* @maxLength 19
|
|
2345
2345
|
*/
|
|
2346
2346
|
color?: string | null;
|
|
2347
2347
|
/** Indentation style. Default: NESTED. */
|
|
@@ -2383,7 +2383,10 @@ interface SmartBlockData {
|
|
|
2383
2383
|
orientation?: string | null;
|
|
2384
2384
|
/** Column size controlling cells per row. */
|
|
2385
2385
|
columnSize?: ColumnSizeWithLiterals;
|
|
2386
|
-
/**
|
|
2386
|
+
/**
|
|
2387
|
+
* Border color (for SOLID_JOINED_BOXES variant).
|
|
2388
|
+
* @maxLength 19
|
|
2389
|
+
*/
|
|
2387
2390
|
borderColor?: string | null;
|
|
2388
2391
|
/** Border width in pixels (for SOLID_JOINED_BOXES variant). */
|
|
2389
2392
|
borderWidth?: number | null;
|
|
@@ -2442,7 +2445,10 @@ interface SmartBlockCellData {
|
|
|
2442
2445
|
label?: string | null;
|
|
2443
2446
|
/** Shape file details. */
|
|
2444
2447
|
shape?: V1Media;
|
|
2445
|
-
/**
|
|
2448
|
+
/**
|
|
2449
|
+
* Border color of the cell.
|
|
2450
|
+
* @maxLength 19
|
|
2451
|
+
*/
|
|
2446
2452
|
borderColor?: string | null;
|
|
2447
2453
|
/** Border width in pixels. */
|
|
2448
2454
|
borderWidth?: number | null;
|
|
@@ -2450,11 +2456,20 @@ interface SmartBlockCellData {
|
|
|
2450
2456
|
borderRadius?: number | null;
|
|
2451
2457
|
/** The type of the parent smart block (must match parent). */
|
|
2452
2458
|
type?: SmartBlockDataTypeWithLiterals;
|
|
2453
|
-
/**
|
|
2459
|
+
/**
|
|
2460
|
+
* Accent color for non-background variants (e.g., line, bullet, label color).
|
|
2461
|
+
* @maxLength 19
|
|
2462
|
+
*/
|
|
2454
2463
|
accentColor?: string | null;
|
|
2455
|
-
/**
|
|
2464
|
+
/**
|
|
2465
|
+
* Background color for background-based variants (SOLID_BOXES, SOLID_BOXES_ALTERNATING, SOLID_JOINED_BOXES).
|
|
2466
|
+
* @maxLength 19
|
|
2467
|
+
*/
|
|
2456
2468
|
backgroundColor?: string | null;
|
|
2457
|
-
/**
|
|
2469
|
+
/**
|
|
2470
|
+
* Shape fill color as a hexadecimal value.
|
|
2471
|
+
* @maxLength 19
|
|
2472
|
+
*/
|
|
2458
2473
|
shapeColor?: string | null;
|
|
2459
2474
|
}
|
|
2460
2475
|
interface Metadata {
|