@wix/auto_sdk_events_forms 1.0.78 → 1.0.80
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 +142 -16
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +273 -33
- package/build/cjs/index.typings.js +91 -15
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +273 -33
- package/build/cjs/meta.js +91 -15
- package/build/cjs/meta.js.map +1 -1
- package/build/es/index.d.mts +1 -1
- package/build/es/index.mjs +133 -16
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +273 -33
- package/build/es/index.typings.mjs +82 -15
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +273 -33
- package/build/es/meta.mjs +82 -15
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/index.d.ts +1 -1
- package/build/internal/cjs/index.js +142 -16
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +273 -33
- package/build/internal/cjs/index.typings.js +91 -15
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +273 -33
- package/build/internal/cjs/meta.js +91 -15
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/index.d.mts +1 -1
- package/build/internal/es/index.mjs +133 -16
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +273 -33
- package/build/internal/es/index.typings.mjs +82 -15
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +273 -33
- package/build/internal/es/meta.mjs +82 -15
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +4 -4
package/build/cjs/meta.d.ts
CHANGED
|
@@ -286,12 +286,11 @@ interface GetFormRequest {
|
|
|
286
286
|
eventId: string;
|
|
287
287
|
}
|
|
288
288
|
declare enum RequestedFields {
|
|
289
|
-
UNKNOWN_REQUESTED_FIELD = "UNKNOWN_REQUESTED_FIELD",
|
|
290
289
|
/** Include soft deleted input controls in the response. */
|
|
291
290
|
DELETED = "DELETED"
|
|
292
291
|
}
|
|
293
292
|
/** @enumType */
|
|
294
|
-
type RequestedFieldsWithLiterals = RequestedFields | '
|
|
293
|
+
type RequestedFieldsWithLiterals = RequestedFields | 'DELETED';
|
|
295
294
|
interface GetFormResponse {
|
|
296
295
|
/**
|
|
297
296
|
* Event form.
|
|
@@ -1207,14 +1206,13 @@ interface TicketsConfirmationMessages {
|
|
|
1207
1206
|
shareActionLabel?: string | null;
|
|
1208
1207
|
}
|
|
1209
1208
|
declare enum CheckoutType {
|
|
1210
|
-
UNKNOWN_CHECKOUT_TYPE = "UNKNOWN_CHECKOUT_TYPE",
|
|
1211
1209
|
/** Checkout using Events App. */
|
|
1212
1210
|
EVENTS_APP = "EVENTS_APP",
|
|
1213
1211
|
/** Checkout using Ecomm Platform. */
|
|
1214
1212
|
ECOMM_PLATFORM = "ECOMM_PLATFORM"
|
|
1215
1213
|
}
|
|
1216
1214
|
/** @enumType */
|
|
1217
|
-
type CheckoutTypeWithLiterals = CheckoutType | '
|
|
1215
|
+
type CheckoutTypeWithLiterals = CheckoutType | 'EVENTS_APP' | 'ECOMM_PLATFORM';
|
|
1218
1216
|
interface Money {
|
|
1219
1217
|
/**
|
|
1220
1218
|
* *Deprecated:** Use `value` instead.
|
|
@@ -1572,6 +1570,10 @@ interface Node extends NodeDataOneOf {
|
|
|
1572
1570
|
layoutCellData?: LayoutCellData;
|
|
1573
1571
|
/** Data for a shape node. */
|
|
1574
1572
|
shapeData?: ShapeData;
|
|
1573
|
+
/** Data for a card node. */
|
|
1574
|
+
cardData?: CardData;
|
|
1575
|
+
/** Data for a table of contents node. */
|
|
1576
|
+
tocData?: TocData;
|
|
1575
1577
|
/** Node type. Use `APP_EMBED` for nodes that embed content from other Wix apps. Use `EMBED` to embed content in [oEmbed](https://oembed.com/) format. */
|
|
1576
1578
|
type?: NodeTypeWithLiterals;
|
|
1577
1579
|
/** Node ID. */
|
|
@@ -1641,6 +1643,10 @@ interface NodeDataOneOf {
|
|
|
1641
1643
|
layoutCellData?: LayoutCellData;
|
|
1642
1644
|
/** Data for a shape node. */
|
|
1643
1645
|
shapeData?: ShapeData;
|
|
1646
|
+
/** Data for a card node. */
|
|
1647
|
+
cardData?: CardData;
|
|
1648
|
+
/** Data for a table of contents node. */
|
|
1649
|
+
tocData?: TocData;
|
|
1644
1650
|
}
|
|
1645
1651
|
declare enum NodeType {
|
|
1646
1652
|
PARAGRAPH = "PARAGRAPH",
|
|
@@ -1677,10 +1683,12 @@ declare enum NodeType {
|
|
|
1677
1683
|
CAPTION = "CAPTION",
|
|
1678
1684
|
LAYOUT = "LAYOUT",
|
|
1679
1685
|
LAYOUT_CELL = "LAYOUT_CELL",
|
|
1680
|
-
SHAPE = "SHAPE"
|
|
1686
|
+
SHAPE = "SHAPE",
|
|
1687
|
+
CARD = "CARD",
|
|
1688
|
+
TOC = "TOC"
|
|
1681
1689
|
}
|
|
1682
1690
|
/** @enumType */
|
|
1683
|
-
type NodeTypeWithLiterals = NodeType | 'PARAGRAPH' | 'TEXT' | 'HEADING' | 'BULLETED_LIST' | 'ORDERED_LIST' | 'LIST_ITEM' | 'BLOCKQUOTE' | 'CODE_BLOCK' | 'VIDEO' | 'DIVIDER' | 'FILE' | 'GALLERY' | 'GIF' | 'HTML' | 'IMAGE' | 'LINK_PREVIEW' | 'MAP' | 'POLL' | 'APP_EMBED' | 'BUTTON' | 'COLLAPSIBLE_LIST' | 'TABLE' | 'EMBED' | 'COLLAPSIBLE_ITEM' | 'COLLAPSIBLE_ITEM_TITLE' | 'COLLAPSIBLE_ITEM_BODY' | 'TABLE_CELL' | 'TABLE_ROW' | 'EXTERNAL' | 'AUDIO' | 'CAPTION' | 'LAYOUT' | 'LAYOUT_CELL' | 'SHAPE';
|
|
1691
|
+
type NodeTypeWithLiterals = NodeType | 'PARAGRAPH' | 'TEXT' | 'HEADING' | 'BULLETED_LIST' | 'ORDERED_LIST' | 'LIST_ITEM' | 'BLOCKQUOTE' | 'CODE_BLOCK' | 'VIDEO' | 'DIVIDER' | 'FILE' | 'GALLERY' | 'GIF' | 'HTML' | 'IMAGE' | 'LINK_PREVIEW' | 'MAP' | 'POLL' | 'APP_EMBED' | 'BUTTON' | 'COLLAPSIBLE_LIST' | 'TABLE' | 'EMBED' | 'COLLAPSIBLE_ITEM' | 'COLLAPSIBLE_ITEM_TITLE' | 'COLLAPSIBLE_ITEM_BODY' | 'TABLE_CELL' | 'TABLE_ROW' | 'EXTERNAL' | 'AUDIO' | 'CAPTION' | 'LAYOUT' | 'LAYOUT_CELL' | 'SHAPE' | 'CARD' | 'TOC';
|
|
1684
1692
|
interface NodeStyle {
|
|
1685
1693
|
/** The top padding value in pixels. */
|
|
1686
1694
|
paddingTop?: string | null;
|
|
@@ -1701,6 +1709,55 @@ interface ButtonData {
|
|
|
1701
1709
|
/** Button link details. */
|
|
1702
1710
|
link?: Link;
|
|
1703
1711
|
}
|
|
1712
|
+
/** Background type */
|
|
1713
|
+
declare enum BackgroundType {
|
|
1714
|
+
/** Solid color background */
|
|
1715
|
+
COLOR = "COLOR",
|
|
1716
|
+
/** Gradient background */
|
|
1717
|
+
GRADIENT = "GRADIENT"
|
|
1718
|
+
}
|
|
1719
|
+
/** @enumType */
|
|
1720
|
+
type BackgroundTypeWithLiterals = BackgroundType | 'COLOR' | 'GRADIENT';
|
|
1721
|
+
interface Gradient {
|
|
1722
|
+
/** Gradient type. */
|
|
1723
|
+
type?: GradientTypeWithLiterals;
|
|
1724
|
+
/**
|
|
1725
|
+
* Color stops for the gradient.
|
|
1726
|
+
* @maxSize 1000
|
|
1727
|
+
*/
|
|
1728
|
+
stops?: Stop[];
|
|
1729
|
+
/** Angle in degrees for linear gradient (0-360). */
|
|
1730
|
+
angle?: number | null;
|
|
1731
|
+
/**
|
|
1732
|
+
* Horizontal center position for radial gradient (0-100).
|
|
1733
|
+
* @max 100
|
|
1734
|
+
*/
|
|
1735
|
+
centerX?: number | null;
|
|
1736
|
+
/**
|
|
1737
|
+
* Vertical center position for radial gradient (0-100).
|
|
1738
|
+
* @max 100
|
|
1739
|
+
*/
|
|
1740
|
+
centerY?: number | null;
|
|
1741
|
+
}
|
|
1742
|
+
/** Gradient type. */
|
|
1743
|
+
declare enum GradientType {
|
|
1744
|
+
/** Linear gradient. */
|
|
1745
|
+
LINEAR = "LINEAR",
|
|
1746
|
+
/** Radial gradient. */
|
|
1747
|
+
RADIAL = "RADIAL"
|
|
1748
|
+
}
|
|
1749
|
+
/** @enumType */
|
|
1750
|
+
type GradientTypeWithLiterals = GradientType | 'LINEAR' | 'RADIAL';
|
|
1751
|
+
/** A single color stop in the gradient. */
|
|
1752
|
+
interface Stop {
|
|
1753
|
+
/**
|
|
1754
|
+
* Stop color as hex value.
|
|
1755
|
+
* @format COLOR_HEX
|
|
1756
|
+
*/
|
|
1757
|
+
color?: string | null;
|
|
1758
|
+
/** Stop position (0-1). */
|
|
1759
|
+
position?: number | null;
|
|
1760
|
+
}
|
|
1704
1761
|
interface Border {
|
|
1705
1762
|
/**
|
|
1706
1763
|
* Deprecated: Use `borderWidth` in `styles` instead.
|
|
@@ -1730,6 +1787,18 @@ interface Colors {
|
|
|
1730
1787
|
*/
|
|
1731
1788
|
background?: string | null;
|
|
1732
1789
|
}
|
|
1790
|
+
/** Background styling (color or gradient) */
|
|
1791
|
+
interface Background {
|
|
1792
|
+
/** Background type. */
|
|
1793
|
+
type?: BackgroundTypeWithLiterals;
|
|
1794
|
+
/**
|
|
1795
|
+
* Background color as a hexadecimal value.
|
|
1796
|
+
* @format COLOR_HEX
|
|
1797
|
+
*/
|
|
1798
|
+
color?: string | null;
|
|
1799
|
+
/** Gradient configuration. */
|
|
1800
|
+
gradient?: Gradient;
|
|
1801
|
+
}
|
|
1733
1802
|
interface PluginContainerData {
|
|
1734
1803
|
/** The width of the node when it's displayed. */
|
|
1735
1804
|
width?: PluginContainerDataWidth;
|
|
@@ -1850,17 +1919,23 @@ interface Styles {
|
|
|
1850
1919
|
*/
|
|
1851
1920
|
textColorHover?: string | null;
|
|
1852
1921
|
/**
|
|
1853
|
-
*
|
|
1922
|
+
* Deprecated: Use `background` instead.
|
|
1854
1923
|
* @format COLOR_HEX
|
|
1924
|
+
* @deprecated
|
|
1855
1925
|
*/
|
|
1856
1926
|
backgroundColor?: string | null;
|
|
1857
1927
|
/**
|
|
1858
|
-
*
|
|
1928
|
+
* Deprecated: Use `backgroundHover` instead.
|
|
1859
1929
|
* @format COLOR_HEX
|
|
1930
|
+
* @deprecated
|
|
1860
1931
|
*/
|
|
1861
1932
|
backgroundColorHover?: string | null;
|
|
1862
1933
|
/** Button size option, one of `SMALL`, `MEDIUM` or `LARGE`. Defaults to `MEDIUM`. */
|
|
1863
1934
|
buttonSize?: string | null;
|
|
1935
|
+
/** Background styling (color or gradient). */
|
|
1936
|
+
background?: Background;
|
|
1937
|
+
/** Background styling for hover state (color or gradient). */
|
|
1938
|
+
backgroundHover?: Background;
|
|
1864
1939
|
}
|
|
1865
1940
|
interface Link extends LinkDataOneOf {
|
|
1866
1941
|
/** The absolute URL for the linked document. */
|
|
@@ -2242,6 +2317,8 @@ interface HTMLData extends HTMLDataDataOneOf {
|
|
|
2242
2317
|
* @deprecated
|
|
2243
2318
|
*/
|
|
2244
2319
|
isAdsense?: boolean | null;
|
|
2320
|
+
/** The WixelWidget ID for AI_WIDGET source nodes. */
|
|
2321
|
+
widgetId?: string;
|
|
2245
2322
|
/** Styling for the HTML node's container. Height property is irrelevant for HTML embeds when autoHeight is set to `true`. */
|
|
2246
2323
|
containerData?: PluginContainerData;
|
|
2247
2324
|
/** The type of HTML code. */
|
|
@@ -2260,14 +2337,17 @@ interface HTMLDataDataOneOf {
|
|
|
2260
2337
|
* @deprecated
|
|
2261
2338
|
*/
|
|
2262
2339
|
isAdsense?: boolean | null;
|
|
2340
|
+
/** The WixelWidget ID for AI_WIDGET source nodes. */
|
|
2341
|
+
widgetId?: string;
|
|
2263
2342
|
}
|
|
2264
2343
|
declare enum Source {
|
|
2265
2344
|
HTML = "HTML",
|
|
2266
2345
|
ADSENSE = "ADSENSE",
|
|
2267
|
-
AI = "AI"
|
|
2346
|
+
AI = "AI",
|
|
2347
|
+
AI_WIDGET = "AI_WIDGET"
|
|
2268
2348
|
}
|
|
2269
2349
|
/** @enumType */
|
|
2270
|
-
type SourceWithLiterals = Source | 'HTML' | 'ADSENSE' | 'AI';
|
|
2350
|
+
type SourceWithLiterals = Source | 'HTML' | 'ADSENSE' | 'AI' | 'AI_WIDGET';
|
|
2271
2351
|
interface ImageData {
|
|
2272
2352
|
/** Styling for the image's container. */
|
|
2273
2353
|
containerData?: PluginContainerData;
|
|
@@ -2497,7 +2577,7 @@ interface OptionLayout {
|
|
|
2497
2577
|
/** Sets whether to display option images. Defaults to `false`. */
|
|
2498
2578
|
enableImage?: boolean | null;
|
|
2499
2579
|
}
|
|
2500
|
-
declare enum
|
|
2580
|
+
declare enum PollDesignBackgroundType {
|
|
2501
2581
|
/** Color background type */
|
|
2502
2582
|
COLOR = "COLOR",
|
|
2503
2583
|
/** Image background type */
|
|
@@ -2506,8 +2586,8 @@ declare enum BackgroundType {
|
|
|
2506
2586
|
GRADIENT = "GRADIENT"
|
|
2507
2587
|
}
|
|
2508
2588
|
/** @enumType */
|
|
2509
|
-
type
|
|
2510
|
-
interface
|
|
2589
|
+
type PollDesignBackgroundTypeWithLiterals = PollDesignBackgroundType | 'COLOR' | 'IMAGE' | 'GRADIENT';
|
|
2590
|
+
interface BackgroundGradient {
|
|
2511
2591
|
/** The gradient angle in degrees. */
|
|
2512
2592
|
angle?: number | null;
|
|
2513
2593
|
/**
|
|
@@ -2521,7 +2601,7 @@ interface Gradient {
|
|
|
2521
2601
|
*/
|
|
2522
2602
|
lastColor?: string | null;
|
|
2523
2603
|
}
|
|
2524
|
-
interface
|
|
2604
|
+
interface PollDesignBackground extends PollDesignBackgroundBackgroundOneOf {
|
|
2525
2605
|
/**
|
|
2526
2606
|
* The background color as a hexademical value.
|
|
2527
2607
|
* @format COLOR_HEX
|
|
@@ -2530,12 +2610,12 @@ interface Background extends BackgroundBackgroundOneOf {
|
|
|
2530
2610
|
/** An image to use for the background. */
|
|
2531
2611
|
image?: Media;
|
|
2532
2612
|
/** Details for a gradient background. */
|
|
2533
|
-
gradient?:
|
|
2613
|
+
gradient?: BackgroundGradient;
|
|
2534
2614
|
/** Background type. For each option, include the relevant details. */
|
|
2535
|
-
type?:
|
|
2615
|
+
type?: PollDesignBackgroundTypeWithLiterals;
|
|
2536
2616
|
}
|
|
2537
2617
|
/** @oneof */
|
|
2538
|
-
interface
|
|
2618
|
+
interface PollDesignBackgroundBackgroundOneOf {
|
|
2539
2619
|
/**
|
|
2540
2620
|
* The background color as a hexademical value.
|
|
2541
2621
|
* @format COLOR_HEX
|
|
@@ -2544,11 +2624,11 @@ interface BackgroundBackgroundOneOf {
|
|
|
2544
2624
|
/** An image to use for the background. */
|
|
2545
2625
|
image?: Media;
|
|
2546
2626
|
/** Details for a gradient background. */
|
|
2547
|
-
gradient?:
|
|
2627
|
+
gradient?: BackgroundGradient;
|
|
2548
2628
|
}
|
|
2549
2629
|
interface PollDesign {
|
|
2550
2630
|
/** Background styling. */
|
|
2551
|
-
background?:
|
|
2631
|
+
background?: PollDesignBackground;
|
|
2552
2632
|
/** Border radius in pixels. */
|
|
2553
2633
|
borderRadius?: number | null;
|
|
2554
2634
|
}
|
|
@@ -3231,12 +3311,13 @@ interface CaptionData {
|
|
|
3231
3311
|
}
|
|
3232
3312
|
interface LayoutData {
|
|
3233
3313
|
/**
|
|
3234
|
-
*
|
|
3314
|
+
* Deprecated: Use `background` instead.
|
|
3235
3315
|
* @format COLOR_HEX
|
|
3316
|
+
* @deprecated
|
|
3236
3317
|
*/
|
|
3237
3318
|
backgroundColor?: string | null;
|
|
3238
3319
|
/** Background image. */
|
|
3239
|
-
backgroundImage?:
|
|
3320
|
+
backgroundImage?: LayoutDataBackgroundImage;
|
|
3240
3321
|
/**
|
|
3241
3322
|
* Border color as a hexadecimal value.
|
|
3242
3323
|
* @format COLOR_HEX
|
|
@@ -3244,15 +3325,16 @@ interface LayoutData {
|
|
|
3244
3325
|
borderColor?: string | null;
|
|
3245
3326
|
/** Border width in pixels. */
|
|
3246
3327
|
borderWidth?: number | null;
|
|
3247
|
-
/** Border */
|
|
3328
|
+
/** Border radius in pixels. */
|
|
3248
3329
|
borderRadius?: number | null;
|
|
3249
3330
|
/**
|
|
3250
|
-
*
|
|
3331
|
+
* Deprecated: Use `backdrop` instead.
|
|
3251
3332
|
* @format COLOR_HEX
|
|
3333
|
+
* @deprecated
|
|
3252
3334
|
*/
|
|
3253
3335
|
backdropColor?: string | null;
|
|
3254
|
-
/** Backdrop image.
|
|
3255
|
-
backdropImage?:
|
|
3336
|
+
/** Backdrop image. */
|
|
3337
|
+
backdropImage?: LayoutDataBackgroundImage;
|
|
3256
3338
|
/** Backdrop top padding. */
|
|
3257
3339
|
backdropPaddingTop?: number | null;
|
|
3258
3340
|
/** Backdrop bottom padding */
|
|
@@ -3276,8 +3358,12 @@ interface LayoutData {
|
|
|
3276
3358
|
designTarget?: DesignTargetWithLiterals;
|
|
3277
3359
|
/** Banner configuration. When present, this layout is displayed as a banner. */
|
|
3278
3360
|
banner?: Banner;
|
|
3361
|
+
/** Background styling (color or gradient). */
|
|
3362
|
+
background?: LayoutDataBackground;
|
|
3363
|
+
/** Backdrop styling (color or gradient). */
|
|
3364
|
+
backdrop?: Backdrop;
|
|
3279
3365
|
}
|
|
3280
|
-
declare enum
|
|
3366
|
+
declare enum ImageScalingScaling {
|
|
3281
3367
|
/** Auto image scaling */
|
|
3282
3368
|
AUTO = "AUTO",
|
|
3283
3369
|
/** Contain image scaling */
|
|
@@ -3286,7 +3372,7 @@ declare enum Scaling {
|
|
|
3286
3372
|
COVER = "COVER"
|
|
3287
3373
|
}
|
|
3288
3374
|
/** @enumType */
|
|
3289
|
-
type
|
|
3375
|
+
type ImageScalingScalingWithLiterals = ImageScalingScaling | 'AUTO' | 'CONTAIN' | 'COVER';
|
|
3290
3376
|
declare enum ImagePosition {
|
|
3291
3377
|
/** Image positioned at the center */
|
|
3292
3378
|
CENTER = "CENTER",
|
|
@@ -3317,13 +3403,31 @@ declare enum Origin {
|
|
|
3317
3403
|
}
|
|
3318
3404
|
/** @enumType */
|
|
3319
3405
|
type OriginWithLiterals = Origin | 'IMAGE' | 'LAYOUT';
|
|
3320
|
-
|
|
3406
|
+
/** Background type */
|
|
3407
|
+
declare enum LayoutDataBackgroundType {
|
|
3408
|
+
/** Solid color background */
|
|
3409
|
+
COLOR = "COLOR",
|
|
3410
|
+
/** Gradient background */
|
|
3411
|
+
GRADIENT = "GRADIENT"
|
|
3412
|
+
}
|
|
3413
|
+
/** @enumType */
|
|
3414
|
+
type LayoutDataBackgroundTypeWithLiterals = LayoutDataBackgroundType | 'COLOR' | 'GRADIENT';
|
|
3415
|
+
/** Backdrop type */
|
|
3416
|
+
declare enum BackdropType {
|
|
3417
|
+
/** Solid color backdrop */
|
|
3418
|
+
COLOR = "COLOR",
|
|
3419
|
+
/** Gradient backdrop */
|
|
3420
|
+
GRADIENT = "GRADIENT"
|
|
3421
|
+
}
|
|
3422
|
+
/** @enumType */
|
|
3423
|
+
type BackdropTypeWithLiterals = BackdropType | 'COLOR' | 'GRADIENT';
|
|
3424
|
+
interface LayoutDataBackgroundImage {
|
|
3321
3425
|
/** Background image. */
|
|
3322
3426
|
media?: Media;
|
|
3323
3427
|
/** Background image opacity. */
|
|
3324
3428
|
opacity?: number | null;
|
|
3325
3429
|
/** Background image scaling. */
|
|
3326
|
-
scaling?:
|
|
3430
|
+
scaling?: ImageScalingScalingWithLiterals;
|
|
3327
3431
|
/** Position of background. Defaults to `CENTER`. */
|
|
3328
3432
|
position?: ImagePositionWithLiterals;
|
|
3329
3433
|
}
|
|
@@ -3357,6 +3461,30 @@ interface Banner {
|
|
|
3357
3461
|
/** Origin of the banner */
|
|
3358
3462
|
origin?: OriginWithLiterals;
|
|
3359
3463
|
}
|
|
3464
|
+
/** Background styling (color or gradient) */
|
|
3465
|
+
interface LayoutDataBackground {
|
|
3466
|
+
/** Background type. */
|
|
3467
|
+
type?: LayoutDataBackgroundTypeWithLiterals;
|
|
3468
|
+
/**
|
|
3469
|
+
* Background color as a hexadecimal value.
|
|
3470
|
+
* @format COLOR_HEX
|
|
3471
|
+
*/
|
|
3472
|
+
color?: string | null;
|
|
3473
|
+
/** Gradient configuration. */
|
|
3474
|
+
gradient?: Gradient;
|
|
3475
|
+
}
|
|
3476
|
+
/** Backdrop styling (color or gradient) */
|
|
3477
|
+
interface Backdrop {
|
|
3478
|
+
/** Backdrop type. */
|
|
3479
|
+
type?: BackdropTypeWithLiterals;
|
|
3480
|
+
/**
|
|
3481
|
+
* Backdrop color as a hexadecimal value.
|
|
3482
|
+
* @format COLOR_HEX
|
|
3483
|
+
*/
|
|
3484
|
+
color?: string | null;
|
|
3485
|
+
/** Gradient configuration. */
|
|
3486
|
+
gradient?: Gradient;
|
|
3487
|
+
}
|
|
3360
3488
|
interface LayoutCellData {
|
|
3361
3489
|
/** Size of the cell in 12 columns grid. */
|
|
3362
3490
|
colSpan?: number | null;
|
|
@@ -3378,6 +3506,120 @@ interface ShapeDataStyles {
|
|
|
3378
3506
|
/** Map of original color keys to their new color values. */
|
|
3379
3507
|
colors?: Record<string, string>;
|
|
3380
3508
|
}
|
|
3509
|
+
interface CardData {
|
|
3510
|
+
/** Background styling (color or gradient). */
|
|
3511
|
+
background?: CardDataBackground;
|
|
3512
|
+
/** Background image. */
|
|
3513
|
+
backgroundImage?: BackgroundImage;
|
|
3514
|
+
}
|
|
3515
|
+
declare enum Scaling {
|
|
3516
|
+
/** Auto image scaling */
|
|
3517
|
+
AUTO = "AUTO",
|
|
3518
|
+
/** Contain image scaling */
|
|
3519
|
+
CONTAIN = "CONTAIN",
|
|
3520
|
+
/** Cover image scaling */
|
|
3521
|
+
COVER = "COVER"
|
|
3522
|
+
}
|
|
3523
|
+
/** @enumType */
|
|
3524
|
+
type ScalingWithLiterals = Scaling | 'AUTO' | 'CONTAIN' | 'COVER';
|
|
3525
|
+
declare enum ImagePositionPosition {
|
|
3526
|
+
/** Image positioned at the center */
|
|
3527
|
+
CENTER = "CENTER",
|
|
3528
|
+
/** Image positioned on the left */
|
|
3529
|
+
CENTER_LEFT = "CENTER_LEFT",
|
|
3530
|
+
/** Image positioned on the right */
|
|
3531
|
+
CENTER_RIGHT = "CENTER_RIGHT",
|
|
3532
|
+
/** Image positioned at the center top */
|
|
3533
|
+
TOP = "TOP",
|
|
3534
|
+
/** Image positioned at the top left */
|
|
3535
|
+
TOP_LEFT = "TOP_LEFT",
|
|
3536
|
+
/** Image positioned at the top right */
|
|
3537
|
+
TOP_RIGHT = "TOP_RIGHT",
|
|
3538
|
+
/** Image positioned at the center bottom */
|
|
3539
|
+
BOTTOM = "BOTTOM",
|
|
3540
|
+
/** Image positioned at the bottom left */
|
|
3541
|
+
BOTTOM_LEFT = "BOTTOM_LEFT",
|
|
3542
|
+
/** Image positioned at the bottom right */
|
|
3543
|
+
BOTTOM_RIGHT = "BOTTOM_RIGHT"
|
|
3544
|
+
}
|
|
3545
|
+
/** @enumType */
|
|
3546
|
+
type ImagePositionPositionWithLiterals = ImagePositionPosition | 'CENTER' | 'CENTER_LEFT' | 'CENTER_RIGHT' | 'TOP' | 'TOP_LEFT' | 'TOP_RIGHT' | 'BOTTOM' | 'BOTTOM_LEFT' | 'BOTTOM_RIGHT';
|
|
3547
|
+
/** Background type */
|
|
3548
|
+
declare enum CardDataBackgroundType {
|
|
3549
|
+
/** Solid color background */
|
|
3550
|
+
COLOR = "COLOR",
|
|
3551
|
+
/** Gradient background */
|
|
3552
|
+
GRADIENT = "GRADIENT"
|
|
3553
|
+
}
|
|
3554
|
+
/** @enumType */
|
|
3555
|
+
type CardDataBackgroundTypeWithLiterals = CardDataBackgroundType | 'COLOR' | 'GRADIENT';
|
|
3556
|
+
/** Background styling (color or gradient) */
|
|
3557
|
+
interface CardDataBackground {
|
|
3558
|
+
/** Background type. */
|
|
3559
|
+
type?: CardDataBackgroundTypeWithLiterals;
|
|
3560
|
+
/**
|
|
3561
|
+
* Background color as a hexadecimal value.
|
|
3562
|
+
* @format COLOR_HEX
|
|
3563
|
+
*/
|
|
3564
|
+
color?: string | null;
|
|
3565
|
+
/** Gradient configuration. */
|
|
3566
|
+
gradient?: Gradient;
|
|
3567
|
+
}
|
|
3568
|
+
interface BackgroundImage {
|
|
3569
|
+
/** Background image. */
|
|
3570
|
+
media?: Media;
|
|
3571
|
+
/** Background image opacity. */
|
|
3572
|
+
opacity?: number | null;
|
|
3573
|
+
/** Background image scaling. */
|
|
3574
|
+
scaling?: ScalingWithLiterals;
|
|
3575
|
+
/** Position of background. Defaults to `CENTER`. */
|
|
3576
|
+
position?: ImagePositionPositionWithLiterals;
|
|
3577
|
+
}
|
|
3578
|
+
interface TocData {
|
|
3579
|
+
/** Heading levels included in the table of contents. Default: [1, 2, 3, 4, 5, 6]. */
|
|
3580
|
+
includedHeadings?: number[];
|
|
3581
|
+
/** List style. Default: PLAIN. */
|
|
3582
|
+
listStyle?: ListStyleWithLiterals;
|
|
3583
|
+
/** Optional override for the font size in pixels. */
|
|
3584
|
+
fontSize?: number | null;
|
|
3585
|
+
/** Optional override for the vertical spacing between items in pixels. */
|
|
3586
|
+
itemSpacing?: number | null;
|
|
3587
|
+
/**
|
|
3588
|
+
* Optional override for the text color.
|
|
3589
|
+
* @format COLOR_HEX
|
|
3590
|
+
*/
|
|
3591
|
+
color?: string | null;
|
|
3592
|
+
/** Indentation style. Default: NESTED. */
|
|
3593
|
+
indentation?: IndentationWithLiterals;
|
|
3594
|
+
}
|
|
3595
|
+
/** List style. */
|
|
3596
|
+
declare enum ListStyle {
|
|
3597
|
+
/** No markers (default) */
|
|
3598
|
+
PLAIN = "PLAIN",
|
|
3599
|
+
/** Numbered list */
|
|
3600
|
+
NUMBERED = "NUMBERED",
|
|
3601
|
+
/** Alphabetic letters */
|
|
3602
|
+
LETTERS = "LETTERS",
|
|
3603
|
+
/** Roman numerals */
|
|
3604
|
+
ROMAN = "ROMAN",
|
|
3605
|
+
/** Bulleted list */
|
|
3606
|
+
BULLETED = "BULLETED",
|
|
3607
|
+
/** Alphabetical index */
|
|
3608
|
+
ALPHABETICAL_INDEX = "ALPHABETICAL_INDEX",
|
|
3609
|
+
/** Alphabetical index (compact top-row only) */
|
|
3610
|
+
ALPHABETICAL_INDEX_COMPACT = "ALPHABETICAL_INDEX_COMPACT"
|
|
3611
|
+
}
|
|
3612
|
+
/** @enumType */
|
|
3613
|
+
type ListStyleWithLiterals = ListStyle | 'PLAIN' | 'NUMBERED' | 'LETTERS' | 'ROMAN' | 'BULLETED' | 'ALPHABETICAL_INDEX' | 'ALPHABETICAL_INDEX_COMPACT';
|
|
3614
|
+
/** Indentation style. */
|
|
3615
|
+
declare enum Indentation {
|
|
3616
|
+
/** Sub-headings indented under parents (default) */
|
|
3617
|
+
NESTED = "NESTED",
|
|
3618
|
+
/** All items at the same level */
|
|
3619
|
+
FLAT = "FLAT"
|
|
3620
|
+
}
|
|
3621
|
+
/** @enumType */
|
|
3622
|
+
type IndentationWithLiterals = Indentation | 'NESTED' | 'FLAT';
|
|
3381
3623
|
interface Metadata {
|
|
3382
3624
|
/** Schema version. */
|
|
3383
3625
|
version?: number;
|
|
@@ -3433,8 +3675,6 @@ interface Badge {
|
|
|
3433
3675
|
text?: string | null;
|
|
3434
3676
|
}
|
|
3435
3677
|
declare enum Type {
|
|
3436
|
-
/** Unknown badge type. */
|
|
3437
|
-
UNKNOWN_BADGE_TYPE = "UNKNOWN_BADGE_TYPE",
|
|
3438
3678
|
/** 1st priority badge type. */
|
|
3439
3679
|
FIRST_PRIORITY = "FIRST_PRIORITY",
|
|
3440
3680
|
/** 2nd priority badge type. */
|
|
@@ -3443,7 +3683,7 @@ declare enum Type {
|
|
|
3443
3683
|
THIRD_PRIORITY = "THIRD_PRIORITY"
|
|
3444
3684
|
}
|
|
3445
3685
|
/** @enumType */
|
|
3446
|
-
type TypeWithLiterals = Type | '
|
|
3686
|
+
type TypeWithLiterals = Type | 'FIRST_PRIORITY' | 'SECOND_PRIORITY' | 'THIRD_PRIORITY';
|
|
3447
3687
|
interface DiscardDraftRequest {
|
|
3448
3688
|
/**
|
|
3449
3689
|
* Event ID to which the form belongs.
|
|
@@ -3665,4 +3905,4 @@ declare function discardDraft(): __PublicMethodMetaInfo<'DELETE', {
|
|
|
3665
3905
|
eventId: string;
|
|
3666
3906
|
}, DiscardDraftRequest$1, DiscardDraftRequest, DiscardDraftResponse$1, DiscardDraftResponse>;
|
|
3667
3907
|
|
|
3668
|
-
export { type AccountInfo as AccountInfoOriginal, type ActionEvent as ActionEventOriginal, type AddControlApplicationErrors as AddControlApplicationErrorsOriginal, type AddControlRequestControlOneOf as AddControlRequestControlOneOfOriginal, type AddControlRequest as AddControlRequestOriginal, type AddControlResponse as AddControlResponseOriginal, type AdditionalGuestsControl as AdditionalGuestsControlOriginal, type AddressControlLabels as AddressControlLabelsOriginal, type AddressControl as AddressControlOriginal, type AddressLocation as AddressLocationOriginal, type Address as AddressOriginal, type AddressStreetOneOf as AddressStreetOneOfOriginal, type Agenda as AgendaOriginal, 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 BackgroundBackgroundOneOf as BackgroundBackgroundOneOfOriginal, type BackgroundImage as BackgroundImageOriginal, type Background as BackgroundOriginal, BackgroundType as BackgroundTypeOriginal, type BackgroundTypeWithLiterals as BackgroundTypeWithLiteralsOriginal, type Badge as BadgeOriginal, 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 ButtonStyles as ButtonStylesOriginal, type CalendarLinks as CalendarLinksOriginal, type CaptionData as CaptionDataOriginal, type CardStyles as CardStylesOriginal, CardStylesType as CardStylesTypeOriginal, type CardStylesTypeWithLiterals as CardStylesTypeWithLiteralsOriginal, type CategoryCounts as CategoryCountsOriginal, type Category as CategoryOriginal, type CellStyle as CellStyleOriginal, type CheckboxControl as CheckboxControlOriginal, type CheckoutFormMessages as CheckoutFormMessagesOriginal, CheckoutType as CheckoutTypeOriginal, type CheckoutTypeWithLiterals as CheckoutTypeWithLiteralsOriginal, type CodeBlockData as CodeBlockDataOriginal, type CollapsibleListData as CollapsibleListDataOriginal, type ColorData as ColorDataOriginal, type Colors as ColorsOriginal, ConferenceType as ConferenceTypeOriginal, type ConferenceTypeWithLiterals as ConferenceTypeWithLiteralsOriginal, Crop as CropOriginal, type CropWithLiterals as CropWithLiteralsOriginal, type Dashboard as DashboardOriginal, type DateControl as DateControlOriginal, type DecorationDataOneOf as DecorationDataOneOfOriginal, type Decoration as DecorationOriginal, DecorationType as DecorationTypeOriginal, type DecorationTypeWithLiterals as DecorationTypeWithLiteralsOriginal, type DeleteControlApplicationErrors as DeleteControlApplicationErrorsOriginal, type DeleteControlRequest as DeleteControlRequestOriginal, type DeleteControlResponse as DeleteControlResponseOriginal, type Design as DesignOriginal, DesignTarget as DesignTargetOriginal, type DesignTargetWithLiterals as DesignTargetWithLiteralsOriginal, type Dimensions as DimensionsOriginal, Direction as DirectionOriginal, type DirectionWithLiterals as DirectionWithLiteralsOriginal, type DiscardDraftRequest as DiscardDraftRequestOriginal, type DiscardDraftResponse as DiscardDraftResponseOriginal, DividerDataAlignment as DividerDataAlignmentOriginal, type DividerDataAlignmentWithLiterals as DividerDataAlignmentWithLiteralsOriginal, type DividerData as DividerDataOriginal, type DocumentStyle as DocumentStyleOriginal, type DomainEventBodyOneOf as DomainEventBodyOneOfOriginal, type DomainEvent as DomainEventOriginal, type DropdownControl as DropdownControlOriginal, type EmailControl as EmailControlOriginal, type EmbedData as EmbedDataOriginal, type EntityCreatedEvent as EntityCreatedEventOriginal, type EntityDeletedEvent as EntityDeletedEventOriginal, type EntityUpdatedEvent as EntityUpdatedEventOriginal, type EventData as EventDataOriginal, type EventDisplaySettings as EventDisplaySettingsOriginal, type Event as EventOriginal, EventStatus as EventStatusOriginal, type EventStatusWithLiterals as EventStatusWithLiteralsOriginal, EventType as EventTypeOriginal, type EventTypeWithLiterals as EventTypeWithLiteralsOriginal, type EventUpdated as EventUpdatedOriginal, type ExternalEvent as ExternalEventOriginal, type Feed as FeedOriginal, 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 FormInputControlAdded as FormInputControlAddedOriginal, type FormInputControlDeleted as FormInputControlDeletedOriginal, type FormInputControlUpdated as FormInputControlUpdatedOriginal, type FormMessages as FormMessagesOriginal, type Form as FormOriginal, 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 GetFormRequest as GetFormRequestOriginal, type GetFormResponse as GetFormResponseOriginal, type Gradient as GradientOriginal, type GuestListConfig as GuestListConfigOriginal, 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, type ImagePositionWithLiterals as ImagePositionWithLiteralsOriginal, type ImageStyles as ImageStylesOriginal, InitialExpandedItems as InitialExpandedItemsOriginal, type InitialExpandedItemsWithLiterals as InitialExpandedItemsWithLiteralsOriginal, type InputControl as InputControlOriginal, InputControlType as InputControlTypeOriginal, type InputControlTypeWithLiterals as InputControlTypeWithLiteralsOriginal, type Input as InputOriginal, type ItemDataOneOf as ItemDataOneOfOriginal, type ItemImage as ItemImageOriginal, type Item as ItemOriginal, type ItemStyle as ItemStyleOriginal, type Keyword as KeywordOriginal, type Label as LabelOriginal, type LabellingSettings as LabellingSettingsOriginal, type Labels as LabelsOriginal, type LayoutCellData as LayoutCellDataOriginal, 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 ListValue as ListValueOriginal, type Location as LocationOriginal, LocationType as LocationTypeOriginal, type LocationTypeWithLiterals as LocationTypeWithLiteralsOriginal, type MapCoordinates as MapCoordinatesOriginal, 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 Money as MoneyOriginal, type NameControlLabels as NameControlLabelsOriginal, type NameControl as NameControlOriginal, type Negative as NegativeOriginal, type NegativeResponseConfirmation as NegativeResponseConfirmationOriginal, 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 Occurrence as OccurrenceOriginal, type Oembed as OembedOriginal, type OnlineConferencingConfig as OnlineConferencingConfigOriginal, type OnlineConferencing as OnlineConferencingOriginal, type OnlineConferencingSession as OnlineConferencingSessionOriginal, type OptionDesign as OptionDesignOriginal, type OptionLayout as OptionLayoutOriginal, type Option as OptionOriginal, type OptionSelection as OptionSelectionOriginal, type OptionSelectionSelectedOptionOneOf as OptionSelectionSelectedOptionOneOfOriginal, 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, type PhoneControl as PhoneControlOriginal, 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 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, type PollSettings as PollSettingsOriginal, Position as PositionOriginal, type PositionWithLiterals as PositionWithLiteralsOriginal, type Positive as PositiveOriginal, type PositiveResponseConfirmation as PositiveResponseConfirmationOriginal, type PricingData as PricingDataOriginal, type PublishDraftRequest as PublishDraftRequestOriginal, type PublishDraftResponse as PublishDraftResponseOriginal, type RadioButtonControl as RadioButtonControlOriginal, type Recurrences as RecurrencesOriginal, type RegistrationClosedMessages as RegistrationClosedMessagesOriginal, type Registration as RegistrationOriginal, RegistrationStatus as RegistrationStatusOriginal, type RegistrationStatusWithLiterals as RegistrationStatusWithLiteralsOriginal, type Rel as RelOriginal, RequestedFields as RequestedFieldsOriginal, type RequestedFieldsWithLiterals as RequestedFieldsWithLiteralsOriginal, Resizing as ResizingOriginal, type ResizingWithLiterals as ResizingWithLiteralsOriginal, type ResponseConfirmation as ResponseConfirmationOriginal, ResponsivenessBehaviour as ResponsivenessBehaviourOriginal, type ResponsivenessBehaviourWithLiterals as ResponsivenessBehaviourWithLiteralsOriginal, type RestoreInfo as RestoreInfoOriginal, type RibbonStyles as RibbonStylesOriginal, type RichContent as RichContentOriginal, type RsvpCollectionConfig as RsvpCollectionConfigOriginal, type RsvpCollection as RsvpCollectionOriginal, type RsvpConfirmationMessagesNegativeResponseConfirmation as RsvpConfirmationMessagesNegativeResponseConfirmationOriginal, type RsvpConfirmationMessages as RsvpConfirmationMessagesOriginal, type RsvpConfirmationMessagesPositiveResponseConfirmation as RsvpConfirmationMessagesPositiveResponseConfirmationOriginal, type RsvpFormMessages as RsvpFormMessagesOriginal, RsvpStatusOptions as RsvpStatusOptionsOriginal, type RsvpStatusOptionsWithLiterals as RsvpStatusOptionsWithLiteralsOriginal, type RsvpSummary as RsvpSummaryOriginal, Scaling as ScalingOriginal, type ScalingWithLiterals as ScalingWithLiteralsOriginal, type ScheduleConfig as ScheduleConfigOriginal, type Scheduling as SchedulingOriginal, type SeoSchema as SeoSchemaOriginal, type SeoSettings as SeoSettingsOriginal, type Settings as SettingsOriginal, type ShapeData as ShapeDataOriginal, type ShapeDataStyles as ShapeDataStylesOriginal, type SiteUrl as SiteUrlOriginal, Source as SourceOriginal, type SourceWithLiterals as SourceWithLiteralsOriginal, type SpoilerData as SpoilerDataOriginal, type Spoiler as SpoilerOriginal, State as StateOriginal, type StateWithLiterals as StateWithLiteralsOriginal, Status as StatusOriginal, type StatusWithLiterals as StatusWithLiteralsOriginal, type StreetAddress as StreetAddressOriginal, type StylesBorder as StylesBorderOriginal, type Styles as StylesOriginal, StylesPosition as StylesPositionOriginal, type StylesPositionWithLiterals as StylesPositionWithLiteralsOriginal, type Subdivision as SubdivisionOriginal, SubdivisionType as SubdivisionTypeOriginal, type SubdivisionTypeWithLiterals as SubdivisionTypeWithLiteralsOriginal, type TableCellData as TableCellDataOriginal, type TableData as TableDataOriginal, type Tag as TagOriginal, Target as TargetOriginal, type TargetWithLiterals as TargetWithLiteralsOriginal, type TaxConfig as TaxConfigOriginal, TaxType as TaxTypeOriginal, type TaxTypeWithLiterals as TaxTypeWithLiteralsOriginal, TextAlignment as TextAlignmentOriginal, type TextAlignmentWithLiterals as TextAlignmentWithLiteralsOriginal, type TextControl as TextControlOriginal, type TextData as TextDataOriginal, type TextNodeStyle as TextNodeStyleOriginal, type TextStyle as TextStyleOriginal, ThumbnailsAlignment as ThumbnailsAlignmentOriginal, type ThumbnailsAlignmentWithLiterals as ThumbnailsAlignmentWithLiteralsOriginal, type Thumbnails as ThumbnailsOriginal, type TicketingConfig as TicketingConfigOriginal, type Ticketing as TicketingOriginal, type TicketingSummary as TicketingSummaryOriginal, type TicketsConfirmationMessages as TicketsConfirmationMessagesOriginal, type TicketsUnavailableMessages as TicketsUnavailableMessagesOriginal, Type as TypeOriginal, type TypeWithLiterals as TypeWithLiteralsOriginal, type UpdateControlApplicationErrors as UpdateControlApplicationErrorsOriginal, type UpdateControlRequestControlOneOf as UpdateControlRequestControlOneOfOriginal, type UpdateControlRequest as UpdateControlRequestOriginal, type UpdateControlResponse as UpdateControlResponseOriginal, type UpdateMessagesRequest as UpdateMessagesRequestOriginal, type UpdateMessagesResponse as UpdateMessagesResponseOriginal, ValueType as ValueTypeOriginal, type ValueTypeWithLiterals as ValueTypeWithLiteralsOriginal, 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, VisitorType as VisitorTypeOriginal, type VisitorTypeWithLiterals as VisitorTypeWithLiteralsOriginal, 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, addControl, deleteControl, discardDraft, getForm, publishDraft, updateControl, updateMessages };
|
|
3908
|
+
export { type AccountInfo as AccountInfoOriginal, type ActionEvent as ActionEventOriginal, type AddControlApplicationErrors as AddControlApplicationErrorsOriginal, type AddControlRequestControlOneOf as AddControlRequestControlOneOfOriginal, type AddControlRequest as AddControlRequestOriginal, type AddControlResponse as AddControlResponseOriginal, type AdditionalGuestsControl as AdditionalGuestsControlOriginal, type AddressControlLabels as AddressControlLabelsOriginal, type AddressControl as AddressControlOriginal, type AddressLocation as AddressLocationOriginal, type Address as AddressOriginal, type AddressStreetOneOf as AddressStreetOneOfOriginal, type Agenda as AgendaOriginal, 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 BackgroundGradient as BackgroundGradientOriginal, type BackgroundImage as BackgroundImageOriginal, type Background as BackgroundOriginal, BackgroundType as BackgroundTypeOriginal, type BackgroundTypeWithLiterals as BackgroundTypeWithLiteralsOriginal, type Badge as BadgeOriginal, 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 ButtonStyles as ButtonStylesOriginal, type CalendarLinks as CalendarLinksOriginal, type CaptionData as CaptionDataOriginal, type CardDataBackground as CardDataBackgroundOriginal, CardDataBackgroundType as CardDataBackgroundTypeOriginal, type CardDataBackgroundTypeWithLiterals as CardDataBackgroundTypeWithLiteralsOriginal, type CardData as CardDataOriginal, type CardStyles as CardStylesOriginal, CardStylesType as CardStylesTypeOriginal, type CardStylesTypeWithLiterals as CardStylesTypeWithLiteralsOriginal, type CategoryCounts as CategoryCountsOriginal, type Category as CategoryOriginal, type CellStyle as CellStyleOriginal, type CheckboxControl as CheckboxControlOriginal, type CheckoutFormMessages as CheckoutFormMessagesOriginal, CheckoutType as CheckoutTypeOriginal, type CheckoutTypeWithLiterals as CheckoutTypeWithLiteralsOriginal, type CodeBlockData as CodeBlockDataOriginal, type CollapsibleListData as CollapsibleListDataOriginal, type ColorData as ColorDataOriginal, type Colors as ColorsOriginal, ConferenceType as ConferenceTypeOriginal, type ConferenceTypeWithLiterals as ConferenceTypeWithLiteralsOriginal, Crop as CropOriginal, type CropWithLiterals as CropWithLiteralsOriginal, type Dashboard as DashboardOriginal, type DateControl as DateControlOriginal, type DecorationDataOneOf as DecorationDataOneOfOriginal, type Decoration as DecorationOriginal, DecorationType as DecorationTypeOriginal, type DecorationTypeWithLiterals as DecorationTypeWithLiteralsOriginal, type DeleteControlApplicationErrors as DeleteControlApplicationErrorsOriginal, type DeleteControlRequest as DeleteControlRequestOriginal, type DeleteControlResponse as DeleteControlResponseOriginal, type Design as DesignOriginal, DesignTarget as DesignTargetOriginal, type DesignTargetWithLiterals as DesignTargetWithLiteralsOriginal, type Dimensions as DimensionsOriginal, Direction as DirectionOriginal, type DirectionWithLiterals as DirectionWithLiteralsOriginal, type DiscardDraftRequest as DiscardDraftRequestOriginal, type DiscardDraftResponse as DiscardDraftResponseOriginal, DividerDataAlignment as DividerDataAlignmentOriginal, type DividerDataAlignmentWithLiterals as DividerDataAlignmentWithLiteralsOriginal, type DividerData as DividerDataOriginal, type DocumentStyle as DocumentStyleOriginal, type DomainEventBodyOneOf as DomainEventBodyOneOfOriginal, type DomainEvent as DomainEventOriginal, type DropdownControl as DropdownControlOriginal, type EmailControl as EmailControlOriginal, type EmbedData as EmbedDataOriginal, type EntityCreatedEvent as EntityCreatedEventOriginal, type EntityDeletedEvent as EntityDeletedEventOriginal, type EntityUpdatedEvent as EntityUpdatedEventOriginal, type EventData as EventDataOriginal, type EventDisplaySettings as EventDisplaySettingsOriginal, type Event as EventOriginal, EventStatus as EventStatusOriginal, type EventStatusWithLiterals as EventStatusWithLiteralsOriginal, EventType as EventTypeOriginal, type EventTypeWithLiterals as EventTypeWithLiteralsOriginal, type EventUpdated as EventUpdatedOriginal, type ExternalEvent as ExternalEventOriginal, type Feed as FeedOriginal, 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 FormInputControlAdded as FormInputControlAddedOriginal, type FormInputControlDeleted as FormInputControlDeletedOriginal, type FormInputControlUpdated as FormInputControlUpdatedOriginal, type FormMessages as FormMessagesOriginal, type Form as FormOriginal, 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 GetFormRequest as GetFormRequestOriginal, type GetFormResponse as GetFormResponseOriginal, type Gradient as GradientOriginal, GradientType as GradientTypeOriginal, type GradientTypeWithLiterals as GradientTypeWithLiteralsOriginal, type GuestListConfig as GuestListConfigOriginal, 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 InputControl as InputControlOriginal, InputControlType as InputControlTypeOriginal, type InputControlTypeWithLiterals as InputControlTypeWithLiteralsOriginal, type Input as InputOriginal, type ItemDataOneOf as ItemDataOneOfOriginal, type ItemImage as ItemImageOriginal, type Item as ItemOriginal, type ItemStyle as ItemStyleOriginal, type Keyword as KeywordOriginal, type Label as LabelOriginal, type LabellingSettings as LabellingSettingsOriginal, type Labels as LabelsOriginal, 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, ListStyle as ListStyleOriginal, type ListStyleWithLiterals as ListStyleWithLiteralsOriginal, type ListValue as ListValueOriginal, type Location as LocationOriginal, LocationType as LocationTypeOriginal, type LocationTypeWithLiterals as LocationTypeWithLiteralsOriginal, type MapCoordinates as MapCoordinatesOriginal, 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 Money as MoneyOriginal, type NameControlLabels as NameControlLabelsOriginal, type NameControl as NameControlOriginal, type Negative as NegativeOriginal, type NegativeResponseConfirmation as NegativeResponseConfirmationOriginal, 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 Occurrence as OccurrenceOriginal, type Oembed as OembedOriginal, type OnlineConferencingConfig as OnlineConferencingConfigOriginal, type OnlineConferencing as OnlineConferencingOriginal, type OnlineConferencingSession as OnlineConferencingSessionOriginal, type OptionDesign as OptionDesignOriginal, type OptionLayout as OptionLayoutOriginal, type Option as OptionOriginal, type OptionSelection as OptionSelectionOriginal, type OptionSelectionSelectedOptionOneOf as OptionSelectionSelectedOptionOneOfOriginal, 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, type PhoneControl as PhoneControlOriginal, 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, type PollSettings as PollSettingsOriginal, Position as PositionOriginal, type PositionWithLiterals as PositionWithLiteralsOriginal, type Positive as PositiveOriginal, type PositiveResponseConfirmation as PositiveResponseConfirmationOriginal, type PricingData as PricingDataOriginal, type PublishDraftRequest as PublishDraftRequestOriginal, type PublishDraftResponse as PublishDraftResponseOriginal, type RadioButtonControl as RadioButtonControlOriginal, type Recurrences as RecurrencesOriginal, type RegistrationClosedMessages as RegistrationClosedMessagesOriginal, type Registration as RegistrationOriginal, RegistrationStatus as RegistrationStatusOriginal, type RegistrationStatusWithLiterals as RegistrationStatusWithLiteralsOriginal, type Rel as RelOriginal, RequestedFields as RequestedFieldsOriginal, type RequestedFieldsWithLiterals as RequestedFieldsWithLiteralsOriginal, Resizing as ResizingOriginal, type ResizingWithLiterals as ResizingWithLiteralsOriginal, type ResponseConfirmation as ResponseConfirmationOriginal, ResponsivenessBehaviour as ResponsivenessBehaviourOriginal, type ResponsivenessBehaviourWithLiterals as ResponsivenessBehaviourWithLiteralsOriginal, type RestoreInfo as RestoreInfoOriginal, type RibbonStyles as RibbonStylesOriginal, type RichContent as RichContentOriginal, type RsvpCollectionConfig as RsvpCollectionConfigOriginal, type RsvpCollection as RsvpCollectionOriginal, type RsvpConfirmationMessagesNegativeResponseConfirmation as RsvpConfirmationMessagesNegativeResponseConfirmationOriginal, type RsvpConfirmationMessages as RsvpConfirmationMessagesOriginal, type RsvpConfirmationMessagesPositiveResponseConfirmation as RsvpConfirmationMessagesPositiveResponseConfirmationOriginal, type RsvpFormMessages as RsvpFormMessagesOriginal, RsvpStatusOptions as RsvpStatusOptionsOriginal, type RsvpStatusOptionsWithLiterals as RsvpStatusOptionsWithLiteralsOriginal, type RsvpSummary as RsvpSummaryOriginal, Scaling as ScalingOriginal, type ScalingWithLiterals as ScalingWithLiteralsOriginal, type ScheduleConfig as ScheduleConfigOriginal, type Scheduling as SchedulingOriginal, type SeoSchema as SeoSchemaOriginal, type SeoSettings as SeoSettingsOriginal, type Settings as SettingsOriginal, type ShapeData as ShapeDataOriginal, type ShapeDataStyles as ShapeDataStylesOriginal, type SiteUrl as SiteUrlOriginal, Source as SourceOriginal, type SourceWithLiterals as SourceWithLiteralsOriginal, type SpoilerData as SpoilerDataOriginal, type Spoiler as SpoilerOriginal, State as StateOriginal, type StateWithLiterals as StateWithLiteralsOriginal, Status as StatusOriginal, type StatusWithLiterals as StatusWithLiteralsOriginal, type Stop as StopOriginal, type StreetAddress as StreetAddressOriginal, type StylesBorder as StylesBorderOriginal, type Styles as StylesOriginal, StylesPosition as StylesPositionOriginal, type StylesPositionWithLiterals as StylesPositionWithLiteralsOriginal, type Subdivision as SubdivisionOriginal, SubdivisionType as SubdivisionTypeOriginal, type SubdivisionTypeWithLiterals as SubdivisionTypeWithLiteralsOriginal, type TableCellData as TableCellDataOriginal, type TableData as TableDataOriginal, type Tag as TagOriginal, Target as TargetOriginal, type TargetWithLiterals as TargetWithLiteralsOriginal, type TaxConfig as TaxConfigOriginal, TaxType as TaxTypeOriginal, type TaxTypeWithLiterals as TaxTypeWithLiteralsOriginal, TextAlignment as TextAlignmentOriginal, type TextAlignmentWithLiterals as TextAlignmentWithLiteralsOriginal, type TextControl as TextControlOriginal, type TextData as TextDataOriginal, type TextNodeStyle as TextNodeStyleOriginal, type TextStyle as TextStyleOriginal, ThumbnailsAlignment as ThumbnailsAlignmentOriginal, type ThumbnailsAlignmentWithLiterals as ThumbnailsAlignmentWithLiteralsOriginal, type Thumbnails as ThumbnailsOriginal, type TicketingConfig as TicketingConfigOriginal, type Ticketing as TicketingOriginal, type TicketingSummary as TicketingSummaryOriginal, type TicketsConfirmationMessages as TicketsConfirmationMessagesOriginal, type TicketsUnavailableMessages as TicketsUnavailableMessagesOriginal, type TocData as TocDataOriginal, Type as TypeOriginal, type TypeWithLiterals as TypeWithLiteralsOriginal, type UpdateControlApplicationErrors as UpdateControlApplicationErrorsOriginal, type UpdateControlRequestControlOneOf as UpdateControlRequestControlOneOfOriginal, type UpdateControlRequest as UpdateControlRequestOriginal, type UpdateControlResponse as UpdateControlResponseOriginal, type UpdateMessagesRequest as UpdateMessagesRequestOriginal, type UpdateMessagesResponse as UpdateMessagesResponseOriginal, ValueType as ValueTypeOriginal, type ValueTypeWithLiterals as ValueTypeWithLiteralsOriginal, 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, VisitorType as VisitorTypeOriginal, type VisitorTypeWithLiterals as VisitorTypeWithLiteralsOriginal, 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, addControl, deleteControl, discardDraft, getForm, publishDraft, updateControl, updateMessages };
|