@wix/auto_sdk_events_forms 1.0.56 → 1.0.57
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 +43 -0
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +109 -3
- package/build/cjs/index.typings.js +37 -0
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +109 -3
- 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 +39 -0
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +109 -3
- package/build/es/index.typings.mjs +33 -0
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +109 -3
- package/build/es/meta.mjs +33 -0
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/index.d.ts +1 -1
- package/build/internal/cjs/index.js +43 -0
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +109 -3
- 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 +109 -3
- 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 +39 -0
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +109 -3
- package/build/internal/es/index.typings.mjs +33 -0
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +109 -3
- package/build/internal/es/meta.mjs +33 -0
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -1554,7 +1554,9 @@ interface Node extends NodeDataOneOf {
|
|
|
1554
1554
|
blockquoteData?: BlockquoteData;
|
|
1555
1555
|
/** Data for a caption node. */
|
|
1556
1556
|
captionData?: CaptionData;
|
|
1557
|
-
/**
|
|
1557
|
+
/** Data for a layout node. Reserved for future use. */
|
|
1558
|
+
layoutData?: LayoutData;
|
|
1559
|
+
/** Data for a cell node. */
|
|
1558
1560
|
layoutCellData?: LayoutCellData;
|
|
1559
1561
|
/** Node type. Use `APP_EMBED` for nodes that embed content from other Wix apps. Use `EMBED` to embed content in [oEmbed](https://oembed.com/) format. */
|
|
1560
1562
|
type?: NodeTypeWithLiterals;
|
|
@@ -1619,7 +1621,9 @@ interface NodeDataOneOf {
|
|
|
1619
1621
|
blockquoteData?: BlockquoteData;
|
|
1620
1622
|
/** Data for a caption node. */
|
|
1621
1623
|
captionData?: CaptionData;
|
|
1622
|
-
/**
|
|
1624
|
+
/** Data for a layout node. Reserved for future use. */
|
|
1625
|
+
layoutData?: LayoutData;
|
|
1626
|
+
/** Data for a cell node. */
|
|
1623
1627
|
layoutCellData?: LayoutCellData;
|
|
1624
1628
|
}
|
|
1625
1629
|
declare enum NodeType {
|
|
@@ -3176,6 +3180,108 @@ interface BlockquoteData {
|
|
|
3176
3180
|
interface CaptionData {
|
|
3177
3181
|
textStyle?: TextStyle;
|
|
3178
3182
|
}
|
|
3183
|
+
interface LayoutData {
|
|
3184
|
+
/**
|
|
3185
|
+
* Background color as a hexadecimal value.
|
|
3186
|
+
* @format COLOR_HEX
|
|
3187
|
+
*/
|
|
3188
|
+
backgroundColor?: string | null;
|
|
3189
|
+
/** Background image. */
|
|
3190
|
+
backgroundImage?: BackgroundImage;
|
|
3191
|
+
/**
|
|
3192
|
+
* Border color as a hexadecimal value.
|
|
3193
|
+
* @format COLOR_HEX
|
|
3194
|
+
*/
|
|
3195
|
+
borderColor?: string | null;
|
|
3196
|
+
/** Border width in pixels. */
|
|
3197
|
+
borderWidth?: number | null;
|
|
3198
|
+
/** Border */
|
|
3199
|
+
borderRadius?: number | null;
|
|
3200
|
+
/**
|
|
3201
|
+
* Backdrop color as a hexadecimal value.
|
|
3202
|
+
* @format COLOR_HEX
|
|
3203
|
+
*/
|
|
3204
|
+
backdropColor?: string | null;
|
|
3205
|
+
/** Backdrop image.radius in pixels. */
|
|
3206
|
+
backdropImage?: BackgroundImage;
|
|
3207
|
+
/** Backdrop top padding. */
|
|
3208
|
+
backdropPaddingTop?: number | null;
|
|
3209
|
+
/** Backdrop bottom padding */
|
|
3210
|
+
backdropPaddingBottom?: number | null;
|
|
3211
|
+
/** Horizontal and vertical gap between columns */
|
|
3212
|
+
gap?: number | null;
|
|
3213
|
+
/**
|
|
3214
|
+
* Padding in pixels for cells. Follows CSS order: top, right, bottom, left
|
|
3215
|
+
* @maxSize 4
|
|
3216
|
+
*/
|
|
3217
|
+
cellPadding?: number[];
|
|
3218
|
+
/** Vertical alignment for the cell's items. */
|
|
3219
|
+
cellVerticalAlignment?: VerticalAlignmentAlignmentWithLiterals;
|
|
3220
|
+
/** Responsiveness behaviour of columns when responsiveness applies. Either stacks or wrappers. */
|
|
3221
|
+
responsivenessBehaviour?: ResponsivenessBehaviourWithLiterals;
|
|
3222
|
+
/** Size in pixels when responsiveness_behaviour applies */
|
|
3223
|
+
responsivenessBreakpoint?: number | null;
|
|
3224
|
+
}
|
|
3225
|
+
declare enum Scaling {
|
|
3226
|
+
/** Auto image scaling */
|
|
3227
|
+
AUTO = "AUTO",
|
|
3228
|
+
/** Contain image scaling */
|
|
3229
|
+
CONTAIN = "CONTAIN",
|
|
3230
|
+
/** Cover image scaling */
|
|
3231
|
+
COVER = "COVER"
|
|
3232
|
+
}
|
|
3233
|
+
/** @enumType */
|
|
3234
|
+
type ScalingWithLiterals = Scaling | 'AUTO' | 'CONTAIN' | 'COVER';
|
|
3235
|
+
declare enum ImagePosition {
|
|
3236
|
+
/** Image positioned at the center */
|
|
3237
|
+
CENTER = "CENTER",
|
|
3238
|
+
/** Image positioned on the left */
|
|
3239
|
+
CENTER_LEFT = "CENTER_LEFT",
|
|
3240
|
+
/** Image positioned on the right */
|
|
3241
|
+
CENTER_RIGHT = "CENTER_RIGHT",
|
|
3242
|
+
/** Image positioned at the center top */
|
|
3243
|
+
TOP = "TOP",
|
|
3244
|
+
/** Image positioned at the top left */
|
|
3245
|
+
TOP_LEFT = "TOP_LEFT",
|
|
3246
|
+
/** Image positioned at the top right */
|
|
3247
|
+
TOP_RIGHT = "TOP_RIGHT",
|
|
3248
|
+
/** Image positioned at the center bottom */
|
|
3249
|
+
BOTTOM = "BOTTOM",
|
|
3250
|
+
/** Image positioned at the bottom left */
|
|
3251
|
+
BOTTOM_LEFT = "BOTTOM_LEFT",
|
|
3252
|
+
/** Image positioned at the bottom right */
|
|
3253
|
+
BOTTOM_RIGHT = "BOTTOM_RIGHT"
|
|
3254
|
+
}
|
|
3255
|
+
/** @enumType */
|
|
3256
|
+
type ImagePositionWithLiterals = ImagePosition | 'CENTER' | 'CENTER_LEFT' | 'CENTER_RIGHT' | 'TOP' | 'TOP_LEFT' | 'TOP_RIGHT' | 'BOTTOM' | 'BOTTOM_LEFT' | 'BOTTOM_RIGHT';
|
|
3257
|
+
interface BackgroundImage {
|
|
3258
|
+
/** Background image. */
|
|
3259
|
+
media?: Media;
|
|
3260
|
+
/** Background image opacity. */
|
|
3261
|
+
opacity?: number | null;
|
|
3262
|
+
/** Background image scaling. */
|
|
3263
|
+
scaling?: ScalingWithLiterals;
|
|
3264
|
+
/** Position of background. Defaults to `CENTER`. */
|
|
3265
|
+
position?: ImagePositionWithLiterals;
|
|
3266
|
+
}
|
|
3267
|
+
declare enum VerticalAlignmentAlignment {
|
|
3268
|
+
/** Top alignment */
|
|
3269
|
+
TOP = "TOP",
|
|
3270
|
+
/** Middle alignment */
|
|
3271
|
+
MIDDLE = "MIDDLE",
|
|
3272
|
+
/** Bottom alignment */
|
|
3273
|
+
BOTTOM = "BOTTOM"
|
|
3274
|
+
}
|
|
3275
|
+
/** @enumType */
|
|
3276
|
+
type VerticalAlignmentAlignmentWithLiterals = VerticalAlignmentAlignment | 'TOP' | 'MIDDLE' | 'BOTTOM';
|
|
3277
|
+
declare enum ResponsivenessBehaviour {
|
|
3278
|
+
/** Stacking of columns */
|
|
3279
|
+
STACK = "STACK",
|
|
3280
|
+
/** Wrapping of columns */
|
|
3281
|
+
WRAP = "WRAP"
|
|
3282
|
+
}
|
|
3283
|
+
/** @enumType */
|
|
3284
|
+
type ResponsivenessBehaviourWithLiterals = ResponsivenessBehaviour | 'STACK' | 'WRAP';
|
|
3179
3285
|
interface LayoutCellData {
|
|
3180
3286
|
/** Size of the cell in 12 columns grid. */
|
|
3181
3287
|
colSpan?: number | null;
|
|
@@ -3699,4 +3805,4 @@ declare function publishDraft(eventId: string): Promise<NonNullablePaths<Publish
|
|
|
3699
3805
|
*/
|
|
3700
3806
|
declare function discardDraft(eventId: string): Promise<void>;
|
|
3701
3807
|
|
|
3702
|
-
export { type ActionEvent, type AddControlApplicationErrors, type AddControlOptions, type AddControlOptionsControlOneOf, type AddControlRequest, type AddControlRequestControlOneOf, type AddControlResponse, type AdditionalGuestsControl, type Address, type AddressControl, type AddressControlLabels, type AddressLocation, type AddressStreetOneOf, type Agenda, Alignment, type AlignmentWithLiterals, type AnchorData, type AppEmbedData, type AppEmbedDataAppDataOneOf, AppType, type AppTypeWithLiterals, AspectRatio, type AspectRatioWithLiterals, type AudioData, type Background, type BackgroundBackgroundOneOf, BackgroundType, type BackgroundTypeWithLiterals, type Badge, type BaseEventMetadata, type BlockquoteData, type BookingData, type Border, type BorderColors, type BulletedListData, type ButtonData, ButtonDataType, type ButtonDataTypeWithLiterals, type ButtonStyles, type CalendarLinks, type CaptionData, type CardStyles, CardStylesType, type CardStylesTypeWithLiterals, type Category, type CategoryCounts, type CellStyle, type CheckboxControl, type CheckoutFormMessages, CheckoutType, type CheckoutTypeWithLiterals, type CodeBlockData, type CollapsibleListData, type ColorData, type Colors, 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, type Dimensions, Direction, type DirectionWithLiterals, type DiscardDraftRequest, type DiscardDraftResponse, type DividerData, DividerDataAlignment, type DividerDataAlignmentWithLiterals, type DocumentStyle, type DomainEvent, type DomainEventBodyOneOf, type DropdownControl, type EmailControl, type EmbedData, type EntityCreatedEvent, type EntityDeletedEvent, type EntityUpdatedEvent, type Event, type EventData, type EventDisplaySettings, EventStatus, type EventStatusWithLiterals, EventType, type EventTypeWithLiterals, type EventUpdated, type ExternalEvent, type Feed, type FileData, type FileSource, type FileSourceDataOneOf, type 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, type GuestListConfig, type HTMLData, type HTMLDataDataOneOf, type HeadingData, type Height, type IdentificationData, type IdentificationDataIdOneOf, type Image, type ImageData, type ImageDataStyles, type ImageStyles, 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, LayoutType, type LayoutTypeWithLiterals, type LayoutWithLiterals, LineStyle, type LineStyleWithLiterals, type Link, type LinkData, type LinkDataOneOf, type LinkPreviewData, type LinkPreviewDataStyles, 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, 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 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, type RestoreInfo, type RibbonStyles, type RichContent, type RsvpCollection, type RsvpCollectionConfig, type RsvpConfirmationMessages, type RsvpConfirmationMessagesNegativeResponseConfirmation, type RsvpConfirmationMessagesPositiveResponseConfirmation, type RsvpFormMessages, RsvpStatusOptions, type RsvpStatusOptionsWithLiterals, type RsvpSummary, type ScheduleConfig, type Scheduling, type SeoSchema, type SeoSettings, type Settings, type SiteUrl, Source, type SourceWithLiterals, type Spoiler, type SpoilerData, State, type StateWithLiterals, Status, type StatusWithLiterals, 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, 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, VerticalAlignment, 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 };
|
|
3808
|
+
export { type ActionEvent, type AddControlApplicationErrors, type AddControlOptions, type AddControlOptionsControlOneOf, type AddControlRequest, type AddControlRequestControlOneOf, type AddControlResponse, type AdditionalGuestsControl, type Address, type AddressControl, type AddressControlLabels, type AddressLocation, type AddressStreetOneOf, type Agenda, Alignment, type AlignmentWithLiterals, type AnchorData, type AppEmbedData, type AppEmbedDataAppDataOneOf, AppType, type AppTypeWithLiterals, AspectRatio, type AspectRatioWithLiterals, type AudioData, type Background, type BackgroundBackgroundOneOf, type BackgroundImage, BackgroundType, type BackgroundTypeWithLiterals, type Badge, type BaseEventMetadata, type BlockquoteData, type BookingData, type Border, type BorderColors, type BulletedListData, type ButtonData, ButtonDataType, type ButtonDataTypeWithLiterals, type ButtonStyles, type CalendarLinks, type CaptionData, type CardStyles, CardStylesType, type CardStylesTypeWithLiterals, type Category, type CategoryCounts, type CellStyle, type CheckboxControl, type CheckoutFormMessages, CheckoutType, type CheckoutTypeWithLiterals, type CodeBlockData, type CollapsibleListData, type ColorData, type Colors, 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, type Dimensions, Direction, type DirectionWithLiterals, type DiscardDraftRequest, type DiscardDraftResponse, type DividerData, DividerDataAlignment, type DividerDataAlignmentWithLiterals, type DocumentStyle, type DomainEvent, type DomainEventBodyOneOf, type DropdownControl, type EmailControl, type EmbedData, type EntityCreatedEvent, type EntityDeletedEvent, type EntityUpdatedEvent, type Event, type EventData, type EventDisplaySettings, EventStatus, type EventStatusWithLiterals, EventType, type EventTypeWithLiterals, type EventUpdated, type ExternalEvent, type Feed, type FileData, type FileSource, type FileSourceDataOneOf, type 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, type GuestListConfig, type HTMLData, type HTMLDataDataOneOf, type HeadingData, type Height, type IdentificationData, type IdentificationDataIdOneOf, type Image, type ImageData, type ImageDataStyles, ImagePosition, type ImagePositionWithLiterals, type ImageStyles, 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, LayoutType, type LayoutTypeWithLiterals, type LayoutWithLiterals, LineStyle, type LineStyleWithLiterals, type Link, type LinkData, type LinkDataOneOf, type LinkPreviewData, type LinkPreviewDataStyles, 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, 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 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 SiteUrl, Source, type SourceWithLiterals, type Spoiler, type SpoilerData, State, type StateWithLiterals, Status, type StatusWithLiterals, 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, 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, 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 };
|
|
@@ -36,6 +36,7 @@ __export(index_typings_exports, {
|
|
|
36
36
|
EventType: () => EventType,
|
|
37
37
|
FontType: () => FontType,
|
|
38
38
|
GIFType: () => GIFType,
|
|
39
|
+
ImagePosition: () => ImagePosition,
|
|
39
40
|
InitialExpandedItems: () => InitialExpandedItems,
|
|
40
41
|
InputControlType: () => InputControlType,
|
|
41
42
|
Layout: () => Layout,
|
|
@@ -54,7 +55,9 @@ __export(index_typings_exports, {
|
|
|
54
55
|
RegistrationStatus: () => RegistrationStatus,
|
|
55
56
|
RequestedFields: () => RequestedFields,
|
|
56
57
|
Resizing: () => Resizing,
|
|
58
|
+
ResponsivenessBehaviour: () => ResponsivenessBehaviour,
|
|
57
59
|
RsvpStatusOptions: () => RsvpStatusOptions,
|
|
60
|
+
Scaling: () => Scaling,
|
|
58
61
|
Source: () => Source,
|
|
59
62
|
State: () => State,
|
|
60
63
|
Status: () => Status,
|
|
@@ -67,6 +70,7 @@ __export(index_typings_exports, {
|
|
|
67
70
|
Type: () => Type,
|
|
68
71
|
ValueType: () => ValueType,
|
|
69
72
|
VerticalAlignment: () => VerticalAlignment,
|
|
73
|
+
VerticalAlignmentAlignment: () => VerticalAlignmentAlignment,
|
|
70
74
|
ViewMode: () => ViewMode,
|
|
71
75
|
ViewRole: () => ViewRole,
|
|
72
76
|
VisitorType: () => VisitorType,
|
|
@@ -1112,6 +1116,35 @@ var NullValue = /* @__PURE__ */ ((NullValue2) => {
|
|
|
1112
1116
|
NullValue2["NULL_VALUE"] = "NULL_VALUE";
|
|
1113
1117
|
return NullValue2;
|
|
1114
1118
|
})(NullValue || {});
|
|
1119
|
+
var Scaling = /* @__PURE__ */ ((Scaling2) => {
|
|
1120
|
+
Scaling2["AUTO"] = "AUTO";
|
|
1121
|
+
Scaling2["CONTAIN"] = "CONTAIN";
|
|
1122
|
+
Scaling2["COVER"] = "COVER";
|
|
1123
|
+
return Scaling2;
|
|
1124
|
+
})(Scaling || {});
|
|
1125
|
+
var ImagePosition = /* @__PURE__ */ ((ImagePosition2) => {
|
|
1126
|
+
ImagePosition2["CENTER"] = "CENTER";
|
|
1127
|
+
ImagePosition2["CENTER_LEFT"] = "CENTER_LEFT";
|
|
1128
|
+
ImagePosition2["CENTER_RIGHT"] = "CENTER_RIGHT";
|
|
1129
|
+
ImagePosition2["TOP"] = "TOP";
|
|
1130
|
+
ImagePosition2["TOP_LEFT"] = "TOP_LEFT";
|
|
1131
|
+
ImagePosition2["TOP_RIGHT"] = "TOP_RIGHT";
|
|
1132
|
+
ImagePosition2["BOTTOM"] = "BOTTOM";
|
|
1133
|
+
ImagePosition2["BOTTOM_LEFT"] = "BOTTOM_LEFT";
|
|
1134
|
+
ImagePosition2["BOTTOM_RIGHT"] = "BOTTOM_RIGHT";
|
|
1135
|
+
return ImagePosition2;
|
|
1136
|
+
})(ImagePosition || {});
|
|
1137
|
+
var VerticalAlignmentAlignment = /* @__PURE__ */ ((VerticalAlignmentAlignment2) => {
|
|
1138
|
+
VerticalAlignmentAlignment2["TOP"] = "TOP";
|
|
1139
|
+
VerticalAlignmentAlignment2["MIDDLE"] = "MIDDLE";
|
|
1140
|
+
VerticalAlignmentAlignment2["BOTTOM"] = "BOTTOM";
|
|
1141
|
+
return VerticalAlignmentAlignment2;
|
|
1142
|
+
})(VerticalAlignmentAlignment || {});
|
|
1143
|
+
var ResponsivenessBehaviour = /* @__PURE__ */ ((ResponsivenessBehaviour2) => {
|
|
1144
|
+
ResponsivenessBehaviour2["STACK"] = "STACK";
|
|
1145
|
+
ResponsivenessBehaviour2["WRAP"] = "WRAP";
|
|
1146
|
+
return ResponsivenessBehaviour2;
|
|
1147
|
+
})(ResponsivenessBehaviour || {});
|
|
1115
1148
|
var Type = /* @__PURE__ */ ((Type2) => {
|
|
1116
1149
|
Type2["UNKNOWN_BADGE_TYPE"] = "UNKNOWN_BADGE_TYPE";
|
|
1117
1150
|
Type2["FIRST_PRIORITY"] = "FIRST_PRIORITY";
|
|
@@ -1364,6 +1397,7 @@ async function discardDraft2(eventId) {
|
|
|
1364
1397
|
EventType,
|
|
1365
1398
|
FontType,
|
|
1366
1399
|
GIFType,
|
|
1400
|
+
ImagePosition,
|
|
1367
1401
|
InitialExpandedItems,
|
|
1368
1402
|
InputControlType,
|
|
1369
1403
|
Layout,
|
|
@@ -1382,7 +1416,9 @@ async function discardDraft2(eventId) {
|
|
|
1382
1416
|
RegistrationStatus,
|
|
1383
1417
|
RequestedFields,
|
|
1384
1418
|
Resizing,
|
|
1419
|
+
ResponsivenessBehaviour,
|
|
1385
1420
|
RsvpStatusOptions,
|
|
1421
|
+
Scaling,
|
|
1386
1422
|
Source,
|
|
1387
1423
|
State,
|
|
1388
1424
|
Status,
|
|
@@ -1395,6 +1431,7 @@ async function discardDraft2(eventId) {
|
|
|
1395
1431
|
Type,
|
|
1396
1432
|
ValueType,
|
|
1397
1433
|
VerticalAlignment,
|
|
1434
|
+
VerticalAlignmentAlignment,
|
|
1398
1435
|
ViewMode,
|
|
1399
1436
|
ViewRole,
|
|
1400
1437
|
VisitorType,
|