@wix/auto_sdk_events_forms 1.0.79 → 1.0.80
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 +24 -1
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +60 -5
- package/build/cjs/index.typings.js +21 -0
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +60 -5
- package/build/cjs/meta.js +21 -0
- package/build/cjs/meta.js.map +1 -1
- package/build/es/index.d.mts +1 -1
- package/build/es/index.mjs +22 -1
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +60 -5
- package/build/es/index.typings.mjs +19 -0
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +60 -5
- package/build/es/meta.mjs +19 -0
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/index.d.ts +1 -1
- package/build/internal/cjs/index.js +24 -1
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +60 -5
- package/build/internal/cjs/index.typings.js +21 -0
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +60 -5
- package/build/internal/cjs/meta.js +21 -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 +22 -1
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +60 -5
- package/build/internal/es/index.typings.mjs +19 -0
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +60 -5
- package/build/internal/es/meta.mjs +19 -0
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +4 -4
|
@@ -1555,6 +1555,8 @@ interface Node extends NodeDataOneOf {
|
|
|
1555
1555
|
shapeData?: ShapeData;
|
|
1556
1556
|
/** Data for a card node. */
|
|
1557
1557
|
cardData?: CardData;
|
|
1558
|
+
/** Data for a table of contents node. */
|
|
1559
|
+
tocData?: TocData;
|
|
1558
1560
|
/** 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. */
|
|
1559
1561
|
type?: NodeTypeWithLiterals;
|
|
1560
1562
|
/** Node ID. */
|
|
@@ -1626,6 +1628,8 @@ interface NodeDataOneOf {
|
|
|
1626
1628
|
shapeData?: ShapeData;
|
|
1627
1629
|
/** Data for a card node. */
|
|
1628
1630
|
cardData?: CardData;
|
|
1631
|
+
/** Data for a table of contents node. */
|
|
1632
|
+
tocData?: TocData;
|
|
1629
1633
|
}
|
|
1630
1634
|
declare enum NodeType {
|
|
1631
1635
|
PARAGRAPH = "PARAGRAPH",
|
|
@@ -1663,10 +1667,11 @@ declare enum NodeType {
|
|
|
1663
1667
|
LAYOUT = "LAYOUT",
|
|
1664
1668
|
LAYOUT_CELL = "LAYOUT_CELL",
|
|
1665
1669
|
SHAPE = "SHAPE",
|
|
1666
|
-
CARD = "CARD"
|
|
1670
|
+
CARD = "CARD",
|
|
1671
|
+
TOC = "TOC"
|
|
1667
1672
|
}
|
|
1668
1673
|
/** @enumType */
|
|
1669
|
-
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';
|
|
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';
|
|
1670
1675
|
interface NodeStyle {
|
|
1671
1676
|
/** The top padding value in pixels. */
|
|
1672
1677
|
paddingTop?: string | null;
|
|
@@ -2295,6 +2300,8 @@ interface HTMLData extends HTMLDataDataOneOf {
|
|
|
2295
2300
|
* @deprecated
|
|
2296
2301
|
*/
|
|
2297
2302
|
isAdsense?: boolean | null;
|
|
2303
|
+
/** The WixelWidget ID for AI_WIDGET source nodes. */
|
|
2304
|
+
widgetId?: string;
|
|
2298
2305
|
/** Styling for the HTML node's container. Height property is irrelevant for HTML embeds when autoHeight is set to `true`. */
|
|
2299
2306
|
containerData?: PluginContainerData;
|
|
2300
2307
|
/** The type of HTML code. */
|
|
@@ -2313,14 +2320,17 @@ interface HTMLDataDataOneOf {
|
|
|
2313
2320
|
* @deprecated
|
|
2314
2321
|
*/
|
|
2315
2322
|
isAdsense?: boolean | null;
|
|
2323
|
+
/** The WixelWidget ID for AI_WIDGET source nodes. */
|
|
2324
|
+
widgetId?: string;
|
|
2316
2325
|
}
|
|
2317
2326
|
declare enum Source {
|
|
2318
2327
|
HTML = "HTML",
|
|
2319
2328
|
ADSENSE = "ADSENSE",
|
|
2320
|
-
AI = "AI"
|
|
2329
|
+
AI = "AI",
|
|
2330
|
+
AI_WIDGET = "AI_WIDGET"
|
|
2321
2331
|
}
|
|
2322
2332
|
/** @enumType */
|
|
2323
|
-
type SourceWithLiterals = Source | 'HTML' | 'ADSENSE' | 'AI';
|
|
2333
|
+
type SourceWithLiterals = Source | 'HTML' | 'ADSENSE' | 'AI' | 'AI_WIDGET';
|
|
2324
2334
|
interface ImageData {
|
|
2325
2335
|
/** Styling for the image's container. */
|
|
2326
2336
|
containerData?: PluginContainerData;
|
|
@@ -3548,6 +3558,51 @@ interface BackgroundImage {
|
|
|
3548
3558
|
/** Position of background. Defaults to `CENTER`. */
|
|
3549
3559
|
position?: ImagePositionPositionWithLiterals;
|
|
3550
3560
|
}
|
|
3561
|
+
interface TocData {
|
|
3562
|
+
/** Heading levels included in the table of contents. Default: [1, 2, 3, 4, 5, 6]. */
|
|
3563
|
+
includedHeadings?: number[];
|
|
3564
|
+
/** List style. Default: PLAIN. */
|
|
3565
|
+
listStyle?: ListStyleWithLiterals;
|
|
3566
|
+
/** Optional override for the font size in pixels. */
|
|
3567
|
+
fontSize?: number | null;
|
|
3568
|
+
/** Optional override for the vertical spacing between items in pixels. */
|
|
3569
|
+
itemSpacing?: number | null;
|
|
3570
|
+
/**
|
|
3571
|
+
* Optional override for the text color.
|
|
3572
|
+
* @format COLOR_HEX
|
|
3573
|
+
*/
|
|
3574
|
+
color?: string | null;
|
|
3575
|
+
/** Indentation style. Default: NESTED. */
|
|
3576
|
+
indentation?: IndentationWithLiterals;
|
|
3577
|
+
}
|
|
3578
|
+
/** List style. */
|
|
3579
|
+
declare enum ListStyle {
|
|
3580
|
+
/** No markers (default) */
|
|
3581
|
+
PLAIN = "PLAIN",
|
|
3582
|
+
/** Numbered list */
|
|
3583
|
+
NUMBERED = "NUMBERED",
|
|
3584
|
+
/** Alphabetic letters */
|
|
3585
|
+
LETTERS = "LETTERS",
|
|
3586
|
+
/** Roman numerals */
|
|
3587
|
+
ROMAN = "ROMAN",
|
|
3588
|
+
/** Bulleted list */
|
|
3589
|
+
BULLETED = "BULLETED",
|
|
3590
|
+
/** Alphabetical index */
|
|
3591
|
+
ALPHABETICAL_INDEX = "ALPHABETICAL_INDEX",
|
|
3592
|
+
/** Alphabetical index (compact top-row only) */
|
|
3593
|
+
ALPHABETICAL_INDEX_COMPACT = "ALPHABETICAL_INDEX_COMPACT"
|
|
3594
|
+
}
|
|
3595
|
+
/** @enumType */
|
|
3596
|
+
type ListStyleWithLiterals = ListStyle | 'PLAIN' | 'NUMBERED' | 'LETTERS' | 'ROMAN' | 'BULLETED' | 'ALPHABETICAL_INDEX' | 'ALPHABETICAL_INDEX_COMPACT';
|
|
3597
|
+
/** Indentation style. */
|
|
3598
|
+
declare enum Indentation {
|
|
3599
|
+
/** Sub-headings indented under parents (default) */
|
|
3600
|
+
NESTED = "NESTED",
|
|
3601
|
+
/** All items at the same level */
|
|
3602
|
+
FLAT = "FLAT"
|
|
3603
|
+
}
|
|
3604
|
+
/** @enumType */
|
|
3605
|
+
type IndentationWithLiterals = Indentation | 'NESTED' | 'FLAT';
|
|
3551
3606
|
interface Metadata {
|
|
3552
3607
|
/** Schema version. */
|
|
3553
3608
|
version?: number;
|
|
@@ -4088,4 +4143,4 @@ declare function publishDraft(eventId: string): Promise<NonNullablePaths<Publish
|
|
|
4088
4143
|
*/
|
|
4089
4144
|
declare function discardDraft(eventId: string): Promise<void>;
|
|
4090
4145
|
|
|
4091
|
-
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, 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 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, 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 };
|
|
4146
|
+
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 };
|
|
@@ -749,6 +749,7 @@ var NodeType = /* @__PURE__ */ ((NodeType2) => {
|
|
|
749
749
|
NodeType2["LAYOUT_CELL"] = "LAYOUT_CELL";
|
|
750
750
|
NodeType2["SHAPE"] = "SHAPE";
|
|
751
751
|
NodeType2["CARD"] = "CARD";
|
|
752
|
+
NodeType2["TOC"] = "TOC";
|
|
752
753
|
return NodeType2;
|
|
753
754
|
})(NodeType || {});
|
|
754
755
|
var BackgroundType = /* @__PURE__ */ ((BackgroundType2) => {
|
|
@@ -859,6 +860,7 @@ var Source = /* @__PURE__ */ ((Source2) => {
|
|
|
859
860
|
Source2["HTML"] = "HTML";
|
|
860
861
|
Source2["ADSENSE"] = "ADSENSE";
|
|
861
862
|
Source2["AI"] = "AI";
|
|
863
|
+
Source2["AI_WIDGET"] = "AI_WIDGET";
|
|
862
864
|
return Source2;
|
|
863
865
|
})(Source || {});
|
|
864
866
|
var StylesPosition = /* @__PURE__ */ ((StylesPosition2) => {
|
|
@@ -1060,6 +1062,21 @@ var CardDataBackgroundType = /* @__PURE__ */ ((CardDataBackgroundType2) => {
|
|
|
1060
1062
|
CardDataBackgroundType2["GRADIENT"] = "GRADIENT";
|
|
1061
1063
|
return CardDataBackgroundType2;
|
|
1062
1064
|
})(CardDataBackgroundType || {});
|
|
1065
|
+
var ListStyle = /* @__PURE__ */ ((ListStyle2) => {
|
|
1066
|
+
ListStyle2["PLAIN"] = "PLAIN";
|
|
1067
|
+
ListStyle2["NUMBERED"] = "NUMBERED";
|
|
1068
|
+
ListStyle2["LETTERS"] = "LETTERS";
|
|
1069
|
+
ListStyle2["ROMAN"] = "ROMAN";
|
|
1070
|
+
ListStyle2["BULLETED"] = "BULLETED";
|
|
1071
|
+
ListStyle2["ALPHABETICAL_INDEX"] = "ALPHABETICAL_INDEX";
|
|
1072
|
+
ListStyle2["ALPHABETICAL_INDEX_COMPACT"] = "ALPHABETICAL_INDEX_COMPACT";
|
|
1073
|
+
return ListStyle2;
|
|
1074
|
+
})(ListStyle || {});
|
|
1075
|
+
var Indentation = /* @__PURE__ */ ((Indentation2) => {
|
|
1076
|
+
Indentation2["NESTED"] = "NESTED";
|
|
1077
|
+
Indentation2["FLAT"] = "FLAT";
|
|
1078
|
+
return Indentation2;
|
|
1079
|
+
})(Indentation || {});
|
|
1063
1080
|
var Type = /* @__PURE__ */ ((Type2) => {
|
|
1064
1081
|
Type2["FIRST_PRIORITY"] = "FIRST_PRIORITY";
|
|
1065
1082
|
Type2["SECOND_PRIORITY"] = "SECOND_PRIORITY";
|
|
@@ -1317,12 +1334,14 @@ export {
|
|
|
1317
1334
|
ImagePosition,
|
|
1318
1335
|
ImagePositionPosition,
|
|
1319
1336
|
ImageScalingScaling,
|
|
1337
|
+
Indentation,
|
|
1320
1338
|
InitialExpandedItems,
|
|
1321
1339
|
InputControlType,
|
|
1322
1340
|
Layout,
|
|
1323
1341
|
LayoutDataBackgroundType,
|
|
1324
1342
|
LayoutType,
|
|
1325
1343
|
LineStyle,
|
|
1344
|
+
ListStyle,
|
|
1326
1345
|
LocationType,
|
|
1327
1346
|
MapType,
|
|
1328
1347
|
NodeType,
|