@wix/auto_sdk_quick-pages_contents 1.0.18 → 1.0.20

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 (37) hide show
  1. package/build/cjs/index.d.ts +1 -1
  2. package/build/cjs/index.js +52 -6
  3. package/build/cjs/index.js.map +1 -1
  4. package/build/cjs/index.typings.d.ts +160 -49
  5. package/build/cjs/index.typings.js +52 -6
  6. package/build/cjs/index.typings.js.map +1 -1
  7. package/build/cjs/meta.d.ts +159 -48
  8. package/build/cjs/meta.js +52 -6
  9. package/build/cjs/meta.js.map +1 -1
  10. package/build/es/index.d.mts +1 -1
  11. package/build/es/index.mjs +50 -6
  12. package/build/es/index.mjs.map +1 -1
  13. package/build/es/index.typings.d.mts +160 -49
  14. package/build/es/index.typings.mjs +50 -6
  15. package/build/es/index.typings.mjs.map +1 -1
  16. package/build/es/meta.d.mts +159 -48
  17. package/build/es/meta.mjs +50 -6
  18. package/build/es/meta.mjs.map +1 -1
  19. package/build/internal/cjs/index.d.ts +1 -1
  20. package/build/internal/cjs/index.js +52 -6
  21. package/build/internal/cjs/index.js.map +1 -1
  22. package/build/internal/cjs/index.typings.d.ts +160 -49
  23. package/build/internal/cjs/index.typings.js +52 -6
  24. package/build/internal/cjs/index.typings.js.map +1 -1
  25. package/build/internal/cjs/meta.d.ts +159 -48
  26. package/build/internal/cjs/meta.js +52 -6
  27. package/build/internal/cjs/meta.js.map +1 -1
  28. package/build/internal/es/index.d.mts +1 -1
  29. package/build/internal/es/index.mjs +50 -6
  30. package/build/internal/es/index.mjs.map +1 -1
  31. package/build/internal/es/index.typings.d.mts +160 -49
  32. package/build/internal/es/index.typings.mjs +50 -6
  33. package/build/internal/es/index.typings.mjs.map +1 -1
  34. package/build/internal/es/meta.d.mts +159 -48
  35. package/build/internal/es/meta.mjs +50 -6
  36. package/build/internal/es/meta.mjs.map +1 -1
  37. package/package.json +4 -4
@@ -581,6 +581,10 @@ interface Node extends NodeDataOneOf {
581
581
  cardData?: CardData;
582
582
  /** Data for a table of contents node. */
583
583
  tocData?: TocData;
584
+ /** Data for a smart block node. */
585
+ smartBlockData?: SmartBlockData;
586
+ /** Data for a smart block cell node. */
587
+ smartBlockCellData?: SmartBlockCellData;
584
588
  /** Node type. Use `APP_EMBED` for nodes that embed content from other Wix apps. Use `EMBED` to embed content in [oEmbed](https://oembed.com/) format. */
585
589
  type?: NodeTypeWithLiterals;
586
590
  /** Node ID. */
@@ -654,6 +658,10 @@ interface NodeDataOneOf {
654
658
  cardData?: CardData;
655
659
  /** Data for a table of contents node. */
656
660
  tocData?: TocData;
661
+ /** Data for a smart block node. */
662
+ smartBlockData?: SmartBlockData;
663
+ /** Data for a smart block cell node. */
664
+ smartBlockCellData?: SmartBlockCellData;
657
665
  }
658
666
  declare enum NodeType {
659
667
  PARAGRAPH = "PARAGRAPH",
@@ -692,10 +700,12 @@ declare enum NodeType {
692
700
  LAYOUT_CELL = "LAYOUT_CELL",
693
701
  SHAPE = "SHAPE",
694
702
  CARD = "CARD",
695
- TOC = "TOC"
703
+ TOC = "TOC",
704
+ SMART_BLOCK = "SMART_BLOCK",
705
+ SMART_BLOCK_CELL = "SMART_BLOCK_CELL"
696
706
  }
697
707
  /** @enumType */
698
- type NodeTypeWithLiterals = NodeType | 'PARAGRAPH' | 'TEXT' | 'HEADING' | 'BULLETED_LIST' | 'ORDERED_LIST' | 'LIST_ITEM' | 'BLOCKQUOTE' | 'CODE_BLOCK' | 'VIDEO' | 'DIVIDER' | 'FILE' | 'GALLERY' | 'GIF' | 'HTML' | 'IMAGE' | 'LINK_PREVIEW' | 'MAP' | 'POLL' | 'APP_EMBED' | 'BUTTON' | 'COLLAPSIBLE_LIST' | 'TABLE' | 'EMBED' | 'COLLAPSIBLE_ITEM' | 'COLLAPSIBLE_ITEM_TITLE' | 'COLLAPSIBLE_ITEM_BODY' | 'TABLE_CELL' | 'TABLE_ROW' | 'EXTERNAL' | 'AUDIO' | 'CAPTION' | 'LAYOUT' | 'LAYOUT_CELL' | 'SHAPE' | 'CARD' | 'TOC';
708
+ type NodeTypeWithLiterals = NodeType | 'PARAGRAPH' | 'TEXT' | 'HEADING' | 'BULLETED_LIST' | 'ORDERED_LIST' | 'LIST_ITEM' | 'BLOCKQUOTE' | 'CODE_BLOCK' | 'VIDEO' | 'DIVIDER' | 'FILE' | 'GALLERY' | 'GIF' | 'HTML' | 'IMAGE' | 'LINK_PREVIEW' | 'MAP' | 'POLL' | 'APP_EMBED' | 'BUTTON' | 'COLLAPSIBLE_LIST' | 'TABLE' | 'EMBED' | 'COLLAPSIBLE_ITEM' | 'COLLAPSIBLE_ITEM_TITLE' | 'COLLAPSIBLE_ITEM_BODY' | 'TABLE_CELL' | 'TABLE_ROW' | 'EXTERNAL' | 'AUDIO' | 'CAPTION' | 'LAYOUT' | 'LAYOUT_CELL' | 'SHAPE' | 'CARD' | 'TOC' | 'SMART_BLOCK' | 'SMART_BLOCK_CELL';
699
709
  interface NodeStyle {
700
710
  /** The top padding value in pixels. */
701
711
  paddingTop?: string | null;
@@ -759,7 +769,7 @@ type V1GradientTypeWithLiterals = V1GradientType | 'LINEAR' | 'RADIAL';
759
769
  interface Stop {
760
770
  /**
761
771
  * Stop color as hex value.
762
- * @format COLOR_HEX
772
+ * @maxLength 19
763
773
  */
764
774
  color?: string | null;
765
775
  /** Stop position (0-1). */
@@ -800,7 +810,7 @@ interface StylesBackground {
800
810
  type?: StylesBackgroundTypeWithLiterals;
801
811
  /**
802
812
  * Background color as a hexadecimal value.
803
- * @format COLOR_HEX
813
+ * @maxLength 19
804
814
  */
805
815
  color?: string | null;
806
816
  /** Gradient configuration. */
@@ -907,33 +917,33 @@ interface Styles {
907
917
  borderRadius?: number | null;
908
918
  /**
909
919
  * Border color as a hexadecimal value.
910
- * @format COLOR_HEX
920
+ * @maxLength 19
911
921
  */
912
922
  borderColor?: string | null;
913
923
  /**
914
924
  * Border color as a hexadecimal value (hover state).
915
- * @format COLOR_HEX
925
+ * @maxLength 19
916
926
  */
917
927
  borderColorHover?: string | null;
918
928
  /**
919
929
  * Text color as a hexadecimal value.
920
- * @format COLOR_HEX
930
+ * @maxLength 19
921
931
  */
922
932
  textColor?: string | null;
923
933
  /**
924
934
  * Text color as a hexadecimal value (hover state).
925
- * @format COLOR_HEX
935
+ * @maxLength 19
926
936
  */
927
937
  textColorHover?: string | null;
928
938
  /**
929
939
  * Deprecated: Use `background` instead.
930
- * @format COLOR_HEX
940
+ * @maxLength 19
931
941
  * @deprecated
932
942
  */
933
943
  backgroundColor?: string | null;
934
944
  /**
935
945
  * Deprecated: Use `backgroundHover` instead.
936
- * @format COLOR_HEX
946
+ * @maxLength 19
937
947
  * @deprecated
938
948
  */
939
949
  backgroundColorHover?: string | null;
@@ -1313,6 +1323,8 @@ interface HeadingData {
1313
1323
  textStyle?: V1TextStyle;
1314
1324
  /** Indentation level from 1-4. */
1315
1325
  indentation?: number | null;
1326
+ /** Rendered heading level for SEO/accessibility, overrides the HTML tag when set. */
1327
+ renderedLevel?: number | null;
1316
1328
  }
1317
1329
  interface HTMLData extends HTMLDataDataOneOf {
1318
1330
  /** The URL for the HTML code for the node. */
@@ -1383,7 +1395,7 @@ interface ImageDataStylesBorder {
1383
1395
  width?: number | null;
1384
1396
  /**
1385
1397
  * Border color as a hexadecimal value.
1386
- * @format COLOR_HEX
1398
+ * @maxLength 19
1387
1399
  */
1388
1400
  color?: string | null;
1389
1401
  /** Border radius in pixels. */
@@ -1424,22 +1436,22 @@ type StylesPositionWithLiterals = StylesPosition | 'START' | 'END' | 'TOP' | 'HI
1424
1436
  interface LinkPreviewDataStyles {
1425
1437
  /**
1426
1438
  * Background color as a hexadecimal value.
1427
- * @format COLOR_HEX
1439
+ * @maxLength 19
1428
1440
  */
1429
1441
  backgroundColor?: string | null;
1430
1442
  /**
1431
1443
  * Title color as a hexadecimal value.
1432
- * @format COLOR_HEX
1444
+ * @maxLength 19
1433
1445
  */
1434
1446
  titleColor?: string | null;
1435
1447
  /**
1436
1448
  * Subtitle color as a hexadecimal value.
1437
- * @format COLOR_HEX
1449
+ * @maxLength 19
1438
1450
  */
1439
1451
  subtitleColor?: string | null;
1440
1452
  /**
1441
1453
  * Link color as a hexadecimal value.
1442
- * @format COLOR_HEX
1454
+ * @maxLength 19
1443
1455
  */
1444
1456
  linkColor?: string | null;
1445
1457
  /** Border width in pixels. */
@@ -1448,7 +1460,7 @@ interface LinkPreviewDataStyles {
1448
1460
  borderRadius?: number | null;
1449
1461
  /**
1450
1462
  * Border color as a hexadecimal value.
1451
- * @format COLOR_HEX
1463
+ * @maxLength 19
1452
1464
  */
1453
1465
  borderColor?: string | null;
1454
1466
  /** Position of thumbnail. Defaults to `START`. */
@@ -1599,19 +1611,19 @@ interface BackgroundGradient {
1599
1611
  angle?: number | null;
1600
1612
  /**
1601
1613
  * The start color as a hexademical value.
1602
- * @format COLOR_HEX
1614
+ * @maxLength 19
1603
1615
  */
1604
1616
  startColor?: string | null;
1605
1617
  /**
1606
1618
  * The end color as a hexademical value.
1607
- * @format COLOR_HEX
1619
+ * @maxLength 19
1608
1620
  */
1609
1621
  lastColor?: string | null;
1610
1622
  }
1611
1623
  interface PollDesignBackground extends PollDesignBackgroundBackgroundOneOf {
1612
1624
  /**
1613
1625
  * The background color as a hexademical value.
1614
- * @format COLOR_HEX
1626
+ * @maxLength 19
1615
1627
  */
1616
1628
  color?: string | null;
1617
1629
  /** An image to use for the background. */
@@ -1625,7 +1637,7 @@ interface PollDesignBackground extends PollDesignBackgroundBackgroundOneOf {
1625
1637
  interface PollDesignBackgroundBackgroundOneOf {
1626
1638
  /**
1627
1639
  * The background color as a hexademical value.
1628
- * @format COLOR_HEX
1640
+ * @maxLength 19
1629
1641
  */
1630
1642
  color?: string | null;
1631
1643
  /** An image to use for the background. */
@@ -1939,32 +1951,32 @@ interface ButtonStyles {
1939
1951
  borderRadius?: number | null;
1940
1952
  /**
1941
1953
  * Border color as a hexadecimal value.
1942
- * @format COLOR_HEX
1954
+ * @maxLength 19
1943
1955
  */
1944
1956
  borderColor?: string | null;
1945
1957
  /**
1946
1958
  * Text color as a hexadecimal value.
1947
- * @format COLOR_HEX
1959
+ * @maxLength 19
1948
1960
  */
1949
1961
  textColor?: string | null;
1950
1962
  /**
1951
1963
  * Background color as a hexadecimal value.
1952
- * @format COLOR_HEX
1964
+ * @maxLength 19
1953
1965
  */
1954
1966
  backgroundColor?: string | null;
1955
1967
  /**
1956
1968
  * Border color as a hexadecimal value (hover state).
1957
- * @format COLOR_HEX
1969
+ * @maxLength 19
1958
1970
  */
1959
1971
  borderColorHover?: string | null;
1960
1972
  /**
1961
1973
  * Text color as a hexadecimal value (hover state).
1962
- * @format COLOR_HEX
1974
+ * @maxLength 19
1963
1975
  */
1964
1976
  textColorHover?: string | null;
1965
1977
  /**
1966
1978
  * Background color as a hexadecimal value (hover state).
1967
- * @format COLOR_HEX
1979
+ * @maxLength 19
1968
1980
  */
1969
1981
  backgroundColorHover?: string | null;
1970
1982
  /** Button size option, one of `SMALL`, `MEDIUM` or `LARGE`. Defaults to `MEDIUM`. */
@@ -1981,7 +1993,7 @@ interface ImageStyles {
1981
1993
  resizing?: ResizingWithLiterals;
1982
1994
  /**
1983
1995
  * Image border color as a hexadecimal value.
1984
- * @format COLOR_HEX
1996
+ * @maxLength 19
1985
1997
  */
1986
1998
  borderColor?: string | null;
1987
1999
  /** Image border width in pixels. */
@@ -1994,17 +2006,17 @@ interface RibbonStyles {
1994
2006
  ribbonText?: string | null;
1995
2007
  /**
1996
2008
  * Ribbon background color as a hexadecimal value.
1997
- * @format COLOR_HEX
2009
+ * @maxLength 19
1998
2010
  */
1999
2011
  backgroundColor?: string | null;
2000
2012
  /**
2001
2013
  * Ribbon text color as a hexadecimal value.
2002
- * @format COLOR_HEX
2014
+ * @maxLength 19
2003
2015
  */
2004
2016
  textColor?: string | null;
2005
2017
  /**
2006
2018
  * Ribbon border color as a hexadecimal value.
2007
- * @format COLOR_HEX
2019
+ * @maxLength 19
2008
2020
  */
2009
2021
  borderColor?: string | null;
2010
2022
  /** Ribbon border width in pixels. */
@@ -2017,12 +2029,12 @@ interface RibbonStyles {
2017
2029
  interface CardStyles {
2018
2030
  /**
2019
2031
  * Card background color as a hexadecimal value.
2020
- * @format COLOR_HEX
2032
+ * @maxLength 19
2021
2033
  */
2022
2034
  backgroundColor?: string | null;
2023
2035
  /**
2024
2036
  * Card border color as a hexadecimal value.
2025
- * @format COLOR_HEX
2037
+ * @maxLength 19
2026
2038
  */
2027
2039
  borderColor?: string | null;
2028
2040
  /** Card border width in pixels. */
@@ -2037,12 +2049,12 @@ interface CardStyles {
2037
2049
  titlePriceLayout?: LayoutWithLiterals;
2038
2050
  /**
2039
2051
  * Title text color as a hexadecimal value.
2040
- * @format COLOR_HEX
2052
+ * @maxLength 19
2041
2053
  */
2042
2054
  titleColor?: string | null;
2043
2055
  /**
2044
2056
  * Text color as a hexadecimal value.
2045
- * @format COLOR_HEX
2057
+ * @maxLength 19
2046
2058
  */
2047
2059
  textColor?: string | null;
2048
2060
  }
@@ -2186,6 +2198,8 @@ interface TableData {
2186
2198
  * @maxSize 4
2187
2199
  */
2188
2200
  cellPadding?: number[];
2201
+ /** Table's alternative text. */
2202
+ altText?: string | null;
2189
2203
  }
2190
2204
  interface Dimensions {
2191
2205
  /** An array representing relative width of each column in relation to the other columns. */
@@ -2222,29 +2236,29 @@ interface CellStyle {
2222
2236
  verticalAlignment?: VerticalAlignmentWithLiterals;
2223
2237
  /**
2224
2238
  * Cell background color as a hexadecimal value.
2225
- * @format COLOR_HEX
2239
+ * @maxLength 19
2226
2240
  */
2227
2241
  backgroundColor?: string | null;
2228
2242
  }
2229
2243
  interface BorderColors {
2230
2244
  /**
2231
2245
  * Left border color as a hexadecimal value.
2232
- * @format COLOR_HEX
2246
+ * @maxLength 19
2233
2247
  */
2234
2248
  left?: string | null;
2235
2249
  /**
2236
2250
  * Right border color as a hexadecimal value.
2237
- * @format COLOR_HEX
2251
+ * @maxLength 19
2238
2252
  */
2239
2253
  right?: string | null;
2240
2254
  /**
2241
2255
  * Top border color as a hexadecimal value.
2242
- * @format COLOR_HEX
2256
+ * @maxLength 19
2243
2257
  */
2244
2258
  top?: string | null;
2245
2259
  /**
2246
2260
  * Bottom border color as a hexadecimal value.
2247
- * @format COLOR_HEX
2261
+ * @maxLength 19
2248
2262
  */
2249
2263
  bottom?: string | null;
2250
2264
  }
@@ -2319,7 +2333,7 @@ interface CaptionData {
2319
2333
  interface LayoutData {
2320
2334
  /**
2321
2335
  * Deprecated: Use `background` instead.
2322
- * @format COLOR_HEX
2336
+ * @maxLength 19
2323
2337
  * @deprecated
2324
2338
  */
2325
2339
  backgroundColor?: string | null;
@@ -2327,7 +2341,7 @@ interface LayoutData {
2327
2341
  backgroundImage?: LayoutDataBackgroundImage;
2328
2342
  /**
2329
2343
  * Border color as a hexadecimal value.
2330
- * @format COLOR_HEX
2344
+ * @maxLength 19
2331
2345
  */
2332
2346
  borderColor?: string | null;
2333
2347
  /** Border width in pixels. */
@@ -2336,7 +2350,7 @@ interface LayoutData {
2336
2350
  borderRadius?: number | null;
2337
2351
  /**
2338
2352
  * Deprecated: Use `backdrop` instead.
2339
- * @format COLOR_HEX
2353
+ * @maxLength 19
2340
2354
  * @deprecated
2341
2355
  */
2342
2356
  backdropColor?: string | null;
@@ -2474,7 +2488,7 @@ interface LayoutDataBackground {
2474
2488
  type?: LayoutDataBackgroundTypeWithLiterals;
2475
2489
  /**
2476
2490
  * Background color as a hexadecimal value.
2477
- * @format COLOR_HEX
2491
+ * @maxLength 19
2478
2492
  */
2479
2493
  color?: string | null;
2480
2494
  /** Gradient configuration. */
@@ -2486,7 +2500,7 @@ interface Backdrop {
2486
2500
  type?: BackdropTypeWithLiterals;
2487
2501
  /**
2488
2502
  * Backdrop color as a hexadecimal value.
2489
- * @format COLOR_HEX
2503
+ * @maxLength 19
2490
2504
  */
2491
2505
  color?: string | null;
2492
2506
  /** Gradient configuration. */
@@ -2507,7 +2521,7 @@ interface ShapeData {
2507
2521
  interface ShapeDataStyles {
2508
2522
  /**
2509
2523
  * Shape fill color as a hexadecimal value.
2510
- * @format COLOR_HEX
2524
+ * @maxLength 19
2511
2525
  */
2512
2526
  color?: string | null;
2513
2527
  /** Map of original color keys to their new color values. */
@@ -2566,7 +2580,7 @@ interface CardDataBackground {
2566
2580
  type?: CardDataBackgroundTypeWithLiterals;
2567
2581
  /**
2568
2582
  * Background color as a hexadecimal value.
2569
- * @format COLOR_HEX
2583
+ * @maxLength 19
2570
2584
  */
2571
2585
  color?: string | null;
2572
2586
  /** Gradient configuration. */
@@ -2593,7 +2607,7 @@ interface TocData {
2593
2607
  itemSpacing?: number | null;
2594
2608
  /**
2595
2609
  * Optional override for the text color.
2596
- * @format COLOR_HEX
2610
+ * @maxLength 19
2597
2611
  */
2598
2612
  color?: string | null;
2599
2613
  /** Indentation style. Default: NESTED. */
@@ -2627,6 +2641,103 @@ declare enum Indentation {
2627
2641
  }
2628
2642
  /** @enumType */
2629
2643
  type IndentationWithLiterals = Indentation | 'NESTED' | 'FLAT';
2644
+ /** Data for a smart block node. */
2645
+ interface SmartBlockData {
2646
+ /** The type of the smart block. */
2647
+ type?: SmartBlockDataTypeWithLiterals;
2648
+ /** Layout orientation. HORIZONTAL or VERTICAL. Optional for variants with fixed orientation. */
2649
+ orientation?: string | null;
2650
+ /** Column size controlling cells per row. */
2651
+ columnSize?: ColumnSizeWithLiterals;
2652
+ /**
2653
+ * Border color (for SOLID_JOINED_BOXES variant).
2654
+ * @maxLength 19
2655
+ */
2656
+ borderColor?: string | null;
2657
+ /** Border width in pixels (for SOLID_JOINED_BOXES variant). */
2658
+ borderWidth?: number | null;
2659
+ /** Border radius in pixels (for SOLID_JOINED_BOXES variant). */
2660
+ borderRadius?: number | null;
2661
+ }
2662
+ /** Layout type of the smart block */
2663
+ declare enum SmartBlockDataType {
2664
+ /** Grid-based layouts with solid box items containing title, body, and icon/image. */
2665
+ SOLID_BOXES = "SOLID_BOXES",
2666
+ /** Numbered boxes. */
2667
+ NUMBERED_BOXES = "NUMBERED_BOXES",
2668
+ /** Statistics display with large numbers/values. */
2669
+ STATS = "STATS",
2670
+ /** Statistics with circular visual elements. */
2671
+ CIRCLE_STATS = "CIRCLE_STATS",
2672
+ /** Staggered/zigzag grid layout with alternating box positions. */
2673
+ SOLID_BOXES_ALTERNATING = "SOLID_BOXES_ALTERNATING",
2674
+ /** Grid layout with boxes visually joined (no gaps, shared container border). */
2675
+ SOLID_JOINED_BOXES = "SOLID_JOINED_BOXES",
2676
+ /** Transparent cells with only a left side line. */
2677
+ SIDE_LINE_TEXT = "SIDE_LINE_TEXT",
2678
+ /** Transparent cells with only a top line. */
2679
+ TOP_LINE_TEXT = "TOP_LINE_TEXT",
2680
+ /** Outlined boxes with a numbered/icon circle at the top. */
2681
+ OUTLINE_BOXES_WITH_TOP_CIRCLE = "OUTLINE_BOXES_WITH_TOP_CIRCLE",
2682
+ /** Large icon bullets with text content. */
2683
+ BIG_BULLETS = "BIG_BULLETS",
2684
+ /** Small dot bullets with text content. */
2685
+ SMALL_BULLETS = "SMALL_BULLETS",
2686
+ /** Arrow icon bullets with text content. */
2687
+ ARROW_BULLETS = "ARROW_BULLETS",
2688
+ /** Process steps with numbered/icon labels above a horizontal line. */
2689
+ PROCESS_STEPS = "PROCESS_STEPS",
2690
+ /** Statistics with bar visual elements. */
2691
+ BAR_STATS = "BAR_STATS"
2692
+ }
2693
+ /** @enumType */
2694
+ type SmartBlockDataTypeWithLiterals = SmartBlockDataType | 'SOLID_BOXES' | 'NUMBERED_BOXES' | 'STATS' | 'CIRCLE_STATS' | 'SOLID_BOXES_ALTERNATING' | 'SOLID_JOINED_BOXES' | 'SIDE_LINE_TEXT' | 'TOP_LINE_TEXT' | 'OUTLINE_BOXES_WITH_TOP_CIRCLE' | 'BIG_BULLETS' | 'SMALL_BULLETS' | 'ARROW_BULLETS' | 'PROCESS_STEPS' | 'BAR_STATS';
2695
+ /** Column size controlling how many cells appear per row. */
2696
+ declare enum ColumnSize {
2697
+ /** Up to 4 cells in a row. */
2698
+ SMALL = "SMALL",
2699
+ /** Up to 3 cells in a row (default). */
2700
+ MEDIUM = "MEDIUM",
2701
+ /** Up to 2 cells in a row. */
2702
+ LARGE = "LARGE",
2703
+ /** 1 cell in a row. */
2704
+ EXTRA_LARGE = "EXTRA_LARGE"
2705
+ }
2706
+ /** @enumType */
2707
+ type ColumnSizeWithLiterals = ColumnSize | 'SMALL' | 'MEDIUM' | 'LARGE' | 'EXTRA_LARGE';
2708
+ /** Data for a smart block cell node. */
2709
+ interface SmartBlockCellData {
2710
+ /** Optional label text for the cell (e.g., for stats variants). */
2711
+ label?: string | null;
2712
+ /** Shape file details. */
2713
+ shape?: Media;
2714
+ /**
2715
+ * Border color of the cell.
2716
+ * @maxLength 19
2717
+ */
2718
+ borderColor?: string | null;
2719
+ /** Border width in pixels. */
2720
+ borderWidth?: number | null;
2721
+ /** Border radius in pixels. */
2722
+ borderRadius?: number | null;
2723
+ /** The type of the parent smart block (must match parent). */
2724
+ type?: SmartBlockDataTypeWithLiterals;
2725
+ /**
2726
+ * Accent color for non-background variants (e.g., line, bullet, label color).
2727
+ * @maxLength 19
2728
+ */
2729
+ accentColor?: string | null;
2730
+ /**
2731
+ * Background color for background-based variants (SOLID_BOXES, SOLID_BOXES_ALTERNATING, SOLID_JOINED_BOXES).
2732
+ * @maxLength 19
2733
+ */
2734
+ backgroundColor?: string | null;
2735
+ /**
2736
+ * Shape fill color as a hexadecimal value.
2737
+ * @maxLength 19
2738
+ */
2739
+ shapeColor?: string | null;
2740
+ }
2630
2741
  interface Metadata {
2631
2742
  /** Schema version. */
2632
2743
  version?: number;
@@ -3128,9 +3239,9 @@ type ContentQuery = {
3128
3239
  declare const utils: {
3129
3240
  query: {
3130
3241
  QueryBuilder: () => _wix_sdk_types.QueryBuilder<Content, ContentQuerySpec, ContentQuery>;
3131
- Filter: _wix_sdk_types.FilterFactory<Content, ContentQuerySpec>; /** Location name. */
3242
+ Filter: _wix_sdk_types.FilterFactory<Content, ContentQuerySpec>;
3132
3243
  Sort: _wix_sdk_types.SortFactory<ContentQuerySpec>;
3133
3244
  };
3134
3245
  };
3135
3246
 
3136
- export { type AccountInfo, 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 BackgroundBackgroundTypeOptionsOneOf, type BackgroundGradient, type BackgroundImage, BackgroundType, type BackgroundTypeWithLiterals, type Banner, type BlockquoteData, type BookingData, type Border, type BorderColors, type BorderWidths, type BulletedListData, type Button, type ButtonData, ButtonDataType, type ButtonDataTypeWithLiterals, ButtonSize, type ButtonSizeWithLiterals, type ButtonStyles, type CaptionData, type CardData, type CardDataBackground, CardDataBackgroundType, type CardDataBackgroundTypeWithLiterals, type CardStyles, type CellStyle, type Center, type CodeBlockData, type CollapsibleListData, type ColorData, type ColorOptions, type ColorSwatch, type ColorSwatchColorTypeOptionsOneOf, ColorSwatchType, type ColorSwatchTypeWithLiterals, type Colors, type CommonQueryWithEntityContext, type Content, type ContentQuery, type ContentQuerySpec, type ContentsQueryBuilder, type ContentsQueryResult, type CreateContentRequest, type CreateContentResponse, Crop, type CropWithLiterals, type CursorPaging, type CursorPagingMetadata, type CursorQuery, type CursorQueryPagingMethodOneOf, type Cursors, type Decoration, type DecorationDataOneOf, DecorationType, type DecorationTypeWithLiterals, type Design, DesignTarget, type DesignTargetWithLiterals, type Dimensions, Direction, type DirectionWithLiterals, type DividerData, DividerDataAlignment, type DividerDataAlignmentWithLiterals, type DocumentStyle, type DomainEvent, type DomainEventBodyOneOf, type EmbedData, type Empty, type EntityCreatedEvent, type EntityDeletedEvent, type EntityUpdatedEvent, type EventData, type FileData, type FileSource, type FileSourceDataOneOf, type FontFamilyData, type FontSizeData, FontType, type FontTypeWithLiterals, type GIF, type GIFData, GIFType, type GIFTypeWithLiterals, type GalleryData, type GalleryOptions, type GalleryOptionsLayout, type GetContentRequest, type GetContentResponse, type GetLatestContentByPageIdRequest, type GetLatestContentByPageIdResponse, type Gradient, type GradientGradientTypeOptionsOneOf, type GradientStop, GradientType, type GradientTypeWithLiterals, Group, type GroupWithLiterals, type HTMLData, type HTMLDataDataOneOf, type HeadingData, type Height, type Hover, type IdentificationData, type IdentificationDataIdOneOf, type Image, type ImageBorder, type ImageData, type ImageDataStyles, type ImageDataStylesBorder, type ImageOptions, ImagePosition, ImagePositionPosition, type ImagePositionPositionWithLiterals, type ImagePositionWithLiterals, ImageScaling, ImageScalingScaling, type ImageScalingScalingWithLiterals, type ImageScalingWithLiterals, type ImageStyles, Indentation, type IndentationWithLiterals, InitialExpandedItems, type InitialExpandedItemsWithLiterals, type Item, type ItemDataOneOf, type ItemImage, type ItemStyle, Layout, type LayoutCellData, type LayoutData, type LayoutDataBackground, type LayoutDataBackgroundImage, LayoutDataBackgroundType, type LayoutDataBackgroundTypeWithLiterals, LayoutDataImagePosition, type LayoutDataImagePositionWithLiterals, LayoutType, type LayoutTypeWithLiterals, type LayoutWithLiterals, LineStyle, type LineStyleWithLiterals, type Link, type LinkData, type LinkDataOneOf, type LinkPreviewData, type LinkPreviewDataStyles, ListStyle, type ListStyleWithLiterals, type ListValue, type LockLatestContentByPageIdRequest, type LockLatestContentByPageIdResponse, type MapData, type MapSettings, MapType, type MapTypeWithLiterals, type Media, type MentionData, type MessageEnvelope, type Metadata, 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 ParagraphData, type Permissions, Placement, type PlacementWithLiterals, type PlaybackOptions, type PluginContainerData, PluginContainerDataAlignment, type PluginContainerDataAlignmentWithLiterals, type PluginContainerDataWidth, type PluginContainerDataWidthDataOneOf, type Poll, type PollData, type PollDataDesign, type PollDataLayout, type PollDesign, type PollDesignBackground, type PollDesignBackgroundBackgroundOneOf, PollDesignBackgroundType, type PollDesignBackgroundTypeWithLiterals, type PollLayout, PollLayoutDirection, type PollLayoutDirectionWithLiterals, PollLayoutType, type PollLayoutTypeWithLiterals, Position, type PositionWithLiterals, type PricingData, type QueryContentsRequest, type QueryContentsResponse, type Rel, Resizing, type ResizingWithLiterals, ResponsivenessBehaviour, type ResponsivenessBehaviourWithLiterals, type RestoreInfo, type RibbonStyles, type RichContent, Scaling, type ScalingWithLiterals, type Settings, type ShapeData, type ShapeDataStyles, SortOrder, type SortOrderWithLiterals, type Sorting, Source, type SourceWithLiterals, type Spoiler, type SpoilerData, type Stop, type Styles, type StylesBackground, StylesBackgroundType, type StylesBackgroundTypeWithLiterals, type StylesBorder, StylesPosition, type StylesPositionWithLiterals, type SubmitContentOptions, type SubmitContentRequest, type SubmitContentResponse, type TableCellData, type TableData, Target, type TargetWithLiterals, TextAlignment, type TextAlignmentWithLiterals, type TextData, type TextNodeStyle, type TextStyle, type Thumbnails, ThumbnailsAlignment, type ThumbnailsAlignmentWithLiterals, type TocData, Type, type TypeWithLiterals, type Typography, type V1Gradient, V1GradientType, type V1GradientTypeWithLiterals, type V1TextStyle, VerticalAlignment, VerticalAlignmentAlignment, type VerticalAlignmentAlignmentWithLiterals, type VerticalAlignmentWithLiterals, type Video, type VideoData, ViewMode, type ViewModeWithLiterals, ViewRole, type ViewRoleWithLiterals, VoteRole, type VoteRoleWithLiterals, WebhookIdentityType, type WebhookIdentityTypeWithLiterals, Width, WidthType, type WidthTypeWithLiterals, type WidthWithLiterals, typedQueryContents, utils };
3247
+ export { type AccountInfo, 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 BackgroundBackgroundTypeOptionsOneOf, type BackgroundGradient, type BackgroundImage, BackgroundType, type BackgroundTypeWithLiterals, type Banner, type BlockquoteData, type BookingData, type Border, type BorderColors, type BorderWidths, type BulletedListData, type Button, type ButtonData, ButtonDataType, type ButtonDataTypeWithLiterals, ButtonSize, type ButtonSizeWithLiterals, type ButtonStyles, type CaptionData, type CardData, type CardDataBackground, CardDataBackgroundType, type CardDataBackgroundTypeWithLiterals, type CardStyles, type CellStyle, type Center, type CodeBlockData, type CollapsibleListData, type ColorData, type ColorOptions, type ColorSwatch, type ColorSwatchColorTypeOptionsOneOf, ColorSwatchType, type ColorSwatchTypeWithLiterals, type Colors, ColumnSize, type ColumnSizeWithLiterals, type CommonQueryWithEntityContext, type Content, type ContentQuery, type ContentQuerySpec, type ContentsQueryBuilder, type ContentsQueryResult, type CreateContentRequest, type CreateContentResponse, Crop, type CropWithLiterals, type CursorPaging, type CursorPagingMetadata, type CursorQuery, type CursorQueryPagingMethodOneOf, type Cursors, type Decoration, type DecorationDataOneOf, DecorationType, type DecorationTypeWithLiterals, type Design, DesignTarget, type DesignTargetWithLiterals, type Dimensions, Direction, type DirectionWithLiterals, type DividerData, DividerDataAlignment, type DividerDataAlignmentWithLiterals, type DocumentStyle, type DomainEvent, type DomainEventBodyOneOf, type EmbedData, type Empty, type EntityCreatedEvent, type EntityDeletedEvent, type EntityUpdatedEvent, type EventData, type FileData, type FileSource, type FileSourceDataOneOf, type FontFamilyData, type FontSizeData, FontType, type FontTypeWithLiterals, type GIF, type GIFData, GIFType, type GIFTypeWithLiterals, type GalleryData, type GalleryOptions, type GalleryOptionsLayout, type GetContentRequest, type GetContentResponse, type GetLatestContentByPageIdRequest, type GetLatestContentByPageIdResponse, type Gradient, type GradientGradientTypeOptionsOneOf, type GradientStop, GradientType, type GradientTypeWithLiterals, Group, type GroupWithLiterals, type HTMLData, type HTMLDataDataOneOf, type HeadingData, type Height, type Hover, type IdentificationData, type IdentificationDataIdOneOf, type Image, type ImageBorder, type ImageData, type ImageDataStyles, type ImageDataStylesBorder, type ImageOptions, ImagePosition, ImagePositionPosition, type ImagePositionPositionWithLiterals, type ImagePositionWithLiterals, ImageScaling, ImageScalingScaling, type ImageScalingScalingWithLiterals, type ImageScalingWithLiterals, type ImageStyles, Indentation, type IndentationWithLiterals, InitialExpandedItems, type InitialExpandedItemsWithLiterals, type Item, type ItemDataOneOf, type ItemImage, type ItemStyle, Layout, type LayoutCellData, type LayoutData, type LayoutDataBackground, type LayoutDataBackgroundImage, LayoutDataBackgroundType, type LayoutDataBackgroundTypeWithLiterals, LayoutDataImagePosition, type LayoutDataImagePositionWithLiterals, LayoutType, type LayoutTypeWithLiterals, type LayoutWithLiterals, LineStyle, type LineStyleWithLiterals, type Link, type LinkData, type LinkDataOneOf, type LinkPreviewData, type LinkPreviewDataStyles, ListStyle, type ListStyleWithLiterals, type ListValue, type LockLatestContentByPageIdRequest, type LockLatestContentByPageIdResponse, type MapData, type MapSettings, MapType, type MapTypeWithLiterals, type Media, type MentionData, type MessageEnvelope, type Metadata, 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 ParagraphData, type Permissions, Placement, type PlacementWithLiterals, type PlaybackOptions, type PluginContainerData, PluginContainerDataAlignment, type PluginContainerDataAlignmentWithLiterals, type PluginContainerDataWidth, type PluginContainerDataWidthDataOneOf, type Poll, type PollData, type PollDataDesign, type PollDataLayout, type PollDesign, type PollDesignBackground, type PollDesignBackgroundBackgroundOneOf, PollDesignBackgroundType, type PollDesignBackgroundTypeWithLiterals, type PollLayout, PollLayoutDirection, type PollLayoutDirectionWithLiterals, PollLayoutType, type PollLayoutTypeWithLiterals, Position, type PositionWithLiterals, type PricingData, type QueryContentsRequest, type QueryContentsResponse, type Rel, Resizing, type ResizingWithLiterals, ResponsivenessBehaviour, type ResponsivenessBehaviourWithLiterals, type RestoreInfo, type RibbonStyles, type RichContent, Scaling, type ScalingWithLiterals, 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, type Stop, type Styles, type StylesBackground, StylesBackgroundType, type StylesBackgroundTypeWithLiterals, type StylesBorder, StylesPosition, type StylesPositionWithLiterals, type SubmitContentOptions, type SubmitContentRequest, type SubmitContentResponse, type TableCellData, type TableData, Target, type TargetWithLiterals, TextAlignment, type TextAlignmentWithLiterals, type TextData, type TextNodeStyle, type TextStyle, type Thumbnails, ThumbnailsAlignment, type ThumbnailsAlignmentWithLiterals, type TocData, Type, type TypeWithLiterals, type Typography, type V1Gradient, V1GradientType, type V1GradientTypeWithLiterals, type V1TextStyle, VerticalAlignment, VerticalAlignmentAlignment, type VerticalAlignmentAlignmentWithLiterals, type VerticalAlignmentWithLiterals, type Video, type VideoData, ViewMode, type ViewModeWithLiterals, ViewRole, type ViewRoleWithLiterals, VoteRole, type VoteRoleWithLiterals, WebhookIdentityType, type WebhookIdentityTypeWithLiterals, Width, WidthType, type WidthTypeWithLiterals, type WidthWithLiterals, typedQueryContents, utils };
@@ -29,6 +29,7 @@ __export(index_typings_exports, {
29
29
  ButtonSize: () => ButtonSize,
30
30
  CardDataBackgroundType: () => CardDataBackgroundType,
31
31
  ColorSwatchType: () => ColorSwatchType,
32
+ ColumnSize: () => ColumnSize,
32
33
  Crop: () => Crop,
33
34
  DecorationType: () => DecorationType,
34
35
  DesignTarget: () => DesignTarget,
@@ -64,6 +65,7 @@ __export(index_typings_exports, {
64
65
  Resizing: () => Resizing,
65
66
  ResponsivenessBehaviour: () => ResponsivenessBehaviour,
66
67
  Scaling: () => Scaling,
68
+ SmartBlockDataType: () => SmartBlockDataType,
67
69
  SortOrder: () => SortOrder,
68
70
  Source: () => Source,
69
71
  StylesBackgroundType: () => StylesBackgroundType,
@@ -291,7 +293,10 @@ function getContent(payload) {
291
293
  path: "content.richContent.nodes.cardData.backgroundImage.media.duration"
292
294
  },
293
295
  { path: "content.richContent.nodes.tocData.fontSize" },
294
- { path: "content.richContent.nodes.tocData.itemSpacing" }
296
+ { path: "content.richContent.nodes.tocData.itemSpacing" },
297
+ {
298
+ path: "content.richContent.nodes.smartBlockCellData.shape.duration"
299
+ }
295
300
  ]
296
301
  }
297
302
  ])
@@ -415,7 +420,8 @@ function submitContent(payload) {
415
420
  },
416
421
  { path: "richContent.nodes.cardData.backgroundImage.media.duration" },
417
422
  { path: "richContent.nodes.tocData.fontSize" },
418
- { path: "richContent.nodes.tocData.itemSpacing" }
423
+ { path: "richContent.nodes.tocData.itemSpacing" },
424
+ { path: "richContent.nodes.smartBlockCellData.shape.duration" }
419
425
  ]
420
426
  },
421
427
  {
@@ -593,7 +599,10 @@ function submitContent(payload) {
593
599
  path: "content.richContent.nodes.cardData.backgroundImage.media.duration"
594
600
  },
595
601
  { path: "content.richContent.nodes.tocData.fontSize" },
596
- { path: "content.richContent.nodes.tocData.itemSpacing" }
602
+ { path: "content.richContent.nodes.tocData.itemSpacing" },
603
+ {
604
+ path: "content.richContent.nodes.smartBlockCellData.shape.duration"
605
+ }
597
606
  ]
598
607
  }
599
608
  ])
@@ -771,7 +780,10 @@ function getLatestContentByPageId(payload) {
771
780
  path: "content.richContent.nodes.cardData.backgroundImage.media.duration"
772
781
  },
773
782
  { path: "content.richContent.nodes.tocData.fontSize" },
774
- { path: "content.richContent.nodes.tocData.itemSpacing" }
783
+ { path: "content.richContent.nodes.tocData.itemSpacing" },
784
+ {
785
+ path: "content.richContent.nodes.smartBlockCellData.shape.duration"
786
+ }
775
787
  ]
776
788
  }
777
789
  ])
@@ -949,7 +961,10 @@ function lockLatestContentByPageId(payload) {
949
961
  path: "content.richContent.nodes.cardData.backgroundImage.media.duration"
950
962
  },
951
963
  { path: "content.richContent.nodes.tocData.fontSize" },
952
- { path: "content.richContent.nodes.tocData.itemSpacing" }
964
+ { path: "content.richContent.nodes.tocData.itemSpacing" },
965
+ {
966
+ path: "content.richContent.nodes.smartBlockCellData.shape.duration"
967
+ }
953
968
  ]
954
969
  }
955
970
  ])
@@ -1129,7 +1144,10 @@ function queryContents(payload) {
1129
1144
  path: "contents.richContent.nodes.cardData.backgroundImage.media.duration"
1130
1145
  },
1131
1146
  { path: "contents.richContent.nodes.tocData.fontSize" },
1132
- { path: "contents.richContent.nodes.tocData.itemSpacing" }
1147
+ { path: "contents.richContent.nodes.tocData.itemSpacing" },
1148
+ {
1149
+ path: "contents.richContent.nodes.smartBlockCellData.shape.duration"
1150
+ }
1133
1151
  ]
1134
1152
  }
1135
1153
  ]),
@@ -1239,6 +1257,8 @@ var NodeType = /* @__PURE__ */ ((NodeType2) => {
1239
1257
  NodeType2["SHAPE"] = "SHAPE";
1240
1258
  NodeType2["CARD"] = "CARD";
1241
1259
  NodeType2["TOC"] = "TOC";
1260
+ NodeType2["SMART_BLOCK"] = "SMART_BLOCK";
1261
+ NodeType2["SMART_BLOCK_CELL"] = "SMART_BLOCK_CELL";
1242
1262
  return NodeType2;
1243
1263
  })(NodeType || {});
1244
1264
  var StylesBackgroundType = /* @__PURE__ */ ((StylesBackgroundType2) => {
@@ -1566,6 +1586,30 @@ var Indentation = /* @__PURE__ */ ((Indentation2) => {
1566
1586
  Indentation2["FLAT"] = "FLAT";
1567
1587
  return Indentation2;
1568
1588
  })(Indentation || {});
1589
+ var SmartBlockDataType = /* @__PURE__ */ ((SmartBlockDataType2) => {
1590
+ SmartBlockDataType2["SOLID_BOXES"] = "SOLID_BOXES";
1591
+ SmartBlockDataType2["NUMBERED_BOXES"] = "NUMBERED_BOXES";
1592
+ SmartBlockDataType2["STATS"] = "STATS";
1593
+ SmartBlockDataType2["CIRCLE_STATS"] = "CIRCLE_STATS";
1594
+ SmartBlockDataType2["SOLID_BOXES_ALTERNATING"] = "SOLID_BOXES_ALTERNATING";
1595
+ SmartBlockDataType2["SOLID_JOINED_BOXES"] = "SOLID_JOINED_BOXES";
1596
+ SmartBlockDataType2["SIDE_LINE_TEXT"] = "SIDE_LINE_TEXT";
1597
+ SmartBlockDataType2["TOP_LINE_TEXT"] = "TOP_LINE_TEXT";
1598
+ SmartBlockDataType2["OUTLINE_BOXES_WITH_TOP_CIRCLE"] = "OUTLINE_BOXES_WITH_TOP_CIRCLE";
1599
+ SmartBlockDataType2["BIG_BULLETS"] = "BIG_BULLETS";
1600
+ SmartBlockDataType2["SMALL_BULLETS"] = "SMALL_BULLETS";
1601
+ SmartBlockDataType2["ARROW_BULLETS"] = "ARROW_BULLETS";
1602
+ SmartBlockDataType2["PROCESS_STEPS"] = "PROCESS_STEPS";
1603
+ SmartBlockDataType2["BAR_STATS"] = "BAR_STATS";
1604
+ return SmartBlockDataType2;
1605
+ })(SmartBlockDataType || {});
1606
+ var ColumnSize = /* @__PURE__ */ ((ColumnSize2) => {
1607
+ ColumnSize2["SMALL"] = "SMALL";
1608
+ ColumnSize2["MEDIUM"] = "MEDIUM";
1609
+ ColumnSize2["LARGE"] = "LARGE";
1610
+ ColumnSize2["EXTRA_LARGE"] = "EXTRA_LARGE";
1611
+ return ColumnSize2;
1612
+ })(ColumnSize || {});
1569
1613
  var SortOrder = /* @__PURE__ */ ((SortOrder2) => {
1570
1614
  SortOrder2["ASC"] = "ASC";
1571
1615
  SortOrder2["DESC"] = "DESC";
@@ -1782,6 +1826,7 @@ var utils = {
1782
1826
  ButtonSize,
1783
1827
  CardDataBackgroundType,
1784
1828
  ColorSwatchType,
1829
+ ColumnSize,
1785
1830
  Crop,
1786
1831
  DecorationType,
1787
1832
  DesignTarget,
@@ -1817,6 +1862,7 @@ var utils = {
1817
1862
  Resizing,
1818
1863
  ResponsivenessBehaviour,
1819
1864
  Scaling,
1865
+ SmartBlockDataType,
1820
1866
  SortOrder,
1821
1867
  Source,
1822
1868
  StylesBackgroundType,