@wix/auto_sdk_quick-pages_contents 1.0.19 → 1.0.21
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 +12 -0
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +91 -56
- package/build/cjs/index.typings.js +12 -0
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +89 -54
- package/build/cjs/meta.js +12 -0
- package/build/cjs/meta.js.map +1 -1
- package/build/es/index.d.mts +1 -1
- package/build/es/index.mjs +11 -0
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +91 -56
- package/build/es/index.typings.mjs +11 -0
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +89 -54
- package/build/es/meta.mjs +11 -0
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/index.d.ts +1 -1
- package/build/internal/cjs/index.js +12 -0
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +91 -56
- package/build/internal/cjs/index.typings.js +12 -0
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +89 -54
- package/build/internal/cjs/meta.js +12 -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 +11 -0
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +91 -56
- package/build/internal/es/index.typings.mjs +11 -0
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +89 -54
- package/build/internal/es/meta.mjs +11 -0
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
package/build/cjs/meta.d.ts
CHANGED
|
@@ -769,7 +769,7 @@ type V1GradientTypeWithLiterals = V1GradientType | 'LINEAR' | 'RADIAL';
|
|
|
769
769
|
interface Stop {
|
|
770
770
|
/**
|
|
771
771
|
* Stop color as hex value.
|
|
772
|
-
* @
|
|
772
|
+
* @maxLength 19
|
|
773
773
|
*/
|
|
774
774
|
color?: string | null;
|
|
775
775
|
/** Stop position (0-1). */
|
|
@@ -810,7 +810,7 @@ interface StylesBackground {
|
|
|
810
810
|
type?: StylesBackgroundTypeWithLiterals;
|
|
811
811
|
/**
|
|
812
812
|
* Background color as a hexadecimal value.
|
|
813
|
-
* @
|
|
813
|
+
* @maxLength 19
|
|
814
814
|
*/
|
|
815
815
|
color?: string | null;
|
|
816
816
|
/** Gradient configuration. */
|
|
@@ -917,33 +917,33 @@ interface Styles {
|
|
|
917
917
|
borderRadius?: number | null;
|
|
918
918
|
/**
|
|
919
919
|
* Border color as a hexadecimal value.
|
|
920
|
-
* @
|
|
920
|
+
* @maxLength 19
|
|
921
921
|
*/
|
|
922
922
|
borderColor?: string | null;
|
|
923
923
|
/**
|
|
924
924
|
* Border color as a hexadecimal value (hover state).
|
|
925
|
-
* @
|
|
925
|
+
* @maxLength 19
|
|
926
926
|
*/
|
|
927
927
|
borderColorHover?: string | null;
|
|
928
928
|
/**
|
|
929
929
|
* Text color as a hexadecimal value.
|
|
930
|
-
* @
|
|
930
|
+
* @maxLength 19
|
|
931
931
|
*/
|
|
932
932
|
textColor?: string | null;
|
|
933
933
|
/**
|
|
934
934
|
* Text color as a hexadecimal value (hover state).
|
|
935
|
-
* @
|
|
935
|
+
* @maxLength 19
|
|
936
936
|
*/
|
|
937
937
|
textColorHover?: string | null;
|
|
938
938
|
/**
|
|
939
939
|
* Deprecated: Use `background` instead.
|
|
940
|
-
* @
|
|
940
|
+
* @maxLength 19
|
|
941
941
|
* @deprecated
|
|
942
942
|
*/
|
|
943
943
|
backgroundColor?: string | null;
|
|
944
944
|
/**
|
|
945
945
|
* Deprecated: Use `backgroundHover` instead.
|
|
946
|
-
* @
|
|
946
|
+
* @maxLength 19
|
|
947
947
|
* @deprecated
|
|
948
948
|
*/
|
|
949
949
|
backgroundColorHover?: string | null;
|
|
@@ -1395,7 +1395,7 @@ interface ImageDataStylesBorder {
|
|
|
1395
1395
|
width?: number | null;
|
|
1396
1396
|
/**
|
|
1397
1397
|
* Border color as a hexadecimal value.
|
|
1398
|
-
* @
|
|
1398
|
+
* @maxLength 19
|
|
1399
1399
|
*/
|
|
1400
1400
|
color?: string | null;
|
|
1401
1401
|
/** Border radius in pixels. */
|
|
@@ -1436,22 +1436,22 @@ type StylesPositionWithLiterals = StylesPosition | 'START' | 'END' | 'TOP' | 'HI
|
|
|
1436
1436
|
interface LinkPreviewDataStyles {
|
|
1437
1437
|
/**
|
|
1438
1438
|
* Background color as a hexadecimal value.
|
|
1439
|
-
* @
|
|
1439
|
+
* @maxLength 19
|
|
1440
1440
|
*/
|
|
1441
1441
|
backgroundColor?: string | null;
|
|
1442
1442
|
/**
|
|
1443
1443
|
* Title color as a hexadecimal value.
|
|
1444
|
-
* @
|
|
1444
|
+
* @maxLength 19
|
|
1445
1445
|
*/
|
|
1446
1446
|
titleColor?: string | null;
|
|
1447
1447
|
/**
|
|
1448
1448
|
* Subtitle color as a hexadecimal value.
|
|
1449
|
-
* @
|
|
1449
|
+
* @maxLength 19
|
|
1450
1450
|
*/
|
|
1451
1451
|
subtitleColor?: string | null;
|
|
1452
1452
|
/**
|
|
1453
1453
|
* Link color as a hexadecimal value.
|
|
1454
|
-
* @
|
|
1454
|
+
* @maxLength 19
|
|
1455
1455
|
*/
|
|
1456
1456
|
linkColor?: string | null;
|
|
1457
1457
|
/** Border width in pixels. */
|
|
@@ -1460,7 +1460,7 @@ interface LinkPreviewDataStyles {
|
|
|
1460
1460
|
borderRadius?: number | null;
|
|
1461
1461
|
/**
|
|
1462
1462
|
* Border color as a hexadecimal value.
|
|
1463
|
-
* @
|
|
1463
|
+
* @maxLength 19
|
|
1464
1464
|
*/
|
|
1465
1465
|
borderColor?: string | null;
|
|
1466
1466
|
/** Position of thumbnail. Defaults to `START`. */
|
|
@@ -1611,19 +1611,19 @@ interface BackgroundGradient {
|
|
|
1611
1611
|
angle?: number | null;
|
|
1612
1612
|
/**
|
|
1613
1613
|
* The start color as a hexademical value.
|
|
1614
|
-
* @
|
|
1614
|
+
* @maxLength 19
|
|
1615
1615
|
*/
|
|
1616
1616
|
startColor?: string | null;
|
|
1617
1617
|
/**
|
|
1618
1618
|
* The end color as a hexademical value.
|
|
1619
|
-
* @
|
|
1619
|
+
* @maxLength 19
|
|
1620
1620
|
*/
|
|
1621
1621
|
lastColor?: string | null;
|
|
1622
1622
|
}
|
|
1623
1623
|
interface PollDesignBackground extends PollDesignBackgroundBackgroundOneOf {
|
|
1624
1624
|
/**
|
|
1625
1625
|
* The background color as a hexademical value.
|
|
1626
|
-
* @
|
|
1626
|
+
* @maxLength 19
|
|
1627
1627
|
*/
|
|
1628
1628
|
color?: string | null;
|
|
1629
1629
|
/** An image to use for the background. */
|
|
@@ -1637,7 +1637,7 @@ interface PollDesignBackground extends PollDesignBackgroundBackgroundOneOf {
|
|
|
1637
1637
|
interface PollDesignBackgroundBackgroundOneOf {
|
|
1638
1638
|
/**
|
|
1639
1639
|
* The background color as a hexademical value.
|
|
1640
|
-
* @
|
|
1640
|
+
* @maxLength 19
|
|
1641
1641
|
*/
|
|
1642
1642
|
color?: string | null;
|
|
1643
1643
|
/** An image to use for the background. */
|
|
@@ -1951,32 +1951,32 @@ interface ButtonStyles {
|
|
|
1951
1951
|
borderRadius?: number | null;
|
|
1952
1952
|
/**
|
|
1953
1953
|
* Border color as a hexadecimal value.
|
|
1954
|
-
* @
|
|
1954
|
+
* @maxLength 19
|
|
1955
1955
|
*/
|
|
1956
1956
|
borderColor?: string | null;
|
|
1957
1957
|
/**
|
|
1958
1958
|
* Text color as a hexadecimal value.
|
|
1959
|
-
* @
|
|
1959
|
+
* @maxLength 19
|
|
1960
1960
|
*/
|
|
1961
1961
|
textColor?: string | null;
|
|
1962
1962
|
/**
|
|
1963
1963
|
* Background color as a hexadecimal value.
|
|
1964
|
-
* @
|
|
1964
|
+
* @maxLength 19
|
|
1965
1965
|
*/
|
|
1966
1966
|
backgroundColor?: string | null;
|
|
1967
1967
|
/**
|
|
1968
1968
|
* Border color as a hexadecimal value (hover state).
|
|
1969
|
-
* @
|
|
1969
|
+
* @maxLength 19
|
|
1970
1970
|
*/
|
|
1971
1971
|
borderColorHover?: string | null;
|
|
1972
1972
|
/**
|
|
1973
1973
|
* Text color as a hexadecimal value (hover state).
|
|
1974
|
-
* @
|
|
1974
|
+
* @maxLength 19
|
|
1975
1975
|
*/
|
|
1976
1976
|
textColorHover?: string | null;
|
|
1977
1977
|
/**
|
|
1978
1978
|
* Background color as a hexadecimal value (hover state).
|
|
1979
|
-
* @
|
|
1979
|
+
* @maxLength 19
|
|
1980
1980
|
*/
|
|
1981
1981
|
backgroundColorHover?: string | null;
|
|
1982
1982
|
/** Button size option, one of `SMALL`, `MEDIUM` or `LARGE`. Defaults to `MEDIUM`. */
|
|
@@ -1993,7 +1993,7 @@ interface ImageStyles {
|
|
|
1993
1993
|
resizing?: ResizingWithLiterals;
|
|
1994
1994
|
/**
|
|
1995
1995
|
* Image border color as a hexadecimal value.
|
|
1996
|
-
* @
|
|
1996
|
+
* @maxLength 19
|
|
1997
1997
|
*/
|
|
1998
1998
|
borderColor?: string | null;
|
|
1999
1999
|
/** Image border width in pixels. */
|
|
@@ -2006,17 +2006,17 @@ interface RibbonStyles {
|
|
|
2006
2006
|
ribbonText?: string | null;
|
|
2007
2007
|
/**
|
|
2008
2008
|
* Ribbon background color as a hexadecimal value.
|
|
2009
|
-
* @
|
|
2009
|
+
* @maxLength 19
|
|
2010
2010
|
*/
|
|
2011
2011
|
backgroundColor?: string | null;
|
|
2012
2012
|
/**
|
|
2013
2013
|
* Ribbon text color as a hexadecimal value.
|
|
2014
|
-
* @
|
|
2014
|
+
* @maxLength 19
|
|
2015
2015
|
*/
|
|
2016
2016
|
textColor?: string | null;
|
|
2017
2017
|
/**
|
|
2018
2018
|
* Ribbon border color as a hexadecimal value.
|
|
2019
|
-
* @
|
|
2019
|
+
* @maxLength 19
|
|
2020
2020
|
*/
|
|
2021
2021
|
borderColor?: string | null;
|
|
2022
2022
|
/** Ribbon border width in pixels. */
|
|
@@ -2029,12 +2029,12 @@ interface RibbonStyles {
|
|
|
2029
2029
|
interface CardStyles {
|
|
2030
2030
|
/**
|
|
2031
2031
|
* Card background color as a hexadecimal value.
|
|
2032
|
-
* @
|
|
2032
|
+
* @maxLength 19
|
|
2033
2033
|
*/
|
|
2034
2034
|
backgroundColor?: string | null;
|
|
2035
2035
|
/**
|
|
2036
2036
|
* Card border color as a hexadecimal value.
|
|
2037
|
-
* @
|
|
2037
|
+
* @maxLength 19
|
|
2038
2038
|
*/
|
|
2039
2039
|
borderColor?: string | null;
|
|
2040
2040
|
/** Card border width in pixels. */
|
|
@@ -2049,12 +2049,12 @@ interface CardStyles {
|
|
|
2049
2049
|
titlePriceLayout?: LayoutWithLiterals;
|
|
2050
2050
|
/**
|
|
2051
2051
|
* Title text color as a hexadecimal value.
|
|
2052
|
-
* @
|
|
2052
|
+
* @maxLength 19
|
|
2053
2053
|
*/
|
|
2054
2054
|
titleColor?: string | null;
|
|
2055
2055
|
/**
|
|
2056
2056
|
* Text color as a hexadecimal value.
|
|
2057
|
-
* @
|
|
2057
|
+
* @maxLength 19
|
|
2058
2058
|
*/
|
|
2059
2059
|
textColor?: string | null;
|
|
2060
2060
|
}
|
|
@@ -2236,29 +2236,29 @@ interface CellStyle {
|
|
|
2236
2236
|
verticalAlignment?: VerticalAlignmentWithLiterals;
|
|
2237
2237
|
/**
|
|
2238
2238
|
* Cell background color as a hexadecimal value.
|
|
2239
|
-
* @
|
|
2239
|
+
* @maxLength 19
|
|
2240
2240
|
*/
|
|
2241
2241
|
backgroundColor?: string | null;
|
|
2242
2242
|
}
|
|
2243
2243
|
interface BorderColors {
|
|
2244
2244
|
/**
|
|
2245
2245
|
* Left border color as a hexadecimal value.
|
|
2246
|
-
* @
|
|
2246
|
+
* @maxLength 19
|
|
2247
2247
|
*/
|
|
2248
2248
|
left?: string | null;
|
|
2249
2249
|
/**
|
|
2250
2250
|
* Right border color as a hexadecimal value.
|
|
2251
|
-
* @
|
|
2251
|
+
* @maxLength 19
|
|
2252
2252
|
*/
|
|
2253
2253
|
right?: string | null;
|
|
2254
2254
|
/**
|
|
2255
2255
|
* Top border color as a hexadecimal value.
|
|
2256
|
-
* @
|
|
2256
|
+
* @maxLength 19
|
|
2257
2257
|
*/
|
|
2258
2258
|
top?: string | null;
|
|
2259
2259
|
/**
|
|
2260
2260
|
* Bottom border color as a hexadecimal value.
|
|
2261
|
-
* @
|
|
2261
|
+
* @maxLength 19
|
|
2262
2262
|
*/
|
|
2263
2263
|
bottom?: string | null;
|
|
2264
2264
|
}
|
|
@@ -2333,7 +2333,7 @@ interface CaptionData {
|
|
|
2333
2333
|
interface LayoutData {
|
|
2334
2334
|
/**
|
|
2335
2335
|
* Deprecated: Use `background` instead.
|
|
2336
|
-
* @
|
|
2336
|
+
* @maxLength 19
|
|
2337
2337
|
* @deprecated
|
|
2338
2338
|
*/
|
|
2339
2339
|
backgroundColor?: string | null;
|
|
@@ -2341,7 +2341,7 @@ interface LayoutData {
|
|
|
2341
2341
|
backgroundImage?: LayoutDataBackgroundImage;
|
|
2342
2342
|
/**
|
|
2343
2343
|
* Border color as a hexadecimal value.
|
|
2344
|
-
* @
|
|
2344
|
+
* @maxLength 19
|
|
2345
2345
|
*/
|
|
2346
2346
|
borderColor?: string | null;
|
|
2347
2347
|
/** Border width in pixels. */
|
|
@@ -2350,7 +2350,7 @@ interface LayoutData {
|
|
|
2350
2350
|
borderRadius?: number | null;
|
|
2351
2351
|
/**
|
|
2352
2352
|
* Deprecated: Use `backdrop` instead.
|
|
2353
|
-
* @
|
|
2353
|
+
* @maxLength 19
|
|
2354
2354
|
* @deprecated
|
|
2355
2355
|
*/
|
|
2356
2356
|
backdropColor?: string | null;
|
|
@@ -2377,7 +2377,7 @@ interface LayoutData {
|
|
|
2377
2377
|
containerData?: PluginContainerData;
|
|
2378
2378
|
/** Defines where selected design propertied applies to */
|
|
2379
2379
|
designTarget?: DesignTargetWithLiterals;
|
|
2380
|
-
/** Banner configuration. When present, this layout is
|
|
2380
|
+
/** Banner configuration. When present, this layout is attached to a document edge (top or bottom). */
|
|
2381
2381
|
banner?: Banner;
|
|
2382
2382
|
/** Background styling (color or gradient). */
|
|
2383
2383
|
background?: LayoutDataBackground;
|
|
@@ -2424,6 +2424,14 @@ declare enum Origin {
|
|
|
2424
2424
|
}
|
|
2425
2425
|
/** @enumType */
|
|
2426
2426
|
type OriginWithLiterals = Origin | 'IMAGE' | 'LAYOUT';
|
|
2427
|
+
declare enum BannerPosition {
|
|
2428
|
+
/** Attached to the top edge (banner) */
|
|
2429
|
+
TOP = "TOP",
|
|
2430
|
+
/** Attached to the bottom edge (footer) */
|
|
2431
|
+
BOTTOM = "BOTTOM"
|
|
2432
|
+
}
|
|
2433
|
+
/** @enumType */
|
|
2434
|
+
type BannerPositionWithLiterals = BannerPosition | 'TOP' | 'BOTTOM';
|
|
2427
2435
|
/** Background type */
|
|
2428
2436
|
declare enum LayoutDataBackgroundType {
|
|
2429
2437
|
/** Solid color background */
|
|
@@ -2481,6 +2489,8 @@ type DesignTargetWithLiterals = DesignTarget | 'LAYOUT' | 'CELL';
|
|
|
2481
2489
|
interface Banner {
|
|
2482
2490
|
/** Origin of the banner */
|
|
2483
2491
|
origin?: OriginWithLiterals;
|
|
2492
|
+
/** Position of the banner */
|
|
2493
|
+
position?: BannerPositionWithLiterals;
|
|
2484
2494
|
}
|
|
2485
2495
|
/** Background styling (color or gradient) */
|
|
2486
2496
|
interface LayoutDataBackground {
|
|
@@ -2488,7 +2498,7 @@ interface LayoutDataBackground {
|
|
|
2488
2498
|
type?: LayoutDataBackgroundTypeWithLiterals;
|
|
2489
2499
|
/**
|
|
2490
2500
|
* Background color as a hexadecimal value.
|
|
2491
|
-
* @
|
|
2501
|
+
* @maxLength 19
|
|
2492
2502
|
*/
|
|
2493
2503
|
color?: string | null;
|
|
2494
2504
|
/** Gradient configuration. */
|
|
@@ -2500,7 +2510,7 @@ interface Backdrop {
|
|
|
2500
2510
|
type?: BackdropTypeWithLiterals;
|
|
2501
2511
|
/**
|
|
2502
2512
|
* Backdrop color as a hexadecimal value.
|
|
2503
|
-
* @
|
|
2513
|
+
* @maxLength 19
|
|
2504
2514
|
*/
|
|
2505
2515
|
color?: string | null;
|
|
2506
2516
|
/** Gradient configuration. */
|
|
@@ -2521,7 +2531,7 @@ interface ShapeData {
|
|
|
2521
2531
|
interface ShapeDataStyles {
|
|
2522
2532
|
/**
|
|
2523
2533
|
* Shape fill color as a hexadecimal value.
|
|
2524
|
-
* @
|
|
2534
|
+
* @maxLength 19
|
|
2525
2535
|
*/
|
|
2526
2536
|
color?: string | null;
|
|
2527
2537
|
/** Map of original color keys to their new color values. */
|
|
@@ -2580,7 +2590,7 @@ interface CardDataBackground {
|
|
|
2580
2590
|
type?: CardDataBackgroundTypeWithLiterals;
|
|
2581
2591
|
/**
|
|
2582
2592
|
* Background color as a hexadecimal value.
|
|
2583
|
-
* @
|
|
2593
|
+
* @maxLength 19
|
|
2584
2594
|
*/
|
|
2585
2595
|
color?: string | null;
|
|
2586
2596
|
/** Gradient configuration. */
|
|
@@ -2607,7 +2617,7 @@ interface TocData {
|
|
|
2607
2617
|
itemSpacing?: number | null;
|
|
2608
2618
|
/**
|
|
2609
2619
|
* Optional override for the text color.
|
|
2610
|
-
* @
|
|
2620
|
+
* @maxLength 19
|
|
2611
2621
|
*/
|
|
2612
2622
|
color?: string | null;
|
|
2613
2623
|
/** Indentation style. Default: NESTED. */
|
|
@@ -2649,7 +2659,10 @@ interface SmartBlockData {
|
|
|
2649
2659
|
orientation?: string | null;
|
|
2650
2660
|
/** Column size controlling cells per row. */
|
|
2651
2661
|
columnSize?: ColumnSizeWithLiterals;
|
|
2652
|
-
/**
|
|
2662
|
+
/**
|
|
2663
|
+
* Border color (for SOLID_JOINED_BOXES variant).
|
|
2664
|
+
* @maxLength 19
|
|
2665
|
+
*/
|
|
2653
2666
|
borderColor?: string | null;
|
|
2654
2667
|
/** Border width in pixels (for SOLID_JOINED_BOXES variant). */
|
|
2655
2668
|
borderWidth?: number | null;
|
|
@@ -2685,10 +2698,20 @@ declare enum SmartBlockDataType {
|
|
|
2685
2698
|
/** Process steps with numbered/icon labels above a horizontal line. */
|
|
2686
2699
|
PROCESS_STEPS = "PROCESS_STEPS",
|
|
2687
2700
|
/** Statistics with bar visual elements. */
|
|
2688
|
-
BAR_STATS = "BAR_STATS"
|
|
2701
|
+
BAR_STATS = "BAR_STATS",
|
|
2702
|
+
/** Timeline layout with numbered chips on a connecting line; cells alternate around the line. */
|
|
2703
|
+
TIMELINE = "TIMELINE",
|
|
2704
|
+
/** Timeline layout with plain dot indicators; no numbers or shapes; cells alternate around the line. */
|
|
2705
|
+
MINIMAL_TIMELINE = "MINIMAL_TIMELINE",
|
|
2706
|
+
/** Numbered pill-shaped labels (stadium chips) with text content; supports HORIZONTAL (pill on top) and VERTICAL (pill on left) orientations. */
|
|
2707
|
+
PILLS = "PILLS",
|
|
2708
|
+
/** Star rating display with stars and a numeric value per cell. */
|
|
2709
|
+
STAR_RATING = "STAR_RATING",
|
|
2710
|
+
/** Outlined boxes with decorative quote glyphs at the top-left and bottom-right corners. */
|
|
2711
|
+
QUOTE_BOXES = "QUOTE_BOXES"
|
|
2689
2712
|
}
|
|
2690
2713
|
/** @enumType */
|
|
2691
|
-
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';
|
|
2714
|
+
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' | 'TIMELINE' | 'MINIMAL_TIMELINE' | 'PILLS' | 'STAR_RATING' | 'QUOTE_BOXES';
|
|
2692
2715
|
/** Column size controlling how many cells appear per row. */
|
|
2693
2716
|
declare enum ColumnSize {
|
|
2694
2717
|
/** Up to 4 cells in a row. */
|
|
@@ -2708,7 +2731,10 @@ interface SmartBlockCellData {
|
|
|
2708
2731
|
label?: string | null;
|
|
2709
2732
|
/** Shape file details. */
|
|
2710
2733
|
shape?: Media;
|
|
2711
|
-
/**
|
|
2734
|
+
/**
|
|
2735
|
+
* Border color of the cell.
|
|
2736
|
+
* @maxLength 19
|
|
2737
|
+
*/
|
|
2712
2738
|
borderColor?: string | null;
|
|
2713
2739
|
/** Border width in pixels. */
|
|
2714
2740
|
borderWidth?: number | null;
|
|
@@ -2716,11 +2742,20 @@ interface SmartBlockCellData {
|
|
|
2716
2742
|
borderRadius?: number | null;
|
|
2717
2743
|
/** The type of the parent smart block (must match parent). */
|
|
2718
2744
|
type?: SmartBlockDataTypeWithLiterals;
|
|
2719
|
-
/**
|
|
2745
|
+
/**
|
|
2746
|
+
* Accent color for non-background variants (e.g., line, bullet, label color).
|
|
2747
|
+
* @maxLength 19
|
|
2748
|
+
*/
|
|
2720
2749
|
accentColor?: string | null;
|
|
2721
|
-
/**
|
|
2750
|
+
/**
|
|
2751
|
+
* Background color for background-based variants (SOLID_BOXES, SOLID_BOXES_ALTERNATING, SOLID_JOINED_BOXES).
|
|
2752
|
+
* @maxLength 19
|
|
2753
|
+
*/
|
|
2722
2754
|
backgroundColor?: string | null;
|
|
2723
|
-
/**
|
|
2755
|
+
/**
|
|
2756
|
+
* Shape fill color as a hexadecimal value.
|
|
2757
|
+
* @maxLength 19
|
|
2758
|
+
*/
|
|
2724
2759
|
shapeColor?: string | null;
|
|
2725
2760
|
}
|
|
2726
2761
|
interface Metadata {
|
|
@@ -3097,4 +3132,4 @@ declare function lockLatestContentByPageId(): __PublicMethodMetaInfo<'PATCH', {
|
|
|
3097
3132
|
}, LockLatestContentByPageIdRequest$1, LockLatestContentByPageIdRequest, LockLatestContentByPageIdResponse$1, LockLatestContentByPageIdResponse>;
|
|
3098
3133
|
declare function queryContents(): __PublicMethodMetaInfo<'GET', {}, QueryContentsRequest$1, QueryContentsRequest, QueryContentsResponse$1, QueryContentsResponse>;
|
|
3099
3134
|
|
|
3100
|
-
export { type AccountInfo as AccountInfoOriginal, type ActionEvent as ActionEventOriginal, Alignment as AlignmentOriginal, type AlignmentWithLiterals as AlignmentWithLiteralsOriginal, type AnchorData as AnchorDataOriginal, type AppEmbedDataAppDataOneOf as AppEmbedDataAppDataOneOfOriginal, type AppEmbedData as AppEmbedDataOriginal, AppType as AppTypeOriginal, type AppTypeWithLiterals as AppTypeWithLiteralsOriginal, AspectRatio as AspectRatioOriginal, type AspectRatioWithLiterals as AspectRatioWithLiteralsOriginal, type AudioData as AudioDataOriginal, type Backdrop as BackdropOriginal, BackdropType as BackdropTypeOriginal, type BackdropTypeWithLiterals as BackdropTypeWithLiteralsOriginal, type BackgroundBackgroundTypeOptionsOneOf as BackgroundBackgroundTypeOptionsOneOfOriginal, type BackgroundGradient as BackgroundGradientOriginal, type BackgroundImage as BackgroundImageOriginal, type Background as BackgroundOriginal, BackgroundType as BackgroundTypeOriginal, type BackgroundTypeWithLiterals as BackgroundTypeWithLiteralsOriginal, type Banner as BannerOriginal, type BlockquoteData as BlockquoteDataOriginal, type BookingData as BookingDataOriginal, type BorderColors as BorderColorsOriginal, type Border as BorderOriginal, type BorderWidths as BorderWidthsOriginal, type BulletedListData as BulletedListDataOriginal, type ButtonData as ButtonDataOriginal, ButtonDataType as ButtonDataTypeOriginal, type ButtonDataTypeWithLiterals as ButtonDataTypeWithLiteralsOriginal, type Button as ButtonOriginal, ButtonSize as ButtonSizeOriginal, type ButtonSizeWithLiterals as ButtonSizeWithLiteralsOriginal, type ButtonStyles as ButtonStylesOriginal, type CaptionData as CaptionDataOriginal, type CardDataBackground as CardDataBackgroundOriginal, CardDataBackgroundType as CardDataBackgroundTypeOriginal, type CardDataBackgroundTypeWithLiterals as CardDataBackgroundTypeWithLiteralsOriginal, type CardData as CardDataOriginal, type CardStyles as CardStylesOriginal, type CellStyle as CellStyleOriginal, type Center as CenterOriginal, type CodeBlockData as CodeBlockDataOriginal, type CollapsibleListData as CollapsibleListDataOriginal, type ColorData as ColorDataOriginal, type ColorOptions as ColorOptionsOriginal, type ColorSwatchColorTypeOptionsOneOf as ColorSwatchColorTypeOptionsOneOfOriginal, type ColorSwatch as ColorSwatchOriginal, ColorSwatchType as ColorSwatchTypeOriginal, type ColorSwatchTypeWithLiterals as ColorSwatchTypeWithLiteralsOriginal, type Colors as ColorsOriginal, ColumnSize as ColumnSizeOriginal, type ColumnSizeWithLiterals as ColumnSizeWithLiteralsOriginal, type Content as ContentOriginal, type CreateContentRequest as CreateContentRequestOriginal, type CreateContentResponse as CreateContentResponseOriginal, Crop as CropOriginal, type CropWithLiterals as CropWithLiteralsOriginal, type CursorPagingMetadata as CursorPagingMetadataOriginal, type CursorPaging as CursorPagingOriginal, type CursorQuery as CursorQueryOriginal, type CursorQueryPagingMethodOneOf as CursorQueryPagingMethodOneOfOriginal, type Cursors as CursorsOriginal, type DecorationDataOneOf as DecorationDataOneOfOriginal, type Decoration as DecorationOriginal, DecorationType as DecorationTypeOriginal, type DecorationTypeWithLiterals as DecorationTypeWithLiteralsOriginal, type Design as DesignOriginal, DesignTarget as DesignTargetOriginal, type DesignTargetWithLiterals as DesignTargetWithLiteralsOriginal, type Dimensions as DimensionsOriginal, Direction as DirectionOriginal, type DirectionWithLiterals as DirectionWithLiteralsOriginal, DividerDataAlignment as DividerDataAlignmentOriginal, type DividerDataAlignmentWithLiterals as DividerDataAlignmentWithLiteralsOriginal, type DividerData as DividerDataOriginal, type DocumentStyle as DocumentStyleOriginal, type DomainEventBodyOneOf as DomainEventBodyOneOfOriginal, type DomainEvent as DomainEventOriginal, type EmbedData as EmbedDataOriginal, type Empty as EmptyOriginal, type EntityCreatedEvent as EntityCreatedEventOriginal, type EntityDeletedEvent as EntityDeletedEventOriginal, type EntityUpdatedEvent as EntityUpdatedEventOriginal, type EventData as EventDataOriginal, type FileData as FileDataOriginal, type FileSourceDataOneOf as FileSourceDataOneOfOriginal, type FileSource as FileSourceOriginal, type FontFamilyData as FontFamilyDataOriginal, type FontSizeData as FontSizeDataOriginal, FontType as FontTypeOriginal, type FontTypeWithLiterals as FontTypeWithLiteralsOriginal, type GIFData as GIFDataOriginal, type GIF as GIFOriginal, GIFType as GIFTypeOriginal, type GIFTypeWithLiterals as GIFTypeWithLiteralsOriginal, type GalleryData as GalleryDataOriginal, type GalleryOptionsLayout as GalleryOptionsLayoutOriginal, type GalleryOptions as GalleryOptionsOriginal, type GetContentRequest as GetContentRequestOriginal, type GetContentResponse as GetContentResponseOriginal, type GetLatestContentByPageIdRequest as GetLatestContentByPageIdRequestOriginal, type GetLatestContentByPageIdResponse as GetLatestContentByPageIdResponseOriginal, type GradientGradientTypeOptionsOneOf as GradientGradientTypeOptionsOneOfOriginal, type Gradient as GradientOriginal, type GradientStop as GradientStopOriginal, GradientType as GradientTypeOriginal, type GradientTypeWithLiterals as GradientTypeWithLiteralsOriginal, Group as GroupOriginal, type GroupWithLiterals as GroupWithLiteralsOriginal, type HTMLDataDataOneOf as HTMLDataDataOneOfOriginal, type HTMLData as HTMLDataOriginal, type HeadingData as HeadingDataOriginal, type Height as HeightOriginal, type Hover as HoverOriginal, type IdentificationDataIdOneOf as IdentificationDataIdOneOfOriginal, type IdentificationData as IdentificationDataOriginal, type ImageBorder as ImageBorderOriginal, type ImageData as ImageDataOriginal, type ImageDataStylesBorder as ImageDataStylesBorderOriginal, type ImageDataStyles as ImageDataStylesOriginal, type ImageOptions as ImageOptionsOriginal, type Image as ImageOriginal, ImagePosition as ImagePositionOriginal, ImagePositionPosition as ImagePositionPositionOriginal, type ImagePositionPositionWithLiterals as ImagePositionPositionWithLiteralsOriginal, type ImagePositionWithLiterals as ImagePositionWithLiteralsOriginal, ImageScaling as ImageScalingOriginal, ImageScalingScaling as ImageScalingScalingOriginal, type ImageScalingScalingWithLiterals as ImageScalingScalingWithLiteralsOriginal, type ImageScalingWithLiterals as ImageScalingWithLiteralsOriginal, type ImageStyles as ImageStylesOriginal, Indentation as IndentationOriginal, type IndentationWithLiterals as IndentationWithLiteralsOriginal, InitialExpandedItems as InitialExpandedItemsOriginal, type InitialExpandedItemsWithLiterals as InitialExpandedItemsWithLiteralsOriginal, type ItemDataOneOf as ItemDataOneOfOriginal, type ItemImage as ItemImageOriginal, type Item as ItemOriginal, type ItemStyle as ItemStyleOriginal, type LayoutCellData as LayoutCellDataOriginal, type LayoutDataBackgroundImage as LayoutDataBackgroundImageOriginal, type LayoutDataBackground as LayoutDataBackgroundOriginal, LayoutDataBackgroundType as LayoutDataBackgroundTypeOriginal, type LayoutDataBackgroundTypeWithLiterals as LayoutDataBackgroundTypeWithLiteralsOriginal, LayoutDataImagePosition as LayoutDataImagePositionOriginal, type LayoutDataImagePositionWithLiterals as LayoutDataImagePositionWithLiteralsOriginal, type LayoutData as LayoutDataOriginal, Layout as LayoutOriginal, LayoutType as LayoutTypeOriginal, type LayoutTypeWithLiterals as LayoutTypeWithLiteralsOriginal, type LayoutWithLiterals as LayoutWithLiteralsOriginal, LineStyle as LineStyleOriginal, type LineStyleWithLiterals as LineStyleWithLiteralsOriginal, type LinkDataOneOf as LinkDataOneOfOriginal, type LinkData as LinkDataOriginal, type Link as LinkOriginal, type LinkPreviewData as LinkPreviewDataOriginal, type LinkPreviewDataStyles as LinkPreviewDataStylesOriginal, ListStyle as ListStyleOriginal, type ListStyleWithLiterals as ListStyleWithLiteralsOriginal, type ListValue as ListValueOriginal, type LockLatestContentByPageIdRequest as LockLatestContentByPageIdRequestOriginal, type LockLatestContentByPageIdResponse as LockLatestContentByPageIdResponseOriginal, type MapData as MapDataOriginal, type MapSettings as MapSettingsOriginal, MapType as MapTypeOriginal, type MapTypeWithLiterals as MapTypeWithLiteralsOriginal, type Media as MediaOriginal, type MentionData as MentionDataOriginal, type MessageEnvelope as MessageEnvelopeOriginal, type Metadata as MetadataOriginal, type NodeDataOneOf as NodeDataOneOfOriginal, type Node as NodeOriginal, type NodeStyle as NodeStyleOriginal, NodeType as NodeTypeOriginal, type NodeTypeWithLiterals as NodeTypeWithLiteralsOriginal, NullValue as NullValueOriginal, type NullValueWithLiterals as NullValueWithLiteralsOriginal, type Oembed as OembedOriginal, type OptionDesign as OptionDesignOriginal, type OptionLayout as OptionLayoutOriginal, type Option as OptionOriginal, type OrderedListData as OrderedListDataOriginal, Orientation as OrientationOriginal, type OrientationWithLiterals as OrientationWithLiteralsOriginal, Origin as OriginOriginal, type OriginWithLiterals as OriginWithLiteralsOriginal, type PDFSettings as PDFSettingsOriginal, type ParagraphData as ParagraphDataOriginal, type Permissions as PermissionsOriginal, Placement as PlacementOriginal, type PlacementWithLiterals as PlacementWithLiteralsOriginal, type PlaybackOptions as PlaybackOptionsOriginal, PluginContainerDataAlignment as PluginContainerDataAlignmentOriginal, type PluginContainerDataAlignmentWithLiterals as PluginContainerDataAlignmentWithLiteralsOriginal, type PluginContainerData as PluginContainerDataOriginal, type PluginContainerDataWidthDataOneOf as PluginContainerDataWidthDataOneOfOriginal, type PluginContainerDataWidth as PluginContainerDataWidthOriginal, type PollDataDesign as PollDataDesignOriginal, type PollDataLayout as PollDataLayoutOriginal, type PollData as PollDataOriginal, type PollDesignBackgroundBackgroundOneOf as PollDesignBackgroundBackgroundOneOfOriginal, type PollDesignBackground as PollDesignBackgroundOriginal, PollDesignBackgroundType as PollDesignBackgroundTypeOriginal, type PollDesignBackgroundTypeWithLiterals as PollDesignBackgroundTypeWithLiteralsOriginal, type PollDesign as PollDesignOriginal, PollLayoutDirection as PollLayoutDirectionOriginal, type PollLayoutDirectionWithLiterals as PollLayoutDirectionWithLiteralsOriginal, type PollLayout as PollLayoutOriginal, PollLayoutType as PollLayoutTypeOriginal, type PollLayoutTypeWithLiterals as PollLayoutTypeWithLiteralsOriginal, type Poll as PollOriginal, Position as PositionOriginal, type PositionWithLiterals as PositionWithLiteralsOriginal, type PricingData as PricingDataOriginal, type QueryContentsRequest as QueryContentsRequestOriginal, type QueryContentsResponse as QueryContentsResponseOriginal, type Rel as RelOriginal, Resizing as ResizingOriginal, type ResizingWithLiterals as ResizingWithLiteralsOriginal, ResponsivenessBehaviour as ResponsivenessBehaviourOriginal, type ResponsivenessBehaviourWithLiterals as ResponsivenessBehaviourWithLiteralsOriginal, type RestoreInfo as RestoreInfoOriginal, type RibbonStyles as RibbonStylesOriginal, type RichContent as RichContentOriginal, Scaling as ScalingOriginal, type ScalingWithLiterals as ScalingWithLiteralsOriginal, type Settings as SettingsOriginal, type ShapeData as ShapeDataOriginal, type ShapeDataStyles as ShapeDataStylesOriginal, type SmartBlockCellData as SmartBlockCellDataOriginal, type SmartBlockData as SmartBlockDataOriginal, SmartBlockDataType as SmartBlockDataTypeOriginal, type SmartBlockDataTypeWithLiterals as SmartBlockDataTypeWithLiteralsOriginal, SortOrder as SortOrderOriginal, type SortOrderWithLiterals as SortOrderWithLiteralsOriginal, type Sorting as SortingOriginal, Source as SourceOriginal, type SourceWithLiterals as SourceWithLiteralsOriginal, type SpoilerData as SpoilerDataOriginal, type Spoiler as SpoilerOriginal, type Stop as StopOriginal, type StylesBackground as StylesBackgroundOriginal, StylesBackgroundType as StylesBackgroundTypeOriginal, type StylesBackgroundTypeWithLiterals as StylesBackgroundTypeWithLiteralsOriginal, type StylesBorder as StylesBorderOriginal, type Styles as StylesOriginal, StylesPosition as StylesPositionOriginal, type StylesPositionWithLiterals as StylesPositionWithLiteralsOriginal, type SubmitContentRequest as SubmitContentRequestOriginal, type SubmitContentResponse as SubmitContentResponseOriginal, type TableCellData as TableCellDataOriginal, type TableData as TableDataOriginal, Target as TargetOriginal, type TargetWithLiterals as TargetWithLiteralsOriginal, TextAlignment as TextAlignmentOriginal, type TextAlignmentWithLiterals as TextAlignmentWithLiteralsOriginal, type TextData as TextDataOriginal, type TextNodeStyle as TextNodeStyleOriginal, type TextStyle as TextStyleOriginal, ThumbnailsAlignment as ThumbnailsAlignmentOriginal, type ThumbnailsAlignmentWithLiterals as ThumbnailsAlignmentWithLiteralsOriginal, type Thumbnails as ThumbnailsOriginal, type TocData as TocDataOriginal, Type as TypeOriginal, type TypeWithLiterals as TypeWithLiteralsOriginal, type Typography as TypographyOriginal, type V1Gradient as V1GradientOriginal, V1GradientType as V1GradientTypeOriginal, type V1GradientTypeWithLiterals as V1GradientTypeWithLiteralsOriginal, type V1TextStyle as V1TextStyleOriginal, VerticalAlignmentAlignment as VerticalAlignmentAlignmentOriginal, type VerticalAlignmentAlignmentWithLiterals as VerticalAlignmentAlignmentWithLiteralsOriginal, VerticalAlignment as VerticalAlignmentOriginal, type VerticalAlignmentWithLiterals as VerticalAlignmentWithLiteralsOriginal, type VideoData as VideoDataOriginal, type Video as VideoOriginal, ViewMode as ViewModeOriginal, type ViewModeWithLiterals as ViewModeWithLiteralsOriginal, ViewRole as ViewRoleOriginal, type ViewRoleWithLiterals as ViewRoleWithLiteralsOriginal, VoteRole as VoteRoleOriginal, type VoteRoleWithLiterals as VoteRoleWithLiteralsOriginal, WebhookIdentityType as WebhookIdentityTypeOriginal, type WebhookIdentityTypeWithLiterals as WebhookIdentityTypeWithLiteralsOriginal, Width as WidthOriginal, WidthType as WidthTypeOriginal, type WidthTypeWithLiterals as WidthTypeWithLiteralsOriginal, type WidthWithLiterals as WidthWithLiteralsOriginal, type __PublicMethodMetaInfo, getContent, getLatestContentByPageId, lockLatestContentByPageId, queryContents, submitContent };
|
|
3135
|
+
export { type AccountInfo as AccountInfoOriginal, type ActionEvent as ActionEventOriginal, Alignment as AlignmentOriginal, type AlignmentWithLiterals as AlignmentWithLiteralsOriginal, type AnchorData as AnchorDataOriginal, type AppEmbedDataAppDataOneOf as AppEmbedDataAppDataOneOfOriginal, type AppEmbedData as AppEmbedDataOriginal, AppType as AppTypeOriginal, type AppTypeWithLiterals as AppTypeWithLiteralsOriginal, AspectRatio as AspectRatioOriginal, type AspectRatioWithLiterals as AspectRatioWithLiteralsOriginal, type AudioData as AudioDataOriginal, type Backdrop as BackdropOriginal, BackdropType as BackdropTypeOriginal, type BackdropTypeWithLiterals as BackdropTypeWithLiteralsOriginal, type BackgroundBackgroundTypeOptionsOneOf as BackgroundBackgroundTypeOptionsOneOfOriginal, type BackgroundGradient as BackgroundGradientOriginal, type BackgroundImage as BackgroundImageOriginal, type Background as BackgroundOriginal, BackgroundType as BackgroundTypeOriginal, type BackgroundTypeWithLiterals as BackgroundTypeWithLiteralsOriginal, type Banner as BannerOriginal, BannerPosition as BannerPositionOriginal, type BannerPositionWithLiterals as BannerPositionWithLiteralsOriginal, type BlockquoteData as BlockquoteDataOriginal, type BookingData as BookingDataOriginal, type BorderColors as BorderColorsOriginal, type Border as BorderOriginal, type BorderWidths as BorderWidthsOriginal, type BulletedListData as BulletedListDataOriginal, type ButtonData as ButtonDataOriginal, ButtonDataType as ButtonDataTypeOriginal, type ButtonDataTypeWithLiterals as ButtonDataTypeWithLiteralsOriginal, type Button as ButtonOriginal, ButtonSize as ButtonSizeOriginal, type ButtonSizeWithLiterals as ButtonSizeWithLiteralsOriginal, type ButtonStyles as ButtonStylesOriginal, type CaptionData as CaptionDataOriginal, type CardDataBackground as CardDataBackgroundOriginal, CardDataBackgroundType as CardDataBackgroundTypeOriginal, type CardDataBackgroundTypeWithLiterals as CardDataBackgroundTypeWithLiteralsOriginal, type CardData as CardDataOriginal, type CardStyles as CardStylesOriginal, type CellStyle as CellStyleOriginal, type Center as CenterOriginal, type CodeBlockData as CodeBlockDataOriginal, type CollapsibleListData as CollapsibleListDataOriginal, type ColorData as ColorDataOriginal, type ColorOptions as ColorOptionsOriginal, type ColorSwatchColorTypeOptionsOneOf as ColorSwatchColorTypeOptionsOneOfOriginal, type ColorSwatch as ColorSwatchOriginal, ColorSwatchType as ColorSwatchTypeOriginal, type ColorSwatchTypeWithLiterals as ColorSwatchTypeWithLiteralsOriginal, type Colors as ColorsOriginal, ColumnSize as ColumnSizeOriginal, type ColumnSizeWithLiterals as ColumnSizeWithLiteralsOriginal, type Content as ContentOriginal, type CreateContentRequest as CreateContentRequestOriginal, type CreateContentResponse as CreateContentResponseOriginal, Crop as CropOriginal, type CropWithLiterals as CropWithLiteralsOriginal, type CursorPagingMetadata as CursorPagingMetadataOriginal, type CursorPaging as CursorPagingOriginal, type CursorQuery as CursorQueryOriginal, type CursorQueryPagingMethodOneOf as CursorQueryPagingMethodOneOfOriginal, type Cursors as CursorsOriginal, type DecorationDataOneOf as DecorationDataOneOfOriginal, type Decoration as DecorationOriginal, DecorationType as DecorationTypeOriginal, type DecorationTypeWithLiterals as DecorationTypeWithLiteralsOriginal, type Design as DesignOriginal, DesignTarget as DesignTargetOriginal, type DesignTargetWithLiterals as DesignTargetWithLiteralsOriginal, type Dimensions as DimensionsOriginal, Direction as DirectionOriginal, type DirectionWithLiterals as DirectionWithLiteralsOriginal, DividerDataAlignment as DividerDataAlignmentOriginal, type DividerDataAlignmentWithLiterals as DividerDataAlignmentWithLiteralsOriginal, type DividerData as DividerDataOriginal, type DocumentStyle as DocumentStyleOriginal, type DomainEventBodyOneOf as DomainEventBodyOneOfOriginal, type DomainEvent as DomainEventOriginal, type EmbedData as EmbedDataOriginal, type Empty as EmptyOriginal, type EntityCreatedEvent as EntityCreatedEventOriginal, type EntityDeletedEvent as EntityDeletedEventOriginal, type EntityUpdatedEvent as EntityUpdatedEventOriginal, type EventData as EventDataOriginal, type FileData as FileDataOriginal, type FileSourceDataOneOf as FileSourceDataOneOfOriginal, type FileSource as FileSourceOriginal, type FontFamilyData as FontFamilyDataOriginal, type FontSizeData as FontSizeDataOriginal, FontType as FontTypeOriginal, type FontTypeWithLiterals as FontTypeWithLiteralsOriginal, type GIFData as GIFDataOriginal, type GIF as GIFOriginal, GIFType as GIFTypeOriginal, type GIFTypeWithLiterals as GIFTypeWithLiteralsOriginal, type GalleryData as GalleryDataOriginal, type GalleryOptionsLayout as GalleryOptionsLayoutOriginal, type GalleryOptions as GalleryOptionsOriginal, type GetContentRequest as GetContentRequestOriginal, type GetContentResponse as GetContentResponseOriginal, type GetLatestContentByPageIdRequest as GetLatestContentByPageIdRequestOriginal, type GetLatestContentByPageIdResponse as GetLatestContentByPageIdResponseOriginal, type GradientGradientTypeOptionsOneOf as GradientGradientTypeOptionsOneOfOriginal, type Gradient as GradientOriginal, type GradientStop as GradientStopOriginal, GradientType as GradientTypeOriginal, type GradientTypeWithLiterals as GradientTypeWithLiteralsOriginal, Group as GroupOriginal, type GroupWithLiterals as GroupWithLiteralsOriginal, type HTMLDataDataOneOf as HTMLDataDataOneOfOriginal, type HTMLData as HTMLDataOriginal, type HeadingData as HeadingDataOriginal, type Height as HeightOriginal, type Hover as HoverOriginal, type IdentificationDataIdOneOf as IdentificationDataIdOneOfOriginal, type IdentificationData as IdentificationDataOriginal, type ImageBorder as ImageBorderOriginal, type ImageData as ImageDataOriginal, type ImageDataStylesBorder as ImageDataStylesBorderOriginal, type ImageDataStyles as ImageDataStylesOriginal, type ImageOptions as ImageOptionsOriginal, type Image as ImageOriginal, ImagePosition as ImagePositionOriginal, ImagePositionPosition as ImagePositionPositionOriginal, type ImagePositionPositionWithLiterals as ImagePositionPositionWithLiteralsOriginal, type ImagePositionWithLiterals as ImagePositionWithLiteralsOriginal, ImageScaling as ImageScalingOriginal, ImageScalingScaling as ImageScalingScalingOriginal, type ImageScalingScalingWithLiterals as ImageScalingScalingWithLiteralsOriginal, type ImageScalingWithLiterals as ImageScalingWithLiteralsOriginal, type ImageStyles as ImageStylesOriginal, Indentation as IndentationOriginal, type IndentationWithLiterals as IndentationWithLiteralsOriginal, InitialExpandedItems as InitialExpandedItemsOriginal, type InitialExpandedItemsWithLiterals as InitialExpandedItemsWithLiteralsOriginal, type ItemDataOneOf as ItemDataOneOfOriginal, type ItemImage as ItemImageOriginal, type Item as ItemOriginal, type ItemStyle as ItemStyleOriginal, type LayoutCellData as LayoutCellDataOriginal, type LayoutDataBackgroundImage as LayoutDataBackgroundImageOriginal, type LayoutDataBackground as LayoutDataBackgroundOriginal, LayoutDataBackgroundType as LayoutDataBackgroundTypeOriginal, type LayoutDataBackgroundTypeWithLiterals as LayoutDataBackgroundTypeWithLiteralsOriginal, LayoutDataImagePosition as LayoutDataImagePositionOriginal, type LayoutDataImagePositionWithLiterals as LayoutDataImagePositionWithLiteralsOriginal, type LayoutData as LayoutDataOriginal, Layout as LayoutOriginal, LayoutType as LayoutTypeOriginal, type LayoutTypeWithLiterals as LayoutTypeWithLiteralsOriginal, type LayoutWithLiterals as LayoutWithLiteralsOriginal, LineStyle as LineStyleOriginal, type LineStyleWithLiterals as LineStyleWithLiteralsOriginal, type LinkDataOneOf as LinkDataOneOfOriginal, type LinkData as LinkDataOriginal, type Link as LinkOriginal, type LinkPreviewData as LinkPreviewDataOriginal, type LinkPreviewDataStyles as LinkPreviewDataStylesOriginal, ListStyle as ListStyleOriginal, type ListStyleWithLiterals as ListStyleWithLiteralsOriginal, type ListValue as ListValueOriginal, type LockLatestContentByPageIdRequest as LockLatestContentByPageIdRequestOriginal, type LockLatestContentByPageIdResponse as LockLatestContentByPageIdResponseOriginal, type MapData as MapDataOriginal, type MapSettings as MapSettingsOriginal, MapType as MapTypeOriginal, type MapTypeWithLiterals as MapTypeWithLiteralsOriginal, type Media as MediaOriginal, type MentionData as MentionDataOriginal, type MessageEnvelope as MessageEnvelopeOriginal, type Metadata as MetadataOriginal, type NodeDataOneOf as NodeDataOneOfOriginal, type Node as NodeOriginal, type NodeStyle as NodeStyleOriginal, NodeType as NodeTypeOriginal, type NodeTypeWithLiterals as NodeTypeWithLiteralsOriginal, NullValue as NullValueOriginal, type NullValueWithLiterals as NullValueWithLiteralsOriginal, type Oembed as OembedOriginal, type OptionDesign as OptionDesignOriginal, type OptionLayout as OptionLayoutOriginal, type Option as OptionOriginal, type OrderedListData as OrderedListDataOriginal, Orientation as OrientationOriginal, type OrientationWithLiterals as OrientationWithLiteralsOriginal, Origin as OriginOriginal, type OriginWithLiterals as OriginWithLiteralsOriginal, type PDFSettings as PDFSettingsOriginal, type ParagraphData as ParagraphDataOriginal, type Permissions as PermissionsOriginal, Placement as PlacementOriginal, type PlacementWithLiterals as PlacementWithLiteralsOriginal, type PlaybackOptions as PlaybackOptionsOriginal, PluginContainerDataAlignment as PluginContainerDataAlignmentOriginal, type PluginContainerDataAlignmentWithLiterals as PluginContainerDataAlignmentWithLiteralsOriginal, type PluginContainerData as PluginContainerDataOriginal, type PluginContainerDataWidthDataOneOf as PluginContainerDataWidthDataOneOfOriginal, type PluginContainerDataWidth as PluginContainerDataWidthOriginal, type PollDataDesign as PollDataDesignOriginal, type PollDataLayout as PollDataLayoutOriginal, type PollData as PollDataOriginal, type PollDesignBackgroundBackgroundOneOf as PollDesignBackgroundBackgroundOneOfOriginal, type PollDesignBackground as PollDesignBackgroundOriginal, PollDesignBackgroundType as PollDesignBackgroundTypeOriginal, type PollDesignBackgroundTypeWithLiterals as PollDesignBackgroundTypeWithLiteralsOriginal, type PollDesign as PollDesignOriginal, PollLayoutDirection as PollLayoutDirectionOriginal, type PollLayoutDirectionWithLiterals as PollLayoutDirectionWithLiteralsOriginal, type PollLayout as PollLayoutOriginal, PollLayoutType as PollLayoutTypeOriginal, type PollLayoutTypeWithLiterals as PollLayoutTypeWithLiteralsOriginal, type Poll as PollOriginal, Position as PositionOriginal, type PositionWithLiterals as PositionWithLiteralsOriginal, type PricingData as PricingDataOriginal, type QueryContentsRequest as QueryContentsRequestOriginal, type QueryContentsResponse as QueryContentsResponseOriginal, type Rel as RelOriginal, Resizing as ResizingOriginal, type ResizingWithLiterals as ResizingWithLiteralsOriginal, ResponsivenessBehaviour as ResponsivenessBehaviourOriginal, type ResponsivenessBehaviourWithLiterals as ResponsivenessBehaviourWithLiteralsOriginal, type RestoreInfo as RestoreInfoOriginal, type RibbonStyles as RibbonStylesOriginal, type RichContent as RichContentOriginal, Scaling as ScalingOriginal, type ScalingWithLiterals as ScalingWithLiteralsOriginal, type Settings as SettingsOriginal, type ShapeData as ShapeDataOriginal, type ShapeDataStyles as ShapeDataStylesOriginal, type SmartBlockCellData as SmartBlockCellDataOriginal, type SmartBlockData as SmartBlockDataOriginal, SmartBlockDataType as SmartBlockDataTypeOriginal, type SmartBlockDataTypeWithLiterals as SmartBlockDataTypeWithLiteralsOriginal, SortOrder as SortOrderOriginal, type SortOrderWithLiterals as SortOrderWithLiteralsOriginal, type Sorting as SortingOriginal, Source as SourceOriginal, type SourceWithLiterals as SourceWithLiteralsOriginal, type SpoilerData as SpoilerDataOriginal, type Spoiler as SpoilerOriginal, type Stop as StopOriginal, type StylesBackground as StylesBackgroundOriginal, StylesBackgroundType as StylesBackgroundTypeOriginal, type StylesBackgroundTypeWithLiterals as StylesBackgroundTypeWithLiteralsOriginal, type StylesBorder as StylesBorderOriginal, type Styles as StylesOriginal, StylesPosition as StylesPositionOriginal, type StylesPositionWithLiterals as StylesPositionWithLiteralsOriginal, type SubmitContentRequest as SubmitContentRequestOriginal, type SubmitContentResponse as SubmitContentResponseOriginal, type TableCellData as TableCellDataOriginal, type TableData as TableDataOriginal, Target as TargetOriginal, type TargetWithLiterals as TargetWithLiteralsOriginal, TextAlignment as TextAlignmentOriginal, type TextAlignmentWithLiterals as TextAlignmentWithLiteralsOriginal, type TextData as TextDataOriginal, type TextNodeStyle as TextNodeStyleOriginal, type TextStyle as TextStyleOriginal, ThumbnailsAlignment as ThumbnailsAlignmentOriginal, type ThumbnailsAlignmentWithLiterals as ThumbnailsAlignmentWithLiteralsOriginal, type Thumbnails as ThumbnailsOriginal, type TocData as TocDataOriginal, Type as TypeOriginal, type TypeWithLiterals as TypeWithLiteralsOriginal, type Typography as TypographyOriginal, type V1Gradient as V1GradientOriginal, V1GradientType as V1GradientTypeOriginal, type V1GradientTypeWithLiterals as V1GradientTypeWithLiteralsOriginal, type V1TextStyle as V1TextStyleOriginal, VerticalAlignmentAlignment as VerticalAlignmentAlignmentOriginal, type VerticalAlignmentAlignmentWithLiterals as VerticalAlignmentAlignmentWithLiteralsOriginal, VerticalAlignment as VerticalAlignmentOriginal, type VerticalAlignmentWithLiterals as VerticalAlignmentWithLiteralsOriginal, type VideoData as VideoDataOriginal, type Video as VideoOriginal, ViewMode as ViewModeOriginal, type ViewModeWithLiterals as ViewModeWithLiteralsOriginal, ViewRole as ViewRoleOriginal, type ViewRoleWithLiterals as ViewRoleWithLiteralsOriginal, VoteRole as VoteRoleOriginal, type VoteRoleWithLiterals as VoteRoleWithLiteralsOriginal, WebhookIdentityType as WebhookIdentityTypeOriginal, type WebhookIdentityTypeWithLiterals as WebhookIdentityTypeWithLiteralsOriginal, Width as WidthOriginal, WidthType as WidthTypeOriginal, type WidthTypeWithLiterals as WidthTypeWithLiteralsOriginal, type WidthWithLiterals as WidthWithLiteralsOriginal, type __PublicMethodMetaInfo, getContent, getLatestContentByPageId, lockLatestContentByPageId, queryContents, submitContent };
|
package/build/cjs/meta.js
CHANGED
|
@@ -25,6 +25,7 @@ __export(meta_exports, {
|
|
|
25
25
|
AspectRatioOriginal: () => AspectRatio,
|
|
26
26
|
BackdropTypeOriginal: () => BackdropType,
|
|
27
27
|
BackgroundTypeOriginal: () => BackgroundType,
|
|
28
|
+
BannerPositionOriginal: () => BannerPosition,
|
|
28
29
|
ButtonDataTypeOriginal: () => ButtonDataType,
|
|
29
30
|
ButtonSizeOriginal: () => ButtonSize,
|
|
30
31
|
CardDataBackgroundTypeOriginal: () => CardDataBackgroundType,
|
|
@@ -1513,6 +1514,11 @@ var Origin = /* @__PURE__ */ ((Origin2) => {
|
|
|
1513
1514
|
Origin2["LAYOUT"] = "LAYOUT";
|
|
1514
1515
|
return Origin2;
|
|
1515
1516
|
})(Origin || {});
|
|
1517
|
+
var BannerPosition = /* @__PURE__ */ ((BannerPosition2) => {
|
|
1518
|
+
BannerPosition2["TOP"] = "TOP";
|
|
1519
|
+
BannerPosition2["BOTTOM"] = "BOTTOM";
|
|
1520
|
+
return BannerPosition2;
|
|
1521
|
+
})(BannerPosition || {});
|
|
1516
1522
|
var LayoutDataBackgroundType = /* @__PURE__ */ ((LayoutDataBackgroundType2) => {
|
|
1517
1523
|
LayoutDataBackgroundType2["COLOR"] = "COLOR";
|
|
1518
1524
|
LayoutDataBackgroundType2["GRADIENT"] = "GRADIENT";
|
|
@@ -1592,6 +1598,11 @@ var SmartBlockDataType = /* @__PURE__ */ ((SmartBlockDataType2) => {
|
|
|
1592
1598
|
SmartBlockDataType2["ARROW_BULLETS"] = "ARROW_BULLETS";
|
|
1593
1599
|
SmartBlockDataType2["PROCESS_STEPS"] = "PROCESS_STEPS";
|
|
1594
1600
|
SmartBlockDataType2["BAR_STATS"] = "BAR_STATS";
|
|
1601
|
+
SmartBlockDataType2["TIMELINE"] = "TIMELINE";
|
|
1602
|
+
SmartBlockDataType2["MINIMAL_TIMELINE"] = "MINIMAL_TIMELINE";
|
|
1603
|
+
SmartBlockDataType2["PILLS"] = "PILLS";
|
|
1604
|
+
SmartBlockDataType2["STAR_RATING"] = "STAR_RATING";
|
|
1605
|
+
SmartBlockDataType2["QUOTE_BOXES"] = "QUOTE_BOXES";
|
|
1595
1606
|
return SmartBlockDataType2;
|
|
1596
1607
|
})(SmartBlockDataType || {});
|
|
1597
1608
|
var ColumnSize = /* @__PURE__ */ ((ColumnSize2) => {
|
|
@@ -1713,6 +1724,7 @@ function queryContents2() {
|
|
|
1713
1724
|
AspectRatioOriginal,
|
|
1714
1725
|
BackdropTypeOriginal,
|
|
1715
1726
|
BackgroundTypeOriginal,
|
|
1727
|
+
BannerPositionOriginal,
|
|
1716
1728
|
ButtonDataTypeOriginal,
|
|
1717
1729
|
ButtonSizeOriginal,
|
|
1718
1730
|
CardDataBackgroundTypeOriginal,
|