@wix/auto_sdk_blog_draft-posts 1.0.86 → 1.0.88
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 +62 -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 +62 -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 +62 -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 +62 -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
|
@@ -296,6 +296,10 @@ interface Node extends NodeDataOneOf {
|
|
|
296
296
|
smartBlockData?: SmartBlockData;
|
|
297
297
|
/** Data for a smart block cell node. */
|
|
298
298
|
smartBlockCellData?: SmartBlockCellData;
|
|
299
|
+
/** Data for a checkbox list node. */
|
|
300
|
+
checkboxListData?: CheckboxListData;
|
|
301
|
+
/** Data for a list item node. */
|
|
302
|
+
listItemData?: ListItemNodeData;
|
|
299
303
|
/** 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. */
|
|
300
304
|
type?: NodeTypeWithLiterals;
|
|
301
305
|
/** Node ID. */
|
|
@@ -373,6 +377,10 @@ interface NodeDataOneOf {
|
|
|
373
377
|
smartBlockData?: SmartBlockData;
|
|
374
378
|
/** Data for a smart block cell node. */
|
|
375
379
|
smartBlockCellData?: SmartBlockCellData;
|
|
380
|
+
/** Data for a checkbox list node. */
|
|
381
|
+
checkboxListData?: CheckboxListData;
|
|
382
|
+
/** Data for a list item node. */
|
|
383
|
+
listItemData?: ListItemNodeData;
|
|
376
384
|
}
|
|
377
385
|
declare enum NodeType {
|
|
378
386
|
PARAGRAPH = "PARAGRAPH",
|
|
@@ -413,10 +421,11 @@ declare enum NodeType {
|
|
|
413
421
|
CARD = "CARD",
|
|
414
422
|
TOC = "TOC",
|
|
415
423
|
SMART_BLOCK = "SMART_BLOCK",
|
|
416
|
-
SMART_BLOCK_CELL = "SMART_BLOCK_CELL"
|
|
424
|
+
SMART_BLOCK_CELL = "SMART_BLOCK_CELL",
|
|
425
|
+
CHECKBOX_LIST = "CHECKBOX_LIST"
|
|
417
426
|
}
|
|
418
427
|
/** @enumType */
|
|
419
|
-
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';
|
|
428
|
+
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';
|
|
420
429
|
interface NodeStyle {
|
|
421
430
|
/** The top padding value in pixels. */
|
|
422
431
|
paddingTop?: string | null;
|
|
@@ -1426,6 +1435,8 @@ interface Decoration extends DecorationDataOneOf {
|
|
|
1426
1435
|
subscriptData?: boolean | null;
|
|
1427
1436
|
/** Data for a font family decoration. */
|
|
1428
1437
|
fontFamilyData?: FontFamilyData;
|
|
1438
|
+
/** Data for a hand-drawn sketch annotation decoration. */
|
|
1439
|
+
sketchData?: SketchData;
|
|
1429
1440
|
/** The type of decoration to apply. */
|
|
1430
1441
|
type?: DecorationTypeWithLiterals;
|
|
1431
1442
|
}
|
|
@@ -1457,6 +1468,8 @@ interface DecorationDataOneOf {
|
|
|
1457
1468
|
subscriptData?: boolean | null;
|
|
1458
1469
|
/** Data for a font family decoration. */
|
|
1459
1470
|
fontFamilyData?: FontFamilyData;
|
|
1471
|
+
/** Data for a hand-drawn sketch annotation decoration. */
|
|
1472
|
+
sketchData?: SketchData;
|
|
1460
1473
|
}
|
|
1461
1474
|
declare enum DecorationType {
|
|
1462
1475
|
BOLD = "BOLD",
|
|
@@ -1472,10 +1485,11 @@ declare enum DecorationType {
|
|
|
1472
1485
|
STRIKETHROUGH = "STRIKETHROUGH",
|
|
1473
1486
|
SUPERSCRIPT = "SUPERSCRIPT",
|
|
1474
1487
|
SUBSCRIPT = "SUBSCRIPT",
|
|
1475
|
-
FONT_FAMILY = "FONT_FAMILY"
|
|
1488
|
+
FONT_FAMILY = "FONT_FAMILY",
|
|
1489
|
+
SKETCH = "SKETCH"
|
|
1476
1490
|
}
|
|
1477
1491
|
/** @enumType */
|
|
1478
|
-
type DecorationTypeWithLiterals = DecorationType | 'BOLD' | 'ITALIC' | 'UNDERLINE' | 'SPOILER' | 'ANCHOR' | 'MENTION' | 'LINK' | 'COLOR' | 'FONT_SIZE' | 'EXTERNAL' | 'STRIKETHROUGH' | 'SUPERSCRIPT' | 'SUBSCRIPT' | 'FONT_FAMILY';
|
|
1492
|
+
type DecorationTypeWithLiterals = DecorationType | 'BOLD' | 'ITALIC' | 'UNDERLINE' | 'SPOILER' | 'ANCHOR' | 'MENTION' | 'LINK' | 'COLOR' | 'FONT_SIZE' | 'EXTERNAL' | 'STRIKETHROUGH' | 'SUPERSCRIPT' | 'SUBSCRIPT' | 'FONT_FAMILY' | 'SKETCH';
|
|
1479
1493
|
interface AnchorData {
|
|
1480
1494
|
/** The target node's ID. */
|
|
1481
1495
|
anchor?: string;
|
|
@@ -1518,6 +1532,27 @@ interface FontFamilyData {
|
|
|
1518
1532
|
/** @maxLength 1000 */
|
|
1519
1533
|
value?: string | null;
|
|
1520
1534
|
}
|
|
1535
|
+
interface SketchData {
|
|
1536
|
+
/** The sketch annotation variant to draw over the text. */
|
|
1537
|
+
variant?: VariantWithLiterals;
|
|
1538
|
+
/**
|
|
1539
|
+
* Annotation color. Defaults to the theme action color.
|
|
1540
|
+
* @maxLength 19
|
|
1541
|
+
*/
|
|
1542
|
+
color?: string | null;
|
|
1543
|
+
/** Whether the annotation animates on first paint. Defaults to `true`. */
|
|
1544
|
+
animate?: boolean | null;
|
|
1545
|
+
}
|
|
1546
|
+
declare enum Variant {
|
|
1547
|
+
UNDERLINE = "UNDERLINE",
|
|
1548
|
+
BOX = "BOX",
|
|
1549
|
+
CIRCLE = "CIRCLE",
|
|
1550
|
+
HIGHLIGHT = "HIGHLIGHT",
|
|
1551
|
+
STRIKETHROUGH = "STRIKETHROUGH",
|
|
1552
|
+
CROSSED_OFF = "CROSSED_OFF"
|
|
1553
|
+
}
|
|
1554
|
+
/** @enumType */
|
|
1555
|
+
type VariantWithLiterals = Variant | 'UNDERLINE' | 'BOX' | 'CIRCLE' | 'HIGHLIGHT' | 'STRIKETHROUGH' | 'CROSSED_OFF';
|
|
1521
1556
|
interface AppEmbedData extends AppEmbedDataAppDataOneOf {
|
|
1522
1557
|
/** Data for embedded Wix Bookings content. */
|
|
1523
1558
|
bookingData?: BookingData;
|
|
@@ -2419,10 +2454,18 @@ declare enum SmartBlockDataType {
|
|
|
2419
2454
|
/** Star rating display with stars and a numeric value per cell. */
|
|
2420
2455
|
STAR_RATING = "STAR_RATING",
|
|
2421
2456
|
/** Outlined boxes with decorative quote glyphs at the top-left and bottom-right corners. */
|
|
2422
|
-
QUOTE_BOXES = "QUOTE_BOXES"
|
|
2457
|
+
QUOTE_BOXES = "QUOTE_BOXES",
|
|
2458
|
+
/** Donut/ring with numbered annular-sector segments; cell text labels sit outside the ring. */
|
|
2459
|
+
CIRCLE = "CIRCLE",
|
|
2460
|
+
/** 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. */
|
|
2461
|
+
PYRAMID = "PYRAMID",
|
|
2462
|
+
/** Cells render a horizontal bar whose width scales with cell index, creating a staircase pattern; bar carries the cell number or a custom shape. */
|
|
2463
|
+
STAIRCASE = "STAIRCASE",
|
|
2464
|
+
/** 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. */
|
|
2465
|
+
VERTICAL_FUNNEL = "VERTICAL_FUNNEL"
|
|
2423
2466
|
}
|
|
2424
2467
|
/** @enumType */
|
|
2425
|
-
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';
|
|
2468
|
+
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';
|
|
2426
2469
|
/** Column size controlling how many cells appear per row. */
|
|
2427
2470
|
declare enum ColumnSize {
|
|
2428
2471
|
/** Up to 4 cells in a row. */
|
|
@@ -2469,6 +2512,16 @@ interface SmartBlockCellData {
|
|
|
2469
2512
|
*/
|
|
2470
2513
|
shapeColor?: string | null;
|
|
2471
2514
|
}
|
|
2515
|
+
interface CheckboxListData {
|
|
2516
|
+
/** Indentation level from 0-4. */
|
|
2517
|
+
indentation?: number;
|
|
2518
|
+
/** Offset level from 0-4. */
|
|
2519
|
+
offset?: number | null;
|
|
2520
|
+
}
|
|
2521
|
+
interface ListItemNodeData {
|
|
2522
|
+
/** Checkbox list item state. Defaults to `false`. */
|
|
2523
|
+
checked?: boolean | null;
|
|
2524
|
+
}
|
|
2472
2525
|
interface Metadata {
|
|
2473
2526
|
/** Schema version. */
|
|
2474
2527
|
version?: number;
|
|
@@ -2806,7 +2859,7 @@ interface DomainEvent extends DomainEventBodyOneOf {
|
|
|
2806
2859
|
/** If present, indicates the action that triggered the event. */
|
|
2807
2860
|
originatedFrom?: string | null;
|
|
2808
2861
|
/**
|
|
2809
|
-
* 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
|
|
2862
|
+
* 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.
|
|
2810
2863
|
* 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.
|
|
2811
2864
|
*/
|
|
2812
2865
|
entityEventSequence?: string | null;
|
|
@@ -3728,7 +3781,7 @@ interface EventMetadata extends BaseEventMetadata {
|
|
|
3728
3781
|
/** If present, indicates the action that triggered the event. */
|
|
3729
3782
|
originatedFrom?: string | null;
|
|
3730
3783
|
/**
|
|
3731
|
-
* 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
|
|
3784
|
+
* 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.
|
|
3732
3785
|
* 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.
|
|
3733
3786
|
*/
|
|
3734
3787
|
entityEventSequence?: string | null;
|
|
@@ -4482,4 +4535,4 @@ declare const utils: {
|
|
|
4482
4535
|
*/
|
|
4483
4536
|
declare function publishDraftPost(draftPostId: string): Promise<NonNullablePaths<PublishDraftPostResponse, `postId`, 2>>;
|
|
4484
4537
|
|
|
4485
|
-
export { type AccountInfo, type AccountInfoMetadata, Action, type ActionEvent, type ActionWithLiterals, Alignment, type AlignmentWithLiterals, type AnchorData, type AppEmbedData, type AppEmbedDataAppDataOneOf, AppType, type AppTypeWithLiterals, type ApplicationError, type ApproveDraftPostRequest, type ApproveDraftPostResponse, AspectRatio, type AspectRatioWithLiterals, type AudioData, type Backdrop, BackdropType, type BackdropTypeWithLiterals, type Background, type BackgroundGradient, type BackgroundImage, BackgroundType, type BackgroundTypeWithLiterals, type Banner, BannerOrigin, type BannerOriginWithLiterals, BannerPosition, type BannerPositionWithLiterals, type BaseEventMetadata, type BlockquoteData, type BlogPaging, type BookingData, type Border, type BorderColors, type BorderWidths, type BulkActionMetadata, type BulkCreateDraftPostsOptions, type BulkCreateDraftPostsRequest, type BulkCreateDraftPostsResponse, type BulkDeleteDraftPostsOptions, type BulkDeleteDraftPostsRequest, type BulkDeleteDraftPostsResponse, type BulkDraftPostResult, type BulkRejectDraftPostRequest, type BulkRejectDraftPostResponse, type BulkRevertToUnpublishedRequest, type BulkRevertToUnpublishedResponse, type BulkUpdateDraftPostsOptions, type BulkUpdateDraftPostsRequest, type BulkUpdateDraftPostsResponse, type BulletedListData, type ButtonData, ButtonDataType, type ButtonDataTypeWithLiterals, type ButtonStyles, type CaptionData, type CardData, type CardDataBackground, CardDataBackgroundType, type CardDataBackgroundTypeWithLiterals, type CardStyles, CardStylesType, type CardStylesTypeWithLiterals, type CellStyle, type CodeBlockData, type CollapsibleListData, type ColorData, type Colors, ColumnSize, type ColumnSizeWithLiterals, type CommonQueryWithEntityContext, type CreateDraftPostOptions, type CreateDraftPostRequest, type CreateDraftPostResponse, Crop, type CropWithLiterals, type CursorPaging, type Cursors, type Decoration, type DecorationDataOneOf, DecorationType, type DecorationTypeWithLiterals, type DeleteDraftPostOptions, type DeleteDraftPostRequest, type DeleteDraftPostResponse, type Design, DesignTarget, type DesignTargetWithLiterals, type Dimensions, Direction, type DirectionWithLiterals, type DividerData, DividerDataAlignment, type DividerDataAlignmentWithLiterals, type DocumentStyle, type DomainEvent, type DomainEventBodyOneOf, type DraftCategoriesUpdated, type DraftCreatedEnvelope, type DraftDeletedEnvelope, type DraftPost, type DraftPostCount, type DraftPostOwnerChanged, type DraftPostQuery, type DraftPostQuerySpec, type DraftPostTranslation, type DraftPostsQueryBuilder, type DraftPostsQueryResult, type DraftTagsUpdated, type DraftUpdatedEnvelope, type EmbedData, type EmbedMedia, type EmbedThumbnail, type EmbedVideo, type EntityCreatedEvent, type EntityDeletedEvent, type EntityUpdatedEvent, type EventData, type EventMetadata, Field, type FieldWithLiterals, type FileData, type FileSource, type FileSourceDataOneOf, type FocalPoint, type FontFamilyData, type FontSizeData, FontType, type FontTypeWithLiterals, type GIF, type GIFData, GIFType, type GIFTypeWithLiterals, type GalleryData, type GalleryOptions, type GalleryOptionsLayout, type GetDeletedDraftPostRequest, type GetDeletedDraftPostResponse, type GetDraftPostCountsRequest, type GetDraftPostCountsResponse, type GetDraftPostOptions, type GetDraftPostRequest, type GetDraftPostResponse, type GetDraftPostTotalsRequest, type GetDraftPostTotalsResponse, GetDraftPostsSort, type GetDraftPostsSortWithLiterals, type Gradient, GradientType, type GradientTypeWithLiterals, 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, type InitialDraftPostsCopied, InitialExpandedItems, type InitialExpandedItemsWithLiterals, type IsDraftPostAutoTranslatableRequest, type IsDraftPostAutoTranslatableResponse, type Item, type ItemDataOneOf, type ItemMetadata, type ItemStyle, type Keyword, 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 ListDeletedDraftPostsOptions, type ListDeletedDraftPostsRequest, type ListDeletedDraftPostsResponse, type ListDraftPostsOptions, type ListDraftPostsRequest, type ListDraftPostsResponse, ListStyle, type ListStyleWithLiterals, type ListValue, type MapData, type MapSettings, MapType, type MapTypeWithLiterals, type MarkPostAsInModerationRequest, type MarkPostAsInModerationResponse, type MaskedDraftPosts, type Media, type MediaMediaOneOf, type MentionData, type MessageEnvelope, type MetaData, type Metadata, type ModerationDetails, ModerationStatusStatus, type ModerationStatusStatusWithLiterals, type Node, type NodeDataOneOf, type NodeStyle, NodeType, type NodeTypeWithLiterals, NullValue, type NullValueWithLiterals, type Oembed, type Option, type OptionDesign, type OptionLayout, type OrderedListData, Orientation, type OrientationWithLiterals, Origin, type OriginWithLiterals, type PDFSettings, type Paging, type PagingMetadataV2, type ParagraphData, type Permissions, Placement, type PlacementWithLiterals, type PlatformQuery, type PlatformQueryPagingMethodOneOf, 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 PricingData, type PublishDraftPostRequest, type PublishDraftPostResponse, type QueryDraftPostsOptions, type QueryDraftPostsRequest, type QueryDraftPostsResponse, type RejectDraftPostRequest, type RejectDraftPostResponse, type Rel, type RemoveFromTrashBinRequest, type RemoveFromTrashBinResponse, Resizing, type ResizingWithLiterals, ResponsivenessBehaviour, type ResponsivenessBehaviourWithLiterals, type RestoreFromTrashBinRequest, type RestoreFromTrashBinResponse, type RestoreInfo, type RevertToUnpublishedRequest, type RevertToUnpublishedResponse, type RibbonStyles, type RichContent, Scaling, type ScalingWithLiterals, type SeoSchema, type Settings, type ShapeData, type ShapeDataStyles, type SmartBlockCellData, type SmartBlockData, SmartBlockDataType, type SmartBlockDataTypeWithLiterals, SortOrder, type SortOrderWithLiterals, type Sorting, Source, type SourceWithLiterals, type Spoiler, type SpoilerData, Status, type StatusWithLiterals, type Stop, type Styles, type StylesBorder, StylesPosition, type StylesPositionWithLiterals, type TableCellData, type TableData, type Tag, Target, type TargetWithLiterals, TextAlignment, type TextAlignmentWithLiterals, type TextData, type TextNodeStyle, type TextStyle, type Thumbnails, ThumbnailsAlignment, type ThumbnailsAlignmentWithLiterals, type TocData, type TotalDraftPosts, TotalDraftPostsGroupingField, type TotalDraftPostsGroupingFieldWithLiterals, type TranslateDraftRequest, type TranslateDraftResponse, Type, type TypeWithLiterals, type UnpublishPostRequest, type UnpublishPostResponse, type UpdateDraftPost, type UpdateDraftPostContentRequest, type UpdateDraftPostContentResponse, type UpdateDraftPostLanguageRequest, type UpdateDraftPostLanguageResponse, type UpdateDraftPostOptions, type UpdateDraftPostRequest, type UpdateDraftPostResponse, type V1Media, VerticalAlignment, VerticalAlignmentAlignment, type VerticalAlignmentAlignmentWithLiterals, type VerticalAlignmentWithLiterals, type Video, type VideoData, type VideoResolution, ViewMode, type ViewModeWithLiterals, ViewRole, type ViewRoleWithLiterals, VoteRole, type VoteRoleWithLiterals, WebhookIdentityType, type WebhookIdentityTypeWithLiterals, Width, WidthType, type WidthTypeWithLiterals, type WidthWithLiterals, type WixMedia, bulkCreateDraftPosts, bulkDeleteDraftPosts, bulkUpdateDraftPosts, createDraftPost, deleteDraftPost, getDeletedDraftPost, getDraftPost, listDeletedDraftPosts, listDraftPosts, onDraftCreated, onDraftDeleted, onDraftUpdated, publishDraftPost, queryDraftPosts, removeFromTrashBin, restoreFromTrashBin, typedQueryDraftPosts, updateDraftPost, utils };
|
|
4538
|
+
export { type AccountInfo, type AccountInfoMetadata, Action, type ActionEvent, type ActionWithLiterals, Alignment, type AlignmentWithLiterals, type AnchorData, type AppEmbedData, type AppEmbedDataAppDataOneOf, AppType, type AppTypeWithLiterals, type ApplicationError, type ApproveDraftPostRequest, type ApproveDraftPostResponse, AspectRatio, type AspectRatioWithLiterals, type AudioData, type Backdrop, BackdropType, type BackdropTypeWithLiterals, type Background, type BackgroundGradient, type BackgroundImage, BackgroundType, type BackgroundTypeWithLiterals, type Banner, BannerOrigin, type BannerOriginWithLiterals, BannerPosition, type BannerPositionWithLiterals, type BaseEventMetadata, type BlockquoteData, type BlogPaging, type BookingData, type Border, type BorderColors, type BorderWidths, type BulkActionMetadata, type BulkCreateDraftPostsOptions, type BulkCreateDraftPostsRequest, type BulkCreateDraftPostsResponse, type BulkDeleteDraftPostsOptions, type BulkDeleteDraftPostsRequest, type BulkDeleteDraftPostsResponse, type BulkDraftPostResult, type BulkRejectDraftPostRequest, type BulkRejectDraftPostResponse, type BulkRevertToUnpublishedRequest, type BulkRevertToUnpublishedResponse, type BulkUpdateDraftPostsOptions, type BulkUpdateDraftPostsRequest, type BulkUpdateDraftPostsResponse, type BulletedListData, type ButtonData, ButtonDataType, type ButtonDataTypeWithLiterals, type ButtonStyles, type CaptionData, type CardData, type CardDataBackground, CardDataBackgroundType, type CardDataBackgroundTypeWithLiterals, type CardStyles, CardStylesType, type CardStylesTypeWithLiterals, type CellStyle, type CheckboxListData, type CodeBlockData, type CollapsibleListData, type ColorData, type Colors, ColumnSize, type ColumnSizeWithLiterals, type CommonQueryWithEntityContext, type CreateDraftPostOptions, type CreateDraftPostRequest, type CreateDraftPostResponse, Crop, type CropWithLiterals, type CursorPaging, type Cursors, type Decoration, type DecorationDataOneOf, DecorationType, type DecorationTypeWithLiterals, type DeleteDraftPostOptions, type DeleteDraftPostRequest, type DeleteDraftPostResponse, type Design, DesignTarget, type DesignTargetWithLiterals, type Dimensions, Direction, type DirectionWithLiterals, type DividerData, DividerDataAlignment, type DividerDataAlignmentWithLiterals, type DocumentStyle, type DomainEvent, type DomainEventBodyOneOf, type DraftCategoriesUpdated, type DraftCreatedEnvelope, type DraftDeletedEnvelope, type DraftPost, type DraftPostCount, type DraftPostOwnerChanged, type DraftPostQuery, type DraftPostQuerySpec, type DraftPostTranslation, type DraftPostsQueryBuilder, type DraftPostsQueryResult, type DraftTagsUpdated, type DraftUpdatedEnvelope, type EmbedData, type EmbedMedia, type EmbedThumbnail, type EmbedVideo, type EntityCreatedEvent, type EntityDeletedEvent, type EntityUpdatedEvent, type EventData, type EventMetadata, Field, type FieldWithLiterals, type FileData, type FileSource, type FileSourceDataOneOf, type FocalPoint, type FontFamilyData, type FontSizeData, FontType, type FontTypeWithLiterals, type GIF, type GIFData, GIFType, type GIFTypeWithLiterals, type GalleryData, type GalleryOptions, type GalleryOptionsLayout, type GetDeletedDraftPostRequest, type GetDeletedDraftPostResponse, type GetDraftPostCountsRequest, type GetDraftPostCountsResponse, type GetDraftPostOptions, type GetDraftPostRequest, type GetDraftPostResponse, type GetDraftPostTotalsRequest, type GetDraftPostTotalsResponse, GetDraftPostsSort, type GetDraftPostsSortWithLiterals, type Gradient, GradientType, type GradientTypeWithLiterals, 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, type InitialDraftPostsCopied, InitialExpandedItems, type InitialExpandedItemsWithLiterals, type IsDraftPostAutoTranslatableRequest, type IsDraftPostAutoTranslatableResponse, type Item, type ItemDataOneOf, type ItemMetadata, type ItemStyle, type Keyword, 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 ListDeletedDraftPostsOptions, type ListDeletedDraftPostsRequest, type ListDeletedDraftPostsResponse, type ListDraftPostsOptions, type ListDraftPostsRequest, type ListDraftPostsResponse, type ListItemNodeData, ListStyle, type ListStyleWithLiterals, type ListValue, type MapData, type MapSettings, MapType, type MapTypeWithLiterals, type MarkPostAsInModerationRequest, type MarkPostAsInModerationResponse, type MaskedDraftPosts, type Media, type MediaMediaOneOf, type MentionData, type MessageEnvelope, type MetaData, type Metadata, type ModerationDetails, ModerationStatusStatus, type ModerationStatusStatusWithLiterals, type Node, type NodeDataOneOf, type NodeStyle, NodeType, type NodeTypeWithLiterals, NullValue, type NullValueWithLiterals, type Oembed, type Option, type OptionDesign, type OptionLayout, type OrderedListData, Orientation, type OrientationWithLiterals, Origin, type OriginWithLiterals, type PDFSettings, type Paging, type PagingMetadataV2, type ParagraphData, type Permissions, Placement, type PlacementWithLiterals, type PlatformQuery, type PlatformQueryPagingMethodOneOf, 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 PricingData, type PublishDraftPostRequest, type PublishDraftPostResponse, type QueryDraftPostsOptions, type QueryDraftPostsRequest, type QueryDraftPostsResponse, type RejectDraftPostRequest, type RejectDraftPostResponse, type Rel, type RemoveFromTrashBinRequest, type RemoveFromTrashBinResponse, Resizing, type ResizingWithLiterals, ResponsivenessBehaviour, type ResponsivenessBehaviourWithLiterals, type RestoreFromTrashBinRequest, type RestoreFromTrashBinResponse, type RestoreInfo, type RevertToUnpublishedRequest, type RevertToUnpublishedResponse, type RibbonStyles, type RichContent, Scaling, type ScalingWithLiterals, type SeoSchema, type Settings, type ShapeData, type ShapeDataStyles, type SketchData, type SmartBlockCellData, type SmartBlockData, SmartBlockDataType, type SmartBlockDataTypeWithLiterals, SortOrder, type SortOrderWithLiterals, type Sorting, Source, type SourceWithLiterals, type Spoiler, type SpoilerData, Status, type StatusWithLiterals, type Stop, type Styles, type StylesBorder, StylesPosition, type StylesPositionWithLiterals, type TableCellData, type TableData, type Tag, Target, type TargetWithLiterals, TextAlignment, type TextAlignmentWithLiterals, type TextData, type TextNodeStyle, type TextStyle, type Thumbnails, ThumbnailsAlignment, type ThumbnailsAlignmentWithLiterals, type TocData, type TotalDraftPosts, TotalDraftPostsGroupingField, type TotalDraftPostsGroupingFieldWithLiterals, type TranslateDraftRequest, type TranslateDraftResponse, Type, type TypeWithLiterals, type UnpublishPostRequest, type UnpublishPostResponse, type UpdateDraftPost, type UpdateDraftPostContentRequest, type UpdateDraftPostContentResponse, type UpdateDraftPostLanguageRequest, type UpdateDraftPostLanguageResponse, type UpdateDraftPostOptions, type UpdateDraftPostRequest, type UpdateDraftPostResponse, type V1Media, Variant, type VariantWithLiterals, VerticalAlignment, VerticalAlignmentAlignment, type VerticalAlignmentAlignmentWithLiterals, type VerticalAlignmentWithLiterals, type Video, type VideoData, type VideoResolution, ViewMode, type ViewModeWithLiterals, ViewRole, type ViewRoleWithLiterals, VoteRole, type VoteRoleWithLiterals, WebhookIdentityType, type WebhookIdentityTypeWithLiterals, Width, WidthType, type WidthTypeWithLiterals, type WidthWithLiterals, type WixMedia, bulkCreateDraftPosts, bulkDeleteDraftPosts, bulkUpdateDraftPosts, createDraftPost, deleteDraftPost, getDeletedDraftPost, getDraftPost, listDeletedDraftPosts, listDraftPosts, onDraftCreated, onDraftDeleted, onDraftUpdated, publishDraftPost, queryDraftPosts, removeFromTrashBin, restoreFromTrashBin, typedQueryDraftPosts, updateDraftPost, utils };
|
|
@@ -2698,6 +2698,7 @@ var NodeType = /* @__PURE__ */ ((NodeType2) => {
|
|
|
2698
2698
|
NodeType2["TOC"] = "TOC";
|
|
2699
2699
|
NodeType2["SMART_BLOCK"] = "SMART_BLOCK";
|
|
2700
2700
|
NodeType2["SMART_BLOCK_CELL"] = "SMART_BLOCK_CELL";
|
|
2701
|
+
NodeType2["CHECKBOX_LIST"] = "CHECKBOX_LIST";
|
|
2701
2702
|
return NodeType2;
|
|
2702
2703
|
})(NodeType || {});
|
|
2703
2704
|
var BackgroundType = /* @__PURE__ */ ((BackgroundType2) => {
|
|
@@ -2867,6 +2868,7 @@ var DecorationType = /* @__PURE__ */ ((DecorationType2) => {
|
|
|
2867
2868
|
DecorationType2["SUPERSCRIPT"] = "SUPERSCRIPT";
|
|
2868
2869
|
DecorationType2["SUBSCRIPT"] = "SUBSCRIPT";
|
|
2869
2870
|
DecorationType2["FONT_FAMILY"] = "FONT_FAMILY";
|
|
2871
|
+
DecorationType2["SKETCH"] = "SKETCH";
|
|
2870
2872
|
return DecorationType2;
|
|
2871
2873
|
})(DecorationType || {});
|
|
2872
2874
|
var FontType = /* @__PURE__ */ ((FontType2) => {
|
|
@@ -2874,6 +2876,15 @@ var FontType = /* @__PURE__ */ ((FontType2) => {
|
|
|
2874
2876
|
FontType2["EM"] = "EM";
|
|
2875
2877
|
return FontType2;
|
|
2876
2878
|
})(FontType || {});
|
|
2879
|
+
var Variant = /* @__PURE__ */ ((Variant2) => {
|
|
2880
|
+
Variant2["UNDERLINE"] = "UNDERLINE";
|
|
2881
|
+
Variant2["BOX"] = "BOX";
|
|
2882
|
+
Variant2["CIRCLE"] = "CIRCLE";
|
|
2883
|
+
Variant2["HIGHLIGHT"] = "HIGHLIGHT";
|
|
2884
|
+
Variant2["STRIKETHROUGH"] = "STRIKETHROUGH";
|
|
2885
|
+
Variant2["CROSSED_OFF"] = "CROSSED_OFF";
|
|
2886
|
+
return Variant2;
|
|
2887
|
+
})(Variant || {});
|
|
2877
2888
|
var Position = /* @__PURE__ */ ((Position2) => {
|
|
2878
2889
|
Position2["START"] = "START";
|
|
2879
2890
|
Position2["END"] = "END";
|
|
@@ -3050,6 +3061,10 @@ var SmartBlockDataType = /* @__PURE__ */ ((SmartBlockDataType2) => {
|
|
|
3050
3061
|
SmartBlockDataType2["PILLS"] = "PILLS";
|
|
3051
3062
|
SmartBlockDataType2["STAR_RATING"] = "STAR_RATING";
|
|
3052
3063
|
SmartBlockDataType2["QUOTE_BOXES"] = "QUOTE_BOXES";
|
|
3064
|
+
SmartBlockDataType2["CIRCLE"] = "CIRCLE";
|
|
3065
|
+
SmartBlockDataType2["PYRAMID"] = "PYRAMID";
|
|
3066
|
+
SmartBlockDataType2["STAIRCASE"] = "STAIRCASE";
|
|
3067
|
+
SmartBlockDataType2["VERTICAL_FUNNEL"] = "VERTICAL_FUNNEL";
|
|
3053
3068
|
return SmartBlockDataType2;
|
|
3054
3069
|
})(SmartBlockDataType || {});
|
|
3055
3070
|
var ColumnSize = /* @__PURE__ */ ((ColumnSize2) => {
|
|
@@ -4018,6 +4033,7 @@ export {
|
|
|
4018
4033
|
ThumbnailsAlignment,
|
|
4019
4034
|
TotalDraftPostsGroupingField,
|
|
4020
4035
|
Type,
|
|
4036
|
+
Variant,
|
|
4021
4037
|
VerticalAlignment,
|
|
4022
4038
|
VerticalAlignmentAlignment,
|
|
4023
4039
|
ViewMode,
|