@wix/auto_sdk_events_forms 1.0.55 → 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 +44 -0
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +112 -5
- package/build/cjs/index.typings.js +38 -0
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +112 -5
- package/build/cjs/meta.js +38 -0
- package/build/cjs/meta.js.map +1 -1
- package/build/es/index.d.mts +1 -1
- package/build/es/index.mjs +40 -0
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +112 -5
- package/build/es/index.typings.mjs +34 -0
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +112 -5
- package/build/es/meta.mjs +34 -0
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/index.d.ts +1 -1
- package/build/internal/cjs/index.js +44 -0
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +112 -5
- package/build/internal/cjs/index.typings.js +38 -0
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +112 -5
- package/build/internal/cjs/meta.js +38 -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 +40 -0
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +112 -5
- 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 +112 -5
- package/build/internal/es/meta.mjs +34 -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 {
|
|
@@ -2242,10 +2246,11 @@ interface HTMLDataDataOneOf {
|
|
|
2242
2246
|
}
|
|
2243
2247
|
declare enum Source {
|
|
2244
2248
|
HTML = "HTML",
|
|
2245
|
-
ADSENSE = "ADSENSE"
|
|
2249
|
+
ADSENSE = "ADSENSE",
|
|
2250
|
+
AI = "AI"
|
|
2246
2251
|
}
|
|
2247
2252
|
/** @enumType */
|
|
2248
|
-
type SourceWithLiterals = Source | 'HTML' | 'ADSENSE';
|
|
2253
|
+
type SourceWithLiterals = Source | 'HTML' | 'ADSENSE' | 'AI';
|
|
2249
2254
|
interface ImageData {
|
|
2250
2255
|
/** Styling for the image's container. */
|
|
2251
2256
|
containerData?: PluginContainerData;
|
|
@@ -3175,6 +3180,108 @@ interface BlockquoteData {
|
|
|
3175
3180
|
interface CaptionData {
|
|
3176
3181
|
textStyle?: TextStyle;
|
|
3177
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';
|
|
3178
3285
|
interface LayoutCellData {
|
|
3179
3286
|
/** Size of the cell in 12 columns grid. */
|
|
3180
3287
|
colSpan?: number | null;
|
|
@@ -3698,4 +3805,4 @@ declare function publishDraft(eventId: string): Promise<NonNullablePaths<Publish
|
|
|
3698
3805
|
*/
|
|
3699
3806
|
declare function discardDraft(eventId: string): Promise<void>;
|
|
3700
3807
|
|
|
3701
|
-
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 };
|
|
@@ -900,6 +900,7 @@ var GIFType = /* @__PURE__ */ ((GIFType2) => {
|
|
|
900
900
|
var Source = /* @__PURE__ */ ((Source2) => {
|
|
901
901
|
Source2["HTML"] = "HTML";
|
|
902
902
|
Source2["ADSENSE"] = "ADSENSE";
|
|
903
|
+
Source2["AI"] = "AI";
|
|
903
904
|
return Source2;
|
|
904
905
|
})(Source || {});
|
|
905
906
|
var StylesPosition = /* @__PURE__ */ ((StylesPosition2) => {
|
|
@@ -1028,6 +1029,35 @@ var NullValue = /* @__PURE__ */ ((NullValue2) => {
|
|
|
1028
1029
|
NullValue2["NULL_VALUE"] = "NULL_VALUE";
|
|
1029
1030
|
return NullValue2;
|
|
1030
1031
|
})(NullValue || {});
|
|
1032
|
+
var Scaling = /* @__PURE__ */ ((Scaling2) => {
|
|
1033
|
+
Scaling2["AUTO"] = "AUTO";
|
|
1034
|
+
Scaling2["CONTAIN"] = "CONTAIN";
|
|
1035
|
+
Scaling2["COVER"] = "COVER";
|
|
1036
|
+
return Scaling2;
|
|
1037
|
+
})(Scaling || {});
|
|
1038
|
+
var ImagePosition = /* @__PURE__ */ ((ImagePosition2) => {
|
|
1039
|
+
ImagePosition2["CENTER"] = "CENTER";
|
|
1040
|
+
ImagePosition2["CENTER_LEFT"] = "CENTER_LEFT";
|
|
1041
|
+
ImagePosition2["CENTER_RIGHT"] = "CENTER_RIGHT";
|
|
1042
|
+
ImagePosition2["TOP"] = "TOP";
|
|
1043
|
+
ImagePosition2["TOP_LEFT"] = "TOP_LEFT";
|
|
1044
|
+
ImagePosition2["TOP_RIGHT"] = "TOP_RIGHT";
|
|
1045
|
+
ImagePosition2["BOTTOM"] = "BOTTOM";
|
|
1046
|
+
ImagePosition2["BOTTOM_LEFT"] = "BOTTOM_LEFT";
|
|
1047
|
+
ImagePosition2["BOTTOM_RIGHT"] = "BOTTOM_RIGHT";
|
|
1048
|
+
return ImagePosition2;
|
|
1049
|
+
})(ImagePosition || {});
|
|
1050
|
+
var VerticalAlignmentAlignment = /* @__PURE__ */ ((VerticalAlignmentAlignment2) => {
|
|
1051
|
+
VerticalAlignmentAlignment2["TOP"] = "TOP";
|
|
1052
|
+
VerticalAlignmentAlignment2["MIDDLE"] = "MIDDLE";
|
|
1053
|
+
VerticalAlignmentAlignment2["BOTTOM"] = "BOTTOM";
|
|
1054
|
+
return VerticalAlignmentAlignment2;
|
|
1055
|
+
})(VerticalAlignmentAlignment || {});
|
|
1056
|
+
var ResponsivenessBehaviour = /* @__PURE__ */ ((ResponsivenessBehaviour2) => {
|
|
1057
|
+
ResponsivenessBehaviour2["STACK"] = "STACK";
|
|
1058
|
+
ResponsivenessBehaviour2["WRAP"] = "WRAP";
|
|
1059
|
+
return ResponsivenessBehaviour2;
|
|
1060
|
+
})(ResponsivenessBehaviour || {});
|
|
1031
1061
|
var Type = /* @__PURE__ */ ((Type2) => {
|
|
1032
1062
|
Type2["UNKNOWN_BADGE_TYPE"] = "UNKNOWN_BADGE_TYPE";
|
|
1033
1063
|
Type2["FIRST_PRIORITY"] = "FIRST_PRIORITY";
|
|
@@ -1279,6 +1309,7 @@ export {
|
|
|
1279
1309
|
EventType,
|
|
1280
1310
|
FontType,
|
|
1281
1311
|
GIFType,
|
|
1312
|
+
ImagePosition,
|
|
1282
1313
|
InitialExpandedItems,
|
|
1283
1314
|
InputControlType,
|
|
1284
1315
|
Layout,
|
|
@@ -1297,7 +1328,9 @@ export {
|
|
|
1297
1328
|
RegistrationStatus,
|
|
1298
1329
|
RequestedFields,
|
|
1299
1330
|
Resizing,
|
|
1331
|
+
ResponsivenessBehaviour,
|
|
1300
1332
|
RsvpStatusOptions,
|
|
1333
|
+
Scaling,
|
|
1301
1334
|
Source,
|
|
1302
1335
|
State,
|
|
1303
1336
|
Status,
|
|
@@ -1310,6 +1343,7 @@ export {
|
|
|
1310
1343
|
Type,
|
|
1311
1344
|
ValueType,
|
|
1312
1345
|
VerticalAlignment,
|
|
1346
|
+
VerticalAlignmentAlignment,
|
|
1313
1347
|
ViewMode,
|
|
1314
1348
|
ViewRole,
|
|
1315
1349
|
VisitorType,
|