@wix/auto_sdk_blog_draft-posts 1.0.85 → 1.0.87

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (37) hide show
  1. package/build/cjs/index.d.ts +1 -1
  2. package/build/cjs/index.js +10 -0
  3. package/build/cjs/index.js.map +1 -1
  4. package/build/cjs/index.typings.d.ts +115 -78
  5. package/build/cjs/index.typings.js +10 -0
  6. package/build/cjs/index.typings.js.map +1 -1
  7. package/build/cjs/meta.d.ts +117 -80
  8. package/build/cjs/meta.js +10 -0
  9. package/build/cjs/meta.js.map +1 -1
  10. package/build/es/index.d.mts +1 -1
  11. package/build/es/index.mjs +10 -0
  12. package/build/es/index.mjs.map +1 -1
  13. package/build/es/index.typings.d.mts +115 -78
  14. package/build/es/index.typings.mjs +10 -0
  15. package/build/es/index.typings.mjs.map +1 -1
  16. package/build/es/meta.d.mts +117 -80
  17. package/build/es/meta.mjs +10 -0
  18. package/build/es/meta.mjs.map +1 -1
  19. package/build/internal/cjs/index.d.ts +1 -1
  20. package/build/internal/cjs/index.js +10 -0
  21. package/build/internal/cjs/index.js.map +1 -1
  22. package/build/internal/cjs/index.typings.d.ts +115 -78
  23. package/build/internal/cjs/index.typings.js +10 -0
  24. package/build/internal/cjs/index.typings.js.map +1 -1
  25. package/build/internal/cjs/meta.d.ts +117 -80
  26. package/build/internal/cjs/meta.js +10 -0
  27. package/build/internal/cjs/meta.js.map +1 -1
  28. package/build/internal/es/index.d.mts +1 -1
  29. package/build/internal/es/index.mjs +10 -0
  30. package/build/internal/es/index.mjs.map +1 -1
  31. package/build/internal/es/index.typings.d.mts +115 -78
  32. package/build/internal/es/index.typings.mjs +10 -0
  33. package/build/internal/es/index.typings.mjs.map +1 -1
  34. package/build/internal/es/meta.d.mts +117 -80
  35. package/build/internal/es/meta.mjs +10 -0
  36. package/build/internal/es/meta.mjs.map +1 -1
  37. 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;
@@ -2409,10 +2418,28 @@ declare enum SmartBlockDataType {
2409
2418
  /** Process steps with numbered/icon labels above a horizontal line. */
2410
2419
  PROCESS_STEPS = "PROCESS_STEPS",
2411
2420
  /** Statistics with bar visual elements. */
2412
- BAR_STATS = "BAR_STATS"
2421
+ BAR_STATS = "BAR_STATS",
2422
+ /** Timeline layout with numbered chips on a connecting line; cells alternate around the line. */
2423
+ TIMELINE = "TIMELINE",
2424
+ /** Timeline layout with plain dot indicators; no numbers or shapes; cells alternate around the line. */
2425
+ MINIMAL_TIMELINE = "MINIMAL_TIMELINE",
2426
+ /** Numbered pill-shaped labels (stadium chips) with text content; supports HORIZONTAL (pill on top) and VERTICAL (pill on left) orientations. */
2427
+ PILLS = "PILLS",
2428
+ /** Star rating display with stars and a numeric value per cell. */
2429
+ STAR_RATING = "STAR_RATING",
2430
+ /** Outlined boxes with decorative quote glyphs at the top-left and bottom-right corners. */
2431
+ QUOTE_BOXES = "QUOTE_BOXES",
2432
+ /** Donut/ring with numbered annular-sector segments; cell text labels sit outside the ring. */
2433
+ CIRCLE = "CIRCLE",
2434
+ /** 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. */
2435
+ PYRAMID = "PYRAMID",
2436
+ /** Cells render a horizontal bar whose width scales with cell index, creating a staircase pattern; bar carries the cell number or a custom shape. */
2437
+ STAIRCASE = "STAIRCASE",
2438
+ /** 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. */
2439
+ VERTICAL_FUNNEL = "VERTICAL_FUNNEL"
2413
2440
  }
2414
2441
  /** @enumType */
2415
- 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';
2442
+ 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';
2416
2443
  /** Column size controlling how many cells appear per row. */
2417
2444
  declare enum ColumnSize {
2418
2445
  /** Up to 4 cells in a row. */
@@ -2459,6 +2486,16 @@ interface SmartBlockCellData {
2459
2486
  */
2460
2487
  shapeColor?: string | null;
2461
2488
  }
2489
+ interface CheckboxListData {
2490
+ /** Indentation level from 0-4. */
2491
+ indentation?: number;
2492
+ /** Offset level from 0-4. */
2493
+ offset?: number | null;
2494
+ }
2495
+ interface ListItemNodeData {
2496
+ /** Checkbox list item state. Defaults to `false`. */
2497
+ checked?: boolean | null;
2498
+ }
2462
2499
  interface Metadata {
2463
2500
  /** Schema version. */
2464
2501
  version?: number;
@@ -3493,6 +3530,79 @@ interface DraftPostCount {
3493
3530
  /** Number of posts. */
3494
3531
  postCount?: number;
3495
3532
  }
3533
+ interface TranslateDraftRequest {
3534
+ /**
3535
+ * Source post or draft ID
3536
+ * @format GUID
3537
+ */
3538
+ postId?: string;
3539
+ /**
3540
+ * Translation language
3541
+ * @format LANGUAGE_TAG
3542
+ */
3543
+ language?: string;
3544
+ /**
3545
+ * List of draft post fields to be included if entities are present in the response.
3546
+ * Base fieldset, which is default, will return all core draft post properties.
3547
+ * Example: When URL fieldset is selected, returned draft post will have a set of base properties and draft post preview url.
3548
+ * @maxSize 10
3549
+ */
3550
+ fieldsets?: FieldWithLiterals[];
3551
+ }
3552
+ interface TranslateDraftResponse {
3553
+ /** Draft post. */
3554
+ draftPost?: DraftPost;
3555
+ }
3556
+ interface IsDraftPostAutoTranslatableRequest {
3557
+ /**
3558
+ * Source post or draft ID.
3559
+ * @format GUID
3560
+ */
3561
+ draftPostId?: string;
3562
+ }
3563
+ interface IsDraftPostAutoTranslatableResponse {
3564
+ /**
3565
+ * Source draft post ID.
3566
+ * @format GUID
3567
+ */
3568
+ draftPostId?: string;
3569
+ /** Indicates if enough machine translation credits are available for the draft post translation. */
3570
+ translatable?: boolean;
3571
+ /** Draft post title word count. */
3572
+ titleWordCount?: number;
3573
+ /** Draft post content word count. */
3574
+ contentWordCount?: number;
3575
+ /** Word credits available for auto translation. */
3576
+ availableAutoTranslateWords?: number;
3577
+ /** Word credits available after auto translation would be done. */
3578
+ availableAutoTranslateWordsAfter?: number;
3579
+ /** Content text character count. */
3580
+ contentTextCharacterCount?: number;
3581
+ }
3582
+ interface UpdateDraftPostLanguageRequest {
3583
+ /**
3584
+ * Source draft post ID
3585
+ * @format GUID
3586
+ */
3587
+ postId?: string;
3588
+ /**
3589
+ * New language to replace to
3590
+ * @minLength 2
3591
+ * @format LANGUAGE_TAG
3592
+ */
3593
+ language?: string;
3594
+ /**
3595
+ * List of draft post fields to be included if entities are present in the response.
3596
+ * Base fieldset, which is default, will return all core draft post properties.
3597
+ * Example: When URL fieldset is selected, returned draft post will have a set of base properties and draft post preview url.
3598
+ * @maxSize 10
3599
+ */
3600
+ fieldsets?: FieldWithLiterals[];
3601
+ }
3602
+ interface UpdateDraftPostLanguageResponse {
3603
+ /** Draft post */
3604
+ draftPost?: DraftPost;
3605
+ }
3496
3606
  interface BulkRevertToUnpublishedRequest {
3497
3607
  /**
3498
3608
  * Source post IDs.
@@ -3604,79 +3714,6 @@ interface MarkPostAsInModerationResponse {
3604
3714
  /** Updated post draft. */
3605
3715
  draftPost?: DraftPost;
3606
3716
  }
3607
- interface TranslateDraftRequest {
3608
- /**
3609
- * Source post or draft ID
3610
- * @format GUID
3611
- */
3612
- postId?: string;
3613
- /**
3614
- * Translation language
3615
- * @format LANGUAGE_TAG
3616
- */
3617
- language?: string;
3618
- /**
3619
- * List of draft post fields to be included if entities are present in the response.
3620
- * Base fieldset, which is default, will return all core draft post properties.
3621
- * Example: When URL fieldset is selected, returned draft post will have a set of base properties and draft post preview url.
3622
- * @maxSize 10
3623
- */
3624
- fieldsets?: FieldWithLiterals[];
3625
- }
3626
- interface TranslateDraftResponse {
3627
- /** Draft post. */
3628
- draftPost?: DraftPost;
3629
- }
3630
- interface IsDraftPostAutoTranslatableRequest {
3631
- /**
3632
- * Source post or draft ID.
3633
- * @format GUID
3634
- */
3635
- draftPostId?: string;
3636
- }
3637
- interface IsDraftPostAutoTranslatableResponse {
3638
- /**
3639
- * Source draft post ID.
3640
- * @format GUID
3641
- */
3642
- draftPostId?: string;
3643
- /** Indicates if enough machine translation credits are available for the draft post translation. */
3644
- translatable?: boolean;
3645
- /** Draft post title word count. */
3646
- titleWordCount?: number;
3647
- /** Draft post content word count. */
3648
- contentWordCount?: number;
3649
- /** Word credits available for auto translation. */
3650
- availableAutoTranslateWords?: number;
3651
- /** Word credits available after auto translation would be done. */
3652
- availableAutoTranslateWordsAfter?: number;
3653
- /** Content text character count. */
3654
- contentTextCharacterCount?: number;
3655
- }
3656
- interface UpdateDraftPostLanguageRequest {
3657
- /**
3658
- * Source draft post ID
3659
- * @format GUID
3660
- */
3661
- postId?: string;
3662
- /**
3663
- * New language to replace to
3664
- * @minLength 2
3665
- * @format LANGUAGE_TAG
3666
- */
3667
- language?: string;
3668
- /**
3669
- * List of draft post fields to be included if entities are present in the response.
3670
- * Base fieldset, which is default, will return all core draft post properties.
3671
- * Example: When URL fieldset is selected, returned draft post will have a set of base properties and draft post preview url.
3672
- * @maxSize 10
3673
- */
3674
- fieldsets?: FieldWithLiterals[];
3675
- }
3676
- interface UpdateDraftPostLanguageResponse {
3677
- /** Draft post */
3678
- draftPost?: DraftPost;
3679
- }
3680
3717
  interface BaseEventMetadata {
3681
3718
  /**
3682
3719
  * App instance ID.
@@ -4472,4 +4509,4 @@ declare const utils: {
4472
4509
  */
4473
4510
  declare function publishDraftPost(draftPostId: string): Promise<NonNullablePaths<PublishDraftPostResponse, `postId`, 2>>;
4474
4511
 
4475
- 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 };
4512
+ 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 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 };
@@ -2801,6 +2801,7 @@ var NodeType = /* @__PURE__ */ ((NodeType2) => {
2801
2801
  NodeType2["TOC"] = "TOC";
2802
2802
  NodeType2["SMART_BLOCK"] = "SMART_BLOCK";
2803
2803
  NodeType2["SMART_BLOCK_CELL"] = "SMART_BLOCK_CELL";
2804
+ NodeType2["CHECKBOX_LIST"] = "CHECKBOX_LIST";
2804
2805
  return NodeType2;
2805
2806
  })(NodeType || {});
2806
2807
  var BackgroundType = /* @__PURE__ */ ((BackgroundType2) => {
@@ -3148,6 +3149,15 @@ var SmartBlockDataType = /* @__PURE__ */ ((SmartBlockDataType2) => {
3148
3149
  SmartBlockDataType2["ARROW_BULLETS"] = "ARROW_BULLETS";
3149
3150
  SmartBlockDataType2["PROCESS_STEPS"] = "PROCESS_STEPS";
3150
3151
  SmartBlockDataType2["BAR_STATS"] = "BAR_STATS";
3152
+ SmartBlockDataType2["TIMELINE"] = "TIMELINE";
3153
+ SmartBlockDataType2["MINIMAL_TIMELINE"] = "MINIMAL_TIMELINE";
3154
+ SmartBlockDataType2["PILLS"] = "PILLS";
3155
+ SmartBlockDataType2["STAR_RATING"] = "STAR_RATING";
3156
+ SmartBlockDataType2["QUOTE_BOXES"] = "QUOTE_BOXES";
3157
+ SmartBlockDataType2["CIRCLE"] = "CIRCLE";
3158
+ SmartBlockDataType2["PYRAMID"] = "PYRAMID";
3159
+ SmartBlockDataType2["STAIRCASE"] = "STAIRCASE";
3160
+ SmartBlockDataType2["VERTICAL_FUNNEL"] = "VERTICAL_FUNNEL";
3151
3161
  return SmartBlockDataType2;
3152
3162
  })(SmartBlockDataType || {});
3153
3163
  var ColumnSize = /* @__PURE__ */ ((ColumnSize2) => {