@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
@@ -1740,6 +1740,8 @@ interface ButtonData {
1740
1740
  text?: string | null;
1741
1741
  /** Button link details. */
1742
1742
  link?: Link;
1743
+ /** Node animation. */
1744
+ animation?: Animation;
1743
1745
  }
1744
1746
  /** Background type */
1745
1747
  declare enum BackgroundType {
@@ -2016,9 +2018,90 @@ interface Rel {
2016
2018
  /** Indicates that this link protect referral information from being passed to the target website. */
2017
2019
  noreferrer?: boolean | null;
2018
2020
  }
2021
+ interface Animation {
2022
+ /** Animation kind. */
2023
+ type?: AnimationTypeWithLiterals;
2024
+ /** Entrance animation, played once when the node first enters the viewport. */
2025
+ entrance?: EntranceAnimation;
2026
+ }
2027
+ declare enum AnimationType {
2028
+ /** Animations that play while the node is in view. */
2029
+ VIEW = "VIEW"
2030
+ }
2031
+ /** @enumType */
2032
+ type AnimationTypeWithLiterals = AnimationType | 'VIEW';
2033
+ interface EntranceAnimation {
2034
+ /** The entrance effect to play. */
2035
+ effect?: EntranceEffect;
2036
+ /** Effect duration in milliseconds. Each effect has its own default. */
2037
+ duration?: number | null;
2038
+ /** Delay before the effect starts, in milliseconds. */
2039
+ delay?: number | null;
2040
+ }
2041
+ interface EntranceEffect {
2042
+ /** The entrance effect type. */
2043
+ type?: EntranceEffectTypeWithLiterals;
2044
+ /**
2045
+ * 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).
2046
+ * @maxLength 20
2047
+ */
2048
+ direction?: string | null;
2049
+ /**
2050
+ * Clip-path shape: ELLIPSE, CIRCLE, RECTANGLE, or DIAMOND (SHAPE).
2051
+ * @maxLength 12
2052
+ */
2053
+ shape?: string | null;
2054
+ /**
2055
+ * Motion style: GENTLE, MODERATE, or INTENSE. Only the effects that expose one accept it.
2056
+ * @maxLength 100
2057
+ */
2058
+ easing?: string | null;
2059
+ }
2060
+ declare enum EntranceEffectType {
2061
+ /** Fades in from fully transparent to fully opaque. */
2062
+ FADE = "FADE",
2063
+ /** Enters along a 3D arc path. */
2064
+ ARC = "ARC",
2065
+ /** Transitions from blurred to sharp. */
2066
+ BLUR = "BLUR",
2067
+ /** Bounces into place with an elastic curve. */
2068
+ BOUNCE = "BOUNCE",
2069
+ /** Shrinks down from a larger size. */
2070
+ DROP = "DROP",
2071
+ /** Expands from a point, scaling to full size. */
2072
+ EXPAND = "EXPAND",
2073
+ /** Flips into view with a 3D rotation. */
2074
+ FLIP = "FLIP",
2075
+ /** Drifts gently into place. */
2076
+ FLOAT = "FLOAT",
2077
+ /** Unfolds from an edge as if hinged. */
2078
+ FOLD = "FOLD",
2079
+ /** Glides in smoothly from off-screen. */
2080
+ GLIDE = "GLIDE",
2081
+ /** Progressively revealed by an expanding clip-path. */
2082
+ REVEAL = "REVEAL",
2083
+ /** Appears through an expanding geometric clip-path shape. */
2084
+ SHAPE = "SHAPE",
2085
+ /** Revealed through shutter-like strips. */
2086
+ SHUTTERS = "SHUTTERS",
2087
+ /** Slides in from one side. */
2088
+ SLIDE = "SLIDE",
2089
+ /** Spins into view while scaling up. */
2090
+ SPIN = "SPIN",
2091
+ /** Tilts in from the side with 3D rotation. */
2092
+ TILT = "TILT",
2093
+ /** Rotates into view around a corner pivot. */
2094
+ TURN = "TURN",
2095
+ /** Expands from its horizontal or vertical center. */
2096
+ WINK = "WINK"
2097
+ }
2098
+ /** @enumType */
2099
+ type EntranceEffectTypeWithLiterals = EntranceEffectType | 'FADE' | 'ARC' | 'BLUR' | 'BOUNCE' | 'DROP' | 'EXPAND' | 'FLIP' | 'FLOAT' | 'FOLD' | 'GLIDE' | 'REVEAL' | 'SHAPE' | 'SHUTTERS' | 'SLIDE' | 'SPIN' | 'TILT' | 'TURN' | 'WINK';
2019
2100
  interface CodeBlockData {
2020
2101
  /** Styling for the code block's text. */
2021
2102
  textStyle?: TextStyle;
2103
+ /** Node animation. */
2104
+ animation?: Animation;
2022
2105
  }
2023
2106
  interface TextStyle {
2024
2107
  /** Text alignment. Defaults to `AUTO`. */
@@ -2049,7 +2132,19 @@ interface DividerData {
2049
2132
  width?: WidthWithLiterals;
2050
2133
  /** Divider alignment. */
2051
2134
  alignment?: DividerDataAlignmentWithLiterals;
2135
+ /** Visual styling for the divider lines. */
2136
+ styles?: DividerDataStyles;
2137
+ /** Node animation. */
2138
+ animation?: Animation;
2139
+ }
2140
+ declare enum LineCap {
2141
+ /** Square line endings. */
2142
+ SQUARE = "SQUARE",
2143
+ /** Rounded line endings. */
2144
+ ROUND = "ROUND"
2052
2145
  }
2146
+ /** @enumType */
2147
+ type LineCapWithLiterals = LineCap | 'SQUARE' | 'ROUND';
2053
2148
  declare enum LineStyle {
2054
2149
  /** Single Line */
2055
2150
  SINGLE = "SINGLE",
@@ -2082,6 +2177,26 @@ declare enum DividerDataAlignment {
2082
2177
  }
2083
2178
  /** @enumType */
2084
2179
  type DividerDataAlignmentWithLiterals = DividerDataAlignment | 'CENTER' | 'LEFT' | 'RIGHT';
2180
+ interface DividerDataStyles {
2181
+ /**
2182
+ * Divider color as a hexadecimal value. An alpha channel controls opacity.
2183
+ * @maxLength 19
2184
+ */
2185
+ color?: string | null;
2186
+ /** Divider line ending shape. */
2187
+ lineCap?: LineCapWithLiterals;
2188
+ /**
2189
+ * Line thicknesses in pixels, ordered from first line to last line.
2190
+ * @maxSize 10
2191
+ */
2192
+ lineThickness?: number[];
2193
+ /** 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. */
2194
+ dashLength?: number | null;
2195
+ /** Visible gap between dashes or dots, in pixels. */
2196
+ dashGap?: number | null;
2197
+ /** Gap between divider lines in pixels. */
2198
+ lineGap?: number | null;
2199
+ }
2085
2200
  interface FileData {
2086
2201
  /** Styling for the file's container. */
2087
2202
  containerData?: PluginContainerData;
@@ -2104,6 +2219,8 @@ interface FileData {
2104
2219
  path?: string | null;
2105
2220
  /** File size in KB. */
2106
2221
  sizeInKb?: string | null;
2222
+ /** Node animation. */
2223
+ animation?: Animation;
2107
2224
  }
2108
2225
  declare enum ViewMode {
2109
2226
  /** No PDF view */
@@ -2164,6 +2281,8 @@ interface GalleryData {
2164
2281
  disableExpand?: boolean | null;
2165
2282
  /** Sets whether the gallery's download button is disabled. Defaults to `false`. */
2166
2283
  disableDownload?: boolean | null;
2284
+ /** Node animation. */
2285
+ animation?: Animation;
2167
2286
  }
2168
2287
  interface Media {
2169
2288
  /** The source for the media's data. */
@@ -2307,6 +2426,8 @@ interface GIFData {
2307
2426
  width?: number;
2308
2427
  /** Type of GIF (Sticker or NORMAL). Defaults to `NORMAL`. */
2309
2428
  gifType?: GIFTypeWithLiterals;
2429
+ /** Node animation. */
2430
+ animation?: Animation;
2310
2431
  }
2311
2432
  interface GIF {
2312
2433
  /**
@@ -2340,6 +2461,8 @@ interface HeadingData {
2340
2461
  indentation?: number | null;
2341
2462
  /** Rendered heading level for SEO/accessibility, overrides the HTML tag when set. */
2342
2463
  renderedLevel?: number | null;
2464
+ /** Node animation. */
2465
+ animation?: Animation;
2343
2466
  }
2344
2467
  interface HTMLData extends HTMLDataDataOneOf {
2345
2468
  /** The URL for the HTML code for the node. */
@@ -2359,6 +2482,8 @@ interface HTMLData extends HTMLDataDataOneOf {
2359
2482
  source?: SourceWithLiterals;
2360
2483
  /** If container height is aligned with its content height. Defaults to `true`. */
2361
2484
  autoHeight?: boolean | null;
2485
+ /** Node animation. */
2486
+ animation?: Animation;
2362
2487
  }
2363
2488
  /** @oneof */
2364
2489
  interface HTMLDataDataOneOf {
@@ -2408,6 +2533,8 @@ interface ImageData {
2408
2533
  crop?: ImageDataCrop;
2409
2534
  /** Optional shape mask applied to the visible crop. Supported values: CIRCLE, OVAL, STAR, PENTAGON, HEXAGON, TRIANGLE, HEART, RHOMBUS, FLUID, WINDOW. */
2410
2535
  cropShape?: string | null;
2536
+ /** Node animation. */
2537
+ animation?: Animation;
2411
2538
  }
2412
2539
  interface StylesBorder {
2413
2540
  /** Border width in pixels. */
@@ -2449,6 +2576,8 @@ interface LinkPreviewData {
2449
2576
  html?: string | null;
2450
2577
  /** Styling for the link preview. */
2451
2578
  styles?: LinkPreviewDataStyles;
2579
+ /** Node animation. */
2580
+ animation?: Animation;
2452
2581
  }
2453
2582
  declare enum StylesPosition {
2454
2583
  /** Thumbnail positioned at the start (left in LTR layouts, right in RTL layouts) */
@@ -2544,6 +2673,8 @@ interface ParagraphData {
2544
2673
  indentation?: number | null;
2545
2674
  /** Paragraph level */
2546
2675
  level?: number | null;
2676
+ /** Node animation. */
2677
+ animation?: Animation;
2547
2678
  }
2548
2679
  interface PollData {
2549
2680
  /** Styling for the poll's container. */
@@ -2554,6 +2685,8 @@ interface PollData {
2554
2685
  layout?: PollDataLayout;
2555
2686
  /** Styling for the poll and voting options. */
2556
2687
  design?: Design;
2688
+ /** Node animation. */
2689
+ animation?: Animation;
2557
2690
  }
2558
2691
  declare enum ViewRole {
2559
2692
  /** Only Poll creator can view the results */
@@ -2912,6 +3045,8 @@ interface AppEmbedData extends AppEmbedDataAppDataOneOf {
2912
3045
  containerData?: PluginContainerData;
2913
3046
  /** Pricing data for embedded Wix App content. */
2914
3047
  pricingData?: PricingData;
3048
+ /** Node animation. */
3049
+ animation?: Animation;
2915
3050
  }
2916
3051
  /** @oneof */
2917
3052
  interface AppEmbedDataAppDataOneOf {
@@ -3153,6 +3288,8 @@ interface VideoData {
3153
3288
  title?: string | null;
3154
3289
  /** Video options. */
3155
3290
  options?: PlaybackOptions;
3291
+ /** Node animation. */
3292
+ animation?: Animation;
3156
3293
  }
3157
3294
  interface PlaybackOptions {
3158
3295
  /** Sets whether the media will automatically start playing. */
@@ -3169,6 +3306,8 @@ interface EmbedData {
3169
3306
  oembed?: Oembed;
3170
3307
  /** Origin asset source. */
3171
3308
  src?: string | null;
3309
+ /** Node animation. */
3310
+ animation?: Animation;
3172
3311
  }
3173
3312
  interface Oembed {
3174
3313
  /** The resource type. */
@@ -3213,6 +3352,8 @@ interface CollapsibleListData {
3213
3352
  direction?: DirectionWithLiterals;
3214
3353
  /** If `true`, The collapsible item will appear in search results as an FAQ. */
3215
3354
  isQapageData?: boolean | null;
3355
+ /** Node animation. */
3356
+ animation?: Animation;
3216
3357
  }
3217
3358
  declare enum InitialExpandedItems {
3218
3359
  /** First item will be expended initally */
@@ -3255,6 +3396,8 @@ interface TableData {
3255
3396
  cellPadding?: number[];
3256
3397
  /** Table's alternative text. */
3257
3398
  altText?: string | null;
3399
+ /** Node animation. */
3400
+ animation?: Animation;
3258
3401
  }
3259
3402
  interface Dimensions {
3260
3403
  /** An array representing relative width of each column in relation to the other columns. */
@@ -3363,6 +3506,8 @@ interface AudioData {
3363
3506
  authorName?: string | null;
3364
3507
  /** An HTML version of the audio node. */
3365
3508
  html?: string | null;
3509
+ /** Node animation. */
3510
+ animation?: Animation;
3366
3511
  }
3367
3512
  interface OrderedListData {
3368
3513
  /** Indentation level from 0-4. */
@@ -3371,16 +3516,22 @@ interface OrderedListData {
3371
3516
  offset?: number | null;
3372
3517
  /** List start number. */
3373
3518
  start?: number | null;
3519
+ /** Node animation. */
3520
+ animation?: Animation;
3374
3521
  }
3375
3522
  interface BulletedListData {
3376
3523
  /** Indentation level from 0-4. */
3377
3524
  indentation?: number;
3378
3525
  /** Offset level from 0-4. */
3379
3526
  offset?: number | null;
3527
+ /** Node animation. */
3528
+ animation?: Animation;
3380
3529
  }
3381
3530
  interface BlockquoteData {
3382
3531
  /** Indentation level from 1-4. */
3383
3532
  indentation?: number;
3533
+ /** Node animation. */
3534
+ animation?: Animation;
3384
3535
  }
3385
3536
  interface CaptionData {
3386
3537
  textStyle?: TextStyle;
@@ -3438,6 +3589,8 @@ interface LayoutData {
3438
3589
  background?: LayoutDataBackground;
3439
3590
  /** Backdrop styling (color or gradient). */
3440
3591
  backdrop?: Backdrop;
3592
+ /** Node animation. */
3593
+ animation?: Animation;
3441
3594
  }
3442
3595
  declare enum ImageScalingScaling {
3443
3596
  /** Auto image scaling */
@@ -3589,6 +3742,8 @@ interface ShapeData {
3589
3742
  shape?: Media;
3590
3743
  /** Styling for the shape. */
3591
3744
  styles?: ShapeDataStyles;
3745
+ /** Node animation. */
3746
+ animation?: Animation;
3592
3747
  }
3593
3748
  interface ShapeDataStyles {
3594
3749
  /**
@@ -3691,6 +3846,8 @@ interface TocData {
3691
3846
  color?: string | null;
3692
3847
  /** Indentation style. Default: NESTED. */
3693
3848
  indentation?: IndentationWithLiterals;
3849
+ /** Node animation. */
3850
+ animation?: Animation;
3694
3851
  }
3695
3852
  /** List style. */
3696
3853
  declare enum ListStyle {
@@ -3737,6 +3894,8 @@ interface SmartBlockData {
3737
3894
  borderWidth?: number | null;
3738
3895
  /** Border radius in pixels (for SOLID_JOINED_BOXES variant). */
3739
3896
  borderRadius?: number | null;
3897
+ /** Node animation. */
3898
+ animation?: Animation;
3740
3899
  }
3741
3900
  /** Layout type of the smart block */
3742
3901
  declare enum SmartBlockDataType {
@@ -3840,10 +3999,14 @@ interface CheckboxListData {
3840
3999
  indentation?: number;
3841
4000
  /** Offset level from 0-4. */
3842
4001
  offset?: number | null;
4002
+ /** Node animation. */
4003
+ animation?: Animation;
3843
4004
  }
3844
4005
  interface ListItemNodeData {
3845
4006
  /** Checkbox list item state. Defaults to `false`. */
3846
4007
  checked?: boolean | null;
4008
+ /** Node animation. */
4009
+ animation?: Animation;
3847
4010
  }
3848
4011
  interface Metadata {
3849
4012
  /** Schema version. */
@@ -4388,4 +4551,4 @@ declare function publishDraft(eventId: string): Promise<NonNullablePaths<Publish
4388
4551
  */
4389
4552
  declare function discardDraft(eventId: string): Promise<void>;
4390
4553
 
4391
- 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 };
4554
+ 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,