@wix/auto_sdk_events_forms 1.0.83 → 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.
Files changed (37) hide show
  1. package/build/cjs/index.d.ts +1 -1
  2. package/build/cjs/index.js +34 -1
  3. package/build/cjs/index.js.map +1 -1
  4. package/build/cjs/index.typings.d.ts +99 -3
  5. package/build/cjs/index.typings.js +30 -0
  6. package/build/cjs/index.typings.js.map +1 -1
  7. package/build/cjs/meta.d.ts +99 -3
  8. package/build/cjs/meta.js +30 -0
  9. package/build/cjs/meta.js.map +1 -1
  10. package/build/es/index.d.mts +1 -1
  11. package/build/es/index.mjs +32 -1
  12. package/build/es/index.mjs.map +1 -1
  13. package/build/es/index.typings.d.mts +99 -3
  14. package/build/es/index.typings.mjs +28 -0
  15. package/build/es/index.typings.mjs.map +1 -1
  16. package/build/es/meta.d.mts +99 -3
  17. package/build/es/meta.mjs +28 -0
  18. package/build/es/meta.mjs.map +1 -1
  19. package/build/internal/cjs/index.d.ts +1 -1
  20. package/build/internal/cjs/index.js +34 -1
  21. package/build/internal/cjs/index.js.map +1 -1
  22. package/build/internal/cjs/index.typings.d.ts +99 -3
  23. package/build/internal/cjs/index.typings.js +30 -0
  24. package/build/internal/cjs/index.typings.js.map +1 -1
  25. package/build/internal/cjs/meta.d.ts +99 -3
  26. package/build/internal/cjs/meta.js +30 -0
  27. package/build/internal/cjs/meta.js.map +1 -1
  28. package/build/internal/es/index.d.mts +1 -1
  29. package/build/internal/es/index.mjs +32 -1
  30. package/build/internal/es/index.mjs.map +1 -1
  31. package/build/internal/es/index.typings.d.mts +99 -3
  32. package/build/internal/es/index.typings.mjs +28 -0
  33. package/build/internal/es/index.typings.mjs.map +1 -1
  34. package/build/internal/es/meta.d.mts +99 -3
  35. package/build/internal/es/meta.mjs +28 -0
  36. package/build/internal/es/meta.mjs.map +1 -1
  37. package/package.json +2 -2
@@ -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 };
@@ -29,6 +29,7 @@ __export(index_typings_exports, {
29
29
  CardDataBackgroundType: () => CardDataBackgroundType,
30
30
  CardStylesType: () => CardStylesType,
31
31
  CheckoutType: () => CheckoutType,
32
+ ColumnSize: () => ColumnSize,
32
33
  ConferenceType: () => ConferenceType,
33
34
  Crop: () => Crop,
34
35
  DecorationType: () => DecorationType,
@@ -69,6 +70,7 @@ __export(index_typings_exports, {
69
70
  ResponsivenessBehaviour: () => ResponsivenessBehaviour,
70
71
  RsvpStatusOptions: () => RsvpStatusOptions,
71
72
  Scaling: () => Scaling,
73
+ SmartBlockDataType: () => SmartBlockDataType,
72
74
  Source: () => Source,
73
75
  State: () => State,
74
76
  Status: () => Status,
@@ -860,6 +862,8 @@ var NodeType = /* @__PURE__ */ ((NodeType2) => {
860
862
  NodeType2["SHAPE"] = "SHAPE";
861
863
  NodeType2["CARD"] = "CARD";
862
864
  NodeType2["TOC"] = "TOC";
865
+ NodeType2["SMART_BLOCK"] = "SMART_BLOCK";
866
+ NodeType2["SMART_BLOCK_CELL"] = "SMART_BLOCK_CELL";
863
867
  return NodeType2;
864
868
  })(NodeType || {});
865
869
  var BackgroundType = /* @__PURE__ */ ((BackgroundType2) => {
@@ -1187,6 +1191,30 @@ var Indentation = /* @__PURE__ */ ((Indentation2) => {
1187
1191
  Indentation2["FLAT"] = "FLAT";
1188
1192
  return Indentation2;
1189
1193
  })(Indentation || {});
1194
+ var SmartBlockDataType = /* @__PURE__ */ ((SmartBlockDataType2) => {
1195
+ SmartBlockDataType2["SOLID_BOXES"] = "SOLID_BOXES";
1196
+ SmartBlockDataType2["NUMBERED_BOXES"] = "NUMBERED_BOXES";
1197
+ SmartBlockDataType2["STATS"] = "STATS";
1198
+ SmartBlockDataType2["CIRCLE_STATS"] = "CIRCLE_STATS";
1199
+ SmartBlockDataType2["SOLID_BOXES_ALTERNATING"] = "SOLID_BOXES_ALTERNATING";
1200
+ SmartBlockDataType2["SOLID_JOINED_BOXES"] = "SOLID_JOINED_BOXES";
1201
+ SmartBlockDataType2["SIDE_LINE_TEXT"] = "SIDE_LINE_TEXT";
1202
+ SmartBlockDataType2["TOP_LINE_TEXT"] = "TOP_LINE_TEXT";
1203
+ SmartBlockDataType2["OUTLINE_BOXES_WITH_TOP_CIRCLE"] = "OUTLINE_BOXES_WITH_TOP_CIRCLE";
1204
+ SmartBlockDataType2["BIG_BULLETS"] = "BIG_BULLETS";
1205
+ SmartBlockDataType2["SMALL_BULLETS"] = "SMALL_BULLETS";
1206
+ SmartBlockDataType2["ARROW_BULLETS"] = "ARROW_BULLETS";
1207
+ SmartBlockDataType2["PROCESS_STEPS"] = "PROCESS_STEPS";
1208
+ SmartBlockDataType2["BAR_STATS"] = "BAR_STATS";
1209
+ return SmartBlockDataType2;
1210
+ })(SmartBlockDataType || {});
1211
+ var ColumnSize = /* @__PURE__ */ ((ColumnSize2) => {
1212
+ ColumnSize2["SMALL"] = "SMALL";
1213
+ ColumnSize2["MEDIUM"] = "MEDIUM";
1214
+ ColumnSize2["LARGE"] = "LARGE";
1215
+ ColumnSize2["EXTRA_LARGE"] = "EXTRA_LARGE";
1216
+ return ColumnSize2;
1217
+ })(ColumnSize || {});
1190
1218
  var Type = /* @__PURE__ */ ((Type2) => {
1191
1219
  Type2["FIRST_PRIORITY"] = "FIRST_PRIORITY";
1192
1220
  Type2["SECOND_PRIORITY"] = "SECOND_PRIORITY";
@@ -1428,6 +1456,7 @@ async function discardDraft2(eventId) {
1428
1456
  CardDataBackgroundType,
1429
1457
  CardStylesType,
1430
1458
  CheckoutType,
1459
+ ColumnSize,
1431
1460
  ConferenceType,
1432
1461
  Crop,
1433
1462
  DecorationType,
@@ -1468,6 +1497,7 @@ async function discardDraft2(eventId) {
1468
1497
  ResponsivenessBehaviour,
1469
1498
  RsvpStatusOptions,
1470
1499
  Scaling,
1500
+ SmartBlockDataType,
1471
1501
  Source,
1472
1502
  State,
1473
1503
  Status,