@wix/auto_sdk_events_forms 1.0.106 → 1.0.108
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 +41 -2
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +106 -2
- package/build/cjs/index.typings.js +37 -0
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +106 -2
- package/build/cjs/meta.js +37 -0
- package/build/cjs/meta.js.map +1 -1
- package/build/cjs/schemas.js +14 -14
- package/build/cjs/schemas.js.map +1 -1
- package/build/es/index.d.mts +1 -1
- package/build/es/index.mjs +39 -2
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +106 -2
- package/build/es/index.typings.mjs +35 -0
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +106 -2
- package/build/es/meta.mjs +35 -0
- package/build/es/meta.mjs.map +1 -1
- package/build/es/schemas.mjs +14 -14
- package/build/es/schemas.mjs.map +1 -1
- package/build/internal/cjs/index.d.ts +1 -1
- package/build/internal/cjs/index.js +41 -2
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +106 -2
- package/build/internal/cjs/index.typings.js +37 -0
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +106 -2
- package/build/internal/cjs/meta.js +37 -0
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/cjs/schemas.js +14 -14
- package/build/internal/cjs/schemas.js.map +1 -1
- package/build/internal/es/index.d.mts +1 -1
- package/build/internal/es/index.mjs +39 -2
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +106 -2
- package/build/internal/es/index.typings.mjs +35 -0
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +106 -2
- package/build/internal/es/meta.mjs +35 -0
- package/build/internal/es/meta.mjs.map +1 -1
- package/build/internal/es/schemas.mjs +14 -14
- package/build/internal/es/schemas.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -2043,7 +2043,7 @@ interface Animation {
|
|
|
2043
2043
|
/**
|
|
2044
2044
|
* POINTER carries its fields directly on the union member in the JTD wall, hence
|
|
2045
2045
|
* flat fields here (ts-proto camelCase must equal the JTD property names). A future
|
|
2046
|
-
*
|
|
2046
|
+
* kind that also needs an `effect` field would contend for this JSON name.
|
|
2047
2047
|
*/
|
|
2048
2048
|
effect?: PointerEffect;
|
|
2049
2049
|
/** How quickly the node settles toward the pointer, in milliseconds (POINTER). */
|
|
@@ -3715,6 +3715,10 @@ interface LayoutData {
|
|
|
3715
3715
|
backdrop?: Backdrop;
|
|
3716
3716
|
/** Node animation. */
|
|
3717
3717
|
animation?: Animation;
|
|
3718
|
+
/** Shape divider at the top edge of the layout. */
|
|
3719
|
+
topDivider?: SectionDivider;
|
|
3720
|
+
/** Shape divider at the bottom edge of the layout. */
|
|
3721
|
+
bottomDivider?: SectionDivider;
|
|
3718
3722
|
}
|
|
3719
3723
|
declare enum ImageScalingScaling {
|
|
3720
3724
|
/** Auto image scaling */
|
|
@@ -3785,6 +3789,81 @@ declare enum BannerPosition {
|
|
|
3785
3789
|
}
|
|
3786
3790
|
/** @enumType */
|
|
3787
3791
|
type BannerPositionWithLiterals = BannerPosition | 'TOP' | 'BOTTOM';
|
|
3792
|
+
/** How the stacked layers fade relative to the base shape. Named for a bottom divider; top dividers render mirrored, so the visual fade flips. */
|
|
3793
|
+
declare enum LayerEffect {
|
|
3794
|
+
/** Shape keeps its height, a solid filler bar pushes it away from the edge */
|
|
3795
|
+
CENTER = "CENTER",
|
|
3796
|
+
/** Deeper (more transparent) layers shrink toward the edge inside the original band while a solid filler bar keeps its full height, so the faded copies hug the top of the band */
|
|
3797
|
+
FADE_TO_TOP = "FADE_TO_TOP",
|
|
3798
|
+
/** Deeper (more transparent) layers stretch taller into the section, so the faded copies fan out above the base shape and descend to the layout edge */
|
|
3799
|
+
FADE_TO_BOTTOM = "FADE_TO_BOTTOM"
|
|
3800
|
+
}
|
|
3801
|
+
/** @enumType */
|
|
3802
|
+
type LayerEffectWithLiterals = LayerEffect | 'CENTER' | 'FADE_TO_TOP' | 'FADE_TO_BOTTOM';
|
|
3803
|
+
/** Divider shape preset */
|
|
3804
|
+
declare enum Shape {
|
|
3805
|
+
/** Ellipse shape */
|
|
3806
|
+
ELLIPSE = "ELLIPSE",
|
|
3807
|
+
/** Tilt shape */
|
|
3808
|
+
TILT = "TILT",
|
|
3809
|
+
/** Liquid shape */
|
|
3810
|
+
LIQUID = "LIQUID",
|
|
3811
|
+
/** Left wave shape */
|
|
3812
|
+
LEFT_WAVE = "LEFT_WAVE",
|
|
3813
|
+
/** Paint scribble shape */
|
|
3814
|
+
PAINT_SCRIBBLE = "PAINT_SCRIBBLE",
|
|
3815
|
+
/** Inverted ellipse shape */
|
|
3816
|
+
INVERTED_ELLIPSE = "INVERTED_ELLIPSE",
|
|
3817
|
+
/** Right wave shape */
|
|
3818
|
+
RIGHT_WAVE = "RIGHT_WAVE",
|
|
3819
|
+
/** Dunes shape */
|
|
3820
|
+
DUNES = "DUNES",
|
|
3821
|
+
/** Waves shape */
|
|
3822
|
+
WAVES = "WAVES",
|
|
3823
|
+
/** Triangle shape */
|
|
3824
|
+
TRIANGLE = "TRIANGLE",
|
|
3825
|
+
/** Semi-ellipse shape */
|
|
3826
|
+
SEMI_ELLIPSE = "SEMI_ELLIPSE",
|
|
3827
|
+
/** Plants shape */
|
|
3828
|
+
PLANTS = "PLANTS",
|
|
3829
|
+
/** Layered ellipse shape */
|
|
3830
|
+
LAYERED_ELLIPSE = "LAYERED_ELLIPSE",
|
|
3831
|
+
/** Pixels shape */
|
|
3832
|
+
PIXELS = "PIXELS",
|
|
3833
|
+
/** Paint shape */
|
|
3834
|
+
PAINT = "PAINT",
|
|
3835
|
+
/** Clouds shape */
|
|
3836
|
+
CLOUDS = "CLOUDS",
|
|
3837
|
+
/** Optical illusion shape */
|
|
3838
|
+
OPTICAL_ILLUSION = "OPTICAL_ILLUSION",
|
|
3839
|
+
/** Stripes shape */
|
|
3840
|
+
STRIPES = "STRIPES",
|
|
3841
|
+
/** Blobs shape */
|
|
3842
|
+
BLOBS = "BLOBS",
|
|
3843
|
+
/** Semi-circles shape */
|
|
3844
|
+
SEMI_CIRCLES = "SEMI_CIRCLES",
|
|
3845
|
+
/** Hill shape */
|
|
3846
|
+
HILL = "HILL",
|
|
3847
|
+
/** Brush shape */
|
|
3848
|
+
BRUSH = "BRUSH",
|
|
3849
|
+
/** Peaks shape */
|
|
3850
|
+
PEAKS = "PEAKS",
|
|
3851
|
+
/** Angled triangle shape */
|
|
3852
|
+
ANGLED_TRIANGLE = "ANGLED_TRIANGLE"
|
|
3853
|
+
}
|
|
3854
|
+
/** @enumType */
|
|
3855
|
+
type ShapeWithLiterals = Shape | 'ELLIPSE' | 'TILT' | 'LIQUID' | 'LEFT_WAVE' | 'PAINT_SCRIBBLE' | 'INVERTED_ELLIPSE' | 'RIGHT_WAVE' | 'DUNES' | 'WAVES' | 'TRIANGLE' | 'SEMI_ELLIPSE' | 'PLANTS' | 'LAYERED_ELLIPSE' | 'PIXELS' | 'PAINT' | 'CLOUDS' | 'OPTICAL_ILLUSION' | 'STRIPES' | 'BLOBS' | 'SEMI_CIRCLES' | 'HILL' | 'BRUSH' | 'PEAKS' | 'ANGLED_TRIANGLE';
|
|
3856
|
+
/** Layers effect - stacked semi-transparent copies of the divider shape */
|
|
3857
|
+
interface Layers {
|
|
3858
|
+
/** Total number of layers including the base shape (1-4). Absent or 1 disables the effect. */
|
|
3859
|
+
count?: number | null;
|
|
3860
|
+
/** Vertical distance in pixels between the silhouettes of consecutive layers: each successive layer's silhouette is offset from the previous one by this amount. The divider's own `height` is unchanged. Defaults to 20. */
|
|
3861
|
+
offsetY?: number | null;
|
|
3862
|
+
/** How the stacked layers fade relative to the base shape. */
|
|
3863
|
+
layerEffect?: LayerEffectWithLiterals;
|
|
3864
|
+
/** Horizontal distance between consecutive layers in pixels. Defaults to 0. Only applies to shapes that support horizontal offset. */
|
|
3865
|
+
offsetX?: number | null;
|
|
3866
|
+
}
|
|
3788
3867
|
/** Backdrop type */
|
|
3789
3868
|
declare enum BackdropType {
|
|
3790
3869
|
/** Solid color backdrop */
|
|
@@ -3855,6 +3934,24 @@ interface Backdrop {
|
|
|
3855
3934
|
/** Gradient configuration. */
|
|
3856
3935
|
gradient?: Gradient;
|
|
3857
3936
|
}
|
|
3937
|
+
/** Decorative shape divider at a layout edge */
|
|
3938
|
+
interface SectionDivider {
|
|
3939
|
+
/** Divider shape preset. Determines which customization properties apply. */
|
|
3940
|
+
type?: ShapeWithLiterals;
|
|
3941
|
+
/**
|
|
3942
|
+
* Divider fill color as a hexadecimal value (may include alpha).
|
|
3943
|
+
* @maxLength 19
|
|
3944
|
+
*/
|
|
3945
|
+
color?: string | null;
|
|
3946
|
+
/** Divider height in pixels. */
|
|
3947
|
+
height?: number | null;
|
|
3948
|
+
/** Horizontal offset in pixels. */
|
|
3949
|
+
offsetX?: number | null;
|
|
3950
|
+
/** Whether the shape is flipped horizontally. */
|
|
3951
|
+
flipped?: boolean | null;
|
|
3952
|
+
/** Layers effect - stacked semi-transparent copies of the divider shape. */
|
|
3953
|
+
layers?: Layers;
|
|
3954
|
+
}
|
|
3858
3955
|
interface LayoutCellData {
|
|
3859
3956
|
/** Size of the cell in 12 columns grid. */
|
|
3860
3957
|
colSpan?: number | null;
|
|
@@ -3868,6 +3965,13 @@ interface ShapeData {
|
|
|
3868
3965
|
styles?: ShapeDataStyles;
|
|
3869
3966
|
/** Node animation. */
|
|
3870
3967
|
animation?: Animation;
|
|
3968
|
+
/** Link details for shapes that are links. */
|
|
3969
|
+
link?: Link;
|
|
3970
|
+
/**
|
|
3971
|
+
* Alternate text describing the link's purpose for accessibility. Applies only when `link` is set.
|
|
3972
|
+
* @maxLength 1000
|
|
3973
|
+
*/
|
|
3974
|
+
altText?: string | null;
|
|
3871
3975
|
}
|
|
3872
3976
|
interface ShapeDataStyles {
|
|
3873
3977
|
/**
|
|
@@ -4675,4 +4779,4 @@ declare function publishDraft(eventId: string): Promise<NonNullablePaths<Publish
|
|
|
4675
4779
|
*/
|
|
4676
4780
|
declare function discardDraft(eventId: string): Promise<void>;
|
|
4677
4781
|
|
|
4678
|
-
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 };
|
|
4782
|
+
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, LayerEffect, type LayerEffectWithLiterals, type Layers, 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 SectionDivider, type SeoSchema, type SeoSettings, type Settings, Shape, type ShapeData, type ShapeDataStyles, type ShapeWithLiterals, 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 };
|
|
@@ -51,6 +51,7 @@ __export(index_typings_exports, {
|
|
|
51
51
|
Indentation: () => Indentation,
|
|
52
52
|
InitialExpandedItems: () => InitialExpandedItems,
|
|
53
53
|
InputControlType: () => InputControlType,
|
|
54
|
+
LayerEffect: () => LayerEffect,
|
|
54
55
|
Layout: () => Layout,
|
|
55
56
|
LayoutDataBackgroundType: () => LayoutDataBackgroundType,
|
|
56
57
|
LayoutType: () => LayoutType,
|
|
@@ -77,6 +78,7 @@ __export(index_typings_exports, {
|
|
|
77
78
|
ResponsivenessBehaviour: () => ResponsivenessBehaviour,
|
|
78
79
|
RsvpStatusOptions: () => RsvpStatusOptions,
|
|
79
80
|
Scaling: () => Scaling,
|
|
81
|
+
Shape: () => Shape,
|
|
80
82
|
SmartBlockDataType: () => SmartBlockDataType,
|
|
81
83
|
Source: () => Source,
|
|
82
84
|
State: () => State,
|
|
@@ -1225,6 +1227,39 @@ var BannerPosition = /* @__PURE__ */ ((BannerPosition2) => {
|
|
|
1225
1227
|
BannerPosition2["BOTTOM"] = "BOTTOM";
|
|
1226
1228
|
return BannerPosition2;
|
|
1227
1229
|
})(BannerPosition || {});
|
|
1230
|
+
var LayerEffect = /* @__PURE__ */ ((LayerEffect2) => {
|
|
1231
|
+
LayerEffect2["CENTER"] = "CENTER";
|
|
1232
|
+
LayerEffect2["FADE_TO_TOP"] = "FADE_TO_TOP";
|
|
1233
|
+
LayerEffect2["FADE_TO_BOTTOM"] = "FADE_TO_BOTTOM";
|
|
1234
|
+
return LayerEffect2;
|
|
1235
|
+
})(LayerEffect || {});
|
|
1236
|
+
var Shape = /* @__PURE__ */ ((Shape2) => {
|
|
1237
|
+
Shape2["ELLIPSE"] = "ELLIPSE";
|
|
1238
|
+
Shape2["TILT"] = "TILT";
|
|
1239
|
+
Shape2["LIQUID"] = "LIQUID";
|
|
1240
|
+
Shape2["LEFT_WAVE"] = "LEFT_WAVE";
|
|
1241
|
+
Shape2["PAINT_SCRIBBLE"] = "PAINT_SCRIBBLE";
|
|
1242
|
+
Shape2["INVERTED_ELLIPSE"] = "INVERTED_ELLIPSE";
|
|
1243
|
+
Shape2["RIGHT_WAVE"] = "RIGHT_WAVE";
|
|
1244
|
+
Shape2["DUNES"] = "DUNES";
|
|
1245
|
+
Shape2["WAVES"] = "WAVES";
|
|
1246
|
+
Shape2["TRIANGLE"] = "TRIANGLE";
|
|
1247
|
+
Shape2["SEMI_ELLIPSE"] = "SEMI_ELLIPSE";
|
|
1248
|
+
Shape2["PLANTS"] = "PLANTS";
|
|
1249
|
+
Shape2["LAYERED_ELLIPSE"] = "LAYERED_ELLIPSE";
|
|
1250
|
+
Shape2["PIXELS"] = "PIXELS";
|
|
1251
|
+
Shape2["PAINT"] = "PAINT";
|
|
1252
|
+
Shape2["CLOUDS"] = "CLOUDS";
|
|
1253
|
+
Shape2["OPTICAL_ILLUSION"] = "OPTICAL_ILLUSION";
|
|
1254
|
+
Shape2["STRIPES"] = "STRIPES";
|
|
1255
|
+
Shape2["BLOBS"] = "BLOBS";
|
|
1256
|
+
Shape2["SEMI_CIRCLES"] = "SEMI_CIRCLES";
|
|
1257
|
+
Shape2["HILL"] = "HILL";
|
|
1258
|
+
Shape2["BRUSH"] = "BRUSH";
|
|
1259
|
+
Shape2["PEAKS"] = "PEAKS";
|
|
1260
|
+
Shape2["ANGLED_TRIANGLE"] = "ANGLED_TRIANGLE";
|
|
1261
|
+
return Shape2;
|
|
1262
|
+
})(Shape || {});
|
|
1228
1263
|
var BackdropType = /* @__PURE__ */ ((BackdropType2) => {
|
|
1229
1264
|
BackdropType2["COLOR"] = "COLOR";
|
|
1230
1265
|
BackdropType2["GRADIENT"] = "GRADIENT";
|
|
@@ -1580,6 +1615,7 @@ async function discardDraft2(eventId) {
|
|
|
1580
1615
|
Indentation,
|
|
1581
1616
|
InitialExpandedItems,
|
|
1582
1617
|
InputControlType,
|
|
1618
|
+
LayerEffect,
|
|
1583
1619
|
Layout,
|
|
1584
1620
|
LayoutDataBackgroundType,
|
|
1585
1621
|
LayoutType,
|
|
@@ -1606,6 +1642,7 @@ async function discardDraft2(eventId) {
|
|
|
1606
1642
|
ResponsivenessBehaviour,
|
|
1607
1643
|
RsvpStatusOptions,
|
|
1608
1644
|
Scaling,
|
|
1645
|
+
Shape,
|
|
1609
1646
|
SmartBlockDataType,
|
|
1610
1647
|
Source,
|
|
1611
1648
|
State,
|