@wix/auto_sdk_events_forms 1.0.101 → 1.0.103

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 +47 -0
  3. package/build/cjs/index.js.map +1 -1
  4. package/build/cjs/index.typings.d.ts +192 -3
  5. package/build/cjs/index.typings.js +47 -0
  6. package/build/cjs/index.typings.js.map +1 -1
  7. package/build/cjs/meta.d.ts +192 -3
  8. package/build/cjs/meta.js +47 -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 +44 -0
  12. package/build/es/index.mjs.map +1 -1
  13. package/build/es/index.typings.d.mts +192 -3
  14. package/build/es/index.typings.mjs +44 -0
  15. package/build/es/index.typings.mjs.map +1 -1
  16. package/build/es/meta.d.mts +192 -3
  17. package/build/es/meta.mjs +44 -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 +47 -0
  21. package/build/internal/cjs/index.js.map +1 -1
  22. package/build/internal/cjs/index.typings.d.ts +192 -3
  23. package/build/internal/cjs/index.typings.js +47 -0
  24. package/build/internal/cjs/index.typings.js.map +1 -1
  25. package/build/internal/cjs/meta.d.ts +192 -3
  26. package/build/internal/cjs/meta.js +47 -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 +44 -0
  30. package/build/internal/es/index.mjs.map +1 -1
  31. package/build/internal/es/index.typings.d.mts +192 -3
  32. package/build/internal/es/index.typings.mjs +44 -0
  33. package/build/internal/es/index.typings.mjs.map +1 -1
  34. package/build/internal/es/meta.d.mts +192 -3
  35. package/build/internal/es/meta.mjs +44 -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,144 @@ 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
+ /** Looping animation, repeated indefinitely while the node is on the page. When combined with entrance, the loop starts after the entrance finishes. */
2033
+ loop?: LoopAnimation;
2034
+ }
2035
+ declare enum AnimationType {
2036
+ /** Animations that play while the node is in view. */
2037
+ VIEW = "VIEW"
2038
+ }
2039
+ /** @enumType */
2040
+ type AnimationTypeWithLiterals = AnimationType | 'VIEW';
2041
+ interface EntranceAnimation {
2042
+ /** The entrance effect to play. */
2043
+ effect?: EntranceEffect;
2044
+ /** Effect duration in milliseconds. Each effect has its own default. */
2045
+ duration?: number | null;
2046
+ /** Delay before the effect starts, in milliseconds. */
2047
+ delay?: number | null;
2048
+ }
2049
+ interface EntranceEffect {
2050
+ /** The entrance effect type. */
2051
+ type?: EntranceEffectTypeWithLiterals;
2052
+ /**
2053
+ * 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).
2054
+ * @maxLength 20
2055
+ */
2056
+ direction?: string | null;
2057
+ /**
2058
+ * Clip-path shape: ELLIPSE, CIRCLE, RECTANGLE, or DIAMOND (SHAPE).
2059
+ * @maxLength 12
2060
+ */
2061
+ shape?: string | null;
2062
+ /**
2063
+ * Motion style: GENTLE, MODERATE, or INTENSE. Only the effects that expose one accept it.
2064
+ * @maxLength 100
2065
+ */
2066
+ easing?: string | null;
2067
+ }
2068
+ declare enum EntranceEffectType {
2069
+ /** Fades in from fully transparent to fully opaque. */
2070
+ FADE = "FADE",
2071
+ /** Enters along a 3D arc path. */
2072
+ ARC = "ARC",
2073
+ /** Transitions from blurred to sharp. */
2074
+ BLUR = "BLUR",
2075
+ /** Bounces into place with an elastic curve. */
2076
+ BOUNCE = "BOUNCE",
2077
+ /** Shrinks down from a larger size. */
2078
+ DROP = "DROP",
2079
+ /** Expands from a point, scaling to full size. */
2080
+ EXPAND = "EXPAND",
2081
+ /** Flips into view with a 3D rotation. */
2082
+ FLIP = "FLIP",
2083
+ /** Drifts gently into place. */
2084
+ FLOAT = "FLOAT",
2085
+ /** Unfolds from an edge as if hinged. */
2086
+ FOLD = "FOLD",
2087
+ /** Glides in smoothly from off-screen. */
2088
+ GLIDE = "GLIDE",
2089
+ /** Progressively revealed by an expanding clip-path. */
2090
+ REVEAL = "REVEAL",
2091
+ /** Appears through an expanding geometric clip-path shape. */
2092
+ SHAPE = "SHAPE",
2093
+ /** Revealed through shutter-like strips. */
2094
+ SHUTTERS = "SHUTTERS",
2095
+ /** Slides in from one side. */
2096
+ SLIDE = "SLIDE",
2097
+ /** Spins into view while scaling up. */
2098
+ SPIN = "SPIN",
2099
+ /** Tilts in from the side with 3D rotation. */
2100
+ TILT = "TILT",
2101
+ /** Rotates into view around a corner pivot. */
2102
+ TURN = "TURN",
2103
+ /** Expands from its horizontal or vertical center. */
2104
+ WINK = "WINK"
2105
+ }
2106
+ /** @enumType */
2107
+ type EntranceEffectTypeWithLiterals = EntranceEffectType | 'FADE' | 'ARC' | 'BLUR' | 'BOUNCE' | 'DROP' | 'EXPAND' | 'FLIP' | 'FLOAT' | 'FOLD' | 'GLIDE' | 'REVEAL' | 'SHAPE' | 'SHUTTERS' | 'SLIDE' | 'SPIN' | 'TILT' | 'TURN' | 'WINK';
2108
+ interface LoopAnimation {
2109
+ /** The looping effect to repeat. */
2110
+ effect?: LoopEffect;
2111
+ /** Duration of a single iteration in milliseconds. Each effect has its own default. */
2112
+ duration?: number | null;
2113
+ /** Pause between iterations in milliseconds. */
2114
+ iterationDelay?: number | null;
2115
+ }
2116
+ interface LoopEffect {
2117
+ /** The looping effect type. */
2118
+ type?: LoopEffectTypeWithLiterals;
2119
+ /**
2120
+ * Direction of the effect. Allowed values depend on the effect type (e.g. TOP/RIGHT/BOTTOM/LEFT, LEFT/RIGHT, HORIZONTAL/VERTICAL with or without CENTER, CLOCKWISE/COUNTER_CLOCKWISE).
2121
+ * @maxLength 20
2122
+ */
2123
+ direction?: string | null;
2124
+ /**
2125
+ * Motion style: GENTLE, MODERATE, or INTENSE. Only the effects that expose one accept it.
2126
+ * @maxLength 100
2127
+ */
2128
+ easing?: string | null;
2129
+ }
2130
+ declare enum LoopEffectType {
2131
+ /** Bounces up and down in place. */
2132
+ BOUNCE = "BOUNCE",
2133
+ /** Scales gently in and out along an axis. */
2134
+ BREATHE = "BREATHE",
2135
+ /** Drifts toward one side, then re-enters from the opposite side. */
2136
+ CROSS = "CROSS",
2137
+ /** Fades out to fully transparent and back in. */
2138
+ FLASH = "FLASH",
2139
+ /** Rotates a full turn around its horizontal or vertical axis. */
2140
+ FLIP = "FLIP",
2141
+ /** Folds back and forth around a hinged edge. */
2142
+ FOLD = "FOLD",
2143
+ /** Wobbles with a jelly-like skew. */
2144
+ JELLO = "JELLO",
2145
+ /** Nudges repeatedly toward a direction. */
2146
+ POKE = "POKE",
2147
+ /** Scales up and back down rhythmically. */
2148
+ PULSE = "PULSE",
2149
+ /** Stretches and squashes like a rubber band. */
2150
+ RUBBER = "RUBBER",
2151
+ /** Rotates continuously around its center. */
2152
+ SPIN = "SPIN",
2153
+ /** Swings back and forth around an edge pivot. */
2154
+ SWING = "SWING",
2155
+ /** Rocks side to side with an accumulating rotation. */
2156
+ WIGGLE = "WIGGLE"
2157
+ }
2158
+ /** @enumType */
2159
+ type LoopEffectTypeWithLiterals = LoopEffectType | 'BOUNCE' | 'BREATHE' | 'CROSS' | 'FLASH' | 'FLIP' | 'FOLD' | 'JELLO' | 'POKE' | 'PULSE' | 'RUBBER' | 'SPIN' | 'SWING' | 'WIGGLE';
2025
2160
  interface CodeBlockData {
2026
2161
  /** Styling for the code block's text. */
2027
2162
  textStyle?: TextStyle;
2163
+ /** Node animation. */
2164
+ animation?: Animation;
2028
2165
  }
2029
2166
  interface TextStyle {
2030
2167
  /** Text alignment. Defaults to `AUTO`. */
@@ -2057,6 +2194,8 @@ interface DividerData {
2057
2194
  alignment?: DividerDataAlignmentWithLiterals;
2058
2195
  /** Visual styling for the divider lines. */
2059
2196
  styles?: DividerDataStyles;
2197
+ /** Node animation. */
2198
+ animation?: Animation;
2060
2199
  }
2061
2200
  declare enum LineCap {
2062
2201
  /** Square line endings. */
@@ -2111,9 +2250,9 @@ interface DividerDataStyles {
2111
2250
  * @maxSize 10
2112
2251
  */
2113
2252
  lineThickness?: number[];
2114
- /** Dash length in pixels for dashed dividers. */
2253
+ /** 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. */
2115
2254
  dashLength?: number | null;
2116
- /** Gap between dashes or dots in pixels. */
2255
+ /** Visible gap between dashes or dots, in pixels. */
2117
2256
  dashGap?: number | null;
2118
2257
  /** Gap between divider lines in pixels. */
2119
2258
  lineGap?: number | null;
@@ -2140,6 +2279,8 @@ interface FileData {
2140
2279
  path?: string | null;
2141
2280
  /** File size in KB. */
2142
2281
  sizeInKb?: string | null;
2282
+ /** Node animation. */
2283
+ animation?: Animation;
2143
2284
  }
2144
2285
  declare enum ViewMode {
2145
2286
  /** No PDF view */
@@ -2200,6 +2341,8 @@ interface GalleryData {
2200
2341
  disableExpand?: boolean | null;
2201
2342
  /** Sets whether the gallery's download button is disabled. Defaults to `false`. */
2202
2343
  disableDownload?: boolean | null;
2344
+ /** Node animation. */
2345
+ animation?: Animation;
2203
2346
  }
2204
2347
  interface Media {
2205
2348
  /** The source for the media's data. */
@@ -2343,6 +2486,8 @@ interface GIFData {
2343
2486
  width?: number;
2344
2487
  /** Type of GIF (Sticker or NORMAL). Defaults to `NORMAL`. */
2345
2488
  gifType?: GIFTypeWithLiterals;
2489
+ /** Node animation. */
2490
+ animation?: Animation;
2346
2491
  }
2347
2492
  interface GIF {
2348
2493
  /**
@@ -2376,6 +2521,8 @@ interface HeadingData {
2376
2521
  indentation?: number | null;
2377
2522
  /** Rendered heading level for SEO/accessibility, overrides the HTML tag when set. */
2378
2523
  renderedLevel?: number | null;
2524
+ /** Node animation. */
2525
+ animation?: Animation;
2379
2526
  }
2380
2527
  interface HTMLData extends HTMLDataDataOneOf {
2381
2528
  /** The URL for the HTML code for the node. */
@@ -2395,6 +2542,8 @@ interface HTMLData extends HTMLDataDataOneOf {
2395
2542
  source?: SourceWithLiterals;
2396
2543
  /** If container height is aligned with its content height. Defaults to `true`. */
2397
2544
  autoHeight?: boolean | null;
2545
+ /** Node animation. */
2546
+ animation?: Animation;
2398
2547
  }
2399
2548
  /** @oneof */
2400
2549
  interface HTMLDataDataOneOf {
@@ -2444,6 +2593,8 @@ interface ImageData {
2444
2593
  crop?: ImageDataCrop;
2445
2594
  /** Optional shape mask applied to the visible crop. Supported values: CIRCLE, OVAL, STAR, PENTAGON, HEXAGON, TRIANGLE, HEART, RHOMBUS, FLUID, WINDOW. */
2446
2595
  cropShape?: string | null;
2596
+ /** Node animation. */
2597
+ animation?: Animation;
2447
2598
  }
2448
2599
  interface StylesBorder {
2449
2600
  /** Border width in pixels. */
@@ -2485,6 +2636,8 @@ interface LinkPreviewData {
2485
2636
  html?: string | null;
2486
2637
  /** Styling for the link preview. */
2487
2638
  styles?: LinkPreviewDataStyles;
2639
+ /** Node animation. */
2640
+ animation?: Animation;
2488
2641
  }
2489
2642
  declare enum StylesPosition {
2490
2643
  /** Thumbnail positioned at the start (left in LTR layouts, right in RTL layouts) */
@@ -2580,6 +2733,8 @@ interface ParagraphData {
2580
2733
  indentation?: number | null;
2581
2734
  /** Paragraph level */
2582
2735
  level?: number | null;
2736
+ /** Node animation. */
2737
+ animation?: Animation;
2583
2738
  }
2584
2739
  interface PollData {
2585
2740
  /** Styling for the poll's container. */
@@ -2590,6 +2745,8 @@ interface PollData {
2590
2745
  layout?: PollDataLayout;
2591
2746
  /** Styling for the poll and voting options. */
2592
2747
  design?: Design;
2748
+ /** Node animation. */
2749
+ animation?: Animation;
2593
2750
  }
2594
2751
  declare enum ViewRole {
2595
2752
  /** Only Poll creator can view the results */
@@ -2856,6 +3013,8 @@ interface MentionData {
2856
3013
  slug?: string;
2857
3014
  /** Mentioned user's ID. */
2858
3015
  id?: string | null;
3016
+ /** The kind of entity the mention refers to. Any value is accepted, and it's usually used to mark a mention as a group mention (for example, `group`). When empty, the mention refers to a member. */
3017
+ type?: string | null;
2859
3018
  }
2860
3019
  interface FontSizeData {
2861
3020
  /** The units used for the font size. */
@@ -2948,6 +3107,8 @@ interface AppEmbedData extends AppEmbedDataAppDataOneOf {
2948
3107
  containerData?: PluginContainerData;
2949
3108
  /** Pricing data for embedded Wix App content. */
2950
3109
  pricingData?: PricingData;
3110
+ /** Node animation. */
3111
+ animation?: Animation;
2951
3112
  }
2952
3113
  /** @oneof */
2953
3114
  interface AppEmbedDataAppDataOneOf {
@@ -3189,6 +3350,8 @@ interface VideoData {
3189
3350
  title?: string | null;
3190
3351
  /** Video options. */
3191
3352
  options?: PlaybackOptions;
3353
+ /** Node animation. */
3354
+ animation?: Animation;
3192
3355
  }
3193
3356
  interface PlaybackOptions {
3194
3357
  /** Sets whether the media will automatically start playing. */
@@ -3205,6 +3368,8 @@ interface EmbedData {
3205
3368
  oembed?: Oembed;
3206
3369
  /** Origin asset source. */
3207
3370
  src?: string | null;
3371
+ /** Node animation. */
3372
+ animation?: Animation;
3208
3373
  }
3209
3374
  interface Oembed {
3210
3375
  /** The resource type. */
@@ -3249,6 +3414,8 @@ interface CollapsibleListData {
3249
3414
  direction?: DirectionWithLiterals;
3250
3415
  /** If `true`, The collapsible item will appear in search results as an FAQ. */
3251
3416
  isQapageData?: boolean | null;
3417
+ /** Node animation. */
3418
+ animation?: Animation;
3252
3419
  }
3253
3420
  declare enum InitialExpandedItems {
3254
3421
  /** First item will be expended initally */
@@ -3291,6 +3458,8 @@ interface TableData {
3291
3458
  cellPadding?: number[];
3292
3459
  /** Table's alternative text. */
3293
3460
  altText?: string | null;
3461
+ /** Node animation. */
3462
+ animation?: Animation;
3294
3463
  }
3295
3464
  interface Dimensions {
3296
3465
  /** An array representing relative width of each column in relation to the other columns. */
@@ -3399,6 +3568,8 @@ interface AudioData {
3399
3568
  authorName?: string | null;
3400
3569
  /** An HTML version of the audio node. */
3401
3570
  html?: string | null;
3571
+ /** Node animation. */
3572
+ animation?: Animation;
3402
3573
  }
3403
3574
  interface OrderedListData {
3404
3575
  /** Indentation level from 0-4. */
@@ -3407,16 +3578,22 @@ interface OrderedListData {
3407
3578
  offset?: number | null;
3408
3579
  /** List start number. */
3409
3580
  start?: number | null;
3581
+ /** Node animation. */
3582
+ animation?: Animation;
3410
3583
  }
3411
3584
  interface BulletedListData {
3412
3585
  /** Indentation level from 0-4. */
3413
3586
  indentation?: number;
3414
3587
  /** Offset level from 0-4. */
3415
3588
  offset?: number | null;
3589
+ /** Node animation. */
3590
+ animation?: Animation;
3416
3591
  }
3417
3592
  interface BlockquoteData {
3418
3593
  /** Indentation level from 1-4. */
3419
3594
  indentation?: number;
3595
+ /** Node animation. */
3596
+ animation?: Animation;
3420
3597
  }
3421
3598
  interface CaptionData {
3422
3599
  textStyle?: TextStyle;
@@ -3474,6 +3651,8 @@ interface LayoutData {
3474
3651
  background?: LayoutDataBackground;
3475
3652
  /** Backdrop styling (color or gradient). */
3476
3653
  backdrop?: Backdrop;
3654
+ /** Node animation. */
3655
+ animation?: Animation;
3477
3656
  }
3478
3657
  declare enum ImageScalingScaling {
3479
3658
  /** Auto image scaling */
@@ -3625,6 +3804,8 @@ interface ShapeData {
3625
3804
  shape?: Media;
3626
3805
  /** Styling for the shape. */
3627
3806
  styles?: ShapeDataStyles;
3807
+ /** Node animation. */
3808
+ animation?: Animation;
3628
3809
  }
3629
3810
  interface ShapeDataStyles {
3630
3811
  /**
@@ -3727,6 +3908,8 @@ interface TocData {
3727
3908
  color?: string | null;
3728
3909
  /** Indentation style. Default: NESTED. */
3729
3910
  indentation?: IndentationWithLiterals;
3911
+ /** Node animation. */
3912
+ animation?: Animation;
3730
3913
  }
3731
3914
  /** List style. */
3732
3915
  declare enum ListStyle {
@@ -3773,6 +3956,8 @@ interface SmartBlockData {
3773
3956
  borderWidth?: number | null;
3774
3957
  /** Border radius in pixels (for SOLID_JOINED_BOXES variant). */
3775
3958
  borderRadius?: number | null;
3959
+ /** Node animation. */
3960
+ animation?: Animation;
3776
3961
  }
3777
3962
  /** Layout type of the smart block */
3778
3963
  declare enum SmartBlockDataType {
@@ -3876,10 +4061,14 @@ interface CheckboxListData {
3876
4061
  indentation?: number;
3877
4062
  /** Offset level from 0-4. */
3878
4063
  offset?: number | null;
4064
+ /** Node animation. */
4065
+ animation?: Animation;
3879
4066
  }
3880
4067
  interface ListItemNodeData {
3881
4068
  /** Checkbox list item state. Defaults to `false`. */
3882
4069
  checked?: boolean | null;
4070
+ /** Node animation. */
4071
+ animation?: Animation;
3883
4072
  }
3884
4073
  interface Metadata {
3885
4074
  /** Schema version. */
@@ -4424,4 +4613,4 @@ declare function publishDraft(eventId: string): Promise<NonNullablePaths<Publish
4424
4613
  */
4425
4614
  declare function discardDraft(eventId: string): Promise<void>;
4426
4615
 
4427
- 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 DividerDataStyles, 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, 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 };
4616
+ 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 LoopAnimation, type LoopEffect, LoopEffectType, type LoopEffectTypeWithLiterals, 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,47 @@ 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 || {});
837
+ var LoopEffectType = /* @__PURE__ */ ((LoopEffectType2) => {
838
+ LoopEffectType2["BOUNCE"] = "BOUNCE";
839
+ LoopEffectType2["BREATHE"] = "BREATHE";
840
+ LoopEffectType2["CROSS"] = "CROSS";
841
+ LoopEffectType2["FLASH"] = "FLASH";
842
+ LoopEffectType2["FLIP"] = "FLIP";
843
+ LoopEffectType2["FOLD"] = "FOLD";
844
+ LoopEffectType2["JELLO"] = "JELLO";
845
+ LoopEffectType2["POKE"] = "POKE";
846
+ LoopEffectType2["PULSE"] = "PULSE";
847
+ LoopEffectType2["RUBBER"] = "RUBBER";
848
+ LoopEffectType2["SPIN"] = "SPIN";
849
+ LoopEffectType2["SWING"] = "SWING";
850
+ LoopEffectType2["WIGGLE"] = "WIGGLE";
851
+ return LoopEffectType2;
852
+ })(LoopEffectType || {});
812
853
  var TextAlignment = /* @__PURE__ */ ((TextAlignment2) => {
813
854
  TextAlignment2["AUTO"] = "AUTO";
814
855
  TextAlignment2["LEFT"] = "LEFT";
@@ -1384,6 +1425,7 @@ async function discardDraft2(eventId) {
1384
1425
  }
1385
1426
  export {
1386
1427
  Alignment,
1428
+ AnimationType,
1387
1429
  AppType,
1388
1430
  AspectRatio,
1389
1431
  BackdropType,
@@ -1401,6 +1443,7 @@ export {
1401
1443
  DesignTarget,
1402
1444
  Direction,
1403
1445
  DividerDataAlignment,
1446
+ EntranceEffectType,
1404
1447
  EventStatus,
1405
1448
  EventType,
1406
1449
  FontType,
@@ -1419,6 +1462,7 @@ export {
1419
1462
  LineStyle,
1420
1463
  ListStyle,
1421
1464
  LocationType,
1465
+ LoopEffectType,
1422
1466
  MapType,
1423
1467
  NodeType,
1424
1468
  NullValue,