@wix/auto_sdk_events_forms 1.0.82 → 1.0.84
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 +34 -1
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +99 -3
- package/build/cjs/index.typings.js +30 -0
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +99 -3
- package/build/cjs/meta.js +30 -0
- package/build/cjs/meta.js.map +1 -1
- package/build/es/index.d.mts +1 -1
- package/build/es/index.mjs +32 -1
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +99 -3
- package/build/es/index.typings.mjs +28 -0
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +99 -3
- package/build/es/meta.mjs +28 -0
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/index.d.ts +1 -1
- package/build/internal/cjs/index.js +34 -1
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +99 -3
- package/build/internal/cjs/index.typings.js +30 -0
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +99 -3
- package/build/internal/cjs/meta.js +30 -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 +32 -1
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +99 -3
- package/build/internal/es/index.typings.mjs +28 -0
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +99 -3
- package/build/internal/es/meta.mjs +28 -0
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +4 -4
|
@@ -1557,6 +1557,10 @@ interface Node extends NodeDataOneOf {
|
|
|
1557
1557
|
cardData?: CardData;
|
|
1558
1558
|
/** Data for a table of contents node. */
|
|
1559
1559
|
tocData?: TocData;
|
|
1560
|
+
/** Data for a smart block node. */
|
|
1561
|
+
smartBlockData?: SmartBlockData;
|
|
1562
|
+
/** Data for a smart block cell node. */
|
|
1563
|
+
smartBlockCellData?: SmartBlockCellData;
|
|
1560
1564
|
/** 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. */
|
|
1561
1565
|
type?: NodeTypeWithLiterals;
|
|
1562
1566
|
/** Node ID. */
|
|
@@ -1630,6 +1634,10 @@ interface NodeDataOneOf {
|
|
|
1630
1634
|
cardData?: CardData;
|
|
1631
1635
|
/** Data for a table of contents node. */
|
|
1632
1636
|
tocData?: TocData;
|
|
1637
|
+
/** Data for a smart block node. */
|
|
1638
|
+
smartBlockData?: SmartBlockData;
|
|
1639
|
+
/** Data for a smart block cell node. */
|
|
1640
|
+
smartBlockCellData?: SmartBlockCellData;
|
|
1633
1641
|
}
|
|
1634
1642
|
declare enum NodeType {
|
|
1635
1643
|
PARAGRAPH = "PARAGRAPH",
|
|
@@ -1668,10 +1676,12 @@ declare enum NodeType {
|
|
|
1668
1676
|
LAYOUT_CELL = "LAYOUT_CELL",
|
|
1669
1677
|
SHAPE = "SHAPE",
|
|
1670
1678
|
CARD = "CARD",
|
|
1671
|
-
TOC = "TOC"
|
|
1679
|
+
TOC = "TOC",
|
|
1680
|
+
SMART_BLOCK = "SMART_BLOCK",
|
|
1681
|
+
SMART_BLOCK_CELL = "SMART_BLOCK_CELL"
|
|
1672
1682
|
}
|
|
1673
1683
|
/** @enumType */
|
|
1674
|
-
type NodeTypeWithLiterals = NodeType | 'PARAGRAPH' | 'TEXT' | 'HEADING' | 'BULLETED_LIST' | 'ORDERED_LIST' | 'LIST_ITEM' | 'BLOCKQUOTE' | 'CODE_BLOCK' | 'VIDEO' | 'DIVIDER' | 'FILE' | 'GALLERY' | 'GIF' | 'HTML' | 'IMAGE' | 'LINK_PREVIEW' | 'MAP' | 'POLL' | 'APP_EMBED' | 'BUTTON' | 'COLLAPSIBLE_LIST' | 'TABLE' | 'EMBED' | 'COLLAPSIBLE_ITEM' | 'COLLAPSIBLE_ITEM_TITLE' | 'COLLAPSIBLE_ITEM_BODY' | 'TABLE_CELL' | 'TABLE_ROW' | 'EXTERNAL' | 'AUDIO' | 'CAPTION' | 'LAYOUT' | 'LAYOUT_CELL' | 'SHAPE' | 'CARD' | 'TOC';
|
|
1684
|
+
type NodeTypeWithLiterals = NodeType | 'PARAGRAPH' | 'TEXT' | 'HEADING' | 'BULLETED_LIST' | 'ORDERED_LIST' | 'LIST_ITEM' | 'BLOCKQUOTE' | 'CODE_BLOCK' | 'VIDEO' | 'DIVIDER' | 'FILE' | 'GALLERY' | 'GIF' | 'HTML' | 'IMAGE' | 'LINK_PREVIEW' | 'MAP' | 'POLL' | 'APP_EMBED' | 'BUTTON' | 'COLLAPSIBLE_LIST' | 'TABLE' | 'EMBED' | 'COLLAPSIBLE_ITEM' | 'COLLAPSIBLE_ITEM_TITLE' | 'COLLAPSIBLE_ITEM_BODY' | 'TABLE_CELL' | 'TABLE_ROW' | 'EXTERNAL' | 'AUDIO' | 'CAPTION' | 'LAYOUT' | 'LAYOUT_CELL' | 'SHAPE' | 'CARD' | 'TOC' | 'SMART_BLOCK' | 'SMART_BLOCK_CELL';
|
|
1675
1685
|
interface NodeStyle {
|
|
1676
1686
|
/** The top padding value in pixels. */
|
|
1677
1687
|
paddingTop?: string | null;
|
|
@@ -2289,6 +2299,8 @@ interface HeadingData {
|
|
|
2289
2299
|
textStyle?: TextStyle;
|
|
2290
2300
|
/** Indentation level from 1-4. */
|
|
2291
2301
|
indentation?: number | null;
|
|
2302
|
+
/** Rendered heading level for SEO/accessibility, overrides the HTML tag when set. */
|
|
2303
|
+
renderedLevel?: number | null;
|
|
2292
2304
|
}
|
|
2293
2305
|
interface HTMLData extends HTMLDataDataOneOf {
|
|
2294
2306
|
/** The URL for the HTML code for the node. */
|
|
@@ -3162,6 +3174,8 @@ interface TableData {
|
|
|
3162
3174
|
* @maxSize 4
|
|
3163
3175
|
*/
|
|
3164
3176
|
cellPadding?: number[];
|
|
3177
|
+
/** Table's alternative text. */
|
|
3178
|
+
altText?: string | null;
|
|
3165
3179
|
}
|
|
3166
3180
|
interface Dimensions {
|
|
3167
3181
|
/** An array representing relative width of each column in relation to the other columns. */
|
|
@@ -3603,6 +3617,88 @@ declare enum Indentation {
|
|
|
3603
3617
|
}
|
|
3604
3618
|
/** @enumType */
|
|
3605
3619
|
type IndentationWithLiterals = Indentation | 'NESTED' | 'FLAT';
|
|
3620
|
+
/** Data for a smart block node. */
|
|
3621
|
+
interface SmartBlockData {
|
|
3622
|
+
/** The type of the smart block. */
|
|
3623
|
+
type?: SmartBlockDataTypeWithLiterals;
|
|
3624
|
+
/** Layout orientation. HORIZONTAL or VERTICAL. Optional for variants with fixed orientation. */
|
|
3625
|
+
orientation?: string | null;
|
|
3626
|
+
/** Column size controlling cells per row. */
|
|
3627
|
+
columnSize?: ColumnSizeWithLiterals;
|
|
3628
|
+
/** Border color (for SOLID_JOINED_BOXES variant). */
|
|
3629
|
+
borderColor?: string | null;
|
|
3630
|
+
/** Border width in pixels (for SOLID_JOINED_BOXES variant). */
|
|
3631
|
+
borderWidth?: number | null;
|
|
3632
|
+
/** Border radius in pixels (for SOLID_JOINED_BOXES variant). */
|
|
3633
|
+
borderRadius?: number | null;
|
|
3634
|
+
}
|
|
3635
|
+
/** Layout type of the smart block */
|
|
3636
|
+
declare enum SmartBlockDataType {
|
|
3637
|
+
/** Grid-based layouts with solid box items containing title, body, and icon/image. */
|
|
3638
|
+
SOLID_BOXES = "SOLID_BOXES",
|
|
3639
|
+
/** Numbered boxes. */
|
|
3640
|
+
NUMBERED_BOXES = "NUMBERED_BOXES",
|
|
3641
|
+
/** Statistics display with large numbers/values. */
|
|
3642
|
+
STATS = "STATS",
|
|
3643
|
+
/** Statistics with circular visual elements. */
|
|
3644
|
+
CIRCLE_STATS = "CIRCLE_STATS",
|
|
3645
|
+
/** Staggered/zigzag grid layout with alternating box positions. */
|
|
3646
|
+
SOLID_BOXES_ALTERNATING = "SOLID_BOXES_ALTERNATING",
|
|
3647
|
+
/** Grid layout with boxes visually joined (no gaps, shared container border). */
|
|
3648
|
+
SOLID_JOINED_BOXES = "SOLID_JOINED_BOXES",
|
|
3649
|
+
/** Transparent cells with only a left side line. */
|
|
3650
|
+
SIDE_LINE_TEXT = "SIDE_LINE_TEXT",
|
|
3651
|
+
/** Transparent cells with only a top line. */
|
|
3652
|
+
TOP_LINE_TEXT = "TOP_LINE_TEXT",
|
|
3653
|
+
/** Outlined boxes with a numbered/icon circle at the top. */
|
|
3654
|
+
OUTLINE_BOXES_WITH_TOP_CIRCLE = "OUTLINE_BOXES_WITH_TOP_CIRCLE",
|
|
3655
|
+
/** Large icon bullets with text content. */
|
|
3656
|
+
BIG_BULLETS = "BIG_BULLETS",
|
|
3657
|
+
/** Small dot bullets with text content. */
|
|
3658
|
+
SMALL_BULLETS = "SMALL_BULLETS",
|
|
3659
|
+
/** Arrow icon bullets with text content. */
|
|
3660
|
+
ARROW_BULLETS = "ARROW_BULLETS",
|
|
3661
|
+
/** Process steps with numbered/icon labels above a horizontal line. */
|
|
3662
|
+
PROCESS_STEPS = "PROCESS_STEPS",
|
|
3663
|
+
/** Statistics with bar visual elements. */
|
|
3664
|
+
BAR_STATS = "BAR_STATS"
|
|
3665
|
+
}
|
|
3666
|
+
/** @enumType */
|
|
3667
|
+
type SmartBlockDataTypeWithLiterals = SmartBlockDataType | 'SOLID_BOXES' | 'NUMBERED_BOXES' | 'STATS' | 'CIRCLE_STATS' | 'SOLID_BOXES_ALTERNATING' | 'SOLID_JOINED_BOXES' | 'SIDE_LINE_TEXT' | 'TOP_LINE_TEXT' | 'OUTLINE_BOXES_WITH_TOP_CIRCLE' | 'BIG_BULLETS' | 'SMALL_BULLETS' | 'ARROW_BULLETS' | 'PROCESS_STEPS' | 'BAR_STATS';
|
|
3668
|
+
/** Column size controlling how many cells appear per row. */
|
|
3669
|
+
declare enum ColumnSize {
|
|
3670
|
+
/** Up to 4 cells in a row. */
|
|
3671
|
+
SMALL = "SMALL",
|
|
3672
|
+
/** Up to 3 cells in a row (default). */
|
|
3673
|
+
MEDIUM = "MEDIUM",
|
|
3674
|
+
/** Up to 2 cells in a row. */
|
|
3675
|
+
LARGE = "LARGE",
|
|
3676
|
+
/** 1 cell in a row. */
|
|
3677
|
+
EXTRA_LARGE = "EXTRA_LARGE"
|
|
3678
|
+
}
|
|
3679
|
+
/** @enumType */
|
|
3680
|
+
type ColumnSizeWithLiterals = ColumnSize | 'SMALL' | 'MEDIUM' | 'LARGE' | 'EXTRA_LARGE';
|
|
3681
|
+
/** Data for a smart block cell node. */
|
|
3682
|
+
interface SmartBlockCellData {
|
|
3683
|
+
/** Optional label text for the cell (e.g., for stats variants). */
|
|
3684
|
+
label?: string | null;
|
|
3685
|
+
/** Shape file details. */
|
|
3686
|
+
shape?: Media;
|
|
3687
|
+
/** Border color of the cell. */
|
|
3688
|
+
borderColor?: string | null;
|
|
3689
|
+
/** Border width in pixels. */
|
|
3690
|
+
borderWidth?: number | null;
|
|
3691
|
+
/** Border radius in pixels. */
|
|
3692
|
+
borderRadius?: number | null;
|
|
3693
|
+
/** The type of the parent smart block (must match parent). */
|
|
3694
|
+
type?: SmartBlockDataTypeWithLiterals;
|
|
3695
|
+
/** Accent color for non-background variants (e.g., line, bullet, label color). */
|
|
3696
|
+
accentColor?: string | null;
|
|
3697
|
+
/** Background color for background-based variants (SOLID_BOXES, SOLID_BOXES_ALTERNATING, SOLID_JOINED_BOXES). */
|
|
3698
|
+
backgroundColor?: string | null;
|
|
3699
|
+
/** Shape fill color as a hexadecimal value. */
|
|
3700
|
+
shapeColor?: string | null;
|
|
3701
|
+
}
|
|
3606
3702
|
interface Metadata {
|
|
3607
3703
|
/** Schema version. */
|
|
3608
3704
|
version?: number;
|
|
@@ -4134,4 +4230,4 @@ declare function publishDraft(eventId: string): Promise<NonNullablePaths<Publish
|
|
|
4134
4230
|
*/
|
|
4135
4231
|
declare function discardDraft(eventId: string): Promise<void>;
|
|
4136
4232
|
|
|
4137
|
-
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 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, type BaseEventMetadata, type BlockquoteData, type BookingData, type Border, type BorderColors, type BorderWidths, type BulletedListData, type ButtonData, ButtonDataType, type ButtonDataTypeWithLiterals, type ButtonStyles, type CalendarLinks, type CaptionData, type CardData, type CardDataBackground, CardDataBackgroundType, type CardDataBackgroundTypeWithLiterals, 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, DesignTarget, type DesignTargetWithLiterals, 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 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 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, LineStyle, type LineStyleWithLiterals, type Link, type LinkData, type LinkDataOneOf, type LinkPreviewData, type LinkPreviewDataStyles, 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, 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, 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 };
|
|
4233
|
+
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 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, type BaseEventMetadata, type BlockquoteData, type BookingData, type Border, type BorderColors, type BorderWidths, type BulletedListData, type ButtonData, ButtonDataType, type ButtonDataTypeWithLiterals, type ButtonStyles, type CalendarLinks, type CaptionData, type CardData, type CardDataBackground, CardDataBackgroundType, type CardDataBackgroundTypeWithLiterals, 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, 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 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 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 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, LineStyle, type LineStyleWithLiterals, type Link, type LinkData, type LinkDataOneOf, type LinkPreviewData, type LinkPreviewDataStyles, 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 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, 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 };
|
|
@@ -762,6 +762,8 @@ var NodeType = /* @__PURE__ */ ((NodeType2) => {
|
|
|
762
762
|
NodeType2["SHAPE"] = "SHAPE";
|
|
763
763
|
NodeType2["CARD"] = "CARD";
|
|
764
764
|
NodeType2["TOC"] = "TOC";
|
|
765
|
+
NodeType2["SMART_BLOCK"] = "SMART_BLOCK";
|
|
766
|
+
NodeType2["SMART_BLOCK_CELL"] = "SMART_BLOCK_CELL";
|
|
765
767
|
return NodeType2;
|
|
766
768
|
})(NodeType || {});
|
|
767
769
|
var BackgroundType = /* @__PURE__ */ ((BackgroundType2) => {
|
|
@@ -1089,6 +1091,30 @@ var Indentation = /* @__PURE__ */ ((Indentation2) => {
|
|
|
1089
1091
|
Indentation2["FLAT"] = "FLAT";
|
|
1090
1092
|
return Indentation2;
|
|
1091
1093
|
})(Indentation || {});
|
|
1094
|
+
var SmartBlockDataType = /* @__PURE__ */ ((SmartBlockDataType2) => {
|
|
1095
|
+
SmartBlockDataType2["SOLID_BOXES"] = "SOLID_BOXES";
|
|
1096
|
+
SmartBlockDataType2["NUMBERED_BOXES"] = "NUMBERED_BOXES";
|
|
1097
|
+
SmartBlockDataType2["STATS"] = "STATS";
|
|
1098
|
+
SmartBlockDataType2["CIRCLE_STATS"] = "CIRCLE_STATS";
|
|
1099
|
+
SmartBlockDataType2["SOLID_BOXES_ALTERNATING"] = "SOLID_BOXES_ALTERNATING";
|
|
1100
|
+
SmartBlockDataType2["SOLID_JOINED_BOXES"] = "SOLID_JOINED_BOXES";
|
|
1101
|
+
SmartBlockDataType2["SIDE_LINE_TEXT"] = "SIDE_LINE_TEXT";
|
|
1102
|
+
SmartBlockDataType2["TOP_LINE_TEXT"] = "TOP_LINE_TEXT";
|
|
1103
|
+
SmartBlockDataType2["OUTLINE_BOXES_WITH_TOP_CIRCLE"] = "OUTLINE_BOXES_WITH_TOP_CIRCLE";
|
|
1104
|
+
SmartBlockDataType2["BIG_BULLETS"] = "BIG_BULLETS";
|
|
1105
|
+
SmartBlockDataType2["SMALL_BULLETS"] = "SMALL_BULLETS";
|
|
1106
|
+
SmartBlockDataType2["ARROW_BULLETS"] = "ARROW_BULLETS";
|
|
1107
|
+
SmartBlockDataType2["PROCESS_STEPS"] = "PROCESS_STEPS";
|
|
1108
|
+
SmartBlockDataType2["BAR_STATS"] = "BAR_STATS";
|
|
1109
|
+
return SmartBlockDataType2;
|
|
1110
|
+
})(SmartBlockDataType || {});
|
|
1111
|
+
var ColumnSize = /* @__PURE__ */ ((ColumnSize2) => {
|
|
1112
|
+
ColumnSize2["SMALL"] = "SMALL";
|
|
1113
|
+
ColumnSize2["MEDIUM"] = "MEDIUM";
|
|
1114
|
+
ColumnSize2["LARGE"] = "LARGE";
|
|
1115
|
+
ColumnSize2["EXTRA_LARGE"] = "EXTRA_LARGE";
|
|
1116
|
+
return ColumnSize2;
|
|
1117
|
+
})(ColumnSize || {});
|
|
1092
1118
|
var Type = /* @__PURE__ */ ((Type2) => {
|
|
1093
1119
|
Type2["FIRST_PRIORITY"] = "FIRST_PRIORITY";
|
|
1094
1120
|
Type2["SECOND_PRIORITY"] = "SECOND_PRIORITY";
|
|
@@ -1329,6 +1355,7 @@ export {
|
|
|
1329
1355
|
CardDataBackgroundType,
|
|
1330
1356
|
CardStylesType,
|
|
1331
1357
|
CheckoutType,
|
|
1358
|
+
ColumnSize,
|
|
1332
1359
|
ConferenceType,
|
|
1333
1360
|
Crop,
|
|
1334
1361
|
DecorationType,
|
|
@@ -1369,6 +1396,7 @@ export {
|
|
|
1369
1396
|
ResponsivenessBehaviour,
|
|
1370
1397
|
RsvpStatusOptions,
|
|
1371
1398
|
Scaling,
|
|
1399
|
+
SmartBlockDataType,
|
|
1372
1400
|
Source,
|
|
1373
1401
|
State,
|
|
1374
1402
|
Status,
|