@wix/auto_sdk_faq_question-entry 1.0.43 → 1.0.45
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/cjs/index.d.ts +1 -1
- package/build/cjs/index.js +7 -0
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +77 -52
- package/build/cjs/index.typings.js +7 -0
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +77 -52
- package/build/cjs/meta.js +7 -0
- package/build/cjs/meta.js.map +1 -1
- package/build/es/index.d.mts +1 -1
- package/build/es/index.mjs +6 -0
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +77 -52
- package/build/es/index.typings.mjs +6 -0
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +77 -52
- package/build/es/meta.mjs +6 -0
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/index.d.ts +1 -1
- package/build/internal/cjs/index.js +7 -0
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +77 -52
- package/build/internal/cjs/index.typings.js +7 -0
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +77 -52
- package/build/internal/cjs/meta.js +7 -0
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/index.d.mts +1 -1
- package/build/internal/es/index.mjs +6 -0
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +77 -52
- package/build/internal/es/index.typings.mjs +6 -0
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +77 -52
- package/build/internal/es/meta.mjs +6 -0
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -356,7 +356,7 @@ type GradientTypeWithLiterals = GradientType | 'LINEAR' | 'RADIAL';
|
|
|
356
356
|
interface Stop {
|
|
357
357
|
/**
|
|
358
358
|
* Stop color as hex value.
|
|
359
|
-
* @
|
|
359
|
+
* @maxLength 19
|
|
360
360
|
*/
|
|
361
361
|
color?: string | null;
|
|
362
362
|
/** Stop position (0-1). */
|
|
@@ -397,7 +397,7 @@ interface Background {
|
|
|
397
397
|
type?: BackgroundTypeWithLiterals;
|
|
398
398
|
/**
|
|
399
399
|
* Background color as a hexadecimal value.
|
|
400
|
-
* @
|
|
400
|
+
* @maxLength 19
|
|
401
401
|
*/
|
|
402
402
|
color?: string | null;
|
|
403
403
|
/** Gradient configuration. */
|
|
@@ -504,33 +504,33 @@ interface Styles {
|
|
|
504
504
|
borderRadius?: number | null;
|
|
505
505
|
/**
|
|
506
506
|
* Border color as a hexadecimal value.
|
|
507
|
-
* @
|
|
507
|
+
* @maxLength 19
|
|
508
508
|
*/
|
|
509
509
|
borderColor?: string | null;
|
|
510
510
|
/**
|
|
511
511
|
* Border color as a hexadecimal value (hover state).
|
|
512
|
-
* @
|
|
512
|
+
* @maxLength 19
|
|
513
513
|
*/
|
|
514
514
|
borderColorHover?: string | null;
|
|
515
515
|
/**
|
|
516
516
|
* Text color as a hexadecimal value.
|
|
517
|
-
* @
|
|
517
|
+
* @maxLength 19
|
|
518
518
|
*/
|
|
519
519
|
textColor?: string | null;
|
|
520
520
|
/**
|
|
521
521
|
* Text color as a hexadecimal value (hover state).
|
|
522
|
-
* @
|
|
522
|
+
* @maxLength 19
|
|
523
523
|
*/
|
|
524
524
|
textColorHover?: string | null;
|
|
525
525
|
/**
|
|
526
526
|
* Deprecated: Use `background` instead.
|
|
527
|
-
* @
|
|
527
|
+
* @maxLength 19
|
|
528
528
|
* @deprecated
|
|
529
529
|
*/
|
|
530
530
|
backgroundColor?: string | null;
|
|
531
531
|
/**
|
|
532
532
|
* Deprecated: Use `backgroundHover` instead.
|
|
533
|
-
* @
|
|
533
|
+
* @maxLength 19
|
|
534
534
|
* @deprecated
|
|
535
535
|
*/
|
|
536
536
|
backgroundColorHover?: string | null;
|
|
@@ -982,7 +982,7 @@ interface StylesBorder {
|
|
|
982
982
|
width?: number | null;
|
|
983
983
|
/**
|
|
984
984
|
* Border color as a hexadecimal value.
|
|
985
|
-
* @
|
|
985
|
+
* @maxLength 19
|
|
986
986
|
*/
|
|
987
987
|
color?: string | null;
|
|
988
988
|
/** Border radius in pixels. */
|
|
@@ -1023,22 +1023,22 @@ type StylesPositionWithLiterals = StylesPosition | 'START' | 'END' | 'TOP' | 'HI
|
|
|
1023
1023
|
interface LinkPreviewDataStyles {
|
|
1024
1024
|
/**
|
|
1025
1025
|
* Background color as a hexadecimal value.
|
|
1026
|
-
* @
|
|
1026
|
+
* @maxLength 19
|
|
1027
1027
|
*/
|
|
1028
1028
|
backgroundColor?: string | null;
|
|
1029
1029
|
/**
|
|
1030
1030
|
* Title color as a hexadecimal value.
|
|
1031
|
-
* @
|
|
1031
|
+
* @maxLength 19
|
|
1032
1032
|
*/
|
|
1033
1033
|
titleColor?: string | null;
|
|
1034
1034
|
/**
|
|
1035
1035
|
* Subtitle color as a hexadecimal value.
|
|
1036
|
-
* @
|
|
1036
|
+
* @maxLength 19
|
|
1037
1037
|
*/
|
|
1038
1038
|
subtitleColor?: string | null;
|
|
1039
1039
|
/**
|
|
1040
1040
|
* Link color as a hexadecimal value.
|
|
1041
|
-
* @
|
|
1041
|
+
* @maxLength 19
|
|
1042
1042
|
*/
|
|
1043
1043
|
linkColor?: string | null;
|
|
1044
1044
|
/** Border width in pixels. */
|
|
@@ -1047,7 +1047,7 @@ interface LinkPreviewDataStyles {
|
|
|
1047
1047
|
borderRadius?: number | null;
|
|
1048
1048
|
/**
|
|
1049
1049
|
* Border color as a hexadecimal value.
|
|
1050
|
-
* @
|
|
1050
|
+
* @maxLength 19
|
|
1051
1051
|
*/
|
|
1052
1052
|
borderColor?: string | null;
|
|
1053
1053
|
/** Position of thumbnail. Defaults to `START`. */
|
|
@@ -1198,19 +1198,19 @@ interface BackgroundGradient {
|
|
|
1198
1198
|
angle?: number | null;
|
|
1199
1199
|
/**
|
|
1200
1200
|
* The start color as a hexademical value.
|
|
1201
|
-
* @
|
|
1201
|
+
* @maxLength 19
|
|
1202
1202
|
*/
|
|
1203
1203
|
startColor?: string | null;
|
|
1204
1204
|
/**
|
|
1205
1205
|
* The end color as a hexademical value.
|
|
1206
|
-
* @
|
|
1206
|
+
* @maxLength 19
|
|
1207
1207
|
*/
|
|
1208
1208
|
lastColor?: string | null;
|
|
1209
1209
|
}
|
|
1210
1210
|
interface PollDesignBackground extends PollDesignBackgroundBackgroundOneOf {
|
|
1211
1211
|
/**
|
|
1212
1212
|
* The background color as a hexademical value.
|
|
1213
|
-
* @
|
|
1213
|
+
* @maxLength 19
|
|
1214
1214
|
*/
|
|
1215
1215
|
color?: string | null;
|
|
1216
1216
|
/** An image to use for the background. */
|
|
@@ -1224,7 +1224,7 @@ interface PollDesignBackground extends PollDesignBackgroundBackgroundOneOf {
|
|
|
1224
1224
|
interface PollDesignBackgroundBackgroundOneOf {
|
|
1225
1225
|
/**
|
|
1226
1226
|
* The background color as a hexademical value.
|
|
1227
|
-
* @
|
|
1227
|
+
* @maxLength 19
|
|
1228
1228
|
*/
|
|
1229
1229
|
color?: string | null;
|
|
1230
1230
|
/** An image to use for the background. */
|
|
@@ -1538,32 +1538,32 @@ interface ButtonStyles {
|
|
|
1538
1538
|
borderRadius?: number | null;
|
|
1539
1539
|
/**
|
|
1540
1540
|
* Border color as a hexadecimal value.
|
|
1541
|
-
* @
|
|
1541
|
+
* @maxLength 19
|
|
1542
1542
|
*/
|
|
1543
1543
|
borderColor?: string | null;
|
|
1544
1544
|
/**
|
|
1545
1545
|
* Text color as a hexadecimal value.
|
|
1546
|
-
* @
|
|
1546
|
+
* @maxLength 19
|
|
1547
1547
|
*/
|
|
1548
1548
|
textColor?: string | null;
|
|
1549
1549
|
/**
|
|
1550
1550
|
* Background color as a hexadecimal value.
|
|
1551
|
-
* @
|
|
1551
|
+
* @maxLength 19
|
|
1552
1552
|
*/
|
|
1553
1553
|
backgroundColor?: string | null;
|
|
1554
1554
|
/**
|
|
1555
1555
|
* Border color as a hexadecimal value (hover state).
|
|
1556
|
-
* @
|
|
1556
|
+
* @maxLength 19
|
|
1557
1557
|
*/
|
|
1558
1558
|
borderColorHover?: string | null;
|
|
1559
1559
|
/**
|
|
1560
1560
|
* Text color as a hexadecimal value (hover state).
|
|
1561
|
-
* @
|
|
1561
|
+
* @maxLength 19
|
|
1562
1562
|
*/
|
|
1563
1563
|
textColorHover?: string | null;
|
|
1564
1564
|
/**
|
|
1565
1565
|
* Background color as a hexadecimal value (hover state).
|
|
1566
|
-
* @
|
|
1566
|
+
* @maxLength 19
|
|
1567
1567
|
*/
|
|
1568
1568
|
backgroundColorHover?: string | null;
|
|
1569
1569
|
/** Button size option, one of `SMALL`, `MEDIUM` or `LARGE`. Defaults to `MEDIUM`. */
|
|
@@ -1580,7 +1580,7 @@ interface ImageStyles {
|
|
|
1580
1580
|
resizing?: ResizingWithLiterals;
|
|
1581
1581
|
/**
|
|
1582
1582
|
* Image border color as a hexadecimal value.
|
|
1583
|
-
* @
|
|
1583
|
+
* @maxLength 19
|
|
1584
1584
|
*/
|
|
1585
1585
|
borderColor?: string | null;
|
|
1586
1586
|
/** Image border width in pixels. */
|
|
@@ -1593,17 +1593,17 @@ interface RibbonStyles {
|
|
|
1593
1593
|
ribbonText?: string | null;
|
|
1594
1594
|
/**
|
|
1595
1595
|
* Ribbon background color as a hexadecimal value.
|
|
1596
|
-
* @
|
|
1596
|
+
* @maxLength 19
|
|
1597
1597
|
*/
|
|
1598
1598
|
backgroundColor?: string | null;
|
|
1599
1599
|
/**
|
|
1600
1600
|
* Ribbon text color as a hexadecimal value.
|
|
1601
|
-
* @
|
|
1601
|
+
* @maxLength 19
|
|
1602
1602
|
*/
|
|
1603
1603
|
textColor?: string | null;
|
|
1604
1604
|
/**
|
|
1605
1605
|
* Ribbon border color as a hexadecimal value.
|
|
1606
|
-
* @
|
|
1606
|
+
* @maxLength 19
|
|
1607
1607
|
*/
|
|
1608
1608
|
borderColor?: string | null;
|
|
1609
1609
|
/** Ribbon border width in pixels. */
|
|
@@ -1616,12 +1616,12 @@ interface RibbonStyles {
|
|
|
1616
1616
|
interface CardStyles {
|
|
1617
1617
|
/**
|
|
1618
1618
|
* Card background color as a hexadecimal value.
|
|
1619
|
-
* @
|
|
1619
|
+
* @maxLength 19
|
|
1620
1620
|
*/
|
|
1621
1621
|
backgroundColor?: string | null;
|
|
1622
1622
|
/**
|
|
1623
1623
|
* Card border color as a hexadecimal value.
|
|
1624
|
-
* @
|
|
1624
|
+
* @maxLength 19
|
|
1625
1625
|
*/
|
|
1626
1626
|
borderColor?: string | null;
|
|
1627
1627
|
/** Card border width in pixels. */
|
|
@@ -1636,12 +1636,12 @@ interface CardStyles {
|
|
|
1636
1636
|
titlePriceLayout?: LayoutWithLiterals;
|
|
1637
1637
|
/**
|
|
1638
1638
|
* Title text color as a hexadecimal value.
|
|
1639
|
-
* @
|
|
1639
|
+
* @maxLength 19
|
|
1640
1640
|
*/
|
|
1641
1641
|
titleColor?: string | null;
|
|
1642
1642
|
/**
|
|
1643
1643
|
* Text color as a hexadecimal value.
|
|
1644
|
-
* @
|
|
1644
|
+
* @maxLength 19
|
|
1645
1645
|
*/
|
|
1646
1646
|
textColor?: string | null;
|
|
1647
1647
|
}
|
|
@@ -1823,29 +1823,29 @@ interface CellStyle {
|
|
|
1823
1823
|
verticalAlignment?: VerticalAlignmentWithLiterals;
|
|
1824
1824
|
/**
|
|
1825
1825
|
* Cell background color as a hexadecimal value.
|
|
1826
|
-
* @
|
|
1826
|
+
* @maxLength 19
|
|
1827
1827
|
*/
|
|
1828
1828
|
backgroundColor?: string | null;
|
|
1829
1829
|
}
|
|
1830
1830
|
interface BorderColors {
|
|
1831
1831
|
/**
|
|
1832
1832
|
* Left border color as a hexadecimal value.
|
|
1833
|
-
* @
|
|
1833
|
+
* @maxLength 19
|
|
1834
1834
|
*/
|
|
1835
1835
|
left?: string | null;
|
|
1836
1836
|
/**
|
|
1837
1837
|
* Right border color as a hexadecimal value.
|
|
1838
|
-
* @
|
|
1838
|
+
* @maxLength 19
|
|
1839
1839
|
*/
|
|
1840
1840
|
right?: string | null;
|
|
1841
1841
|
/**
|
|
1842
1842
|
* Top border color as a hexadecimal value.
|
|
1843
|
-
* @
|
|
1843
|
+
* @maxLength 19
|
|
1844
1844
|
*/
|
|
1845
1845
|
top?: string | null;
|
|
1846
1846
|
/**
|
|
1847
1847
|
* Bottom border color as a hexadecimal value.
|
|
1848
|
-
* @
|
|
1848
|
+
* @maxLength 19
|
|
1849
1849
|
*/
|
|
1850
1850
|
bottom?: string | null;
|
|
1851
1851
|
}
|
|
@@ -1920,7 +1920,7 @@ interface CaptionData {
|
|
|
1920
1920
|
interface LayoutData {
|
|
1921
1921
|
/**
|
|
1922
1922
|
* Deprecated: Use `background` instead.
|
|
1923
|
-
* @
|
|
1923
|
+
* @maxLength 19
|
|
1924
1924
|
* @deprecated
|
|
1925
1925
|
*/
|
|
1926
1926
|
backgroundColor?: string | null;
|
|
@@ -1928,7 +1928,7 @@ interface LayoutData {
|
|
|
1928
1928
|
backgroundImage?: LayoutDataBackgroundImage;
|
|
1929
1929
|
/**
|
|
1930
1930
|
* Border color as a hexadecimal value.
|
|
1931
|
-
* @
|
|
1931
|
+
* @maxLength 19
|
|
1932
1932
|
*/
|
|
1933
1933
|
borderColor?: string | null;
|
|
1934
1934
|
/** Border width in pixels. */
|
|
@@ -1937,7 +1937,7 @@ interface LayoutData {
|
|
|
1937
1937
|
borderRadius?: number | null;
|
|
1938
1938
|
/**
|
|
1939
1939
|
* Deprecated: Use `backdrop` instead.
|
|
1940
|
-
* @
|
|
1940
|
+
* @maxLength 19
|
|
1941
1941
|
* @deprecated
|
|
1942
1942
|
*/
|
|
1943
1943
|
backdropColor?: string | null;
|
|
@@ -1964,7 +1964,7 @@ interface LayoutData {
|
|
|
1964
1964
|
containerData?: PluginContainerData;
|
|
1965
1965
|
/** Defines where selected design propertied applies to */
|
|
1966
1966
|
designTarget?: DesignTargetWithLiterals;
|
|
1967
|
-
/** Banner configuration. When present, this layout is
|
|
1967
|
+
/** Banner configuration. When present, this layout is attached to a document edge (top or bottom). */
|
|
1968
1968
|
banner?: Banner;
|
|
1969
1969
|
/** Background styling (color or gradient). */
|
|
1970
1970
|
background?: LayoutDataBackground;
|
|
@@ -2011,6 +2011,14 @@ declare enum Origin {
|
|
|
2011
2011
|
}
|
|
2012
2012
|
/** @enumType */
|
|
2013
2013
|
type OriginWithLiterals = Origin | 'IMAGE' | 'LAYOUT';
|
|
2014
|
+
declare enum BannerPosition {
|
|
2015
|
+
/** Attached to the top edge (banner) */
|
|
2016
|
+
TOP = "TOP",
|
|
2017
|
+
/** Attached to the bottom edge (footer) */
|
|
2018
|
+
BOTTOM = "BOTTOM"
|
|
2019
|
+
}
|
|
2020
|
+
/** @enumType */
|
|
2021
|
+
type BannerPositionWithLiterals = BannerPosition | 'TOP' | 'BOTTOM';
|
|
2014
2022
|
/** Background type */
|
|
2015
2023
|
declare enum LayoutDataBackgroundType {
|
|
2016
2024
|
/** Solid color background */
|
|
@@ -2068,6 +2076,8 @@ type DesignTargetWithLiterals = DesignTarget | 'LAYOUT' | 'CELL';
|
|
|
2068
2076
|
interface Banner {
|
|
2069
2077
|
/** Origin of the banner */
|
|
2070
2078
|
origin?: OriginWithLiterals;
|
|
2079
|
+
/** Position of the banner */
|
|
2080
|
+
position?: BannerPositionWithLiterals;
|
|
2071
2081
|
}
|
|
2072
2082
|
/** Background styling (color or gradient) */
|
|
2073
2083
|
interface LayoutDataBackground {
|
|
@@ -2075,7 +2085,7 @@ interface LayoutDataBackground {
|
|
|
2075
2085
|
type?: LayoutDataBackgroundTypeWithLiterals;
|
|
2076
2086
|
/**
|
|
2077
2087
|
* Background color as a hexadecimal value.
|
|
2078
|
-
* @
|
|
2088
|
+
* @maxLength 19
|
|
2079
2089
|
*/
|
|
2080
2090
|
color?: string | null;
|
|
2081
2091
|
/** Gradient configuration. */
|
|
@@ -2087,7 +2097,7 @@ interface Backdrop {
|
|
|
2087
2097
|
type?: BackdropTypeWithLiterals;
|
|
2088
2098
|
/**
|
|
2089
2099
|
* Backdrop color as a hexadecimal value.
|
|
2090
|
-
* @
|
|
2100
|
+
* @maxLength 19
|
|
2091
2101
|
*/
|
|
2092
2102
|
color?: string | null;
|
|
2093
2103
|
/** Gradient configuration. */
|
|
@@ -2108,7 +2118,7 @@ interface ShapeData {
|
|
|
2108
2118
|
interface ShapeDataStyles {
|
|
2109
2119
|
/**
|
|
2110
2120
|
* Shape fill color as a hexadecimal value.
|
|
2111
|
-
* @
|
|
2121
|
+
* @maxLength 19
|
|
2112
2122
|
*/
|
|
2113
2123
|
color?: string | null;
|
|
2114
2124
|
/** Map of original color keys to their new color values. */
|
|
@@ -2167,7 +2177,7 @@ interface CardDataBackground {
|
|
|
2167
2177
|
type?: CardDataBackgroundTypeWithLiterals;
|
|
2168
2178
|
/**
|
|
2169
2179
|
* Background color as a hexadecimal value.
|
|
2170
|
-
* @
|
|
2180
|
+
* @maxLength 19
|
|
2171
2181
|
*/
|
|
2172
2182
|
color?: string | null;
|
|
2173
2183
|
/** Gradient configuration. */
|
|
@@ -2194,7 +2204,7 @@ interface TocData {
|
|
|
2194
2204
|
itemSpacing?: number | null;
|
|
2195
2205
|
/**
|
|
2196
2206
|
* Optional override for the text color.
|
|
2197
|
-
* @
|
|
2207
|
+
* @maxLength 19
|
|
2198
2208
|
*/
|
|
2199
2209
|
color?: string | null;
|
|
2200
2210
|
/** Indentation style. Default: NESTED. */
|
|
@@ -2236,7 +2246,10 @@ interface SmartBlockData {
|
|
|
2236
2246
|
orientation?: string | null;
|
|
2237
2247
|
/** Column size controlling cells per row. */
|
|
2238
2248
|
columnSize?: ColumnSizeWithLiterals;
|
|
2239
|
-
/**
|
|
2249
|
+
/**
|
|
2250
|
+
* Border color (for SOLID_JOINED_BOXES variant).
|
|
2251
|
+
* @maxLength 19
|
|
2252
|
+
*/
|
|
2240
2253
|
borderColor?: string | null;
|
|
2241
2254
|
/** Border width in pixels (for SOLID_JOINED_BOXES variant). */
|
|
2242
2255
|
borderWidth?: number | null;
|
|
@@ -2295,7 +2308,10 @@ interface SmartBlockCellData {
|
|
|
2295
2308
|
label?: string | null;
|
|
2296
2309
|
/** Shape file details. */
|
|
2297
2310
|
shape?: Media;
|
|
2298
|
-
/**
|
|
2311
|
+
/**
|
|
2312
|
+
* Border color of the cell.
|
|
2313
|
+
* @maxLength 19
|
|
2314
|
+
*/
|
|
2299
2315
|
borderColor?: string | null;
|
|
2300
2316
|
/** Border width in pixels. */
|
|
2301
2317
|
borderWidth?: number | null;
|
|
@@ -2303,11 +2319,20 @@ interface SmartBlockCellData {
|
|
|
2303
2319
|
borderRadius?: number | null;
|
|
2304
2320
|
/** The type of the parent smart block (must match parent). */
|
|
2305
2321
|
type?: SmartBlockDataTypeWithLiterals;
|
|
2306
|
-
/**
|
|
2322
|
+
/**
|
|
2323
|
+
* Accent color for non-background variants (e.g., line, bullet, label color).
|
|
2324
|
+
* @maxLength 19
|
|
2325
|
+
*/
|
|
2307
2326
|
accentColor?: string | null;
|
|
2308
|
-
/**
|
|
2327
|
+
/**
|
|
2328
|
+
* Background color for background-based variants (SOLID_BOXES, SOLID_BOXES_ALTERNATING, SOLID_JOINED_BOXES).
|
|
2329
|
+
* @maxLength 19
|
|
2330
|
+
*/
|
|
2309
2331
|
backgroundColor?: string | null;
|
|
2310
|
-
/**
|
|
2332
|
+
/**
|
|
2333
|
+
* Shape fill color as a hexadecimal value.
|
|
2334
|
+
* @maxLength 19
|
|
2335
|
+
*/
|
|
2311
2336
|
shapeColor?: string | null;
|
|
2312
2337
|
}
|
|
2313
2338
|
interface Metadata {
|
|
@@ -3367,4 +3392,4 @@ interface BulkUpdateQuestionEntryOptions {
|
|
|
3367
3392
|
returnFullEntity?: boolean | null;
|
|
3368
3393
|
}
|
|
3369
3394
|
|
|
3370
|
-
export { type AccountInfo, type AccountInfoMetadata, type ActionEvent, Alignment, type AlignmentWithLiterals, type AnchorData, type AppEmbedData, type AppEmbedDataAppDataOneOf, AppType, type AppTypeWithLiterals, type ApplicationError, AspectRatio, type AspectRatioWithLiterals, type AudioData, type Backdrop, BackdropType, type BackdropTypeWithLiterals, type Background, type BackgroundGradient, type BackgroundImage, BackgroundType, type BackgroundTypeWithLiterals, type Banner, type BaseEventMetadata, type BlockquoteData, type BookingData, type Border, type BorderColors, type BorderWidths, type BulkActionMetadata, type BulkDeleteQuestionEntriesRequest, type BulkDeleteQuestionEntriesResponse, type BulkUpdateQuestionEntryOptions, type BulkUpdateQuestionEntryRequest, type BulkUpdateQuestionEntryResponse, type BulkUpdateQuestionEntryResult, type BulletedListData, type ButtonData, ButtonDataType, type ButtonDataTypeWithLiterals, type ButtonStyles, type CaptionData, type CardData, type CardDataBackground, CardDataBackgroundType, type CardDataBackgroundTypeWithLiterals, type CardStyles, type CellStyle, type CodeBlockData, type CollapsibleListData, type ColorData, type Colors, ColumnSize, type ColumnSizeWithLiterals, type CommonQueryWithEntityContext, ContentFormat, type ContentFormatWithLiterals, type CreateQuestionEntryRequest, type CreateQuestionEntryResponse, Crop, type CropWithLiterals, type CursorPaging, type CursorPagingMetadata, type CursorQuery, type CursorQueryPagingMethodOneOf, type Cursors, type Decoration, type DecorationDataOneOf, DecorationType, type DecorationTypeWithLiterals, type DeleteQuestionEntryRequest, type DeleteQuestionEntryResponse, 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 EventMetadata, type ExtendedFields, FieldSet, type FieldSetWithLiterals, 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 GetQuestionEntryRequest, type GetQuestionEntryResponse, type Gradient, GradientType, type GradientTypeWithLiterals, type HTMLData, type HTMLDataDataOneOf, type HeadingData, type Height, type IdentificationData, type IdentificationDataIdOneOf, type Image, type ImageData, type ImageDataStyles, ImagePosition, ImagePositionPosition, type ImagePositionPositionWithLiterals, type ImagePositionWithLiterals, ImageScalingScaling, type ImageScalingScalingWithLiterals, type ImageStyles, Indentation, type IndentationWithLiterals, InitialExpandedItems, type InitialExpandedItemsWithLiterals, type Item, type ItemDataOneOf, type ItemMetadata, type ItemStyle, type Label, Layout, type LayoutCellData, type LayoutData, type LayoutDataBackground, type LayoutDataBackgroundImage, LayoutDataBackgroundType, type LayoutDataBackgroundTypeWithLiterals, LayoutType, type LayoutTypeWithLiterals, type LayoutWithLiterals, LineStyle, type LineStyleWithLiterals, type Link, type LinkData, type LinkDataOneOf, type LinkPreviewData, type LinkPreviewDataStyles, type ListQuestionEntriesOptions, type ListQuestionEntriesRequest, type ListQuestionEntriesResponse, ListStyle, type ListStyleWithLiterals, type ListValue, type MapData, type MapSettings, MapType, type MapTypeWithLiterals, type MaskedQuestionEntry, 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 PagingMetadataV2, type ParagraphData, type Permissions, Placement, type PlacementWithLiterals, type PlaybackOptions, type PluginContainerData, PluginContainerDataAlignment, type PluginContainerDataAlignmentWithLiterals, type PluginContainerDataWidth, type PluginContainerDataWidthDataOneOf, type Poll, type PollData, type PollDataLayout, type PollDesign, type PollDesignBackground, type PollDesignBackgroundBackgroundOneOf, PollDesignBackgroundType, type PollDesignBackgroundTypeWithLiterals, type PollLayout, PollLayoutDirection, type PollLayoutDirectionWithLiterals, PollLayoutType, type PollLayoutTypeWithLiterals, Position, type PositionWithLiterals, type PricingData, type QueryQuestionEntriesOptions, type QueryQuestionEntriesRequest, QueryQuestionEntriesRequestContentFormat, type QueryQuestionEntriesRequestContentFormatWithLiterals, QueryQuestionEntriesRequestFieldSet, type QueryQuestionEntriesRequestFieldSetWithLiterals, type QueryQuestionEntriesResponse, type QuestionEntriesQueryBuilder, type QuestionEntriesQueryResult, type QuestionEntry, type QuestionEntryAnswerOneOf, type QuestionEntryCreatedEnvelope, type QuestionEntryDeletedEnvelope, type QuestionEntryQuery, type QuestionEntryQuerySpec, type QuestionEntryUpdatedEnvelope, QuestionStatus, type QuestionStatusWithLiterals, type Rel, Resizing, type ResizingWithLiterals, ResponsivenessBehaviour, type ResponsivenessBehaviourWithLiterals, type RestoreInfo, type RibbonStyles, type RichContent, Scaling, type ScalingWithLiterals, type SetQuestionEntryLabelsOptions, type SetQuestionEntryLabelsRequest, type SetQuestionEntryLabelsResponse, 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 StylesBorder, StylesPosition, type StylesPositionWithLiterals, 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 UpdateExtendedFieldsOptions, type UpdateExtendedFieldsRequest, type UpdateExtendedFieldsResponse, type UpdateQuestionEntry, type UpdateQuestionEntryRequest, type UpdateQuestionEntryResponse, 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, bulkDeleteQuestionEntries, bulkUpdateQuestionEntry, createQuestionEntry, deleteQuestionEntry, getQuestionEntry, listQuestionEntries, onQuestionEntryCreated, onQuestionEntryDeleted, onQuestionEntryUpdated, queryQuestionEntries, setQuestionEntryLabels, typedQueryQuestionEntries, updateExtendedFields, updateQuestionEntry, utils };
|
|
3395
|
+
export { type AccountInfo, type AccountInfoMetadata, type ActionEvent, Alignment, type AlignmentWithLiterals, type AnchorData, type AppEmbedData, type AppEmbedDataAppDataOneOf, AppType, type AppTypeWithLiterals, type ApplicationError, AspectRatio, type AspectRatioWithLiterals, type AudioData, type Backdrop, BackdropType, type BackdropTypeWithLiterals, type Background, type BackgroundGradient, type BackgroundImage, BackgroundType, type BackgroundTypeWithLiterals, type Banner, BannerPosition, type BannerPositionWithLiterals, type BaseEventMetadata, type BlockquoteData, type BookingData, type Border, type BorderColors, type BorderWidths, type BulkActionMetadata, type BulkDeleteQuestionEntriesRequest, type BulkDeleteQuestionEntriesResponse, type BulkUpdateQuestionEntryOptions, type BulkUpdateQuestionEntryRequest, type BulkUpdateQuestionEntryResponse, type BulkUpdateQuestionEntryResult, type BulletedListData, type ButtonData, ButtonDataType, type ButtonDataTypeWithLiterals, type ButtonStyles, type CaptionData, type CardData, type CardDataBackground, CardDataBackgroundType, type CardDataBackgroundTypeWithLiterals, type CardStyles, type CellStyle, type CodeBlockData, type CollapsibleListData, type ColorData, type Colors, ColumnSize, type ColumnSizeWithLiterals, type CommonQueryWithEntityContext, ContentFormat, type ContentFormatWithLiterals, type CreateQuestionEntryRequest, type CreateQuestionEntryResponse, Crop, type CropWithLiterals, type CursorPaging, type CursorPagingMetadata, type CursorQuery, type CursorQueryPagingMethodOneOf, type Cursors, type Decoration, type DecorationDataOneOf, DecorationType, type DecorationTypeWithLiterals, type DeleteQuestionEntryRequest, type DeleteQuestionEntryResponse, 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 EventMetadata, type ExtendedFields, FieldSet, type FieldSetWithLiterals, 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 GetQuestionEntryRequest, type GetQuestionEntryResponse, type Gradient, GradientType, type GradientTypeWithLiterals, type HTMLData, type HTMLDataDataOneOf, type HeadingData, type Height, type IdentificationData, type IdentificationDataIdOneOf, type Image, type ImageData, type ImageDataStyles, ImagePosition, ImagePositionPosition, type ImagePositionPositionWithLiterals, type ImagePositionWithLiterals, ImageScalingScaling, type ImageScalingScalingWithLiterals, type ImageStyles, Indentation, type IndentationWithLiterals, InitialExpandedItems, type InitialExpandedItemsWithLiterals, type Item, type ItemDataOneOf, type ItemMetadata, type ItemStyle, type Label, Layout, type LayoutCellData, type LayoutData, type LayoutDataBackground, type LayoutDataBackgroundImage, LayoutDataBackgroundType, type LayoutDataBackgroundTypeWithLiterals, LayoutType, type LayoutTypeWithLiterals, type LayoutWithLiterals, LineStyle, type LineStyleWithLiterals, type Link, type LinkData, type LinkDataOneOf, type LinkPreviewData, type LinkPreviewDataStyles, type ListQuestionEntriesOptions, type ListQuestionEntriesRequest, type ListQuestionEntriesResponse, ListStyle, type ListStyleWithLiterals, type ListValue, type MapData, type MapSettings, MapType, type MapTypeWithLiterals, type MaskedQuestionEntry, 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 PagingMetadataV2, type ParagraphData, type Permissions, Placement, type PlacementWithLiterals, type PlaybackOptions, type PluginContainerData, PluginContainerDataAlignment, type PluginContainerDataAlignmentWithLiterals, type PluginContainerDataWidth, type PluginContainerDataWidthDataOneOf, type Poll, type PollData, type PollDataLayout, type PollDesign, type PollDesignBackground, type PollDesignBackgroundBackgroundOneOf, PollDesignBackgroundType, type PollDesignBackgroundTypeWithLiterals, type PollLayout, PollLayoutDirection, type PollLayoutDirectionWithLiterals, PollLayoutType, type PollLayoutTypeWithLiterals, Position, type PositionWithLiterals, type PricingData, type QueryQuestionEntriesOptions, type QueryQuestionEntriesRequest, QueryQuestionEntriesRequestContentFormat, type QueryQuestionEntriesRequestContentFormatWithLiterals, QueryQuestionEntriesRequestFieldSet, type QueryQuestionEntriesRequestFieldSetWithLiterals, type QueryQuestionEntriesResponse, type QuestionEntriesQueryBuilder, type QuestionEntriesQueryResult, type QuestionEntry, type QuestionEntryAnswerOneOf, type QuestionEntryCreatedEnvelope, type QuestionEntryDeletedEnvelope, type QuestionEntryQuery, type QuestionEntryQuerySpec, type QuestionEntryUpdatedEnvelope, QuestionStatus, type QuestionStatusWithLiterals, type Rel, Resizing, type ResizingWithLiterals, ResponsivenessBehaviour, type ResponsivenessBehaviourWithLiterals, type RestoreInfo, type RibbonStyles, type RichContent, Scaling, type ScalingWithLiterals, type SetQuestionEntryLabelsOptions, type SetQuestionEntryLabelsRequest, type SetQuestionEntryLabelsResponse, 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 StylesBorder, StylesPosition, type StylesPositionWithLiterals, 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 UpdateExtendedFieldsOptions, type UpdateExtendedFieldsRequest, type UpdateExtendedFieldsResponse, type UpdateQuestionEntry, type UpdateQuestionEntryRequest, type UpdateQuestionEntryResponse, 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, bulkDeleteQuestionEntries, bulkUpdateQuestionEntry, createQuestionEntry, deleteQuestionEntry, getQuestionEntry, listQuestionEntries, onQuestionEntryCreated, onQuestionEntryDeleted, onQuestionEntryUpdated, queryQuestionEntries, setQuestionEntryLabels, typedQueryQuestionEntries, updateExtendedFields, updateQuestionEntry, utils };
|
|
@@ -25,6 +25,7 @@ __export(index_typings_exports, {
|
|
|
25
25
|
AspectRatio: () => AspectRatio,
|
|
26
26
|
BackdropType: () => BackdropType,
|
|
27
27
|
BackgroundType: () => BackgroundType,
|
|
28
|
+
BannerPosition: () => BannerPosition,
|
|
28
29
|
ButtonDataType: () => ButtonDataType,
|
|
29
30
|
CardDataBackgroundType: () => CardDataBackgroundType,
|
|
30
31
|
ColumnSize: () => ColumnSize,
|
|
@@ -2145,6 +2146,11 @@ var Origin = /* @__PURE__ */ ((Origin2) => {
|
|
|
2145
2146
|
Origin2["LAYOUT"] = "LAYOUT";
|
|
2146
2147
|
return Origin2;
|
|
2147
2148
|
})(Origin || {});
|
|
2149
|
+
var BannerPosition = /* @__PURE__ */ ((BannerPosition2) => {
|
|
2150
|
+
BannerPosition2["TOP"] = "TOP";
|
|
2151
|
+
BannerPosition2["BOTTOM"] = "BOTTOM";
|
|
2152
|
+
return BannerPosition2;
|
|
2153
|
+
})(BannerPosition || {});
|
|
2148
2154
|
var LayoutDataBackgroundType = /* @__PURE__ */ ((LayoutDataBackgroundType2) => {
|
|
2149
2155
|
LayoutDataBackgroundType2["COLOR"] = "COLOR";
|
|
2150
2156
|
LayoutDataBackgroundType2["GRADIENT"] = "GRADIENT";
|
|
@@ -2643,6 +2649,7 @@ async function bulkUpdateQuestionEntry2(options) {
|
|
|
2643
2649
|
AspectRatio,
|
|
2644
2650
|
BackdropType,
|
|
2645
2651
|
BackgroundType,
|
|
2652
|
+
BannerPosition,
|
|
2646
2653
|
ButtonDataType,
|
|
2647
2654
|
CardDataBackgroundType,
|
|
2648
2655
|
ColumnSize,
|