@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.
- package/build/cjs/index.d.ts +1 -1
- package/build/cjs/index.js +36 -0
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +113 -4
- package/build/cjs/index.typings.js +36 -0
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +113 -4
- package/build/cjs/meta.js +37 -0
- package/build/cjs/meta.js.map +1 -1
- package/build/es/index.d.mts +1 -1
- package/build/es/index.mjs +34 -0
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +113 -4
- package/build/es/index.typings.mjs +34 -0
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +113 -4
- package/build/es/meta.mjs +35 -0
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/index.d.ts +1 -1
- package/build/internal/cjs/index.js +36 -0
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +321 -7
- package/build/internal/cjs/index.typings.js +36 -0
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +357 -8
- package/build/internal/cjs/meta.js +37 -0
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/index.d.mts +1 -1
- package/build/internal/es/index.mjs +34 -0
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +321 -7
- package/build/internal/es/index.typings.mjs +34 -0
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +357 -8
- package/build/internal/es/meta.mjs +35 -0
- package/build/internal/es/meta.mjs.map +1 -1
- 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 };
|
|
@@ -679,6 +679,7 @@ var EventType = /* @__PURE__ */ ((EventType2) => {
|
|
|
679
679
|
EventType2["TICKETS"] = "TICKETS";
|
|
680
680
|
EventType2["EXTERNAL"] = "EXTERNAL";
|
|
681
681
|
EventType2["NO_REGISTRATION"] = "NO_REGISTRATION";
|
|
682
|
+
EventType2["RSVP_AND_TICKETS"] = "RSVP_AND_TICKETS";
|
|
682
683
|
return EventType2;
|
|
683
684
|
})(EventType || {});
|
|
684
685
|
var RegistrationStatus = /* @__PURE__ */ ((RegistrationStatus2) => {
|
|
@@ -690,6 +691,7 @@ var RegistrationStatus = /* @__PURE__ */ ((RegistrationStatus2) => {
|
|
|
690
691
|
RegistrationStatus2["OPEN_TICKETS"] = "OPEN_TICKETS";
|
|
691
692
|
RegistrationStatus2["OPEN_EXTERNAL"] = "OPEN_EXTERNAL";
|
|
692
693
|
RegistrationStatus2["SCHEDULED_RSVP"] = "SCHEDULED_RSVP";
|
|
694
|
+
RegistrationStatus2["OPEN_RSVP_AND_TICKETS"] = "OPEN_RSVP_AND_TICKETS";
|
|
693
695
|
return RegistrationStatus2;
|
|
694
696
|
})(RegistrationStatus || {});
|
|
695
697
|
var RsvpStatusOptions = /* @__PURE__ */ ((RsvpStatusOptions2) => {
|
|
@@ -730,6 +732,7 @@ var State = /* @__PURE__ */ ((State2) => {
|
|
|
730
732
|
State2["AUTO"] = "AUTO";
|
|
731
733
|
State2["RECURRING_EVENT"] = "RECURRING_EVENT";
|
|
732
734
|
State2["HIDDEN"] = "HIDDEN";
|
|
735
|
+
State2["COMPONENT"] = "COMPONENT";
|
|
733
736
|
return State2;
|
|
734
737
|
})(State || {});
|
|
735
738
|
var NodeType = /* @__PURE__ */ ((NodeType2) => {
|
|
@@ -811,6 +814,7 @@ var Target = /* @__PURE__ */ ((Target2) => {
|
|
|
811
814
|
})(Target || {});
|
|
812
815
|
var AnimationType = /* @__PURE__ */ ((AnimationType2) => {
|
|
813
816
|
AnimationType2["VIEW"] = "VIEW";
|
|
817
|
+
AnimationType2["POINTER"] = "POINTER";
|
|
814
818
|
return AnimationType2;
|
|
815
819
|
})(AnimationType || {});
|
|
816
820
|
var EntranceEffectType = /* @__PURE__ */ ((EntranceEffectType2) => {
|
|
@@ -834,6 +838,34 @@ var EntranceEffectType = /* @__PURE__ */ ((EntranceEffectType2) => {
|
|
|
834
838
|
EntranceEffectType2["WINK"] = "WINK";
|
|
835
839
|
return EntranceEffectType2;
|
|
836
840
|
})(EntranceEffectType || {});
|
|
841
|
+
var LoopEffectType = /* @__PURE__ */ ((LoopEffectType2) => {
|
|
842
|
+
LoopEffectType2["BOUNCE"] = "BOUNCE";
|
|
843
|
+
LoopEffectType2["BREATHE"] = "BREATHE";
|
|
844
|
+
LoopEffectType2["CROSS"] = "CROSS";
|
|
845
|
+
LoopEffectType2["FLASH"] = "FLASH";
|
|
846
|
+
LoopEffectType2["FLIP"] = "FLIP";
|
|
847
|
+
LoopEffectType2["FOLD"] = "FOLD";
|
|
848
|
+
LoopEffectType2["JELLO"] = "JELLO";
|
|
849
|
+
LoopEffectType2["POKE"] = "POKE";
|
|
850
|
+
LoopEffectType2["PULSE"] = "PULSE";
|
|
851
|
+
LoopEffectType2["RUBBER"] = "RUBBER";
|
|
852
|
+
LoopEffectType2["SPIN"] = "SPIN";
|
|
853
|
+
LoopEffectType2["SWING"] = "SWING";
|
|
854
|
+
LoopEffectType2["WIGGLE"] = "WIGGLE";
|
|
855
|
+
return LoopEffectType2;
|
|
856
|
+
})(LoopEffectType || {});
|
|
857
|
+
var PointerEffectType = /* @__PURE__ */ ((PointerEffectType2) => {
|
|
858
|
+
PointerEffectType2["AIRY"] = "AIRY";
|
|
859
|
+
PointerEffectType2["BLOB"] = "BLOB";
|
|
860
|
+
PointerEffectType2["BLUR"] = "BLUR";
|
|
861
|
+
PointerEffectType2["SCALE"] = "SCALE";
|
|
862
|
+
PointerEffectType2["SKEW"] = "SKEW";
|
|
863
|
+
PointerEffectType2["SWIVEL"] = "SWIVEL";
|
|
864
|
+
PointerEffectType2["TILT_3D"] = "TILT_3D";
|
|
865
|
+
PointerEffectType2["TRACK"] = "TRACK";
|
|
866
|
+
PointerEffectType2["TRACK_3D"] = "TRACK_3D";
|
|
867
|
+
return PointerEffectType2;
|
|
868
|
+
})(PointerEffectType || {});
|
|
837
869
|
var TextAlignment = /* @__PURE__ */ ((TextAlignment2) => {
|
|
838
870
|
TextAlignment2["AUTO"] = "AUTO";
|
|
839
871
|
TextAlignment2["LEFT"] = "LEFT";
|
|
@@ -1446,6 +1478,7 @@ export {
|
|
|
1446
1478
|
LineStyle,
|
|
1447
1479
|
ListStyle,
|
|
1448
1480
|
LocationType,
|
|
1481
|
+
LoopEffectType,
|
|
1449
1482
|
MapType,
|
|
1450
1483
|
NodeType,
|
|
1451
1484
|
NullValue,
|
|
@@ -1453,6 +1486,7 @@ export {
|
|
|
1453
1486
|
Origin,
|
|
1454
1487
|
Placement,
|
|
1455
1488
|
PluginContainerDataAlignment,
|
|
1489
|
+
PointerEffectType,
|
|
1456
1490
|
PollDesignBackgroundType,
|
|
1457
1491
|
PollLayoutDirection,
|
|
1458
1492
|
PollLayoutType,
|