@wix/auto_sdk_events_forms 1.0.78 → 1.0.79

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (37) hide show
  1. package/build/cjs/index.d.ts +1 -1
  2. package/build/cjs/index.js +118 -15
  3. package/build/cjs/index.js.map +1 -1
  4. package/build/cjs/index.typings.d.ts +216 -31
  5. package/build/cjs/index.typings.js +70 -15
  6. package/build/cjs/index.typings.js.map +1 -1
  7. package/build/cjs/meta.d.ts +216 -31
  8. package/build/cjs/meta.js +70 -15
  9. package/build/cjs/meta.js.map +1 -1
  10. package/build/es/index.d.mts +1 -1
  11. package/build/es/index.mjs +111 -15
  12. package/build/es/index.mjs.map +1 -1
  13. package/build/es/index.typings.d.mts +216 -31
  14. package/build/es/index.typings.mjs +63 -15
  15. package/build/es/index.typings.mjs.map +1 -1
  16. package/build/es/meta.d.mts +216 -31
  17. package/build/es/meta.mjs +63 -15
  18. package/build/es/meta.mjs.map +1 -1
  19. package/build/internal/cjs/index.d.ts +1 -1
  20. package/build/internal/cjs/index.js +118 -15
  21. package/build/internal/cjs/index.js.map +1 -1
  22. package/build/internal/cjs/index.typings.d.ts +216 -31
  23. package/build/internal/cjs/index.typings.js +70 -15
  24. package/build/internal/cjs/index.typings.js.map +1 -1
  25. package/build/internal/cjs/meta.d.ts +216 -31
  26. package/build/internal/cjs/meta.js +70 -15
  27. package/build/internal/cjs/meta.js.map +1 -1
  28. package/build/internal/es/index.d.mts +1 -1
  29. package/build/internal/es/index.mjs +111 -15
  30. package/build/internal/es/index.mjs.map +1 -1
  31. package/build/internal/es/index.typings.d.mts +216 -31
  32. package/build/internal/es/index.typings.mjs +63 -15
  33. package/build/internal/es/index.typings.mjs.map +1 -1
  34. package/build/internal/es/meta.d.mts +216 -31
  35. package/build/internal/es/meta.mjs +63 -15
  36. package/build/internal/es/meta.mjs.map +1 -1
  37. package/package.json +2 -2
@@ -285,12 +285,11 @@ interface GetFormRequest {
285
285
  eventId: string;
286
286
  }
287
287
  declare enum RequestedFields {
288
- UNKNOWN_REQUESTED_FIELD = "UNKNOWN_REQUESTED_FIELD",
289
288
  /** Include soft deleted input controls in the response. */
290
289
  DELETED = "DELETED"
291
290
  }
292
291
  /** @enumType */
293
- type RequestedFieldsWithLiterals = RequestedFields | 'UNKNOWN_REQUESTED_FIELD' | 'DELETED';
292
+ type RequestedFieldsWithLiterals = RequestedFields | 'DELETED';
294
293
  interface GetFormResponse {
295
294
  /**
296
295
  * Event form.
@@ -1190,14 +1189,13 @@ interface TicketsConfirmationMessages {
1190
1189
  shareActionLabel?: string | null;
1191
1190
  }
1192
1191
  declare enum CheckoutType {
1193
- UNKNOWN_CHECKOUT_TYPE = "UNKNOWN_CHECKOUT_TYPE",
1194
1192
  /** Checkout using Events App. */
1195
1193
  EVENTS_APP = "EVENTS_APP",
1196
1194
  /** Checkout using Ecomm Platform. */
1197
1195
  ECOMM_PLATFORM = "ECOMM_PLATFORM"
1198
1196
  }
1199
1197
  /** @enumType */
1200
- type CheckoutTypeWithLiterals = CheckoutType | 'UNKNOWN_CHECKOUT_TYPE' | 'EVENTS_APP' | 'ECOMM_PLATFORM';
1198
+ type CheckoutTypeWithLiterals = CheckoutType | 'EVENTS_APP' | 'ECOMM_PLATFORM';
1201
1199
  interface Money {
1202
1200
  /**
1203
1201
  * *Deprecated:** Use `value` instead.
@@ -1555,6 +1553,8 @@ interface Node extends NodeDataOneOf {
1555
1553
  layoutCellData?: LayoutCellData;
1556
1554
  /** Data for a shape node. */
1557
1555
  shapeData?: ShapeData;
1556
+ /** Data for a card node. */
1557
+ cardData?: CardData;
1558
1558
  /** 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. */
1559
1559
  type?: NodeTypeWithLiterals;
1560
1560
  /** Node ID. */
@@ -1624,6 +1624,8 @@ interface NodeDataOneOf {
1624
1624
  layoutCellData?: LayoutCellData;
1625
1625
  /** Data for a shape node. */
1626
1626
  shapeData?: ShapeData;
1627
+ /** Data for a card node. */
1628
+ cardData?: CardData;
1627
1629
  }
1628
1630
  declare enum NodeType {
1629
1631
  PARAGRAPH = "PARAGRAPH",
@@ -1660,10 +1662,11 @@ declare enum NodeType {
1660
1662
  CAPTION = "CAPTION",
1661
1663
  LAYOUT = "LAYOUT",
1662
1664
  LAYOUT_CELL = "LAYOUT_CELL",
1663
- SHAPE = "SHAPE"
1665
+ SHAPE = "SHAPE",
1666
+ CARD = "CARD"
1664
1667
  }
1665
1668
  /** @enumType */
1666
- 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';
1669
+ 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';
1667
1670
  interface NodeStyle {
1668
1671
  /** The top padding value in pixels. */
1669
1672
  paddingTop?: string | null;
@@ -1684,6 +1687,55 @@ interface ButtonData {
1684
1687
  /** Button link details. */
1685
1688
  link?: Link;
1686
1689
  }
1690
+ /** Background type */
1691
+ declare enum BackgroundType {
1692
+ /** Solid color background */
1693
+ COLOR = "COLOR",
1694
+ /** Gradient background */
1695
+ GRADIENT = "GRADIENT"
1696
+ }
1697
+ /** @enumType */
1698
+ type BackgroundTypeWithLiterals = BackgroundType | 'COLOR' | 'GRADIENT';
1699
+ interface Gradient {
1700
+ /** Gradient type. */
1701
+ type?: GradientTypeWithLiterals;
1702
+ /**
1703
+ * Color stops for the gradient.
1704
+ * @maxSize 1000
1705
+ */
1706
+ stops?: Stop[];
1707
+ /** Angle in degrees for linear gradient (0-360). */
1708
+ angle?: number | null;
1709
+ /**
1710
+ * Horizontal center position for radial gradient (0-100).
1711
+ * @max 100
1712
+ */
1713
+ centerX?: number | null;
1714
+ /**
1715
+ * Vertical center position for radial gradient (0-100).
1716
+ * @max 100
1717
+ */
1718
+ centerY?: number | null;
1719
+ }
1720
+ /** Gradient type. */
1721
+ declare enum GradientType {
1722
+ /** Linear gradient. */
1723
+ LINEAR = "LINEAR",
1724
+ /** Radial gradient. */
1725
+ RADIAL = "RADIAL"
1726
+ }
1727
+ /** @enumType */
1728
+ type GradientTypeWithLiterals = GradientType | 'LINEAR' | 'RADIAL';
1729
+ /** A single color stop in the gradient. */
1730
+ interface Stop {
1731
+ /**
1732
+ * Stop color as hex value.
1733
+ * @format COLOR_HEX
1734
+ */
1735
+ color?: string | null;
1736
+ /** Stop position (0-1). */
1737
+ position?: number | null;
1738
+ }
1687
1739
  interface Border {
1688
1740
  /**
1689
1741
  * Deprecated: Use `borderWidth` in `styles` instead.
@@ -1713,6 +1765,18 @@ interface Colors {
1713
1765
  */
1714
1766
  background?: string | null;
1715
1767
  }
1768
+ /** Background styling (color or gradient) */
1769
+ interface Background {
1770
+ /** Background type. */
1771
+ type?: BackgroundTypeWithLiterals;
1772
+ /**
1773
+ * Background color as a hexadecimal value.
1774
+ * @format COLOR_HEX
1775
+ */
1776
+ color?: string | null;
1777
+ /** Gradient configuration. */
1778
+ gradient?: Gradient;
1779
+ }
1716
1780
  interface PluginContainerData {
1717
1781
  /** The width of the node when it's displayed. */
1718
1782
  width?: PluginContainerDataWidth;
@@ -1833,17 +1897,23 @@ interface Styles {
1833
1897
  */
1834
1898
  textColorHover?: string | null;
1835
1899
  /**
1836
- * Background color as a hexadecimal value.
1900
+ * Deprecated: Use `background` instead.
1837
1901
  * @format COLOR_HEX
1902
+ * @deprecated
1838
1903
  */
1839
1904
  backgroundColor?: string | null;
1840
1905
  /**
1841
- * Background color as a hexadecimal value (hover state).
1906
+ * Deprecated: Use `backgroundHover` instead.
1842
1907
  * @format COLOR_HEX
1908
+ * @deprecated
1843
1909
  */
1844
1910
  backgroundColorHover?: string | null;
1845
1911
  /** Button size option, one of `SMALL`, `MEDIUM` or `LARGE`. Defaults to `MEDIUM`. */
1846
1912
  buttonSize?: string | null;
1913
+ /** Background styling (color or gradient). */
1914
+ background?: Background;
1915
+ /** Background styling for hover state (color or gradient). */
1916
+ backgroundHover?: Background;
1847
1917
  }
1848
1918
  interface Link extends LinkDataOneOf {
1849
1919
  /** The absolute URL for the linked document. */
@@ -2480,7 +2550,7 @@ interface OptionLayout {
2480
2550
  /** Sets whether to display option images. Defaults to `false`. */
2481
2551
  enableImage?: boolean | null;
2482
2552
  }
2483
- declare enum BackgroundType {
2553
+ declare enum PollDesignBackgroundType {
2484
2554
  /** Color background type */
2485
2555
  COLOR = "COLOR",
2486
2556
  /** Image background type */
@@ -2489,8 +2559,8 @@ declare enum BackgroundType {
2489
2559
  GRADIENT = "GRADIENT"
2490
2560
  }
2491
2561
  /** @enumType */
2492
- type BackgroundTypeWithLiterals = BackgroundType | 'COLOR' | 'IMAGE' | 'GRADIENT';
2493
- interface Gradient {
2562
+ type PollDesignBackgroundTypeWithLiterals = PollDesignBackgroundType | 'COLOR' | 'IMAGE' | 'GRADIENT';
2563
+ interface BackgroundGradient {
2494
2564
  /** The gradient angle in degrees. */
2495
2565
  angle?: number | null;
2496
2566
  /**
@@ -2504,7 +2574,7 @@ interface Gradient {
2504
2574
  */
2505
2575
  lastColor?: string | null;
2506
2576
  }
2507
- interface Background extends BackgroundBackgroundOneOf {
2577
+ interface PollDesignBackground extends PollDesignBackgroundBackgroundOneOf {
2508
2578
  /**
2509
2579
  * The background color as a hexademical value.
2510
2580
  * @format COLOR_HEX
@@ -2513,12 +2583,12 @@ interface Background extends BackgroundBackgroundOneOf {
2513
2583
  /** An image to use for the background. */
2514
2584
  image?: Media;
2515
2585
  /** Details for a gradient background. */
2516
- gradient?: Gradient;
2586
+ gradient?: BackgroundGradient;
2517
2587
  /** Background type. For each option, include the relevant details. */
2518
- type?: BackgroundTypeWithLiterals;
2588
+ type?: PollDesignBackgroundTypeWithLiterals;
2519
2589
  }
2520
2590
  /** @oneof */
2521
- interface BackgroundBackgroundOneOf {
2591
+ interface PollDesignBackgroundBackgroundOneOf {
2522
2592
  /**
2523
2593
  * The background color as a hexademical value.
2524
2594
  * @format COLOR_HEX
@@ -2527,11 +2597,11 @@ interface BackgroundBackgroundOneOf {
2527
2597
  /** An image to use for the background. */
2528
2598
  image?: Media;
2529
2599
  /** Details for a gradient background. */
2530
- gradient?: Gradient;
2600
+ gradient?: BackgroundGradient;
2531
2601
  }
2532
2602
  interface PollDesign {
2533
2603
  /** Background styling. */
2534
- background?: Background;
2604
+ background?: PollDesignBackground;
2535
2605
  /** Border radius in pixels. */
2536
2606
  borderRadius?: number | null;
2537
2607
  }
@@ -3214,12 +3284,13 @@ interface CaptionData {
3214
3284
  }
3215
3285
  interface LayoutData {
3216
3286
  /**
3217
- * Background color as a hexadecimal value.
3287
+ * Deprecated: Use `background` instead.
3218
3288
  * @format COLOR_HEX
3289
+ * @deprecated
3219
3290
  */
3220
3291
  backgroundColor?: string | null;
3221
3292
  /** Background image. */
3222
- backgroundImage?: BackgroundImage;
3293
+ backgroundImage?: LayoutDataBackgroundImage;
3223
3294
  /**
3224
3295
  * Border color as a hexadecimal value.
3225
3296
  * @format COLOR_HEX
@@ -3227,15 +3298,16 @@ interface LayoutData {
3227
3298
  borderColor?: string | null;
3228
3299
  /** Border width in pixels. */
3229
3300
  borderWidth?: number | null;
3230
- /** Border */
3301
+ /** Border radius in pixels. */
3231
3302
  borderRadius?: number | null;
3232
3303
  /**
3233
- * Backdrop color as a hexadecimal value.
3304
+ * Deprecated: Use `backdrop` instead.
3234
3305
  * @format COLOR_HEX
3306
+ * @deprecated
3235
3307
  */
3236
3308
  backdropColor?: string | null;
3237
- /** Backdrop image.radius in pixels. */
3238
- backdropImage?: BackgroundImage;
3309
+ /** Backdrop image. */
3310
+ backdropImage?: LayoutDataBackgroundImage;
3239
3311
  /** Backdrop top padding. */
3240
3312
  backdropPaddingTop?: number | null;
3241
3313
  /** Backdrop bottom padding */
@@ -3259,8 +3331,12 @@ interface LayoutData {
3259
3331
  designTarget?: DesignTargetWithLiterals;
3260
3332
  /** Banner configuration. When present, this layout is displayed as a banner. */
3261
3333
  banner?: Banner;
3334
+ /** Background styling (color or gradient). */
3335
+ background?: LayoutDataBackground;
3336
+ /** Backdrop styling (color or gradient). */
3337
+ backdrop?: Backdrop;
3262
3338
  }
3263
- declare enum Scaling {
3339
+ declare enum ImageScalingScaling {
3264
3340
  /** Auto image scaling */
3265
3341
  AUTO = "AUTO",
3266
3342
  /** Contain image scaling */
@@ -3269,7 +3345,7 @@ declare enum Scaling {
3269
3345
  COVER = "COVER"
3270
3346
  }
3271
3347
  /** @enumType */
3272
- type ScalingWithLiterals = Scaling | 'AUTO' | 'CONTAIN' | 'COVER';
3348
+ type ImageScalingScalingWithLiterals = ImageScalingScaling | 'AUTO' | 'CONTAIN' | 'COVER';
3273
3349
  declare enum ImagePosition {
3274
3350
  /** Image positioned at the center */
3275
3351
  CENTER = "CENTER",
@@ -3300,13 +3376,31 @@ declare enum Origin {
3300
3376
  }
3301
3377
  /** @enumType */
3302
3378
  type OriginWithLiterals = Origin | 'IMAGE' | 'LAYOUT';
3303
- interface BackgroundImage {
3379
+ /** Background type */
3380
+ declare enum LayoutDataBackgroundType {
3381
+ /** Solid color background */
3382
+ COLOR = "COLOR",
3383
+ /** Gradient background */
3384
+ GRADIENT = "GRADIENT"
3385
+ }
3386
+ /** @enumType */
3387
+ type LayoutDataBackgroundTypeWithLiterals = LayoutDataBackgroundType | 'COLOR' | 'GRADIENT';
3388
+ /** Backdrop type */
3389
+ declare enum BackdropType {
3390
+ /** Solid color backdrop */
3391
+ COLOR = "COLOR",
3392
+ /** Gradient backdrop */
3393
+ GRADIENT = "GRADIENT"
3394
+ }
3395
+ /** @enumType */
3396
+ type BackdropTypeWithLiterals = BackdropType | 'COLOR' | 'GRADIENT';
3397
+ interface LayoutDataBackgroundImage {
3304
3398
  /** Background image. */
3305
3399
  media?: Media;
3306
3400
  /** Background image opacity. */
3307
3401
  opacity?: number | null;
3308
3402
  /** Background image scaling. */
3309
- scaling?: ScalingWithLiterals;
3403
+ scaling?: ImageScalingScalingWithLiterals;
3310
3404
  /** Position of background. Defaults to `CENTER`. */
3311
3405
  position?: ImagePositionWithLiterals;
3312
3406
  }
@@ -3340,6 +3434,30 @@ interface Banner {
3340
3434
  /** Origin of the banner */
3341
3435
  origin?: OriginWithLiterals;
3342
3436
  }
3437
+ /** Background styling (color or gradient) */
3438
+ interface LayoutDataBackground {
3439
+ /** Background type. */
3440
+ type?: LayoutDataBackgroundTypeWithLiterals;
3441
+ /**
3442
+ * Background color as a hexadecimal value.
3443
+ * @format COLOR_HEX
3444
+ */
3445
+ color?: string | null;
3446
+ /** Gradient configuration. */
3447
+ gradient?: Gradient;
3448
+ }
3449
+ /** Backdrop styling (color or gradient) */
3450
+ interface Backdrop {
3451
+ /** Backdrop type. */
3452
+ type?: BackdropTypeWithLiterals;
3453
+ /**
3454
+ * Backdrop color as a hexadecimal value.
3455
+ * @format COLOR_HEX
3456
+ */
3457
+ color?: string | null;
3458
+ /** Gradient configuration. */
3459
+ gradient?: Gradient;
3460
+ }
3343
3461
  interface LayoutCellData {
3344
3462
  /** Size of the cell in 12 columns grid. */
3345
3463
  colSpan?: number | null;
@@ -3361,6 +3479,75 @@ interface ShapeDataStyles {
3361
3479
  /** Map of original color keys to their new color values. */
3362
3480
  colors?: Record<string, string>;
3363
3481
  }
3482
+ interface CardData {
3483
+ /** Background styling (color or gradient). */
3484
+ background?: CardDataBackground;
3485
+ /** Background image. */
3486
+ backgroundImage?: BackgroundImage;
3487
+ }
3488
+ declare enum Scaling {
3489
+ /** Auto image scaling */
3490
+ AUTO = "AUTO",
3491
+ /** Contain image scaling */
3492
+ CONTAIN = "CONTAIN",
3493
+ /** Cover image scaling */
3494
+ COVER = "COVER"
3495
+ }
3496
+ /** @enumType */
3497
+ type ScalingWithLiterals = Scaling | 'AUTO' | 'CONTAIN' | 'COVER';
3498
+ declare enum ImagePositionPosition {
3499
+ /** Image positioned at the center */
3500
+ CENTER = "CENTER",
3501
+ /** Image positioned on the left */
3502
+ CENTER_LEFT = "CENTER_LEFT",
3503
+ /** Image positioned on the right */
3504
+ CENTER_RIGHT = "CENTER_RIGHT",
3505
+ /** Image positioned at the center top */
3506
+ TOP = "TOP",
3507
+ /** Image positioned at the top left */
3508
+ TOP_LEFT = "TOP_LEFT",
3509
+ /** Image positioned at the top right */
3510
+ TOP_RIGHT = "TOP_RIGHT",
3511
+ /** Image positioned at the center bottom */
3512
+ BOTTOM = "BOTTOM",
3513
+ /** Image positioned at the bottom left */
3514
+ BOTTOM_LEFT = "BOTTOM_LEFT",
3515
+ /** Image positioned at the bottom right */
3516
+ BOTTOM_RIGHT = "BOTTOM_RIGHT"
3517
+ }
3518
+ /** @enumType */
3519
+ type ImagePositionPositionWithLiterals = ImagePositionPosition | 'CENTER' | 'CENTER_LEFT' | 'CENTER_RIGHT' | 'TOP' | 'TOP_LEFT' | 'TOP_RIGHT' | 'BOTTOM' | 'BOTTOM_LEFT' | 'BOTTOM_RIGHT';
3520
+ /** Background type */
3521
+ declare enum CardDataBackgroundType {
3522
+ /** Solid color background */
3523
+ COLOR = "COLOR",
3524
+ /** Gradient background */
3525
+ GRADIENT = "GRADIENT"
3526
+ }
3527
+ /** @enumType */
3528
+ type CardDataBackgroundTypeWithLiterals = CardDataBackgroundType | 'COLOR' | 'GRADIENT';
3529
+ /** Background styling (color or gradient) */
3530
+ interface CardDataBackground {
3531
+ /** Background type. */
3532
+ type?: CardDataBackgroundTypeWithLiterals;
3533
+ /**
3534
+ * Background color as a hexadecimal value.
3535
+ * @format COLOR_HEX
3536
+ */
3537
+ color?: string | null;
3538
+ /** Gradient configuration. */
3539
+ gradient?: Gradient;
3540
+ }
3541
+ interface BackgroundImage {
3542
+ /** Background image. */
3543
+ media?: Media;
3544
+ /** Background image opacity. */
3545
+ opacity?: number | null;
3546
+ /** Background image scaling. */
3547
+ scaling?: ScalingWithLiterals;
3548
+ /** Position of background. Defaults to `CENTER`. */
3549
+ position?: ImagePositionPositionWithLiterals;
3550
+ }
3364
3551
  interface Metadata {
3365
3552
  /** Schema version. */
3366
3553
  version?: number;
@@ -3416,8 +3603,6 @@ interface Badge {
3416
3603
  text?: string | null;
3417
3604
  }
3418
3605
  declare enum Type {
3419
- /** Unknown badge type. */
3420
- UNKNOWN_BADGE_TYPE = "UNKNOWN_BADGE_TYPE",
3421
3606
  /** 1st priority badge type. */
3422
3607
  FIRST_PRIORITY = "FIRST_PRIORITY",
3423
3608
  /** 2nd priority badge type. */
@@ -3426,7 +3611,7 @@ declare enum Type {
3426
3611
  THIRD_PRIORITY = "THIRD_PRIORITY"
3427
3612
  }
3428
3613
  /** @enumType */
3429
- type TypeWithLiterals = Type | 'UNKNOWN_BADGE_TYPE' | 'FIRST_PRIORITY' | 'SECOND_PRIORITY' | 'THIRD_PRIORITY';
3614
+ type TypeWithLiterals = Type | 'FIRST_PRIORITY' | 'SECOND_PRIORITY' | 'THIRD_PRIORITY';
3430
3615
  interface DiscardDraftRequest {
3431
3616
  /**
3432
3617
  * Event ID to which the form belongs.
@@ -3903,4 +4088,4 @@ declare function publishDraft(eventId: string): Promise<NonNullablePaths<Publish
3903
4088
  */
3904
4089
  declare function discardDraft(eventId: string): Promise<void>;
3905
4090
 
3906
- export { type AccountInfo, type ActionEvent, type AddControlApplicationErrors, type AddControlOptions, type AddControlOptionsControlOneOf, type AddControlRequest, type AddControlRequestControlOneOf, type AddControlResponse, type AdditionalGuestsControl, type Address, type AddressControl, type AddressControlLabels, type AddressLocation, type AddressStreetOneOf, type Agenda, Alignment, type AlignmentWithLiterals, type AnchorData, type AppEmbedData, type AppEmbedDataAppDataOneOf, AppType, type AppTypeWithLiterals, AspectRatio, type AspectRatioWithLiterals, type AudioData, type Background, type BackgroundBackgroundOneOf, type BackgroundImage, BackgroundType, type BackgroundTypeWithLiterals, type Badge, type Banner, type BaseEventMetadata, type BlockquoteData, type BookingData, type Border, type BorderColors, type BorderWidths, type BulletedListData, type ButtonData, ButtonDataType, type ButtonDataTypeWithLiterals, type ButtonStyles, type CalendarLinks, type CaptionData, type CardStyles, CardStylesType, type CardStylesTypeWithLiterals, type Category, type CategoryCounts, type CellStyle, type CheckboxControl, type CheckoutFormMessages, CheckoutType, type CheckoutTypeWithLiterals, type CodeBlockData, type CollapsibleListData, type ColorData, type Colors, ConferenceType, type ConferenceTypeWithLiterals, Crop, type CropWithLiterals, type Dashboard, type DateControl, type Decoration, type DecorationDataOneOf, DecorationType, type DecorationTypeWithLiterals, type DeleteControlApplicationErrors, type DeleteControlIdentifiers, type DeleteControlRequest, type DeleteControlResponse, type Design, DesignTarget, type DesignTargetWithLiterals, type Dimensions, Direction, type DirectionWithLiterals, type DiscardDraftRequest, type DiscardDraftResponse, type DividerData, DividerDataAlignment, type DividerDataAlignmentWithLiterals, type DocumentStyle, type DomainEvent, type DomainEventBodyOneOf, type DropdownControl, type EmailControl, type EmbedData, type EntityCreatedEvent, type EntityDeletedEvent, type EntityUpdatedEvent, type Event, type EventData, type EventDisplaySettings, EventStatus, type EventStatusWithLiterals, EventType, type EventTypeWithLiterals, type EventUpdated, type ExternalEvent, type Feed, type FileData, type FileSource, type FileSourceDataOneOf, type FontFamilyData, type FontSizeData, FontType, type FontTypeWithLiterals, type Form, type FormEventUpdatedEnvelope, type FormInputControlAdded, type FormInputControlDeleted, type FormInputControlUpdated, type FormMessages, type GIF, type GIFData, GIFType, type GIFTypeWithLiterals, type GalleryData, type GalleryOptions, type GalleryOptionsLayout, type GetFormRequest, type GetFormResponse, type Gradient, type GuestListConfig, type HTMLData, type HTMLDataDataOneOf, type HeadingData, type Height, type IdentificationData, type IdentificationDataIdOneOf, type Image, type ImageData, type ImageDataStyles, ImagePosition, type ImagePositionWithLiterals, type ImageStyles, InitialExpandedItems, type InitialExpandedItemsWithLiterals, type Input, type InputControl, InputControlType, type InputControlTypeWithLiterals, type Item, type ItemDataOneOf, type ItemStyle, type Keyword, type Label, type LabellingSettings, type Labels, Layout, type LayoutCellData, type LayoutData, LayoutType, type LayoutTypeWithLiterals, type LayoutWithLiterals, LineStyle, type LineStyleWithLiterals, type Link, type LinkData, type LinkDataOneOf, type LinkPreviewData, type LinkPreviewDataStyles, type ListValue, type Location, LocationType, type LocationTypeWithLiterals, type MapCoordinates, type MapData, type MapSettings, MapType, type MapTypeWithLiterals, type Media, type MentionData, type MessageEnvelope, type Metadata, type Money, type NameControl, type NameControlLabels, type Negative, type NegativeResponseConfirmation, type Node, type NodeDataOneOf, type NodeStyle, NodeType, type NodeTypeWithLiterals, NullValue, type NullValueWithLiterals, type Occurrence, type Oembed, type OnlineConferencing, type OnlineConferencingConfig, type OnlineConferencingSession, type Option, type OptionDesign, type OptionLayout, type OptionSelection, type OptionSelectionSelectedOptionOneOf, type OrderedListData, Orientation, type OrientationWithLiterals, Origin, type OriginWithLiterals, type PDFSettings, type ParagraphData, type Permissions, type PhoneControl, Placement, type PlacementWithLiterals, type PlaybackOptions, type PluginContainerData, PluginContainerDataAlignment, type PluginContainerDataAlignmentWithLiterals, type PluginContainerDataWidth, type PluginContainerDataWidthDataOneOf, type Poll, type PollData, type PollDataLayout, type PollDesign, type PollLayout, PollLayoutDirection, type PollLayoutDirectionWithLiterals, PollLayoutType, type PollLayoutTypeWithLiterals, type PollSettings, Position, type PositionWithLiterals, type Positive, type PositiveResponseConfirmation, type PricingData, type PublishDraftRequest, type PublishDraftResponse, type RadioButtonControl, type Recurrences, type Registration, type RegistrationClosedMessages, RegistrationStatus, type RegistrationStatusWithLiterals, type Rel, RequestedFields, type RequestedFieldsWithLiterals, Resizing, type ResizingWithLiterals, type ResponseConfirmation, ResponsivenessBehaviour, type ResponsivenessBehaviourWithLiterals, type RestoreInfo, type RibbonStyles, type RichContent, type RsvpCollection, type RsvpCollectionConfig, type RsvpConfirmationMessages, type RsvpConfirmationMessagesNegativeResponseConfirmation, type RsvpConfirmationMessagesPositiveResponseConfirmation, type RsvpFormMessages, RsvpStatusOptions, type RsvpStatusOptionsWithLiterals, type RsvpSummary, Scaling, type ScalingWithLiterals, type ScheduleConfig, type Scheduling, type SeoSchema, type SeoSettings, type Settings, type ShapeData, type ShapeDataStyles, type SiteUrl, Source, type SourceWithLiterals, type Spoiler, type SpoilerData, State, type StateWithLiterals, Status, type StatusWithLiterals, type StreetAddress, type Styles, type StylesBorder, StylesPosition, type StylesPositionWithLiterals, type Subdivision, SubdivisionType, type SubdivisionTypeWithLiterals, type TableCellData, type TableData, type Tag, Target, type TargetWithLiterals, type TaxConfig, TaxType, type TaxTypeWithLiterals, TextAlignment, type TextAlignmentWithLiterals, type TextControl, type TextData, type TextNodeStyle, type TextStyle, type Thumbnails, ThumbnailsAlignment, type ThumbnailsAlignmentWithLiterals, type Ticketing, type TicketingConfig, type TicketingSummary, type TicketsConfirmationMessages, type TicketsUnavailableMessages, Type, type TypeWithLiterals, type UpdateControlApplicationErrors, type UpdateControlIdentifiers, type UpdateControlIdentifiersControlOneOf, type UpdateControlOptions, type UpdateControlOptionsControlOneOf, type UpdateControlRequest, type UpdateControlRequestControlOneOf, type UpdateControlResponse, type UpdateMessagesOptions, type UpdateMessagesRequest, type UpdateMessagesResponse, ValueType, type ValueTypeWithLiterals, VerticalAlignment, VerticalAlignmentAlignment, type VerticalAlignmentAlignmentWithLiterals, type VerticalAlignmentWithLiterals, type Video, type VideoData, ViewMode, type ViewModeWithLiterals, ViewRole, type ViewRoleWithLiterals, VisitorType, type VisitorTypeWithLiterals, VoteRole, type VoteRoleWithLiterals, WebhookIdentityType, type WebhookIdentityTypeWithLiterals, Width, WidthType, type WidthTypeWithLiterals, type WidthWithLiterals, addControl, deleteControl, discardDraft, getForm, onFormEventUpdated, publishDraft, updateControl, updateMessages };
4091
+ export { type AccountInfo, type ActionEvent, type AddControlApplicationErrors, type AddControlOptions, type AddControlOptionsControlOneOf, type AddControlRequest, type AddControlRequestControlOneOf, type AddControlResponse, type AdditionalGuestsControl, type Address, type AddressControl, type AddressControlLabels, type AddressLocation, type AddressStreetOneOf, type Agenda, Alignment, type AlignmentWithLiterals, type AnchorData, type AppEmbedData, type AppEmbedDataAppDataOneOf, AppType, type AppTypeWithLiterals, AspectRatio, type AspectRatioWithLiterals, type AudioData, type Backdrop, BackdropType, type BackdropTypeWithLiterals, type Background, type BackgroundGradient, type BackgroundImage, BackgroundType, type BackgroundTypeWithLiterals, type Badge, type Banner, type BaseEventMetadata, type BlockquoteData, type BookingData, type Border, type BorderColors, type BorderWidths, type BulletedListData, type ButtonData, ButtonDataType, type ButtonDataTypeWithLiterals, type ButtonStyles, type CalendarLinks, type CaptionData, type CardData, type CardDataBackground, CardDataBackgroundType, type CardDataBackgroundTypeWithLiterals, type CardStyles, CardStylesType, type CardStylesTypeWithLiterals, type Category, type CategoryCounts, type CellStyle, type CheckboxControl, type CheckoutFormMessages, CheckoutType, type CheckoutTypeWithLiterals, type CodeBlockData, type CollapsibleListData, type ColorData, type Colors, ConferenceType, type ConferenceTypeWithLiterals, Crop, type CropWithLiterals, type Dashboard, type DateControl, type Decoration, type DecorationDataOneOf, DecorationType, type DecorationTypeWithLiterals, type DeleteControlApplicationErrors, type DeleteControlIdentifiers, type DeleteControlRequest, type DeleteControlResponse, type Design, DesignTarget, type DesignTargetWithLiterals, type Dimensions, Direction, type DirectionWithLiterals, type DiscardDraftRequest, type DiscardDraftResponse, type DividerData, DividerDataAlignment, type DividerDataAlignmentWithLiterals, type DocumentStyle, type DomainEvent, type DomainEventBodyOneOf, type DropdownControl, type EmailControl, type EmbedData, type EntityCreatedEvent, type EntityDeletedEvent, type EntityUpdatedEvent, type Event, type EventData, type EventDisplaySettings, EventStatus, type EventStatusWithLiterals, EventType, type EventTypeWithLiterals, type EventUpdated, type ExternalEvent, type Feed, type FileData, type FileSource, type FileSourceDataOneOf, type FontFamilyData, type FontSizeData, FontType, type FontTypeWithLiterals, type Form, type FormEventUpdatedEnvelope, type FormInputControlAdded, type FormInputControlDeleted, type FormInputControlUpdated, type FormMessages, type GIF, type GIFData, GIFType, type GIFTypeWithLiterals, type GalleryData, type GalleryOptions, type GalleryOptionsLayout, type GetFormRequest, type GetFormResponse, type Gradient, GradientType, type GradientTypeWithLiterals, type GuestListConfig, type HTMLData, type HTMLDataDataOneOf, type HeadingData, type Height, type IdentificationData, type IdentificationDataIdOneOf, type Image, type ImageData, type ImageDataStyles, ImagePosition, ImagePositionPosition, type ImagePositionPositionWithLiterals, type ImagePositionWithLiterals, ImageScalingScaling, type ImageScalingScalingWithLiterals, type ImageStyles, InitialExpandedItems, type InitialExpandedItemsWithLiterals, type Input, type InputControl, InputControlType, type InputControlTypeWithLiterals, type Item, type ItemDataOneOf, type ItemStyle, type Keyword, type Label, type LabellingSettings, type Labels, Layout, type LayoutCellData, type LayoutData, type LayoutDataBackground, type LayoutDataBackgroundImage, LayoutDataBackgroundType, type LayoutDataBackgroundTypeWithLiterals, LayoutType, type LayoutTypeWithLiterals, type LayoutWithLiterals, LineStyle, type LineStyleWithLiterals, type Link, type LinkData, type LinkDataOneOf, type LinkPreviewData, type LinkPreviewDataStyles, type ListValue, type Location, LocationType, type LocationTypeWithLiterals, type MapCoordinates, type MapData, type MapSettings, MapType, type MapTypeWithLiterals, type Media, type MentionData, type MessageEnvelope, type Metadata, type Money, type NameControl, type NameControlLabels, type Negative, type NegativeResponseConfirmation, type Node, type NodeDataOneOf, type NodeStyle, NodeType, type NodeTypeWithLiterals, NullValue, type NullValueWithLiterals, type Occurrence, type Oembed, type OnlineConferencing, type OnlineConferencingConfig, type OnlineConferencingSession, type Option, type OptionDesign, type OptionLayout, type OptionSelection, type OptionSelectionSelectedOptionOneOf, type OrderedListData, Orientation, type OrientationWithLiterals, Origin, type OriginWithLiterals, type PDFSettings, type ParagraphData, type Permissions, type PhoneControl, Placement, type PlacementWithLiterals, type PlaybackOptions, type PluginContainerData, PluginContainerDataAlignment, type PluginContainerDataAlignmentWithLiterals, type PluginContainerDataWidth, type PluginContainerDataWidthDataOneOf, type Poll, type PollData, type PollDataLayout, type PollDesign, type PollDesignBackground, type PollDesignBackgroundBackgroundOneOf, PollDesignBackgroundType, type PollDesignBackgroundTypeWithLiterals, type PollLayout, PollLayoutDirection, type PollLayoutDirectionWithLiterals, PollLayoutType, type PollLayoutTypeWithLiterals, type PollSettings, Position, type PositionWithLiterals, type Positive, type PositiveResponseConfirmation, type PricingData, type PublishDraftRequest, type PublishDraftResponse, type RadioButtonControl, type Recurrences, type Registration, type RegistrationClosedMessages, RegistrationStatus, type RegistrationStatusWithLiterals, type Rel, RequestedFields, type RequestedFieldsWithLiterals, Resizing, type ResizingWithLiterals, type ResponseConfirmation, ResponsivenessBehaviour, type ResponsivenessBehaviourWithLiterals, type RestoreInfo, type RibbonStyles, type RichContent, type RsvpCollection, type RsvpCollectionConfig, type RsvpConfirmationMessages, type RsvpConfirmationMessagesNegativeResponseConfirmation, type RsvpConfirmationMessagesPositiveResponseConfirmation, type RsvpFormMessages, RsvpStatusOptions, type RsvpStatusOptionsWithLiterals, type RsvpSummary, Scaling, type ScalingWithLiterals, type ScheduleConfig, type Scheduling, type SeoSchema, type SeoSettings, type Settings, type ShapeData, type ShapeDataStyles, type SiteUrl, Source, type SourceWithLiterals, type Spoiler, type SpoilerData, State, type StateWithLiterals, Status, type StatusWithLiterals, type Stop, type StreetAddress, type Styles, type StylesBorder, StylesPosition, type StylesPositionWithLiterals, type Subdivision, SubdivisionType, type SubdivisionTypeWithLiterals, type TableCellData, type TableData, type Tag, Target, type TargetWithLiterals, type TaxConfig, TaxType, type TaxTypeWithLiterals, TextAlignment, type TextAlignmentWithLiterals, type TextControl, type TextData, type TextNodeStyle, type TextStyle, type Thumbnails, ThumbnailsAlignment, type ThumbnailsAlignmentWithLiterals, type Ticketing, type TicketingConfig, type TicketingSummary, type TicketsConfirmationMessages, type TicketsUnavailableMessages, Type, type TypeWithLiterals, type UpdateControlApplicationErrors, type UpdateControlIdentifiers, type UpdateControlIdentifiersControlOneOf, type UpdateControlOptions, type UpdateControlOptionsControlOneOf, type UpdateControlRequest, type UpdateControlRequestControlOneOf, type UpdateControlResponse, type UpdateMessagesOptions, type UpdateMessagesRequest, type UpdateMessagesResponse, ValueType, type ValueTypeWithLiterals, VerticalAlignment, VerticalAlignmentAlignment, type VerticalAlignmentAlignmentWithLiterals, type VerticalAlignmentWithLiterals, type Video, type VideoData, ViewMode, type ViewModeWithLiterals, ViewRole, type ViewRoleWithLiterals, VisitorType, type VisitorTypeWithLiterals, VoteRole, type VoteRoleWithLiterals, WebhookIdentityType, type WebhookIdentityTypeWithLiterals, Width, WidthType, type WidthTypeWithLiterals, type WidthWithLiterals, addControl, deleteControl, discardDraft, getForm, onFormEventUpdated, publishDraft, updateControl, updateMessages };
@@ -23,8 +23,10 @@ __export(index_typings_exports, {
23
23
  Alignment: () => Alignment,
24
24
  AppType: () => AppType,
25
25
  AspectRatio: () => AspectRatio,
26
+ BackdropType: () => BackdropType,
26
27
  BackgroundType: () => BackgroundType,
27
28
  ButtonDataType: () => ButtonDataType,
29
+ CardDataBackgroundType: () => CardDataBackgroundType,
28
30
  CardStylesType: () => CardStylesType,
29
31
  CheckoutType: () => CheckoutType,
30
32
  ConferenceType: () => ConferenceType,
@@ -37,10 +39,14 @@ __export(index_typings_exports, {
37
39
  EventType: () => EventType,
38
40
  FontType: () => FontType,
39
41
  GIFType: () => GIFType,
42
+ GradientType: () => GradientType,
40
43
  ImagePosition: () => ImagePosition,
44
+ ImagePositionPosition: () => ImagePositionPosition,
45
+ ImageScalingScaling: () => ImageScalingScaling,
41
46
  InitialExpandedItems: () => InitialExpandedItems,
42
47
  InputControlType: () => InputControlType,
43
48
  Layout: () => Layout,
49
+ LayoutDataBackgroundType: () => LayoutDataBackgroundType,
44
50
  LayoutType: () => LayoutType,
45
51
  LineStyle: () => LineStyle,
46
52
  LocationType: () => LocationType,
@@ -51,6 +57,7 @@ __export(index_typings_exports, {
51
57
  Origin: () => Origin,
52
58
  Placement: () => Placement,
53
59
  PluginContainerDataAlignment: () => PluginContainerDataAlignment,
60
+ PollDesignBackgroundType: () => PollDesignBackgroundType,
54
61
  PollLayoutDirection: () => PollLayoutDirection,
55
62
  PollLayoutType: () => PollLayoutType,
56
63
  Position: () => Position,
@@ -716,7 +723,6 @@ var ValueType = /* @__PURE__ */ ((ValueType2) => {
716
723
  return ValueType2;
717
724
  })(ValueType || {});
718
725
  var RequestedFields = /* @__PURE__ */ ((RequestedFields2) => {
719
- RequestedFields2["UNKNOWN_REQUESTED_FIELD"] = "UNKNOWN_REQUESTED_FIELD";
720
726
  RequestedFields2["DELETED"] = "DELETED";
721
727
  return RequestedFields2;
722
728
  })(RequestedFields || {});
@@ -781,7 +787,6 @@ var TaxType = /* @__PURE__ */ ((TaxType2) => {
781
787
  return TaxType2;
782
788
  })(TaxType || {});
783
789
  var CheckoutType = /* @__PURE__ */ ((CheckoutType2) => {
784
- CheckoutType2["UNKNOWN_CHECKOUT_TYPE"] = "UNKNOWN_CHECKOUT_TYPE";
785
790
  CheckoutType2["EVENTS_APP"] = "EVENTS_APP";
786
791
  CheckoutType2["ECOMM_PLATFORM"] = "ECOMM_PLATFORM";
787
792
  return CheckoutType2;
@@ -839,8 +844,19 @@ var NodeType = /* @__PURE__ */ ((NodeType2) => {
839
844
  NodeType2["LAYOUT"] = "LAYOUT";
840
845
  NodeType2["LAYOUT_CELL"] = "LAYOUT_CELL";
841
846
  NodeType2["SHAPE"] = "SHAPE";
847
+ NodeType2["CARD"] = "CARD";
842
848
  return NodeType2;
843
849
  })(NodeType || {});
850
+ var BackgroundType = /* @__PURE__ */ ((BackgroundType2) => {
851
+ BackgroundType2["COLOR"] = "COLOR";
852
+ BackgroundType2["GRADIENT"] = "GRADIENT";
853
+ return BackgroundType2;
854
+ })(BackgroundType || {});
855
+ var GradientType = /* @__PURE__ */ ((GradientType2) => {
856
+ GradientType2["LINEAR"] = "LINEAR";
857
+ GradientType2["RADIAL"] = "RADIAL";
858
+ return GradientType2;
859
+ })(GradientType || {});
844
860
  var WidthType = /* @__PURE__ */ ((WidthType2) => {
845
861
  WidthType2["CONTENT"] = "CONTENT";
846
862
  WidthType2["SMALL"] = "SMALL";
@@ -976,12 +992,12 @@ var PollLayoutDirection = /* @__PURE__ */ ((PollLayoutDirection2) => {
976
992
  PollLayoutDirection2["RTL"] = "RTL";
977
993
  return PollLayoutDirection2;
978
994
  })(PollLayoutDirection || {});
979
- var BackgroundType = /* @__PURE__ */ ((BackgroundType2) => {
980
- BackgroundType2["COLOR"] = "COLOR";
981
- BackgroundType2["IMAGE"] = "IMAGE";
982
- BackgroundType2["GRADIENT"] = "GRADIENT";
983
- return BackgroundType2;
984
- })(BackgroundType || {});
995
+ var PollDesignBackgroundType = /* @__PURE__ */ ((PollDesignBackgroundType2) => {
996
+ PollDesignBackgroundType2["COLOR"] = "COLOR";
997
+ PollDesignBackgroundType2["IMAGE"] = "IMAGE";
998
+ PollDesignBackgroundType2["GRADIENT"] = "GRADIENT";
999
+ return PollDesignBackgroundType2;
1000
+ })(PollDesignBackgroundType || {});
985
1001
  var DecorationType = /* @__PURE__ */ ((DecorationType2) => {
986
1002
  DecorationType2["BOLD"] = "BOLD";
987
1003
  DecorationType2["ITALIC"] = "ITALIC";
@@ -1068,12 +1084,12 @@ var NullValue = /* @__PURE__ */ ((NullValue2) => {
1068
1084
  NullValue2["NULL_VALUE"] = "NULL_VALUE";
1069
1085
  return NullValue2;
1070
1086
  })(NullValue || {});
1071
- var Scaling = /* @__PURE__ */ ((Scaling2) => {
1072
- Scaling2["AUTO"] = "AUTO";
1073
- Scaling2["CONTAIN"] = "CONTAIN";
1074
- Scaling2["COVER"] = "COVER";
1075
- return Scaling2;
1076
- })(Scaling || {});
1087
+ var ImageScalingScaling = /* @__PURE__ */ ((ImageScalingScaling2) => {
1088
+ ImageScalingScaling2["AUTO"] = "AUTO";
1089
+ ImageScalingScaling2["CONTAIN"] = "CONTAIN";
1090
+ ImageScalingScaling2["COVER"] = "COVER";
1091
+ return ImageScalingScaling2;
1092
+ })(ImageScalingScaling || {});
1077
1093
  var ImagePosition = /* @__PURE__ */ ((ImagePosition2) => {
1078
1094
  ImagePosition2["CENTER"] = "CENTER";
1079
1095
  ImagePosition2["CENTER_LEFT"] = "CENTER_LEFT";
@@ -1091,6 +1107,16 @@ var Origin = /* @__PURE__ */ ((Origin2) => {
1091
1107
  Origin2["LAYOUT"] = "LAYOUT";
1092
1108
  return Origin2;
1093
1109
  })(Origin || {});
1110
+ var LayoutDataBackgroundType = /* @__PURE__ */ ((LayoutDataBackgroundType2) => {
1111
+ LayoutDataBackgroundType2["COLOR"] = "COLOR";
1112
+ LayoutDataBackgroundType2["GRADIENT"] = "GRADIENT";
1113
+ return LayoutDataBackgroundType2;
1114
+ })(LayoutDataBackgroundType || {});
1115
+ var BackdropType = /* @__PURE__ */ ((BackdropType2) => {
1116
+ BackdropType2["COLOR"] = "COLOR";
1117
+ BackdropType2["GRADIENT"] = "GRADIENT";
1118
+ return BackdropType2;
1119
+ })(BackdropType || {});
1094
1120
  var VerticalAlignmentAlignment = /* @__PURE__ */ ((VerticalAlignmentAlignment2) => {
1095
1121
  VerticalAlignmentAlignment2["TOP"] = "TOP";
1096
1122
  VerticalAlignmentAlignment2["MIDDLE"] = "MIDDLE";
@@ -1107,8 +1133,30 @@ var DesignTarget = /* @__PURE__ */ ((DesignTarget2) => {
1107
1133
  DesignTarget2["CELL"] = "CELL";
1108
1134
  return DesignTarget2;
1109
1135
  })(DesignTarget || {});
1136
+ var Scaling = /* @__PURE__ */ ((Scaling2) => {
1137
+ Scaling2["AUTO"] = "AUTO";
1138
+ Scaling2["CONTAIN"] = "CONTAIN";
1139
+ Scaling2["COVER"] = "COVER";
1140
+ return Scaling2;
1141
+ })(Scaling || {});
1142
+ var ImagePositionPosition = /* @__PURE__ */ ((ImagePositionPosition2) => {
1143
+ ImagePositionPosition2["CENTER"] = "CENTER";
1144
+ ImagePositionPosition2["CENTER_LEFT"] = "CENTER_LEFT";
1145
+ ImagePositionPosition2["CENTER_RIGHT"] = "CENTER_RIGHT";
1146
+ ImagePositionPosition2["TOP"] = "TOP";
1147
+ ImagePositionPosition2["TOP_LEFT"] = "TOP_LEFT";
1148
+ ImagePositionPosition2["TOP_RIGHT"] = "TOP_RIGHT";
1149
+ ImagePositionPosition2["BOTTOM"] = "BOTTOM";
1150
+ ImagePositionPosition2["BOTTOM_LEFT"] = "BOTTOM_LEFT";
1151
+ ImagePositionPosition2["BOTTOM_RIGHT"] = "BOTTOM_RIGHT";
1152
+ return ImagePositionPosition2;
1153
+ })(ImagePositionPosition || {});
1154
+ var CardDataBackgroundType = /* @__PURE__ */ ((CardDataBackgroundType2) => {
1155
+ CardDataBackgroundType2["COLOR"] = "COLOR";
1156
+ CardDataBackgroundType2["GRADIENT"] = "GRADIENT";
1157
+ return CardDataBackgroundType2;
1158
+ })(CardDataBackgroundType || {});
1110
1159
  var Type = /* @__PURE__ */ ((Type2) => {
1111
- Type2["UNKNOWN_BADGE_TYPE"] = "UNKNOWN_BADGE_TYPE";
1112
1160
  Type2["FIRST_PRIORITY"] = "FIRST_PRIORITY";
1113
1161
  Type2["SECOND_PRIORITY"] = "SECOND_PRIORITY";
1114
1162
  Type2["THIRD_PRIORITY"] = "THIRD_PRIORITY";
@@ -1346,8 +1394,10 @@ async function discardDraft2(eventId) {
1346
1394
  Alignment,
1347
1395
  AppType,
1348
1396
  AspectRatio,
1397
+ BackdropType,
1349
1398
  BackgroundType,
1350
1399
  ButtonDataType,
1400
+ CardDataBackgroundType,
1351
1401
  CardStylesType,
1352
1402
  CheckoutType,
1353
1403
  ConferenceType,
@@ -1360,10 +1410,14 @@ async function discardDraft2(eventId) {
1360
1410
  EventType,
1361
1411
  FontType,
1362
1412
  GIFType,
1413
+ GradientType,
1363
1414
  ImagePosition,
1415
+ ImagePositionPosition,
1416
+ ImageScalingScaling,
1364
1417
  InitialExpandedItems,
1365
1418
  InputControlType,
1366
1419
  Layout,
1420
+ LayoutDataBackgroundType,
1367
1421
  LayoutType,
1368
1422
  LineStyle,
1369
1423
  LocationType,
@@ -1374,6 +1428,7 @@ async function discardDraft2(eventId) {
1374
1428
  Origin,
1375
1429
  Placement,
1376
1430
  PluginContainerDataAlignment,
1431
+ PollDesignBackgroundType,
1377
1432
  PollLayoutDirection,
1378
1433
  PollLayoutType,
1379
1434
  Position,