@wix/auto_sdk_events_forms 1.0.89 → 1.0.91
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 +17 -0
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +64 -9
- package/build/cjs/index.typings.js +17 -0
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +63 -10
- package/build/cjs/meta.js +17 -0
- package/build/cjs/meta.js.map +1 -1
- package/build/es/index.d.mts +1 -1
- package/build/es/index.mjs +16 -0
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +64 -9
- package/build/es/index.typings.mjs +16 -0
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +63 -10
- package/build/es/meta.mjs +16 -0
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/index.d.ts +1 -1
- package/build/internal/cjs/index.js +17 -0
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +64 -9
- package/build/internal/cjs/index.typings.js +17 -0
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +63 -10
- package/build/internal/cjs/meta.js +17 -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 +16 -0
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +64 -9
- package/build/internal/es/index.typings.mjs +16 -0
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +63 -10
- package/build/internal/es/meta.mjs +16 -0
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -1561,6 +1561,10 @@ interface Node extends NodeDataOneOf {
|
|
|
1561
1561
|
smartBlockData?: SmartBlockData;
|
|
1562
1562
|
/** Data for a smart block cell node. */
|
|
1563
1563
|
smartBlockCellData?: SmartBlockCellData;
|
|
1564
|
+
/** Data for a checkbox list node. */
|
|
1565
|
+
checkboxListData?: CheckboxListData;
|
|
1566
|
+
/** Data for a list item node. */
|
|
1567
|
+
listItemData?: ListItemNodeData;
|
|
1564
1568
|
/** 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. */
|
|
1565
1569
|
type?: NodeTypeWithLiterals;
|
|
1566
1570
|
/** Node ID. */
|
|
@@ -1638,6 +1642,10 @@ interface NodeDataOneOf {
|
|
|
1638
1642
|
smartBlockData?: SmartBlockData;
|
|
1639
1643
|
/** Data for a smart block cell node. */
|
|
1640
1644
|
smartBlockCellData?: SmartBlockCellData;
|
|
1645
|
+
/** Data for a checkbox list node. */
|
|
1646
|
+
checkboxListData?: CheckboxListData;
|
|
1647
|
+
/** Data for a list item node. */
|
|
1648
|
+
listItemData?: ListItemNodeData;
|
|
1641
1649
|
}
|
|
1642
1650
|
declare enum NodeType {
|
|
1643
1651
|
PARAGRAPH = "PARAGRAPH",
|
|
@@ -1678,10 +1686,11 @@ declare enum NodeType {
|
|
|
1678
1686
|
CARD = "CARD",
|
|
1679
1687
|
TOC = "TOC",
|
|
1680
1688
|
SMART_BLOCK = "SMART_BLOCK",
|
|
1681
|
-
SMART_BLOCK_CELL = "SMART_BLOCK_CELL"
|
|
1689
|
+
SMART_BLOCK_CELL = "SMART_BLOCK_CELL",
|
|
1690
|
+
CHECKBOX_LIST = "CHECKBOX_LIST"
|
|
1682
1691
|
}
|
|
1683
1692
|
/** @enumType */
|
|
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';
|
|
1693
|
+
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' | 'CHECKBOX_LIST';
|
|
1685
1694
|
interface NodeStyle {
|
|
1686
1695
|
/** The top padding value in pixels. */
|
|
1687
1696
|
paddingTop?: string | null;
|
|
@@ -2691,6 +2700,8 @@ interface Decoration extends DecorationDataOneOf {
|
|
|
2691
2700
|
subscriptData?: boolean | null;
|
|
2692
2701
|
/** Data for a font family decoration. */
|
|
2693
2702
|
fontFamilyData?: FontFamilyData;
|
|
2703
|
+
/** Data for a hand-drawn sketch annotation decoration. */
|
|
2704
|
+
sketchData?: SketchData;
|
|
2694
2705
|
/** The type of decoration to apply. */
|
|
2695
2706
|
type?: DecorationTypeWithLiterals;
|
|
2696
2707
|
}
|
|
@@ -2722,6 +2733,8 @@ interface DecorationDataOneOf {
|
|
|
2722
2733
|
subscriptData?: boolean | null;
|
|
2723
2734
|
/** Data for a font family decoration. */
|
|
2724
2735
|
fontFamilyData?: FontFamilyData;
|
|
2736
|
+
/** Data for a hand-drawn sketch annotation decoration. */
|
|
2737
|
+
sketchData?: SketchData;
|
|
2725
2738
|
}
|
|
2726
2739
|
declare enum DecorationType {
|
|
2727
2740
|
BOLD = "BOLD",
|
|
@@ -2737,10 +2750,11 @@ declare enum DecorationType {
|
|
|
2737
2750
|
STRIKETHROUGH = "STRIKETHROUGH",
|
|
2738
2751
|
SUPERSCRIPT = "SUPERSCRIPT",
|
|
2739
2752
|
SUBSCRIPT = "SUBSCRIPT",
|
|
2740
|
-
FONT_FAMILY = "FONT_FAMILY"
|
|
2753
|
+
FONT_FAMILY = "FONT_FAMILY",
|
|
2754
|
+
SKETCH = "SKETCH"
|
|
2741
2755
|
}
|
|
2742
2756
|
/** @enumType */
|
|
2743
|
-
type DecorationTypeWithLiterals = DecorationType | 'BOLD' | 'ITALIC' | 'UNDERLINE' | 'SPOILER' | 'ANCHOR' | 'MENTION' | 'LINK' | 'COLOR' | 'FONT_SIZE' | 'EXTERNAL' | 'STRIKETHROUGH' | 'SUPERSCRIPT' | 'SUBSCRIPT' | 'FONT_FAMILY';
|
|
2757
|
+
type DecorationTypeWithLiterals = DecorationType | 'BOLD' | 'ITALIC' | 'UNDERLINE' | 'SPOILER' | 'ANCHOR' | 'MENTION' | 'LINK' | 'COLOR' | 'FONT_SIZE' | 'EXTERNAL' | 'STRIKETHROUGH' | 'SUPERSCRIPT' | 'SUBSCRIPT' | 'FONT_FAMILY' | 'SKETCH';
|
|
2744
2758
|
interface AnchorData {
|
|
2745
2759
|
/** The target node's ID. */
|
|
2746
2760
|
anchor?: string;
|
|
@@ -2783,6 +2797,27 @@ interface FontFamilyData {
|
|
|
2783
2797
|
/** @maxLength 1000 */
|
|
2784
2798
|
value?: string | null;
|
|
2785
2799
|
}
|
|
2800
|
+
interface SketchData {
|
|
2801
|
+
/** The sketch annotation variant to draw over the text. */
|
|
2802
|
+
variant?: VariantWithLiterals;
|
|
2803
|
+
/**
|
|
2804
|
+
* Annotation color. Defaults to the theme action color.
|
|
2805
|
+
* @maxLength 19
|
|
2806
|
+
*/
|
|
2807
|
+
color?: string | null;
|
|
2808
|
+
/** Whether the annotation animates on first paint. Defaults to `true`. */
|
|
2809
|
+
animate?: boolean | null;
|
|
2810
|
+
}
|
|
2811
|
+
declare enum Variant {
|
|
2812
|
+
UNDERLINE = "UNDERLINE",
|
|
2813
|
+
BOX = "BOX",
|
|
2814
|
+
CIRCLE = "CIRCLE",
|
|
2815
|
+
HIGHLIGHT = "HIGHLIGHT",
|
|
2816
|
+
STRIKETHROUGH = "STRIKETHROUGH",
|
|
2817
|
+
CROSSED_OFF = "CROSSED_OFF"
|
|
2818
|
+
}
|
|
2819
|
+
/** @enumType */
|
|
2820
|
+
type VariantWithLiterals = Variant | 'UNDERLINE' | 'BOX' | 'CIRCLE' | 'HIGHLIGHT' | 'STRIKETHROUGH' | 'CROSSED_OFF';
|
|
2786
2821
|
interface AppEmbedData extends AppEmbedDataAppDataOneOf {
|
|
2787
2822
|
/** Data for embedded Wix Bookings content. */
|
|
2788
2823
|
bookingData?: BookingData;
|
|
@@ -3684,10 +3719,18 @@ declare enum SmartBlockDataType {
|
|
|
3684
3719
|
/** Star rating display with stars and a numeric value per cell. */
|
|
3685
3720
|
STAR_RATING = "STAR_RATING",
|
|
3686
3721
|
/** Outlined boxes with decorative quote glyphs at the top-left and bottom-right corners. */
|
|
3687
|
-
QUOTE_BOXES = "QUOTE_BOXES"
|
|
3722
|
+
QUOTE_BOXES = "QUOTE_BOXES",
|
|
3723
|
+
/** Donut/ring with numbered annular-sector segments; cell text labels sit outside the ring. */
|
|
3724
|
+
CIRCLE = "CIRCLE",
|
|
3725
|
+
/** Hierarchical pyramid where each cell renders as a horizontal slice (apex at top, base at bottom) with the cell number or shape centered inside; text content sits beside (desktop) or below (mobile) the pyramid. */
|
|
3726
|
+
PYRAMID = "PYRAMID",
|
|
3727
|
+
/** Cells render a horizontal bar whose width scales with cell index, creating a staircase pattern; bar carries the cell number or a custom shape. */
|
|
3728
|
+
STAIRCASE = "STAIRCASE",
|
|
3729
|
+
/** Hierarchical funnel where each cell renders as a horizontal slice (wide at top, narrowing toward the bottom) with the cell number or shape centered inside; text content sits beside (desktop) or below (mobile) the funnel. */
|
|
3730
|
+
VERTICAL_FUNNEL = "VERTICAL_FUNNEL"
|
|
3688
3731
|
}
|
|
3689
3732
|
/** @enumType */
|
|
3690
|
-
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' | 'TIMELINE' | 'MINIMAL_TIMELINE' | 'PILLS' | 'STAR_RATING' | 'QUOTE_BOXES';
|
|
3733
|
+
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' | 'TIMELINE' | 'MINIMAL_TIMELINE' | 'PILLS' | 'STAR_RATING' | 'QUOTE_BOXES' | 'CIRCLE' | 'PYRAMID' | 'STAIRCASE' | 'VERTICAL_FUNNEL';
|
|
3691
3734
|
/** Column size controlling how many cells appear per row. */
|
|
3692
3735
|
declare enum ColumnSize {
|
|
3693
3736
|
/** Up to 4 cells in a row. */
|
|
@@ -3734,6 +3777,16 @@ interface SmartBlockCellData {
|
|
|
3734
3777
|
*/
|
|
3735
3778
|
shapeColor?: string | null;
|
|
3736
3779
|
}
|
|
3780
|
+
interface CheckboxListData {
|
|
3781
|
+
/** Indentation level from 0-4. */
|
|
3782
|
+
indentation?: number;
|
|
3783
|
+
/** Offset level from 0-4. */
|
|
3784
|
+
offset?: number | null;
|
|
3785
|
+
}
|
|
3786
|
+
interface ListItemNodeData {
|
|
3787
|
+
/** Checkbox list item state. Defaults to `false`. */
|
|
3788
|
+
checked?: boolean | null;
|
|
3789
|
+
}
|
|
3737
3790
|
interface Metadata {
|
|
3738
3791
|
/** Schema version. */
|
|
3739
3792
|
version?: number;
|
|
@@ -3836,7 +3889,7 @@ interface DomainEvent extends DomainEventBodyOneOf {
|
|
|
3836
3889
|
/** If present, indicates the action that triggered the event. */
|
|
3837
3890
|
originatedFrom?: string | null;
|
|
3838
3891
|
/**
|
|
3839
|
-
* A sequence number that indicates the order of updates to an entity. For example, if an entity was updated at 16:00 and then again at 16:01
|
|
3892
|
+
* A sequence number that indicates the order of updates to an entity. For example, if an entity was updated at `16:00` and then again at `16:01`, the second update will always have a higher sequence number.
|
|
3840
3893
|
* You can use this number to make sure you're handling updates in the right order. Just save the latest sequence number on your end and compare it to the one in each new message. If the new message has an older (lower) number, you can safely ignore it.
|
|
3841
3894
|
*/
|
|
3842
3895
|
entityEventSequence?: string | null;
|
|
@@ -4004,6 +4057,8 @@ interface FormEventUpdatedEnvelope {
|
|
|
4004
4057
|
}
|
|
4005
4058
|
/**
|
|
4006
4059
|
* Triggered when a form is updated or published.
|
|
4060
|
+
* @permissionScope Manage_Wix_Rentals_App_Forms_submissions
|
|
4061
|
+
* @permissionScopeId SCOPE.RENTALS.MANAGE
|
|
4007
4062
|
* @permissionScope Manage Stores
|
|
4008
4063
|
* @permissionScopeId SCOPE.STORES.MANAGE-STORES
|
|
4009
4064
|
* @permissionScope Read Events - all read permissions
|
|
@@ -4018,7 +4073,7 @@ interface FormEventUpdatedEnvelope {
|
|
|
4018
4073
|
* @permissionScopeId SCOPE.EVENTS.MANAGE-EVENTS
|
|
4019
4074
|
* @permissionScope Read Events
|
|
4020
4075
|
* @permissionScopeId SCOPE.DC-EVENTS.READ-EVENTS
|
|
4021
|
-
* @permissionScope Manage Challenges
|
|
4076
|
+
* @permissionScope Manage Online Programs (Challenges)
|
|
4022
4077
|
* @permissionScopeId SCOPE.CHALLENGES.MANAGE
|
|
4023
4078
|
* @permissionScope Manage Portfolio
|
|
4024
4079
|
* @permissionScopeId SCOPE.PORTFOLIO.MANAGE-PORTFOLIO
|
|
@@ -4269,4 +4324,4 @@ declare function publishDraft(eventId: string): Promise<NonNullablePaths<Publish
|
|
|
4269
4324
|
*/
|
|
4270
4325
|
declare function discardDraft(eventId: string): Promise<void>;
|
|
4271
4326
|
|
|
4272
|
-
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, BannerPosition, type BannerPositionWithLiterals, type BaseEventMetadata, type BlockquoteData, type BookingData, type Border, type BorderColors, type BorderWidths, type BulletedListData, type ButtonData, ButtonDataType, type ButtonDataTypeWithLiterals, type ButtonStyles, type CalendarLinks, 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 };
|
|
4327
|
+
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, BannerPosition, type BannerPositionWithLiterals, type BaseEventMetadata, type BlockquoteData, type BookingData, type Border, type BorderColors, type BorderWidths, type BulletedListData, type ButtonData, ButtonDataType, type ButtonDataTypeWithLiterals, type ButtonStyles, type CalendarLinks, type CaptionData, type CardData, type CardDataBackground, CardDataBackgroundType, type CardDataBackgroundTypeWithLiterals, type CardStyles, CardStylesType, type CardStylesTypeWithLiterals, type Category, type CategoryCounts, type CellStyle, type CheckboxControl, type CheckboxListData, type CheckoutFormMessages, CheckoutType, type CheckoutTypeWithLiterals, type CodeBlockData, type CollapsibleListData, type ColorData, type Colors, ColumnSize, type ColumnSizeWithLiterals, ConferenceType, type ConferenceTypeWithLiterals, Crop, type CropWithLiterals, type Dashboard, type DateControl, type Decoration, type DecorationDataOneOf, DecorationType, type DecorationTypeWithLiterals, type DeleteControlApplicationErrors, type DeleteControlIdentifiers, type DeleteControlRequest, type DeleteControlResponse, type Design, DesignTarget, type DesignTargetWithLiterals, type Dimensions, Direction, type DirectionWithLiterals, type DiscardDraftRequest, type DiscardDraftResponse, type DividerData, DividerDataAlignment, type DividerDataAlignmentWithLiterals, type 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, type ListItemNodeData, 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 SketchData, type SmartBlockCellData, type SmartBlockData, SmartBlockDataType, type SmartBlockDataTypeWithLiterals, Source, type SourceWithLiterals, type Spoiler, type SpoilerData, State, type StateWithLiterals, Status, type StatusWithLiterals, type Stop, type StreetAddress, type Styles, type StylesBorder, StylesPosition, type StylesPositionWithLiterals, type Subdivision, SubdivisionType, type SubdivisionTypeWithLiterals, type TableCellData, type TableData, type Tag, Target, type TargetWithLiterals, type TaxConfig, TaxType, type TaxTypeWithLiterals, TextAlignment, type TextAlignmentWithLiterals, type TextControl, type TextData, type TextNodeStyle, type TextStyle, type Thumbnails, ThumbnailsAlignment, type ThumbnailsAlignmentWithLiterals, type Ticketing, type TicketingConfig, type TicketingSummary, type TicketsConfirmationMessages, type TicketsUnavailableMessages, type TocData, Type, type TypeWithLiterals, type UpdateControlApplicationErrors, type UpdateControlIdentifiers, type UpdateControlIdentifiersControlOneOf, type UpdateControlOptions, type UpdateControlOptionsControlOneOf, type UpdateControlRequest, type UpdateControlRequestControlOneOf, type UpdateControlResponse, type UpdateMessagesOptions, type UpdateMessagesRequest, type UpdateMessagesResponse, ValueType, type ValueTypeWithLiterals, Variant, type VariantWithLiterals, VerticalAlignment, VerticalAlignmentAlignment, type VerticalAlignmentAlignmentWithLiterals, type VerticalAlignmentWithLiterals, type Video, type VideoData, ViewMode, type ViewModeWithLiterals, ViewRole, type ViewRoleWithLiterals, VisitorType, type VisitorTypeWithLiterals, VoteRole, type VoteRoleWithLiterals, WebhookIdentityType, type WebhookIdentityTypeWithLiterals, Width, WidthType, type WidthTypeWithLiterals, type WidthWithLiterals, addControl, deleteControl, discardDraft, getForm, onFormEventUpdated, publishDraft, updateControl, updateMessages };
|
|
@@ -765,6 +765,7 @@ var NodeType = /* @__PURE__ */ ((NodeType2) => {
|
|
|
765
765
|
NodeType2["TOC"] = "TOC";
|
|
766
766
|
NodeType2["SMART_BLOCK"] = "SMART_BLOCK";
|
|
767
767
|
NodeType2["SMART_BLOCK_CELL"] = "SMART_BLOCK_CELL";
|
|
768
|
+
NodeType2["CHECKBOX_LIST"] = "CHECKBOX_LIST";
|
|
768
769
|
return NodeType2;
|
|
769
770
|
})(NodeType || {});
|
|
770
771
|
var BackgroundType = /* @__PURE__ */ ((BackgroundType2) => {
|
|
@@ -934,6 +935,7 @@ var DecorationType = /* @__PURE__ */ ((DecorationType2) => {
|
|
|
934
935
|
DecorationType2["SUPERSCRIPT"] = "SUPERSCRIPT";
|
|
935
936
|
DecorationType2["SUBSCRIPT"] = "SUBSCRIPT";
|
|
936
937
|
DecorationType2["FONT_FAMILY"] = "FONT_FAMILY";
|
|
938
|
+
DecorationType2["SKETCH"] = "SKETCH";
|
|
937
939
|
return DecorationType2;
|
|
938
940
|
})(DecorationType || {});
|
|
939
941
|
var FontType = /* @__PURE__ */ ((FontType2) => {
|
|
@@ -941,6 +943,15 @@ var FontType = /* @__PURE__ */ ((FontType2) => {
|
|
|
941
943
|
FontType2["EM"] = "EM";
|
|
942
944
|
return FontType2;
|
|
943
945
|
})(FontType || {});
|
|
946
|
+
var Variant = /* @__PURE__ */ ((Variant2) => {
|
|
947
|
+
Variant2["UNDERLINE"] = "UNDERLINE";
|
|
948
|
+
Variant2["BOX"] = "BOX";
|
|
949
|
+
Variant2["CIRCLE"] = "CIRCLE";
|
|
950
|
+
Variant2["HIGHLIGHT"] = "HIGHLIGHT";
|
|
951
|
+
Variant2["STRIKETHROUGH"] = "STRIKETHROUGH";
|
|
952
|
+
Variant2["CROSSED_OFF"] = "CROSSED_OFF";
|
|
953
|
+
return Variant2;
|
|
954
|
+
})(Variant || {});
|
|
944
955
|
var Position = /* @__PURE__ */ ((Position2) => {
|
|
945
956
|
Position2["START"] = "START";
|
|
946
957
|
Position2["END"] = "END";
|
|
@@ -1117,6 +1128,10 @@ var SmartBlockDataType = /* @__PURE__ */ ((SmartBlockDataType2) => {
|
|
|
1117
1128
|
SmartBlockDataType2["PILLS"] = "PILLS";
|
|
1118
1129
|
SmartBlockDataType2["STAR_RATING"] = "STAR_RATING";
|
|
1119
1130
|
SmartBlockDataType2["QUOTE_BOXES"] = "QUOTE_BOXES";
|
|
1131
|
+
SmartBlockDataType2["CIRCLE"] = "CIRCLE";
|
|
1132
|
+
SmartBlockDataType2["PYRAMID"] = "PYRAMID";
|
|
1133
|
+
SmartBlockDataType2["STAIRCASE"] = "STAIRCASE";
|
|
1134
|
+
SmartBlockDataType2["VERTICAL_FUNNEL"] = "VERTICAL_FUNNEL";
|
|
1120
1135
|
return SmartBlockDataType2;
|
|
1121
1136
|
})(SmartBlockDataType || {});
|
|
1122
1137
|
var ColumnSize = /* @__PURE__ */ ((ColumnSize2) => {
|
|
@@ -1420,6 +1435,7 @@ export {
|
|
|
1420
1435
|
ThumbnailsAlignment,
|
|
1421
1436
|
Type,
|
|
1422
1437
|
ValueType,
|
|
1438
|
+
Variant,
|
|
1423
1439
|
VerticalAlignment,
|
|
1424
1440
|
VerticalAlignmentAlignment,
|
|
1425
1441
|
ViewMode,
|