@wix/auto_sdk_events_forms 1.0.100 → 1.0.102

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 +36 -0
  3. package/build/cjs/index.js.map +1 -1
  4. package/build/cjs/index.typings.d.ts +164 -1
  5. package/build/cjs/index.typings.js +36 -0
  6. package/build/cjs/index.typings.js.map +1 -1
  7. package/build/cjs/meta.d.ts +164 -1
  8. package/build/cjs/meta.js +36 -0
  9. package/build/cjs/meta.js.map +1 -1
  10. package/build/es/index.d.mts +1 -1
  11. package/build/es/index.mjs +33 -0
  12. package/build/es/index.mjs.map +1 -1
  13. package/build/es/index.typings.d.mts +164 -1
  14. package/build/es/index.typings.mjs +33 -0
  15. package/build/es/index.typings.mjs.map +1 -1
  16. package/build/es/meta.d.mts +164 -1
  17. package/build/es/meta.mjs +33 -0
  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 +36 -0
  21. package/build/internal/cjs/index.js.map +1 -1
  22. package/build/internal/cjs/index.typings.d.ts +164 -1
  23. package/build/internal/cjs/index.typings.js +36 -0
  24. package/build/internal/cjs/index.typings.js.map +1 -1
  25. package/build/internal/cjs/meta.d.ts +164 -1
  26. package/build/internal/cjs/meta.js +36 -0
  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 +33 -0
  30. package/build/internal/es/index.mjs.map +1 -1
  31. package/build/internal/es/index.typings.d.mts +164 -1
  32. package/build/internal/es/index.typings.mjs +33 -0
  33. package/build/internal/es/index.typings.mjs.map +1 -1
  34. package/build/internal/es/meta.d.mts +164 -1
  35. package/build/internal/es/meta.mjs +33 -0
  36. package/build/internal/es/meta.mjs.map +1 -1
  37. package/package.json +2 -2
@@ -1746,6 +1746,8 @@ interface ButtonData {
1746
1746
  text?: string | null;
1747
1747
  /** Button link details. */
1748
1748
  link?: Link;
1749
+ /** Node animation. */
1750
+ animation?: Animation;
1749
1751
  }
1750
1752
  /** Background type */
1751
1753
  declare enum BackgroundType {
@@ -2022,9 +2024,90 @@ interface Rel {
2022
2024
  /** Indicates that this link protect referral information from being passed to the target website. */
2023
2025
  noreferrer?: boolean | null;
2024
2026
  }
2027
+ interface Animation {
2028
+ /** Animation kind. */
2029
+ type?: AnimationTypeWithLiterals;
2030
+ /** Entrance animation, played once when the node first enters the viewport. */
2031
+ entrance?: EntranceAnimation;
2032
+ }
2033
+ declare enum AnimationType {
2034
+ /** Animations that play while the node is in view. */
2035
+ VIEW = "VIEW"
2036
+ }
2037
+ /** @enumType */
2038
+ type AnimationTypeWithLiterals = AnimationType | 'VIEW';
2039
+ interface EntranceAnimation {
2040
+ /** The entrance effect to play. */
2041
+ effect?: EntranceEffect;
2042
+ /** Effect duration in milliseconds. Each effect has its own default. */
2043
+ duration?: number | null;
2044
+ /** Delay before the effect starts, in milliseconds. */
2045
+ delay?: number | null;
2046
+ }
2047
+ interface EntranceEffect {
2048
+ /** The entrance effect type. */
2049
+ type?: EntranceEffectTypeWithLiterals;
2050
+ /**
2051
+ * Direction the effect enters from. Allowed values depend on the effect type (e.g. TOP/RIGHT/BOTTOM/LEFT, the diagonals with or without CENTER, corners, HORIZONTAL/VERTICAL, CLOCKWISE/COUNTER_CLOCKWISE).
2052
+ * @maxLength 20
2053
+ */
2054
+ direction?: string | null;
2055
+ /**
2056
+ * Clip-path shape: ELLIPSE, CIRCLE, RECTANGLE, or DIAMOND (SHAPE).
2057
+ * @maxLength 12
2058
+ */
2059
+ shape?: string | null;
2060
+ /**
2061
+ * Motion style: GENTLE, MODERATE, or INTENSE. Only the effects that expose one accept it.
2062
+ * @maxLength 100
2063
+ */
2064
+ easing?: string | null;
2065
+ }
2066
+ declare enum EntranceEffectType {
2067
+ /** Fades in from fully transparent to fully opaque. */
2068
+ FADE = "FADE",
2069
+ /** Enters along a 3D arc path. */
2070
+ ARC = "ARC",
2071
+ /** Transitions from blurred to sharp. */
2072
+ BLUR = "BLUR",
2073
+ /** Bounces into place with an elastic curve. */
2074
+ BOUNCE = "BOUNCE",
2075
+ /** Shrinks down from a larger size. */
2076
+ DROP = "DROP",
2077
+ /** Expands from a point, scaling to full size. */
2078
+ EXPAND = "EXPAND",
2079
+ /** Flips into view with a 3D rotation. */
2080
+ FLIP = "FLIP",
2081
+ /** Drifts gently into place. */
2082
+ FLOAT = "FLOAT",
2083
+ /** Unfolds from an edge as if hinged. */
2084
+ FOLD = "FOLD",
2085
+ /** Glides in smoothly from off-screen. */
2086
+ GLIDE = "GLIDE",
2087
+ /** Progressively revealed by an expanding clip-path. */
2088
+ REVEAL = "REVEAL",
2089
+ /** Appears through an expanding geometric clip-path shape. */
2090
+ SHAPE = "SHAPE",
2091
+ /** Revealed through shutter-like strips. */
2092
+ SHUTTERS = "SHUTTERS",
2093
+ /** Slides in from one side. */
2094
+ SLIDE = "SLIDE",
2095
+ /** Spins into view while scaling up. */
2096
+ SPIN = "SPIN",
2097
+ /** Tilts in from the side with 3D rotation. */
2098
+ TILT = "TILT",
2099
+ /** Rotates into view around a corner pivot. */
2100
+ TURN = "TURN",
2101
+ /** Expands from its horizontal or vertical center. */
2102
+ WINK = "WINK"
2103
+ }
2104
+ /** @enumType */
2105
+ type EntranceEffectTypeWithLiterals = EntranceEffectType | 'FADE' | 'ARC' | 'BLUR' | 'BOUNCE' | 'DROP' | 'EXPAND' | 'FLIP' | 'FLOAT' | 'FOLD' | 'GLIDE' | 'REVEAL' | 'SHAPE' | 'SHUTTERS' | 'SLIDE' | 'SPIN' | 'TILT' | 'TURN' | 'WINK';
2025
2106
  interface CodeBlockData {
2026
2107
  /** Styling for the code block's text. */
2027
2108
  textStyle?: TextStyle;
2109
+ /** Node animation. */
2110
+ animation?: Animation;
2028
2111
  }
2029
2112
  interface TextStyle {
2030
2113
  /** Text alignment. Defaults to `AUTO`. */
@@ -2055,7 +2138,19 @@ interface DividerData {
2055
2138
  width?: WidthWithLiterals;
2056
2139
  /** Divider alignment. */
2057
2140
  alignment?: DividerDataAlignmentWithLiterals;
2141
+ /** Visual styling for the divider lines. */
2142
+ styles?: DividerDataStyles;
2143
+ /** Node animation. */
2144
+ animation?: Animation;
2145
+ }
2146
+ declare enum LineCap {
2147
+ /** Square line endings. */
2148
+ SQUARE = "SQUARE",
2149
+ /** Rounded line endings. */
2150
+ ROUND = "ROUND"
2058
2151
  }
2152
+ /** @enumType */
2153
+ type LineCapWithLiterals = LineCap | 'SQUARE' | 'ROUND';
2059
2154
  declare enum LineStyle {
2060
2155
  /** Single Line */
2061
2156
  SINGLE = "SINGLE",
@@ -2088,6 +2183,26 @@ declare enum DividerDataAlignment {
2088
2183
  }
2089
2184
  /** @enumType */
2090
2185
  type DividerDataAlignmentWithLiterals = DividerDataAlignment | 'CENTER' | 'LEFT' | 'RIGHT';
2186
+ interface DividerDataStyles {
2187
+ /**
2188
+ * Divider color as a hexadecimal value. An alpha channel controls opacity.
2189
+ * @maxLength 19
2190
+ */
2191
+ color?: string | null;
2192
+ /** Divider line ending shape. */
2193
+ lineCap?: LineCapWithLiterals;
2194
+ /**
2195
+ * Line thicknesses in pixels, ordered from first line to last line.
2196
+ * @maxSize 10
2197
+ */
2198
+ lineThickness?: number[];
2199
+ /** Visible dash length for dashed dividers, in pixels. The pattern is snapped to a whole number of dashes so that the first and last dash touch the divider's edges - narrower containers show fewer dashes at the same size. */
2200
+ dashLength?: number | null;
2201
+ /** Visible gap between dashes or dots, in pixels. */
2202
+ dashGap?: number | null;
2203
+ /** Gap between divider lines in pixels. */
2204
+ lineGap?: number | null;
2205
+ }
2091
2206
  interface FileData {
2092
2207
  /** Styling for the file's container. */
2093
2208
  containerData?: PluginContainerData;
@@ -2110,6 +2225,8 @@ interface FileData {
2110
2225
  path?: string | null;
2111
2226
  /** File size in KB. */
2112
2227
  sizeInKb?: string | null;
2228
+ /** Node animation. */
2229
+ animation?: Animation;
2113
2230
  }
2114
2231
  declare enum ViewMode {
2115
2232
  /** No PDF view */
@@ -2170,6 +2287,8 @@ interface GalleryData {
2170
2287
  disableExpand?: boolean | null;
2171
2288
  /** Sets whether the gallery's download button is disabled. Defaults to `false`. */
2172
2289
  disableDownload?: boolean | null;
2290
+ /** Node animation. */
2291
+ animation?: Animation;
2173
2292
  }
2174
2293
  interface Media {
2175
2294
  /** The source for the media's data. */
@@ -2313,6 +2432,8 @@ interface GIFData {
2313
2432
  width?: number;
2314
2433
  /** Type of GIF (Sticker or NORMAL). Defaults to `NORMAL`. */
2315
2434
  gifType?: GIFTypeWithLiterals;
2435
+ /** Node animation. */
2436
+ animation?: Animation;
2316
2437
  }
2317
2438
  interface GIF {
2318
2439
  /**
@@ -2346,6 +2467,8 @@ interface HeadingData {
2346
2467
  indentation?: number | null;
2347
2468
  /** Rendered heading level for SEO/accessibility, overrides the HTML tag when set. */
2348
2469
  renderedLevel?: number | null;
2470
+ /** Node animation. */
2471
+ animation?: Animation;
2349
2472
  }
2350
2473
  interface HTMLData extends HTMLDataDataOneOf {
2351
2474
  /** The URL for the HTML code for the node. */
@@ -2365,6 +2488,8 @@ interface HTMLData extends HTMLDataDataOneOf {
2365
2488
  source?: SourceWithLiterals;
2366
2489
  /** If container height is aligned with its content height. Defaults to `true`. */
2367
2490
  autoHeight?: boolean | null;
2491
+ /** Node animation. */
2492
+ animation?: Animation;
2368
2493
  }
2369
2494
  /** @oneof */
2370
2495
  interface HTMLDataDataOneOf {
@@ -2414,6 +2539,8 @@ interface ImageData {
2414
2539
  crop?: ImageDataCrop;
2415
2540
  /** Optional shape mask applied to the visible crop. Supported values: CIRCLE, OVAL, STAR, PENTAGON, HEXAGON, TRIANGLE, HEART, RHOMBUS, FLUID, WINDOW. */
2416
2541
  cropShape?: string | null;
2542
+ /** Node animation. */
2543
+ animation?: Animation;
2417
2544
  }
2418
2545
  interface StylesBorder {
2419
2546
  /** Border width in pixels. */
@@ -2455,6 +2582,8 @@ interface LinkPreviewData {
2455
2582
  html?: string | null;
2456
2583
  /** Styling for the link preview. */
2457
2584
  styles?: LinkPreviewDataStyles;
2585
+ /** Node animation. */
2586
+ animation?: Animation;
2458
2587
  }
2459
2588
  declare enum StylesPosition {
2460
2589
  /** Thumbnail positioned at the start (left in LTR layouts, right in RTL layouts) */
@@ -2550,6 +2679,8 @@ interface ParagraphData {
2550
2679
  indentation?: number | null;
2551
2680
  /** Paragraph level */
2552
2681
  level?: number | null;
2682
+ /** Node animation. */
2683
+ animation?: Animation;
2553
2684
  }
2554
2685
  interface PollData {
2555
2686
  /** Styling for the poll's container. */
@@ -2560,6 +2691,8 @@ interface PollData {
2560
2691
  layout?: PollDataLayout;
2561
2692
  /** Styling for the poll and voting options. */
2562
2693
  design?: Design;
2694
+ /** Node animation. */
2695
+ animation?: Animation;
2563
2696
  }
2564
2697
  declare enum ViewRole {
2565
2698
  /** Only Poll creator can view the results */
@@ -2918,6 +3051,8 @@ interface AppEmbedData extends AppEmbedDataAppDataOneOf {
2918
3051
  containerData?: PluginContainerData;
2919
3052
  /** Pricing data for embedded Wix App content. */
2920
3053
  pricingData?: PricingData;
3054
+ /** Node animation. */
3055
+ animation?: Animation;
2921
3056
  }
2922
3057
  /** @oneof */
2923
3058
  interface AppEmbedDataAppDataOneOf {
@@ -3159,6 +3294,8 @@ interface VideoData {
3159
3294
  title?: string | null;
3160
3295
  /** Video options. */
3161
3296
  options?: PlaybackOptions;
3297
+ /** Node animation. */
3298
+ animation?: Animation;
3162
3299
  }
3163
3300
  interface PlaybackOptions {
3164
3301
  /** Sets whether the media will automatically start playing. */
@@ -3175,6 +3312,8 @@ interface EmbedData {
3175
3312
  oembed?: Oembed;
3176
3313
  /** Origin asset source. */
3177
3314
  src?: string | null;
3315
+ /** Node animation. */
3316
+ animation?: Animation;
3178
3317
  }
3179
3318
  interface Oembed {
3180
3319
  /** The resource type. */
@@ -3219,6 +3358,8 @@ interface CollapsibleListData {
3219
3358
  direction?: DirectionWithLiterals;
3220
3359
  /** If `true`, The collapsible item will appear in search results as an FAQ. */
3221
3360
  isQapageData?: boolean | null;
3361
+ /** Node animation. */
3362
+ animation?: Animation;
3222
3363
  }
3223
3364
  declare enum InitialExpandedItems {
3224
3365
  /** First item will be expended initally */
@@ -3261,6 +3402,8 @@ interface TableData {
3261
3402
  cellPadding?: number[];
3262
3403
  /** Table's alternative text. */
3263
3404
  altText?: string | null;
3405
+ /** Node animation. */
3406
+ animation?: Animation;
3264
3407
  }
3265
3408
  interface Dimensions {
3266
3409
  /** An array representing relative width of each column in relation to the other columns. */
@@ -3369,6 +3512,8 @@ interface AudioData {
3369
3512
  authorName?: string | null;
3370
3513
  /** An HTML version of the audio node. */
3371
3514
  html?: string | null;
3515
+ /** Node animation. */
3516
+ animation?: Animation;
3372
3517
  }
3373
3518
  interface OrderedListData {
3374
3519
  /** Indentation level from 0-4. */
@@ -3377,16 +3522,22 @@ interface OrderedListData {
3377
3522
  offset?: number | null;
3378
3523
  /** List start number. */
3379
3524
  start?: number | null;
3525
+ /** Node animation. */
3526
+ animation?: Animation;
3380
3527
  }
3381
3528
  interface BulletedListData {
3382
3529
  /** Indentation level from 0-4. */
3383
3530
  indentation?: number;
3384
3531
  /** Offset level from 0-4. */
3385
3532
  offset?: number | null;
3533
+ /** Node animation. */
3534
+ animation?: Animation;
3386
3535
  }
3387
3536
  interface BlockquoteData {
3388
3537
  /** Indentation level from 1-4. */
3389
3538
  indentation?: number;
3539
+ /** Node animation. */
3540
+ animation?: Animation;
3390
3541
  }
3391
3542
  interface CaptionData {
3392
3543
  textStyle?: TextStyle;
@@ -3444,6 +3595,8 @@ interface LayoutData {
3444
3595
  background?: LayoutDataBackground;
3445
3596
  /** Backdrop styling (color or gradient). */
3446
3597
  backdrop?: Backdrop;
3598
+ /** Node animation. */
3599
+ animation?: Animation;
3447
3600
  }
3448
3601
  declare enum ImageScalingScaling {
3449
3602
  /** Auto image scaling */
@@ -3595,6 +3748,8 @@ interface ShapeData {
3595
3748
  shape?: Media;
3596
3749
  /** Styling for the shape. */
3597
3750
  styles?: ShapeDataStyles;
3751
+ /** Node animation. */
3752
+ animation?: Animation;
3598
3753
  }
3599
3754
  interface ShapeDataStyles {
3600
3755
  /**
@@ -3697,6 +3852,8 @@ interface TocData {
3697
3852
  color?: string | null;
3698
3853
  /** Indentation style. Default: NESTED. */
3699
3854
  indentation?: IndentationWithLiterals;
3855
+ /** Node animation. */
3856
+ animation?: Animation;
3700
3857
  }
3701
3858
  /** List style. */
3702
3859
  declare enum ListStyle {
@@ -3743,6 +3900,8 @@ interface SmartBlockData {
3743
3900
  borderWidth?: number | null;
3744
3901
  /** Border radius in pixels (for SOLID_JOINED_BOXES variant). */
3745
3902
  borderRadius?: number | null;
3903
+ /** Node animation. */
3904
+ animation?: Animation;
3746
3905
  }
3747
3906
  /** Layout type of the smart block */
3748
3907
  declare enum SmartBlockDataType {
@@ -3846,10 +4005,14 @@ interface CheckboxListData {
3846
4005
  indentation?: number;
3847
4006
  /** Offset level from 0-4. */
3848
4007
  offset?: number | null;
4008
+ /** Node animation. */
4009
+ animation?: Animation;
3849
4010
  }
3850
4011
  interface ListItemNodeData {
3851
4012
  /** Checkbox list item state. Defaults to `false`. */
3852
4013
  checked?: boolean | null;
4014
+ /** Node animation. */
4015
+ animation?: Animation;
3853
4016
  }
3854
4017
  interface Metadata {
3855
4018
  /** Schema version. */
@@ -4394,4 +4557,4 @@ declare function publishDraft(eventId: string): Promise<NonNullablePaths<Publish
4394
4557
  */
4395
4558
  declare function discardDraft(eventId: string): Promise<void>;
4396
4559
 
4397
- 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, BannerPosition, type BannerPositionWithLiterals, type BaseEventMetadata, type BlockquoteData, type BookingData, type Border, type BorderColors, type BorderWidths, type BulletedListData, type ButtonData, ButtonDataType, type ButtonDataTypeWithLiterals, type ButtonStyles, type CalendarLinks, CancellationActorType, type CancellationActorTypeWithLiterals, type CancellationInfo, type CaptionData, type CardData, type CardDataBackground, CardDataBackgroundType, type CardDataBackgroundTypeWithLiterals, type CardStyles, CardStylesType, type CardStylesTypeWithLiterals, type Category, type CategoryCounts, type CellStyle, type CheckboxControl, type CheckboxListData, type CheckoutFormMessages, CheckoutType, type CheckoutTypeWithLiterals, type CodeBlockData, type CollapsibleListData, type ColorData, type Colors, ColumnSize, type ColumnSizeWithLiterals, 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 ImageDataCrop, type ImageDataStyles, ImagePosition, ImagePositionPosition, type ImagePositionPositionWithLiterals, type ImagePositionWithLiterals, ImageScalingScaling, type ImageScalingScalingWithLiterals, type ImageStyles, Indentation, type IndentationWithLiterals, 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 ListItemNodeData, ListStyle, type ListStyleWithLiterals, 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, type SketchData, type SmartBlockCellData, type SmartBlockData, SmartBlockDataType, type SmartBlockDataTypeWithLiterals, 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 TocData, 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, Variant, type VariantWithLiterals, 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 };
4560
+ 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 Animation, AnimationType, type AnimationTypeWithLiterals, 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, BannerPosition, type BannerPositionWithLiterals, type BaseEventMetadata, type BlockquoteData, type BookingData, type Border, type BorderColors, type BorderWidths, type BulletedListData, type ButtonData, ButtonDataType, type ButtonDataTypeWithLiterals, type ButtonStyles, type CalendarLinks, CancellationActorType, type CancellationActorTypeWithLiterals, type CancellationInfo, type CaptionData, type CardData, type CardDataBackground, CardDataBackgroundType, type CardDataBackgroundTypeWithLiterals, type CardStyles, CardStylesType, type CardStylesTypeWithLiterals, type Category, type CategoryCounts, type CellStyle, type CheckboxControl, type CheckboxListData, type CheckoutFormMessages, CheckoutType, type CheckoutTypeWithLiterals, type CodeBlockData, type CollapsibleListData, type ColorData, type Colors, ColumnSize, type ColumnSizeWithLiterals, 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 DividerDataStyles, type DocumentStyle, type DomainEvent, type DomainEventBodyOneOf, type DropdownControl, type EmailControl, type EmbedData, type EntityCreatedEvent, type EntityDeletedEvent, type EntityUpdatedEvent, type EntranceAnimation, type EntranceEffect, EntranceEffectType, type EntranceEffectTypeWithLiterals, 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 ImageDataCrop, type ImageDataStyles, ImagePosition, ImagePositionPosition, type ImagePositionPositionWithLiterals, type ImagePositionWithLiterals, ImageScalingScaling, type ImageScalingScalingWithLiterals, type ImageStyles, Indentation, type IndentationWithLiterals, 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, LineCap, type LineCapWithLiterals, LineStyle, type LineStyleWithLiterals, type Link, type LinkData, type LinkDataOneOf, type LinkPreviewData, type LinkPreviewDataStyles, type ListItemNodeData, ListStyle, type ListStyleWithLiterals, 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, type SketchData, type SmartBlockCellData, type SmartBlockData, SmartBlockDataType, type SmartBlockDataTypeWithLiterals, 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 TocData, 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, Variant, type VariantWithLiterals, 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 };
@@ -809,6 +809,31 @@ var Target = /* @__PURE__ */ ((Target2) => {
809
809
  Target2["TOP"] = "TOP";
810
810
  return Target2;
811
811
  })(Target || {});
812
+ var AnimationType = /* @__PURE__ */ ((AnimationType2) => {
813
+ AnimationType2["VIEW"] = "VIEW";
814
+ return AnimationType2;
815
+ })(AnimationType || {});
816
+ var EntranceEffectType = /* @__PURE__ */ ((EntranceEffectType2) => {
817
+ EntranceEffectType2["FADE"] = "FADE";
818
+ EntranceEffectType2["ARC"] = "ARC";
819
+ EntranceEffectType2["BLUR"] = "BLUR";
820
+ EntranceEffectType2["BOUNCE"] = "BOUNCE";
821
+ EntranceEffectType2["DROP"] = "DROP";
822
+ EntranceEffectType2["EXPAND"] = "EXPAND";
823
+ EntranceEffectType2["FLIP"] = "FLIP";
824
+ EntranceEffectType2["FLOAT"] = "FLOAT";
825
+ EntranceEffectType2["FOLD"] = "FOLD";
826
+ EntranceEffectType2["GLIDE"] = "GLIDE";
827
+ EntranceEffectType2["REVEAL"] = "REVEAL";
828
+ EntranceEffectType2["SHAPE"] = "SHAPE";
829
+ EntranceEffectType2["SHUTTERS"] = "SHUTTERS";
830
+ EntranceEffectType2["SLIDE"] = "SLIDE";
831
+ EntranceEffectType2["SPIN"] = "SPIN";
832
+ EntranceEffectType2["TILT"] = "TILT";
833
+ EntranceEffectType2["TURN"] = "TURN";
834
+ EntranceEffectType2["WINK"] = "WINK";
835
+ return EntranceEffectType2;
836
+ })(EntranceEffectType || {});
812
837
  var TextAlignment = /* @__PURE__ */ ((TextAlignment2) => {
813
838
  TextAlignment2["AUTO"] = "AUTO";
814
839
  TextAlignment2["LEFT"] = "LEFT";
@@ -817,6 +842,11 @@ var TextAlignment = /* @__PURE__ */ ((TextAlignment2) => {
817
842
  TextAlignment2["JUSTIFY"] = "JUSTIFY";
818
843
  return TextAlignment2;
819
844
  })(TextAlignment || {});
845
+ var LineCap = /* @__PURE__ */ ((LineCap2) => {
846
+ LineCap2["SQUARE"] = "SQUARE";
847
+ LineCap2["ROUND"] = "ROUND";
848
+ return LineCap2;
849
+ })(LineCap || {});
820
850
  var LineStyle = /* @__PURE__ */ ((LineStyle2) => {
821
851
  LineStyle2["SINGLE"] = "SINGLE";
822
852
  LineStyle2["DOUBLE"] = "DOUBLE";
@@ -1379,6 +1409,7 @@ async function discardDraft2(eventId) {
1379
1409
  }
1380
1410
  export {
1381
1411
  Alignment,
1412
+ AnimationType,
1382
1413
  AppType,
1383
1414
  AspectRatio,
1384
1415
  BackdropType,
@@ -1396,6 +1427,7 @@ export {
1396
1427
  DesignTarget,
1397
1428
  Direction,
1398
1429
  DividerDataAlignment,
1430
+ EntranceEffectType,
1399
1431
  EventStatus,
1400
1432
  EventType,
1401
1433
  FontType,
@@ -1410,6 +1442,7 @@ export {
1410
1442
  Layout,
1411
1443
  LayoutDataBackgroundType,
1412
1444
  LayoutType,
1445
+ LineCap,
1413
1446
  LineStyle,
1414
1447
  ListStyle,
1415
1448
  LocationType,