@wix/auto_sdk_blog_posts 1.0.150 → 1.0.151

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.
Files changed (45) hide show
  1. package/build/cjs/index.d.ts +11 -15
  2. package/build/cjs/index.js +11 -16
  3. package/build/cjs/index.js.map +1 -1
  4. package/build/cjs/index.typings.d.ts +82 -79
  5. package/build/cjs/index.typings.js +6 -6
  6. package/build/cjs/index.typings.js.map +1 -1
  7. package/build/cjs/meta.d.ts +65 -50
  8. package/build/cjs/meta.js.map +1 -1
  9. package/build/cjs/schemas.d.ts +82 -84
  10. package/build/cjs/schemas.js +147 -153
  11. package/build/cjs/schemas.js.map +1 -1
  12. package/build/es/index.d.mts +11 -15
  13. package/build/es/index.mjs +11 -16
  14. package/build/es/index.mjs.map +1 -1
  15. package/build/es/index.typings.d.mts +82 -79
  16. package/build/es/index.typings.mjs +6 -6
  17. package/build/es/index.typings.mjs.map +1 -1
  18. package/build/es/meta.d.mts +65 -50
  19. package/build/es/meta.mjs.map +1 -1
  20. package/build/es/schemas.d.mts +82 -84
  21. package/build/es/schemas.mjs +147 -153
  22. package/build/es/schemas.mjs.map +1 -1
  23. package/build/internal/cjs/index.d.ts +11 -15
  24. package/build/internal/cjs/index.js +11 -16
  25. package/build/internal/cjs/index.js.map +1 -1
  26. package/build/internal/cjs/index.typings.d.ts +82 -79
  27. package/build/internal/cjs/index.typings.js +6 -6
  28. package/build/internal/cjs/index.typings.js.map +1 -1
  29. package/build/internal/cjs/meta.d.ts +65 -50
  30. package/build/internal/cjs/meta.js.map +1 -1
  31. package/build/internal/cjs/schemas.d.ts +82 -84
  32. package/build/internal/cjs/schemas.js +147 -153
  33. package/build/internal/cjs/schemas.js.map +1 -1
  34. package/build/internal/es/index.d.mts +11 -15
  35. package/build/internal/es/index.mjs +11 -16
  36. package/build/internal/es/index.mjs.map +1 -1
  37. package/build/internal/es/index.typings.d.mts +82 -79
  38. package/build/internal/es/index.typings.mjs +6 -6
  39. package/build/internal/es/index.typings.mjs.map +1 -1
  40. package/build/internal/es/meta.d.mts +65 -50
  41. package/build/internal/es/meta.mjs.map +1 -1
  42. package/build/internal/es/schemas.d.mts +82 -84
  43. package/build/internal/es/schemas.mjs +147 -153
  44. package/build/internal/es/schemas.mjs.map +1 -1
  45. package/package.json +2 -2
@@ -537,7 +537,7 @@ type GradientTypeWithLiterals = GradientType | 'LINEAR' | 'RADIAL';
537
537
  interface Stop {
538
538
  /**
539
539
  * Stop color as hex value.
540
- * @format COLOR_HEX
540
+ * @maxLength 19
541
541
  */
542
542
  color?: string | null;
543
543
  /** Stop position (0-1). */
@@ -578,7 +578,7 @@ interface Background {
578
578
  type?: BackgroundTypeWithLiterals;
579
579
  /**
580
580
  * Background color as a hexadecimal value.
581
- * @format COLOR_HEX
581
+ * @maxLength 19
582
582
  */
583
583
  color?: string | null;
584
584
  /** Gradient configuration. */
@@ -685,33 +685,33 @@ interface Styles {
685
685
  borderRadius?: number | null;
686
686
  /**
687
687
  * Border color as a hexadecimal value.
688
- * @format COLOR_HEX
688
+ * @maxLength 19
689
689
  */
690
690
  borderColor?: string | null;
691
691
  /**
692
692
  * Border color as a hexadecimal value (hover state).
693
- * @format COLOR_HEX
693
+ * @maxLength 19
694
694
  */
695
695
  borderColorHover?: string | null;
696
696
  /**
697
697
  * Text color as a hexadecimal value.
698
- * @format COLOR_HEX
698
+ * @maxLength 19
699
699
  */
700
700
  textColor?: string | null;
701
701
  /**
702
702
  * Text color as a hexadecimal value (hover state).
703
- * @format COLOR_HEX
703
+ * @maxLength 19
704
704
  */
705
705
  textColorHover?: string | null;
706
706
  /**
707
707
  * Deprecated: Use `background` instead.
708
- * @format COLOR_HEX
708
+ * @maxLength 19
709
709
  * @deprecated
710
710
  */
711
711
  backgroundColor?: string | null;
712
712
  /**
713
713
  * Deprecated: Use `backgroundHover` instead.
714
- * @format COLOR_HEX
714
+ * @maxLength 19
715
715
  * @deprecated
716
716
  */
717
717
  backgroundColorHover?: string | null;
@@ -1163,7 +1163,7 @@ interface StylesBorder {
1163
1163
  width?: number | null;
1164
1164
  /**
1165
1165
  * Border color as a hexadecimal value.
1166
- * @format COLOR_HEX
1166
+ * @maxLength 19
1167
1167
  */
1168
1168
  color?: string | null;
1169
1169
  /** Border radius in pixels. */
@@ -1204,22 +1204,22 @@ type StylesPositionWithLiterals = StylesPosition | 'START' | 'END' | 'TOP' | 'HI
1204
1204
  interface LinkPreviewDataStyles {
1205
1205
  /**
1206
1206
  * Background color as a hexadecimal value.
1207
- * @format COLOR_HEX
1207
+ * @maxLength 19
1208
1208
  */
1209
1209
  backgroundColor?: string | null;
1210
1210
  /**
1211
1211
  * Title color as a hexadecimal value.
1212
- * @format COLOR_HEX
1212
+ * @maxLength 19
1213
1213
  */
1214
1214
  titleColor?: string | null;
1215
1215
  /**
1216
1216
  * Subtitle color as a hexadecimal value.
1217
- * @format COLOR_HEX
1217
+ * @maxLength 19
1218
1218
  */
1219
1219
  subtitleColor?: string | null;
1220
1220
  /**
1221
1221
  * Link color as a hexadecimal value.
1222
- * @format COLOR_HEX
1222
+ * @maxLength 19
1223
1223
  */
1224
1224
  linkColor?: string | null;
1225
1225
  /** Border width in pixels. */
@@ -1228,7 +1228,7 @@ interface LinkPreviewDataStyles {
1228
1228
  borderRadius?: number | null;
1229
1229
  /**
1230
1230
  * Border color as a hexadecimal value.
1231
- * @format COLOR_HEX
1231
+ * @maxLength 19
1232
1232
  */
1233
1233
  borderColor?: string | null;
1234
1234
  /** Position of thumbnail. Defaults to `START`. */
@@ -1379,19 +1379,19 @@ interface BackgroundGradient {
1379
1379
  angle?: number | null;
1380
1380
  /**
1381
1381
  * The start color as a hexademical value.
1382
- * @format COLOR_HEX
1382
+ * @maxLength 19
1383
1383
  */
1384
1384
  startColor?: string | null;
1385
1385
  /**
1386
1386
  * The end color as a hexademical value.
1387
- * @format COLOR_HEX
1387
+ * @maxLength 19
1388
1388
  */
1389
1389
  lastColor?: string | null;
1390
1390
  }
1391
1391
  interface PollDesignBackground extends PollDesignBackgroundBackgroundOneOf {
1392
1392
  /**
1393
1393
  * The background color as a hexademical value.
1394
- * @format COLOR_HEX
1394
+ * @maxLength 19
1395
1395
  */
1396
1396
  color?: string | null;
1397
1397
  /** An image to use for the background. */
@@ -1405,7 +1405,7 @@ interface PollDesignBackground extends PollDesignBackgroundBackgroundOneOf {
1405
1405
  interface PollDesignBackgroundBackgroundOneOf {
1406
1406
  /**
1407
1407
  * The background color as a hexademical value.
1408
- * @format COLOR_HEX
1408
+ * @maxLength 19
1409
1409
  */
1410
1410
  color?: string | null;
1411
1411
  /** An image to use for the background. */
@@ -1719,32 +1719,32 @@ interface ButtonStyles {
1719
1719
  borderRadius?: number | null;
1720
1720
  /**
1721
1721
  * Border color as a hexadecimal value.
1722
- * @format COLOR_HEX
1722
+ * @maxLength 19
1723
1723
  */
1724
1724
  borderColor?: string | null;
1725
1725
  /**
1726
1726
  * Text color as a hexadecimal value.
1727
- * @format COLOR_HEX
1727
+ * @maxLength 19
1728
1728
  */
1729
1729
  textColor?: string | null;
1730
1730
  /**
1731
1731
  * Background color as a hexadecimal value.
1732
- * @format COLOR_HEX
1732
+ * @maxLength 19
1733
1733
  */
1734
1734
  backgroundColor?: string | null;
1735
1735
  /**
1736
1736
  * Border color as a hexadecimal value (hover state).
1737
- * @format COLOR_HEX
1737
+ * @maxLength 19
1738
1738
  */
1739
1739
  borderColorHover?: string | null;
1740
1740
  /**
1741
1741
  * Text color as a hexadecimal value (hover state).
1742
- * @format COLOR_HEX
1742
+ * @maxLength 19
1743
1743
  */
1744
1744
  textColorHover?: string | null;
1745
1745
  /**
1746
1746
  * Background color as a hexadecimal value (hover state).
1747
- * @format COLOR_HEX
1747
+ * @maxLength 19
1748
1748
  */
1749
1749
  backgroundColorHover?: string | null;
1750
1750
  /** Button size option, one of `SMALL`, `MEDIUM` or `LARGE`. Defaults to `MEDIUM`. */
@@ -1761,7 +1761,7 @@ interface ImageStyles {
1761
1761
  resizing?: ResizingWithLiterals;
1762
1762
  /**
1763
1763
  * Image border color as a hexadecimal value.
1764
- * @format COLOR_HEX
1764
+ * @maxLength 19
1765
1765
  */
1766
1766
  borderColor?: string | null;
1767
1767
  /** Image border width in pixels. */
@@ -1774,17 +1774,17 @@ interface RibbonStyles {
1774
1774
  ribbonText?: string | null;
1775
1775
  /**
1776
1776
  * Ribbon background color as a hexadecimal value.
1777
- * @format COLOR_HEX
1777
+ * @maxLength 19
1778
1778
  */
1779
1779
  backgroundColor?: string | null;
1780
1780
  /**
1781
1781
  * Ribbon text color as a hexadecimal value.
1782
- * @format COLOR_HEX
1782
+ * @maxLength 19
1783
1783
  */
1784
1784
  textColor?: string | null;
1785
1785
  /**
1786
1786
  * Ribbon border color as a hexadecimal value.
1787
- * @format COLOR_HEX
1787
+ * @maxLength 19
1788
1788
  */
1789
1789
  borderColor?: string | null;
1790
1790
  /** Ribbon border width in pixels. */
@@ -1797,12 +1797,12 @@ interface RibbonStyles {
1797
1797
  interface CardStyles {
1798
1798
  /**
1799
1799
  * Card background color as a hexadecimal value.
1800
- * @format COLOR_HEX
1800
+ * @maxLength 19
1801
1801
  */
1802
1802
  backgroundColor?: string | null;
1803
1803
  /**
1804
1804
  * Card border color as a hexadecimal value.
1805
- * @format COLOR_HEX
1805
+ * @maxLength 19
1806
1806
  */
1807
1807
  borderColor?: string | null;
1808
1808
  /** Card border width in pixels. */
@@ -1817,12 +1817,12 @@ interface CardStyles {
1817
1817
  titlePriceLayout?: LayoutWithLiterals;
1818
1818
  /**
1819
1819
  * Title text color as a hexadecimal value.
1820
- * @format COLOR_HEX
1820
+ * @maxLength 19
1821
1821
  */
1822
1822
  titleColor?: string | null;
1823
1823
  /**
1824
1824
  * Text color as a hexadecimal value.
1825
- * @format COLOR_HEX
1825
+ * @maxLength 19
1826
1826
  */
1827
1827
  textColor?: string | null;
1828
1828
  }
@@ -2004,29 +2004,29 @@ interface CellStyle {
2004
2004
  verticalAlignment?: VerticalAlignmentWithLiterals;
2005
2005
  /**
2006
2006
  * Cell background color as a hexadecimal value.
2007
- * @format COLOR_HEX
2007
+ * @maxLength 19
2008
2008
  */
2009
2009
  backgroundColor?: string | null;
2010
2010
  }
2011
2011
  interface BorderColors {
2012
2012
  /**
2013
2013
  * Left border color as a hexadecimal value.
2014
- * @format COLOR_HEX
2014
+ * @maxLength 19
2015
2015
  */
2016
2016
  left?: string | null;
2017
2017
  /**
2018
2018
  * Right border color as a hexadecimal value.
2019
- * @format COLOR_HEX
2019
+ * @maxLength 19
2020
2020
  */
2021
2021
  right?: string | null;
2022
2022
  /**
2023
2023
  * Top border color as a hexadecimal value.
2024
- * @format COLOR_HEX
2024
+ * @maxLength 19
2025
2025
  */
2026
2026
  top?: string | null;
2027
2027
  /**
2028
2028
  * Bottom border color as a hexadecimal value.
2029
- * @format COLOR_HEX
2029
+ * @maxLength 19
2030
2030
  */
2031
2031
  bottom?: string | null;
2032
2032
  }
@@ -2101,7 +2101,7 @@ interface CaptionData {
2101
2101
  interface LayoutData {
2102
2102
  /**
2103
2103
  * Deprecated: Use `background` instead.
2104
- * @format COLOR_HEX
2104
+ * @maxLength 19
2105
2105
  * @deprecated
2106
2106
  */
2107
2107
  backgroundColor?: string | null;
@@ -2109,7 +2109,7 @@ interface LayoutData {
2109
2109
  backgroundImage?: LayoutDataBackgroundImage;
2110
2110
  /**
2111
2111
  * Border color as a hexadecimal value.
2112
- * @format COLOR_HEX
2112
+ * @maxLength 19
2113
2113
  */
2114
2114
  borderColor?: string | null;
2115
2115
  /** Border width in pixels. */
@@ -2118,7 +2118,7 @@ interface LayoutData {
2118
2118
  borderRadius?: number | null;
2119
2119
  /**
2120
2120
  * Deprecated: Use `backdrop` instead.
2121
- * @format COLOR_HEX
2121
+ * @maxLength 19
2122
2122
  * @deprecated
2123
2123
  */
2124
2124
  backdropColor?: string | null;
@@ -2256,7 +2256,7 @@ interface LayoutDataBackground {
2256
2256
  type?: LayoutDataBackgroundTypeWithLiterals;
2257
2257
  /**
2258
2258
  * Background color as a hexadecimal value.
2259
- * @format COLOR_HEX
2259
+ * @maxLength 19
2260
2260
  */
2261
2261
  color?: string | null;
2262
2262
  /** Gradient configuration. */
@@ -2268,7 +2268,7 @@ interface Backdrop {
2268
2268
  type?: BackdropTypeWithLiterals;
2269
2269
  /**
2270
2270
  * Backdrop color as a hexadecimal value.
2271
- * @format COLOR_HEX
2271
+ * @maxLength 19
2272
2272
  */
2273
2273
  color?: string | null;
2274
2274
  /** Gradient configuration. */
@@ -2289,7 +2289,7 @@ interface ShapeData {
2289
2289
  interface ShapeDataStyles {
2290
2290
  /**
2291
2291
  * Shape fill color as a hexadecimal value.
2292
- * @format COLOR_HEX
2292
+ * @maxLength 19
2293
2293
  */
2294
2294
  color?: string | null;
2295
2295
  /** Map of original color keys to their new color values. */
@@ -2348,7 +2348,7 @@ interface CardDataBackground {
2348
2348
  type?: CardDataBackgroundTypeWithLiterals;
2349
2349
  /**
2350
2350
  * Background color as a hexadecimal value.
2351
- * @format COLOR_HEX
2351
+ * @maxLength 19
2352
2352
  */
2353
2353
  color?: string | null;
2354
2354
  /** Gradient configuration. */
@@ -2375,7 +2375,7 @@ interface TocData {
2375
2375
  itemSpacing?: number | null;
2376
2376
  /**
2377
2377
  * Optional override for the text color.
2378
- * @format COLOR_HEX
2378
+ * @maxLength 19
2379
2379
  */
2380
2380
  color?: string | null;
2381
2381
  /** Indentation style. Default: NESTED. */
@@ -2417,7 +2417,10 @@ interface SmartBlockData {
2417
2417
  orientation?: string | null;
2418
2418
  /** Column size controlling cells per row. */
2419
2419
  columnSize?: ColumnSizeWithLiterals;
2420
- /** Border color (for SOLID_JOINED_BOXES variant). */
2420
+ /**
2421
+ * Border color (for SOLID_JOINED_BOXES variant).
2422
+ * @maxLength 19
2423
+ */
2421
2424
  borderColor?: string | null;
2422
2425
  /** Border width in pixels (for SOLID_JOINED_BOXES variant). */
2423
2426
  borderWidth?: number | null;
@@ -2476,7 +2479,10 @@ interface SmartBlockCellData {
2476
2479
  label?: string | null;
2477
2480
  /** Shape file details. */
2478
2481
  shape?: V1Media;
2479
- /** Border color of the cell. */
2482
+ /**
2483
+ * Border color of the cell.
2484
+ * @maxLength 19
2485
+ */
2480
2486
  borderColor?: string | null;
2481
2487
  /** Border width in pixels. */
2482
2488
  borderWidth?: number | null;
@@ -2484,11 +2490,20 @@ interface SmartBlockCellData {
2484
2490
  borderRadius?: number | null;
2485
2491
  /** The type of the parent smart block (must match parent). */
2486
2492
  type?: SmartBlockDataTypeWithLiterals;
2487
- /** Accent color for non-background variants (e.g., line, bullet, label color). */
2493
+ /**
2494
+ * Accent color for non-background variants (e.g., line, bullet, label color).
2495
+ * @maxLength 19
2496
+ */
2488
2497
  accentColor?: string | null;
2489
- /** Background color for background-based variants (SOLID_BOXES, SOLID_BOXES_ALTERNATING, SOLID_JOINED_BOXES). */
2498
+ /**
2499
+ * Background color for background-based variants (SOLID_BOXES, SOLID_BOXES_ALTERNATING, SOLID_JOINED_BOXES).
2500
+ * @maxLength 19
2501
+ */
2490
2502
  backgroundColor?: string | null;
2491
- /** Shape fill color as a hexadecimal value. */
2503
+ /**
2504
+ * Shape fill color as a hexadecimal value.
2505
+ * @maxLength 19
2506
+ */
2492
2507
  shapeColor?: string | null;
2493
2508
  }
2494
2509
  interface Metadata {