@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
|
@@ -1567,6 +1567,10 @@ interface Node extends NodeDataOneOf {
|
|
|
1567
1567
|
smartBlockData?: SmartBlockData;
|
|
1568
1568
|
/** Data for a smart block cell node. */
|
|
1569
1569
|
smartBlockCellData?: SmartBlockCellData;
|
|
1570
|
+
/** Data for a checkbox list node. */
|
|
1571
|
+
checkboxListData?: CheckboxListData;
|
|
1572
|
+
/** Data for a list item node. */
|
|
1573
|
+
listItemData?: ListItemNodeData;
|
|
1570
1574
|
/** 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. */
|
|
1571
1575
|
type?: NodeTypeWithLiterals;
|
|
1572
1576
|
/** Node ID. */
|
|
@@ -1644,6 +1648,10 @@ interface NodeDataOneOf {
|
|
|
1644
1648
|
smartBlockData?: SmartBlockData;
|
|
1645
1649
|
/** Data for a smart block cell node. */
|
|
1646
1650
|
smartBlockCellData?: SmartBlockCellData;
|
|
1651
|
+
/** Data for a checkbox list node. */
|
|
1652
|
+
checkboxListData?: CheckboxListData;
|
|
1653
|
+
/** Data for a list item node. */
|
|
1654
|
+
listItemData?: ListItemNodeData;
|
|
1647
1655
|
}
|
|
1648
1656
|
declare enum NodeType {
|
|
1649
1657
|
PARAGRAPH = "PARAGRAPH",
|
|
@@ -1684,10 +1692,11 @@ declare enum NodeType {
|
|
|
1684
1692
|
CARD = "CARD",
|
|
1685
1693
|
TOC = "TOC",
|
|
1686
1694
|
SMART_BLOCK = "SMART_BLOCK",
|
|
1687
|
-
SMART_BLOCK_CELL = "SMART_BLOCK_CELL"
|
|
1695
|
+
SMART_BLOCK_CELL = "SMART_BLOCK_CELL",
|
|
1696
|
+
CHECKBOX_LIST = "CHECKBOX_LIST"
|
|
1688
1697
|
}
|
|
1689
1698
|
/** @enumType */
|
|
1690
|
-
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';
|
|
1699
|
+
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';
|
|
1691
1700
|
interface NodeStyle {
|
|
1692
1701
|
/** The top padding value in pixels. */
|
|
1693
1702
|
paddingTop?: string | null;
|
|
@@ -2697,6 +2706,8 @@ interface Decoration extends DecorationDataOneOf {
|
|
|
2697
2706
|
subscriptData?: boolean | null;
|
|
2698
2707
|
/** Data for a font family decoration. */
|
|
2699
2708
|
fontFamilyData?: FontFamilyData;
|
|
2709
|
+
/** Data for a hand-drawn sketch annotation decoration. */
|
|
2710
|
+
sketchData?: SketchData;
|
|
2700
2711
|
/** The type of decoration to apply. */
|
|
2701
2712
|
type?: DecorationTypeWithLiterals;
|
|
2702
2713
|
}
|
|
@@ -2728,6 +2739,8 @@ interface DecorationDataOneOf {
|
|
|
2728
2739
|
subscriptData?: boolean | null;
|
|
2729
2740
|
/** Data for a font family decoration. */
|
|
2730
2741
|
fontFamilyData?: FontFamilyData;
|
|
2742
|
+
/** Data for a hand-drawn sketch annotation decoration. */
|
|
2743
|
+
sketchData?: SketchData;
|
|
2731
2744
|
}
|
|
2732
2745
|
declare enum DecorationType {
|
|
2733
2746
|
BOLD = "BOLD",
|
|
@@ -2743,10 +2756,11 @@ declare enum DecorationType {
|
|
|
2743
2756
|
STRIKETHROUGH = "STRIKETHROUGH",
|
|
2744
2757
|
SUPERSCRIPT = "SUPERSCRIPT",
|
|
2745
2758
|
SUBSCRIPT = "SUBSCRIPT",
|
|
2746
|
-
FONT_FAMILY = "FONT_FAMILY"
|
|
2759
|
+
FONT_FAMILY = "FONT_FAMILY",
|
|
2760
|
+
SKETCH = "SKETCH"
|
|
2747
2761
|
}
|
|
2748
2762
|
/** @enumType */
|
|
2749
|
-
type DecorationTypeWithLiterals = DecorationType | 'BOLD' | 'ITALIC' | 'UNDERLINE' | 'SPOILER' | 'ANCHOR' | 'MENTION' | 'LINK' | 'COLOR' | 'FONT_SIZE' | 'EXTERNAL' | 'STRIKETHROUGH' | 'SUPERSCRIPT' | 'SUBSCRIPT' | 'FONT_FAMILY';
|
|
2763
|
+
type DecorationTypeWithLiterals = DecorationType | 'BOLD' | 'ITALIC' | 'UNDERLINE' | 'SPOILER' | 'ANCHOR' | 'MENTION' | 'LINK' | 'COLOR' | 'FONT_SIZE' | 'EXTERNAL' | 'STRIKETHROUGH' | 'SUPERSCRIPT' | 'SUBSCRIPT' | 'FONT_FAMILY' | 'SKETCH';
|
|
2750
2764
|
interface AnchorData {
|
|
2751
2765
|
/** The target node's ID. */
|
|
2752
2766
|
anchor?: string;
|
|
@@ -2789,6 +2803,27 @@ interface FontFamilyData {
|
|
|
2789
2803
|
/** @maxLength 1000 */
|
|
2790
2804
|
value?: string | null;
|
|
2791
2805
|
}
|
|
2806
|
+
interface SketchData {
|
|
2807
|
+
/** The sketch annotation variant to draw over the text. */
|
|
2808
|
+
variant?: VariantWithLiterals;
|
|
2809
|
+
/**
|
|
2810
|
+
* Annotation color. Defaults to the theme action color.
|
|
2811
|
+
* @maxLength 19
|
|
2812
|
+
*/
|
|
2813
|
+
color?: string | null;
|
|
2814
|
+
/** Whether the annotation animates on first paint. Defaults to `true`. */
|
|
2815
|
+
animate?: boolean | null;
|
|
2816
|
+
}
|
|
2817
|
+
declare enum Variant {
|
|
2818
|
+
UNDERLINE = "UNDERLINE",
|
|
2819
|
+
BOX = "BOX",
|
|
2820
|
+
CIRCLE = "CIRCLE",
|
|
2821
|
+
HIGHLIGHT = "HIGHLIGHT",
|
|
2822
|
+
STRIKETHROUGH = "STRIKETHROUGH",
|
|
2823
|
+
CROSSED_OFF = "CROSSED_OFF"
|
|
2824
|
+
}
|
|
2825
|
+
/** @enumType */
|
|
2826
|
+
type VariantWithLiterals = Variant | 'UNDERLINE' | 'BOX' | 'CIRCLE' | 'HIGHLIGHT' | 'STRIKETHROUGH' | 'CROSSED_OFF';
|
|
2792
2827
|
interface AppEmbedData extends AppEmbedDataAppDataOneOf {
|
|
2793
2828
|
/** Data for embedded Wix Bookings content. */
|
|
2794
2829
|
bookingData?: BookingData;
|
|
@@ -3690,10 +3725,18 @@ declare enum SmartBlockDataType {
|
|
|
3690
3725
|
/** Star rating display with stars and a numeric value per cell. */
|
|
3691
3726
|
STAR_RATING = "STAR_RATING",
|
|
3692
3727
|
/** Outlined boxes with decorative quote glyphs at the top-left and bottom-right corners. */
|
|
3693
|
-
QUOTE_BOXES = "QUOTE_BOXES"
|
|
3728
|
+
QUOTE_BOXES = "QUOTE_BOXES",
|
|
3729
|
+
/** Donut/ring with numbered annular-sector segments; cell text labels sit outside the ring. */
|
|
3730
|
+
CIRCLE = "CIRCLE",
|
|
3731
|
+
/** 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. */
|
|
3732
|
+
PYRAMID = "PYRAMID",
|
|
3733
|
+
/** Cells render a horizontal bar whose width scales with cell index, creating a staircase pattern; bar carries the cell number or a custom shape. */
|
|
3734
|
+
STAIRCASE = "STAIRCASE",
|
|
3735
|
+
/** 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. */
|
|
3736
|
+
VERTICAL_FUNNEL = "VERTICAL_FUNNEL"
|
|
3694
3737
|
}
|
|
3695
3738
|
/** @enumType */
|
|
3696
|
-
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';
|
|
3739
|
+
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';
|
|
3697
3740
|
/** Column size controlling how many cells appear per row. */
|
|
3698
3741
|
declare enum ColumnSize {
|
|
3699
3742
|
/** Up to 4 cells in a row. */
|
|
@@ -3740,6 +3783,16 @@ interface SmartBlockCellData {
|
|
|
3740
3783
|
*/
|
|
3741
3784
|
shapeColor?: string | null;
|
|
3742
3785
|
}
|
|
3786
|
+
interface CheckboxListData {
|
|
3787
|
+
/** Indentation level from 0-4. */
|
|
3788
|
+
indentation?: number;
|
|
3789
|
+
/** Offset level from 0-4. */
|
|
3790
|
+
offset?: number | null;
|
|
3791
|
+
}
|
|
3792
|
+
interface ListItemNodeData {
|
|
3793
|
+
/** Checkbox list item state. Defaults to `false`. */
|
|
3794
|
+
checked?: boolean | null;
|
|
3795
|
+
}
|
|
3743
3796
|
interface Metadata {
|
|
3744
3797
|
/** Schema version. */
|
|
3745
3798
|
version?: number;
|
|
@@ -3842,7 +3895,7 @@ interface DomainEvent extends DomainEventBodyOneOf {
|
|
|
3842
3895
|
/** If present, indicates the action that triggered the event. */
|
|
3843
3896
|
originatedFrom?: string | null;
|
|
3844
3897
|
/**
|
|
3845
|
-
* 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
|
|
3898
|
+
* 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.
|
|
3846
3899
|
* 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.
|
|
3847
3900
|
*/
|
|
3848
3901
|
entityEventSequence?: string | null;
|
|
@@ -4010,6 +4063,8 @@ interface FormEventUpdatedEnvelope {
|
|
|
4010
4063
|
}
|
|
4011
4064
|
/**
|
|
4012
4065
|
* Triggered when a form is updated or published.
|
|
4066
|
+
* @permissionScope Manage_Wix_Rentals_App_Forms_submissions
|
|
4067
|
+
* @permissionScopeId SCOPE.RENTALS.MANAGE
|
|
4013
4068
|
* @permissionScope Manage Stores
|
|
4014
4069
|
* @permissionScopeId SCOPE.STORES.MANAGE-STORES
|
|
4015
4070
|
* @permissionScope Read Events - all read permissions
|
|
@@ -4024,7 +4079,7 @@ interface FormEventUpdatedEnvelope {
|
|
|
4024
4079
|
* @permissionScopeId SCOPE.EVENTS.MANAGE-EVENTS
|
|
4025
4080
|
* @permissionScope Read Events
|
|
4026
4081
|
* @permissionScopeId SCOPE.DC-EVENTS.READ-EVENTS
|
|
4027
|
-
* @permissionScope Manage Challenges
|
|
4082
|
+
* @permissionScope Manage Online Programs (Challenges)
|
|
4028
4083
|
* @permissionScopeId SCOPE.CHALLENGES.MANAGE
|
|
4029
4084
|
* @permissionScope Manage Portfolio
|
|
4030
4085
|
* @permissionScopeId SCOPE.PORTFOLIO.MANAGE-PORTFOLIO
|
|
@@ -4275,4 +4330,4 @@ declare function publishDraft(eventId: string): Promise<NonNullablePaths<Publish
|
|
|
4275
4330
|
*/
|
|
4276
4331
|
declare function discardDraft(eventId: string): Promise<void>;
|
|
4277
4332
|
|
|
4278
|
-
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 };
|
|
4333
|
+
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 };
|
|
@@ -83,6 +83,7 @@ __export(index_typings_exports, {
|
|
|
83
83
|
ThumbnailsAlignment: () => ThumbnailsAlignment,
|
|
84
84
|
Type: () => Type,
|
|
85
85
|
ValueType: () => ValueType,
|
|
86
|
+
Variant: () => Variant,
|
|
86
87
|
VerticalAlignment: () => VerticalAlignment,
|
|
87
88
|
VerticalAlignmentAlignment: () => VerticalAlignmentAlignment,
|
|
88
89
|
ViewMode: () => ViewMode,
|
|
@@ -866,6 +867,7 @@ var NodeType = /* @__PURE__ */ ((NodeType2) => {
|
|
|
866
867
|
NodeType2["TOC"] = "TOC";
|
|
867
868
|
NodeType2["SMART_BLOCK"] = "SMART_BLOCK";
|
|
868
869
|
NodeType2["SMART_BLOCK_CELL"] = "SMART_BLOCK_CELL";
|
|
870
|
+
NodeType2["CHECKBOX_LIST"] = "CHECKBOX_LIST";
|
|
869
871
|
return NodeType2;
|
|
870
872
|
})(NodeType || {});
|
|
871
873
|
var BackgroundType = /* @__PURE__ */ ((BackgroundType2) => {
|
|
@@ -1035,6 +1037,7 @@ var DecorationType = /* @__PURE__ */ ((DecorationType2) => {
|
|
|
1035
1037
|
DecorationType2["SUPERSCRIPT"] = "SUPERSCRIPT";
|
|
1036
1038
|
DecorationType2["SUBSCRIPT"] = "SUBSCRIPT";
|
|
1037
1039
|
DecorationType2["FONT_FAMILY"] = "FONT_FAMILY";
|
|
1040
|
+
DecorationType2["SKETCH"] = "SKETCH";
|
|
1038
1041
|
return DecorationType2;
|
|
1039
1042
|
})(DecorationType || {});
|
|
1040
1043
|
var FontType = /* @__PURE__ */ ((FontType2) => {
|
|
@@ -1042,6 +1045,15 @@ var FontType = /* @__PURE__ */ ((FontType2) => {
|
|
|
1042
1045
|
FontType2["EM"] = "EM";
|
|
1043
1046
|
return FontType2;
|
|
1044
1047
|
})(FontType || {});
|
|
1048
|
+
var Variant = /* @__PURE__ */ ((Variant2) => {
|
|
1049
|
+
Variant2["UNDERLINE"] = "UNDERLINE";
|
|
1050
|
+
Variant2["BOX"] = "BOX";
|
|
1051
|
+
Variant2["CIRCLE"] = "CIRCLE";
|
|
1052
|
+
Variant2["HIGHLIGHT"] = "HIGHLIGHT";
|
|
1053
|
+
Variant2["STRIKETHROUGH"] = "STRIKETHROUGH";
|
|
1054
|
+
Variant2["CROSSED_OFF"] = "CROSSED_OFF";
|
|
1055
|
+
return Variant2;
|
|
1056
|
+
})(Variant || {});
|
|
1045
1057
|
var Position = /* @__PURE__ */ ((Position2) => {
|
|
1046
1058
|
Position2["START"] = "START";
|
|
1047
1059
|
Position2["END"] = "END";
|
|
@@ -1218,6 +1230,10 @@ var SmartBlockDataType = /* @__PURE__ */ ((SmartBlockDataType2) => {
|
|
|
1218
1230
|
SmartBlockDataType2["PILLS"] = "PILLS";
|
|
1219
1231
|
SmartBlockDataType2["STAR_RATING"] = "STAR_RATING";
|
|
1220
1232
|
SmartBlockDataType2["QUOTE_BOXES"] = "QUOTE_BOXES";
|
|
1233
|
+
SmartBlockDataType2["CIRCLE"] = "CIRCLE";
|
|
1234
|
+
SmartBlockDataType2["PYRAMID"] = "PYRAMID";
|
|
1235
|
+
SmartBlockDataType2["STAIRCASE"] = "STAIRCASE";
|
|
1236
|
+
SmartBlockDataType2["VERTICAL_FUNNEL"] = "VERTICAL_FUNNEL";
|
|
1221
1237
|
return SmartBlockDataType2;
|
|
1222
1238
|
})(SmartBlockDataType || {});
|
|
1223
1239
|
var ColumnSize = /* @__PURE__ */ ((ColumnSize2) => {
|
|
@@ -1522,6 +1538,7 @@ async function discardDraft2(eventId) {
|
|
|
1522
1538
|
ThumbnailsAlignment,
|
|
1523
1539
|
Type,
|
|
1524
1540
|
ValueType,
|
|
1541
|
+
Variant,
|
|
1525
1542
|
VerticalAlignment,
|
|
1526
1543
|
VerticalAlignmentAlignment,
|
|
1527
1544
|
ViewMode,
|