@wix/auto_sdk_events_forms 1.0.102 → 1.0.104

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 +113 -4
  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 +113 -4
  8. package/build/cjs/meta.js +37 -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 +34 -0
  12. package/build/es/index.mjs.map +1 -1
  13. package/build/es/index.typings.d.mts +113 -4
  14. package/build/es/index.typings.mjs +34 -0
  15. package/build/es/index.typings.mjs.map +1 -1
  16. package/build/es/meta.d.mts +113 -4
  17. package/build/es/meta.mjs +35 -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 +321 -7
  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 +357 -8
  26. package/build/internal/cjs/meta.js +37 -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 +34 -0
  30. package/build/internal/es/index.mjs.map +1 -1
  31. package/build/internal/es/index.typings.d.mts +321 -7
  32. package/build/internal/es/index.typings.mjs +34 -0
  33. package/build/internal/es/index.typings.mjs.map +1 -1
  34. package/build/internal/es/meta.d.mts +357 -8
  35. package/build/internal/es/meta.mjs +35 -0
  36. package/build/internal/es/meta.mjs.map +1 -1
  37. package/package.json +4 -4
@@ -2021,15 +2021,27 @@ interface Rel {
2021
2021
  interface Animation {
2022
2022
  /** Animation kind. */
2023
2023
  type?: AnimationTypeWithLiterals;
2024
- /** Entrance animation, played once when the node first enters the viewport. */
2024
+ /** Entrance animation, played once when the node first enters the viewport (VIEW). */
2025
2025
  entrance?: EntranceAnimation;
2026
+ /** Looping animation, repeated indefinitely while the node is on the page. When combined with entrance, the loop starts after the entrance finishes (VIEW). */
2027
+ loop?: LoopAnimation;
2028
+ /**
2029
+ * POINTER carries its fields directly on the union member in the JTD wall, hence
2030
+ * flat fields here (ts-proto camelCase must equal the JTD property names). A future
2031
+ * SCROLL variant will contend for the `effect` JSON name — resolve when it lands.
2032
+ */
2033
+ effect?: PointerEffect;
2034
+ /** How quickly the node settles toward the pointer, in milliseconds (POINTER). */
2035
+ transitionDuration?: number | null;
2026
2036
  }
2027
2037
  declare enum AnimationType {
2028
2038
  /** Animations that play while the node is in view. */
2029
- VIEW = "VIEW"
2039
+ VIEW = "VIEW",
2040
+ /** Animations driven by the visitor's mouse position. */
2041
+ POINTER = "POINTER"
2030
2042
  }
2031
2043
  /** @enumType */
2032
- type AnimationTypeWithLiterals = AnimationType | 'VIEW';
2044
+ type AnimationTypeWithLiterals = AnimationType | 'VIEW' | 'POINTER';
2033
2045
  interface EntranceAnimation {
2034
2046
  /** The entrance effect to play. */
2035
2047
  effect?: EntranceEffect;
@@ -2097,6 +2109,101 @@ declare enum EntranceEffectType {
2097
2109
  }
2098
2110
  /** @enumType */
2099
2111
  type EntranceEffectTypeWithLiterals = EntranceEffectType | 'FADE' | 'ARC' | 'BLUR' | 'BOUNCE' | 'DROP' | 'EXPAND' | 'FLIP' | 'FLOAT' | 'FOLD' | 'GLIDE' | 'REVEAL' | 'SHAPE' | 'SHUTTERS' | 'SLIDE' | 'SPIN' | 'TILT' | 'TURN' | 'WINK';
2112
+ interface LoopAnimation {
2113
+ /** The looping effect to repeat. */
2114
+ effect?: LoopEffect;
2115
+ /** Duration of a single iteration in milliseconds. Each effect has its own default. */
2116
+ duration?: number | null;
2117
+ /** Pause between iterations in milliseconds. */
2118
+ iterationDelay?: number | null;
2119
+ }
2120
+ interface LoopEffect {
2121
+ /** The looping effect type. */
2122
+ type?: LoopEffectTypeWithLiterals;
2123
+ /**
2124
+ * 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).
2125
+ * @maxLength 20
2126
+ */
2127
+ direction?: string | null;
2128
+ /**
2129
+ * Motion style: GENTLE, MODERATE, or INTENSE. Only the effects that expose one accept it.
2130
+ * @maxLength 100
2131
+ */
2132
+ easing?: string | null;
2133
+ }
2134
+ declare enum LoopEffectType {
2135
+ /** Bounces up and down in place. */
2136
+ BOUNCE = "BOUNCE",
2137
+ /** Scales gently in and out along an axis. */
2138
+ BREATHE = "BREATHE",
2139
+ /** Drifts toward one side, then re-enters from the opposite side. */
2140
+ CROSS = "CROSS",
2141
+ /** Fades out to fully transparent and back in. */
2142
+ FLASH = "FLASH",
2143
+ /** Rotates a full turn around its horizontal or vertical axis. */
2144
+ FLIP = "FLIP",
2145
+ /** Folds back and forth around a hinged edge. */
2146
+ FOLD = "FOLD",
2147
+ /** Wobbles with a jelly-like skew. */
2148
+ JELLO = "JELLO",
2149
+ /** Nudges repeatedly toward a direction. */
2150
+ POKE = "POKE",
2151
+ /** Scales up and back down rhythmically. */
2152
+ PULSE = "PULSE",
2153
+ /** Stretches and squashes like a rubber band. */
2154
+ RUBBER = "RUBBER",
2155
+ /** Rotates continuously around its center. */
2156
+ SPIN = "SPIN",
2157
+ /** Swings back and forth around an edge pivot. */
2158
+ SWING = "SWING",
2159
+ /** Rocks side to side with an accumulating rotation. */
2160
+ WIGGLE = "WIGGLE"
2161
+ }
2162
+ /** @enumType */
2163
+ type LoopEffectTypeWithLiterals = LoopEffectType | 'BOUNCE' | 'BREATHE' | 'CROSS' | 'FLASH' | 'FLIP' | 'FOLD' | 'JELLO' | 'POKE' | 'PULSE' | 'RUBBER' | 'SPIN' | 'SWING' | 'WIGGLE';
2164
+ interface PointerEffect {
2165
+ /** The mouse effect type. */
2166
+ type?: PointerEffectTypeWithLiterals;
2167
+ /** Reacts away from the pointer instead of toward it. */
2168
+ inverted?: boolean | null;
2169
+ /**
2170
+ * One field, two value spaces (the effect type says which): the axis the movement is constrained to — HORIZONTAL, VERTICAL, or BOTH (AIRY, SCALE, SKEW, TRACK, TRACK_3D) — or the edge/center axis the node swivels around — TOP, BOTTOM, LEFT, RIGHT, CENTER_HORIZONTAL, or CENTER_VERTICAL (SWIVEL). Only the effects that expose one accept it.
2171
+ * @maxLength 20
2172
+ */
2173
+ axis?: string | null;
2174
+ /**
2175
+ * Whether the node grows or shrinks as the pointer nears: UP or DOWN (SCALE).
2176
+ * @maxLength 8
2177
+ */
2178
+ direction?: string | null;
2179
+ /**
2180
+ * Motion style: GENTLE, MODERATE, or INTENSE.
2181
+ * @maxLength 100
2182
+ */
2183
+ easing?: string | null;
2184
+ }
2185
+ declare enum PointerEffectType {
2186
+ /** Drifts loosely after the pointer with a light rotation. */
2187
+ AIRY = "AIRY",
2188
+ /** Squashes and stretches toward the pointer. */
2189
+ BLOB = "BLOB",
2190
+ /** Shifts after the pointer while blurring. */
2191
+ BLUR = "BLUR",
2192
+ /** Scales as the pointer approaches. */
2193
+ SCALE = "SCALE",
2194
+ /** Skews toward the pointer. */
2195
+ SKEW = "SKEW",
2196
+ /** Rotates around a pivot edge or axis, following the pointer. */
2197
+ SWIVEL = "SWIVEL",
2198
+ /** Tilts in 3D perspective toward the pointer. */
2199
+ TILT_3D = "TILT_3D",
2200
+ /** Follows the pointer's position. */
2201
+ TRACK = "TRACK",
2202
+ /** Follows the pointer with a 3D depth motion. */
2203
+ TRACK_3D = "TRACK_3D"
2204
+ }
2205
+ /** @enumType */
2206
+ type PointerEffectTypeWithLiterals = PointerEffectType | 'AIRY' | 'BLOB' | 'BLUR' | 'SCALE' | 'SKEW' | 'SWIVEL' | 'TILT_3D' | 'TRACK' | 'TRACK_3D';
2100
2207
  interface CodeBlockData {
2101
2208
  /** Styling for the code block's text. */
2102
2209
  textStyle?: TextStyle;
@@ -2953,6 +3060,8 @@ interface MentionData {
2953
3060
  slug?: string;
2954
3061
  /** Mentioned user's ID. */
2955
3062
  id?: string | null;
3063
+ /** 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. */
3064
+ type?: string | null;
2956
3065
  }
2957
3066
  interface FontSizeData {
2958
3067
  /** The units used for the font size. */
@@ -4551,4 +4660,4 @@ declare function publishDraft(eventId: string): Promise<NonNullablePaths<Publish
4551
4660
  */
4552
4661
  declare function discardDraft(eventId: string): Promise<void>;
4553
4662
 
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 };
4663
+ 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 PointerEffect, PointerEffectType, type PointerEffectTypeWithLiterals, 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 };
@@ -58,6 +58,7 @@ __export(index_typings_exports, {
58
58
  LineStyle: () => LineStyle,
59
59
  ListStyle: () => ListStyle,
60
60
  LocationType: () => LocationType,
61
+ LoopEffectType: () => LoopEffectType,
61
62
  MapType: () => MapType,
62
63
  NodeType: () => NodeType,
63
64
  NullValue: () => NullValue,
@@ -65,6 +66,7 @@ __export(index_typings_exports, {
65
66
  Origin: () => Origin,
66
67
  Placement: () => Placement,
67
68
  PluginContainerDataAlignment: () => PluginContainerDataAlignment,
69
+ PointerEffectType: () => PointerEffectType,
68
70
  PollDesignBackgroundType: () => PollDesignBackgroundType,
69
71
  PollLayoutDirection: () => PollLayoutDirection,
70
72
  PollLayoutType: () => PollLayoutType,
@@ -785,6 +787,7 @@ var EventType = /* @__PURE__ */ ((EventType2) => {
785
787
  EventType2["TICKETS"] = "TICKETS";
786
788
  EventType2["EXTERNAL"] = "EXTERNAL";
787
789
  EventType2["NO_REGISTRATION"] = "NO_REGISTRATION";
790
+ EventType2["RSVP_AND_TICKETS"] = "RSVP_AND_TICKETS";
788
791
  return EventType2;
789
792
  })(EventType || {});
790
793
  var RegistrationStatus = /* @__PURE__ */ ((RegistrationStatus2) => {
@@ -796,6 +799,7 @@ var RegistrationStatus = /* @__PURE__ */ ((RegistrationStatus2) => {
796
799
  RegistrationStatus2["OPEN_TICKETS"] = "OPEN_TICKETS";
797
800
  RegistrationStatus2["OPEN_EXTERNAL"] = "OPEN_EXTERNAL";
798
801
  RegistrationStatus2["SCHEDULED_RSVP"] = "SCHEDULED_RSVP";
802
+ RegistrationStatus2["OPEN_RSVP_AND_TICKETS"] = "OPEN_RSVP_AND_TICKETS";
799
803
  return RegistrationStatus2;
800
804
  })(RegistrationStatus || {});
801
805
  var RsvpStatusOptions = /* @__PURE__ */ ((RsvpStatusOptions2) => {
@@ -836,6 +840,7 @@ var State = /* @__PURE__ */ ((State2) => {
836
840
  State2["AUTO"] = "AUTO";
837
841
  State2["RECURRING_EVENT"] = "RECURRING_EVENT";
838
842
  State2["HIDDEN"] = "HIDDEN";
843
+ State2["COMPONENT"] = "COMPONENT";
839
844
  return State2;
840
845
  })(State || {});
841
846
  var NodeType = /* @__PURE__ */ ((NodeType2) => {
@@ -917,6 +922,7 @@ var Target = /* @__PURE__ */ ((Target2) => {
917
922
  })(Target || {});
918
923
  var AnimationType = /* @__PURE__ */ ((AnimationType2) => {
919
924
  AnimationType2["VIEW"] = "VIEW";
925
+ AnimationType2["POINTER"] = "POINTER";
920
926
  return AnimationType2;
921
927
  })(AnimationType || {});
922
928
  var EntranceEffectType = /* @__PURE__ */ ((EntranceEffectType2) => {
@@ -940,6 +946,34 @@ var EntranceEffectType = /* @__PURE__ */ ((EntranceEffectType2) => {
940
946
  EntranceEffectType2["WINK"] = "WINK";
941
947
  return EntranceEffectType2;
942
948
  })(EntranceEffectType || {});
949
+ var LoopEffectType = /* @__PURE__ */ ((LoopEffectType2) => {
950
+ LoopEffectType2["BOUNCE"] = "BOUNCE";
951
+ LoopEffectType2["BREATHE"] = "BREATHE";
952
+ LoopEffectType2["CROSS"] = "CROSS";
953
+ LoopEffectType2["FLASH"] = "FLASH";
954
+ LoopEffectType2["FLIP"] = "FLIP";
955
+ LoopEffectType2["FOLD"] = "FOLD";
956
+ LoopEffectType2["JELLO"] = "JELLO";
957
+ LoopEffectType2["POKE"] = "POKE";
958
+ LoopEffectType2["PULSE"] = "PULSE";
959
+ LoopEffectType2["RUBBER"] = "RUBBER";
960
+ LoopEffectType2["SPIN"] = "SPIN";
961
+ LoopEffectType2["SWING"] = "SWING";
962
+ LoopEffectType2["WIGGLE"] = "WIGGLE";
963
+ return LoopEffectType2;
964
+ })(LoopEffectType || {});
965
+ var PointerEffectType = /* @__PURE__ */ ((PointerEffectType2) => {
966
+ PointerEffectType2["AIRY"] = "AIRY";
967
+ PointerEffectType2["BLOB"] = "BLOB";
968
+ PointerEffectType2["BLUR"] = "BLUR";
969
+ PointerEffectType2["SCALE"] = "SCALE";
970
+ PointerEffectType2["SKEW"] = "SKEW";
971
+ PointerEffectType2["SWIVEL"] = "SWIVEL";
972
+ PointerEffectType2["TILT_3D"] = "TILT_3D";
973
+ PointerEffectType2["TRACK"] = "TRACK";
974
+ PointerEffectType2["TRACK_3D"] = "TRACK_3D";
975
+ return PointerEffectType2;
976
+ })(PointerEffectType || {});
943
977
  var TextAlignment = /* @__PURE__ */ ((TextAlignment2) => {
944
978
  TextAlignment2["AUTO"] = "AUTO";
945
979
  TextAlignment2["LEFT"] = "LEFT";
@@ -1553,6 +1587,7 @@ async function discardDraft2(eventId) {
1553
1587
  LineStyle,
1554
1588
  ListStyle,
1555
1589
  LocationType,
1590
+ LoopEffectType,
1556
1591
  MapType,
1557
1592
  NodeType,
1558
1593
  NullValue,
@@ -1560,6 +1595,7 @@ async function discardDraft2(eventId) {
1560
1595
  Origin,
1561
1596
  Placement,
1562
1597
  PluginContainerDataAlignment,
1598
+ PointerEffectType,
1563
1599
  PollDesignBackgroundType,
1564
1600
  PollLayoutDirection,
1565
1601
  PollLayoutType,