@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
package/build/es/meta.d.mts
CHANGED
|
@@ -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 {
|
|
@@ -2888,4 +2913,4 @@ declare function setQuestionEntryLabels(): __PublicMethodMetaInfo<'PATCH', {
|
|
|
2888
2913
|
}, SetQuestionEntryLabelsRequest$1, SetQuestionEntryLabelsRequest, SetQuestionEntryLabelsResponse$1, SetQuestionEntryLabelsResponse>;
|
|
2889
2914
|
declare function bulkUpdateQuestionEntry(): __PublicMethodMetaInfo<'POST', {}, BulkUpdateQuestionEntryRequest$1, BulkUpdateQuestionEntryRequest, BulkUpdateQuestionEntryResponse$1, BulkUpdateQuestionEntryResponse>;
|
|
2890
2915
|
|
|
2891
|
-
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, type ApplicationError as ApplicationErrorOriginal, AspectRatio as AspectRatioOriginal, type AspectRatioWithLiterals as AspectRatioWithLiteralsOriginal, type AudioData as AudioDataOriginal, type Backdrop as BackdropOriginal, BackdropType as BackdropTypeOriginal, type BackdropTypeWithLiterals as BackdropTypeWithLiteralsOriginal, 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 BulkActionMetadata as BulkActionMetadataOriginal, type BulkDeleteQuestionEntriesRequest as BulkDeleteQuestionEntriesRequestOriginal, type BulkDeleteQuestionEntriesResponse as BulkDeleteQuestionEntriesResponseOriginal, type BulkUpdateQuestionEntryRequest as BulkUpdateQuestionEntryRequestOriginal, type BulkUpdateQuestionEntryResponse as BulkUpdateQuestionEntryResponseOriginal, type BulkUpdateQuestionEntryResult as BulkUpdateQuestionEntryResultOriginal, type BulletedListData as BulletedListDataOriginal, type ButtonData as ButtonDataOriginal, ButtonDataType as ButtonDataTypeOriginal, type ButtonDataTypeWithLiterals as ButtonDataTypeWithLiteralsOriginal, 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 CodeBlockData as CodeBlockDataOriginal, type CollapsibleListData as CollapsibleListDataOriginal, type ColorData as ColorDataOriginal, type Colors as ColorsOriginal, ColumnSize as ColumnSizeOriginal, type ColumnSizeWithLiterals as ColumnSizeWithLiteralsOriginal, ContentFormat as ContentFormatOriginal, type ContentFormatWithLiterals as ContentFormatWithLiteralsOriginal, type CreateQuestionEntryRequest as CreateQuestionEntryRequestOriginal, type CreateQuestionEntryResponse as CreateQuestionEntryResponseOriginal, 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 DeleteQuestionEntryRequest as DeleteQuestionEntryRequestOriginal, type DeleteQuestionEntryResponse as DeleteQuestionEntryResponseOriginal, 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 ExtendedFields as ExtendedFieldsOriginal, FieldSet as FieldSetOriginal, type FieldSetWithLiterals as FieldSetWithLiteralsOriginal, 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 GetQuestionEntryRequest as GetQuestionEntryRequestOriginal, type GetQuestionEntryResponse as GetQuestionEntryResponseOriginal, type Gradient as GradientOriginal, GradientType as GradientTypeOriginal, type GradientTypeWithLiterals as GradientTypeWithLiteralsOriginal, type HTMLDataDataOneOf as HTMLDataDataOneOfOriginal, type HTMLData as HTMLDataOriginal, type HeadingData as HeadingDataOriginal, type Height as HeightOriginal, type IdentificationDataIdOneOf as IdentificationDataIdOneOfOriginal, type IdentificationData as IdentificationDataOriginal, type ImageData as ImageDataOriginal, type ImageDataStyles as ImageDataStylesOriginal, type Image as ImageOriginal, ImagePosition as ImagePositionOriginal, ImagePositionPosition as ImagePositionPositionOriginal, type ImagePositionPositionWithLiterals as ImagePositionPositionWithLiteralsOriginal, type ImagePositionWithLiterals as ImagePositionWithLiteralsOriginal, ImageScalingScaling as ImageScalingScalingOriginal, type ImageScalingScalingWithLiterals as ImageScalingScalingWithLiteralsOriginal, type ImageStyles as ImageStylesOriginal, Indentation as IndentationOriginal, type IndentationWithLiterals as IndentationWithLiteralsOriginal, InitialExpandedItems as InitialExpandedItemsOriginal, type InitialExpandedItemsWithLiterals as InitialExpandedItemsWithLiteralsOriginal, type ItemDataOneOf as ItemDataOneOfOriginal, type ItemMetadata as ItemMetadataOriginal, type Item as ItemOriginal, type ItemStyle as ItemStyleOriginal, type Label as LabelOriginal, type LayoutCellData as LayoutCellDataOriginal, type LayoutDataBackgroundImage as LayoutDataBackgroundImageOriginal, type LayoutDataBackground as LayoutDataBackgroundOriginal, LayoutDataBackgroundType as LayoutDataBackgroundTypeOriginal, type LayoutDataBackgroundTypeWithLiterals as LayoutDataBackgroundTypeWithLiteralsOriginal, 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, type ListQuestionEntriesRequest as ListQuestionEntriesRequestOriginal, type ListQuestionEntriesResponse as ListQuestionEntriesResponseOriginal, ListStyle as ListStyleOriginal, type ListStyleWithLiterals as ListStyleWithLiteralsOriginal, type ListValue as ListValueOriginal, type MapData as MapDataOriginal, type MapSettings as MapSettingsOriginal, MapType as MapTypeOriginal, type MapTypeWithLiterals as MapTypeWithLiteralsOriginal, type MaskedQuestionEntry as MaskedQuestionEntryOriginal, 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 PagingMetadataV2 as PagingMetadataV2Original, 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 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, QueryQuestionEntriesRequestContentFormat as QueryQuestionEntriesRequestContentFormatOriginal, type QueryQuestionEntriesRequestContentFormatWithLiterals as QueryQuestionEntriesRequestContentFormatWithLiteralsOriginal, QueryQuestionEntriesRequestFieldSet as QueryQuestionEntriesRequestFieldSetOriginal, type QueryQuestionEntriesRequestFieldSetWithLiterals as QueryQuestionEntriesRequestFieldSetWithLiteralsOriginal, type QueryQuestionEntriesRequest as QueryQuestionEntriesRequestOriginal, type QueryQuestionEntriesResponse as QueryQuestionEntriesResponseOriginal, type QuestionEntryAnswerOneOf as QuestionEntryAnswerOneOfOriginal, type QuestionEntry as QuestionEntryOriginal, QuestionStatus as QuestionStatusOriginal, type QuestionStatusWithLiterals as QuestionStatusWithLiteralsOriginal, 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 SetQuestionEntryLabelsRequest as SetQuestionEntryLabelsRequestOriginal, type SetQuestionEntryLabelsResponse as SetQuestionEntryLabelsResponseOriginal, 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 StylesBorder as StylesBorderOriginal, type Styles as StylesOriginal, StylesPosition as StylesPositionOriginal, type StylesPositionWithLiterals as StylesPositionWithLiteralsOriginal, 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 UpdateExtendedFieldsRequest as UpdateExtendedFieldsRequestOriginal, type UpdateExtendedFieldsResponse as UpdateExtendedFieldsResponseOriginal, type UpdateQuestionEntryRequest as UpdateQuestionEntryRequestOriginal, type UpdateQuestionEntryResponse as UpdateQuestionEntryResponseOriginal, 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, bulkDeleteQuestionEntries, bulkUpdateQuestionEntry, createQuestionEntry, deleteQuestionEntry, getQuestionEntry, listQuestionEntries, queryQuestionEntries, setQuestionEntryLabels, updateExtendedFields, updateQuestionEntry };
|
|
2916
|
+
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, type ApplicationError as ApplicationErrorOriginal, AspectRatio as AspectRatioOriginal, type AspectRatioWithLiterals as AspectRatioWithLiteralsOriginal, type AudioData as AudioDataOriginal, type Backdrop as BackdropOriginal, BackdropType as BackdropTypeOriginal, type BackdropTypeWithLiterals as BackdropTypeWithLiteralsOriginal, 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 BulkActionMetadata as BulkActionMetadataOriginal, type BulkDeleteQuestionEntriesRequest as BulkDeleteQuestionEntriesRequestOriginal, type BulkDeleteQuestionEntriesResponse as BulkDeleteQuestionEntriesResponseOriginal, type BulkUpdateQuestionEntryRequest as BulkUpdateQuestionEntryRequestOriginal, type BulkUpdateQuestionEntryResponse as BulkUpdateQuestionEntryResponseOriginal, type BulkUpdateQuestionEntryResult as BulkUpdateQuestionEntryResultOriginal, type BulletedListData as BulletedListDataOriginal, type ButtonData as ButtonDataOriginal, ButtonDataType as ButtonDataTypeOriginal, type ButtonDataTypeWithLiterals as ButtonDataTypeWithLiteralsOriginal, 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 CodeBlockData as CodeBlockDataOriginal, type CollapsibleListData as CollapsibleListDataOriginal, type ColorData as ColorDataOriginal, type Colors as ColorsOriginal, ColumnSize as ColumnSizeOriginal, type ColumnSizeWithLiterals as ColumnSizeWithLiteralsOriginal, ContentFormat as ContentFormatOriginal, type ContentFormatWithLiterals as ContentFormatWithLiteralsOriginal, type CreateQuestionEntryRequest as CreateQuestionEntryRequestOriginal, type CreateQuestionEntryResponse as CreateQuestionEntryResponseOriginal, 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 DeleteQuestionEntryRequest as DeleteQuestionEntryRequestOriginal, type DeleteQuestionEntryResponse as DeleteQuestionEntryResponseOriginal, 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 ExtendedFields as ExtendedFieldsOriginal, FieldSet as FieldSetOriginal, type FieldSetWithLiterals as FieldSetWithLiteralsOriginal, 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 GetQuestionEntryRequest as GetQuestionEntryRequestOriginal, type GetQuestionEntryResponse as GetQuestionEntryResponseOriginal, type Gradient as GradientOriginal, GradientType as GradientTypeOriginal, type GradientTypeWithLiterals as GradientTypeWithLiteralsOriginal, type HTMLDataDataOneOf as HTMLDataDataOneOfOriginal, type HTMLData as HTMLDataOriginal, type HeadingData as HeadingDataOriginal, type Height as HeightOriginal, type IdentificationDataIdOneOf as IdentificationDataIdOneOfOriginal, type IdentificationData as IdentificationDataOriginal, type ImageData as ImageDataOriginal, type ImageDataStyles as ImageDataStylesOriginal, type Image as ImageOriginal, ImagePosition as ImagePositionOriginal, ImagePositionPosition as ImagePositionPositionOriginal, type ImagePositionPositionWithLiterals as ImagePositionPositionWithLiteralsOriginal, type ImagePositionWithLiterals as ImagePositionWithLiteralsOriginal, ImageScalingScaling as ImageScalingScalingOriginal, type ImageScalingScalingWithLiterals as ImageScalingScalingWithLiteralsOriginal, type ImageStyles as ImageStylesOriginal, Indentation as IndentationOriginal, type IndentationWithLiterals as IndentationWithLiteralsOriginal, InitialExpandedItems as InitialExpandedItemsOriginal, type InitialExpandedItemsWithLiterals as InitialExpandedItemsWithLiteralsOriginal, type ItemDataOneOf as ItemDataOneOfOriginal, type ItemMetadata as ItemMetadataOriginal, type Item as ItemOriginal, type ItemStyle as ItemStyleOriginal, type Label as LabelOriginal, type LayoutCellData as LayoutCellDataOriginal, type LayoutDataBackgroundImage as LayoutDataBackgroundImageOriginal, type LayoutDataBackground as LayoutDataBackgroundOriginal, LayoutDataBackgroundType as LayoutDataBackgroundTypeOriginal, type LayoutDataBackgroundTypeWithLiterals as LayoutDataBackgroundTypeWithLiteralsOriginal, 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, type ListQuestionEntriesRequest as ListQuestionEntriesRequestOriginal, type ListQuestionEntriesResponse as ListQuestionEntriesResponseOriginal, ListStyle as ListStyleOriginal, type ListStyleWithLiterals as ListStyleWithLiteralsOriginal, type ListValue as ListValueOriginal, type MapData as MapDataOriginal, type MapSettings as MapSettingsOriginal, MapType as MapTypeOriginal, type MapTypeWithLiterals as MapTypeWithLiteralsOriginal, type MaskedQuestionEntry as MaskedQuestionEntryOriginal, 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 PagingMetadataV2 as PagingMetadataV2Original, 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 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, QueryQuestionEntriesRequestContentFormat as QueryQuestionEntriesRequestContentFormatOriginal, type QueryQuestionEntriesRequestContentFormatWithLiterals as QueryQuestionEntriesRequestContentFormatWithLiteralsOriginal, QueryQuestionEntriesRequestFieldSet as QueryQuestionEntriesRequestFieldSetOriginal, type QueryQuestionEntriesRequestFieldSetWithLiterals as QueryQuestionEntriesRequestFieldSetWithLiteralsOriginal, type QueryQuestionEntriesRequest as QueryQuestionEntriesRequestOriginal, type QueryQuestionEntriesResponse as QueryQuestionEntriesResponseOriginal, type QuestionEntryAnswerOneOf as QuestionEntryAnswerOneOfOriginal, type QuestionEntry as QuestionEntryOriginal, QuestionStatus as QuestionStatusOriginal, type QuestionStatusWithLiterals as QuestionStatusWithLiteralsOriginal, 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 SetQuestionEntryLabelsRequest as SetQuestionEntryLabelsRequestOriginal, type SetQuestionEntryLabelsResponse as SetQuestionEntryLabelsResponseOriginal, 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 StylesBorder as StylesBorderOriginal, type Styles as StylesOriginal, StylesPosition as StylesPositionOriginal, type StylesPositionWithLiterals as StylesPositionWithLiteralsOriginal, 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 UpdateExtendedFieldsRequest as UpdateExtendedFieldsRequestOriginal, type UpdateExtendedFieldsResponse as UpdateExtendedFieldsResponseOriginal, type UpdateQuestionEntryRequest as UpdateQuestionEntryRequestOriginal, type UpdateQuestionEntryResponse as UpdateQuestionEntryResponseOriginal, 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, bulkDeleteQuestionEntries, bulkUpdateQuestionEntry, createQuestionEntry, deleteQuestionEntry, getQuestionEntry, listQuestionEntries, queryQuestionEntries, setQuestionEntryLabels, updateExtendedFields, updateQuestionEntry };
|
package/build/es/meta.mjs
CHANGED
|
@@ -2040,6 +2040,11 @@ var Origin = /* @__PURE__ */ ((Origin2) => {
|
|
|
2040
2040
|
Origin2["LAYOUT"] = "LAYOUT";
|
|
2041
2041
|
return Origin2;
|
|
2042
2042
|
})(Origin || {});
|
|
2043
|
+
var BannerPosition = /* @__PURE__ */ ((BannerPosition2) => {
|
|
2044
|
+
BannerPosition2["TOP"] = "TOP";
|
|
2045
|
+
BannerPosition2["BOTTOM"] = "BOTTOM";
|
|
2046
|
+
return BannerPosition2;
|
|
2047
|
+
})(BannerPosition || {});
|
|
2043
2048
|
var LayoutDataBackgroundType = /* @__PURE__ */ ((LayoutDataBackgroundType2) => {
|
|
2044
2049
|
LayoutDataBackgroundType2["COLOR"] = "COLOR";
|
|
2045
2050
|
LayoutDataBackgroundType2["GRADIENT"] = "GRADIENT";
|
|
@@ -2363,6 +2368,7 @@ export {
|
|
|
2363
2368
|
AspectRatio as AspectRatioOriginal,
|
|
2364
2369
|
BackdropType as BackdropTypeOriginal,
|
|
2365
2370
|
BackgroundType as BackgroundTypeOriginal,
|
|
2371
|
+
BannerPosition as BannerPositionOriginal,
|
|
2366
2372
|
ButtonDataType as ButtonDataTypeOriginal,
|
|
2367
2373
|
CardDataBackgroundType as CardDataBackgroundTypeOriginal,
|
|
2368
2374
|
ColumnSize as ColumnSizeOriginal,
|