@wix/auto_sdk_blog_draft-posts 1.0.94 → 1.0.96

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 (45) hide show
  1. package/build/cjs/index.d.ts +1 -1
  2. package/build/cjs/index.js +45 -10
  3. package/build/cjs/index.js.map +1 -1
  4. package/build/cjs/index.typings.d.ts +107 -7
  5. package/build/cjs/index.typings.js +38 -3
  6. package/build/cjs/index.typings.js.map +1 -1
  7. package/build/cjs/meta.d.ts +106 -2
  8. package/build/cjs/meta.js +37 -0
  9. package/build/cjs/meta.js.map +1 -1
  10. package/build/cjs/schemas.js +28 -28
  11. package/build/cjs/schemas.js.map +1 -1
  12. package/build/es/index.d.mts +1 -1
  13. package/build/es/index.mjs +43 -10
  14. package/build/es/index.mjs.map +1 -1
  15. package/build/es/index.typings.d.mts +107 -7
  16. package/build/es/index.typings.mjs +36 -3
  17. package/build/es/index.typings.mjs.map +1 -1
  18. package/build/es/meta.d.mts +106 -2
  19. package/build/es/meta.mjs +35 -0
  20. package/build/es/meta.mjs.map +1 -1
  21. package/build/es/schemas.mjs +28 -28
  22. package/build/es/schemas.mjs.map +1 -1
  23. package/build/internal/cjs/index.d.ts +1 -1
  24. package/build/internal/cjs/index.js +45 -10
  25. package/build/internal/cjs/index.js.map +1 -1
  26. package/build/internal/cjs/index.typings.d.ts +107 -7
  27. package/build/internal/cjs/index.typings.js +38 -3
  28. package/build/internal/cjs/index.typings.js.map +1 -1
  29. package/build/internal/cjs/meta.d.ts +106 -2
  30. package/build/internal/cjs/meta.js +37 -0
  31. package/build/internal/cjs/meta.js.map +1 -1
  32. package/build/internal/cjs/schemas.js +28 -28
  33. package/build/internal/cjs/schemas.js.map +1 -1
  34. package/build/internal/es/index.d.mts +1 -1
  35. package/build/internal/es/index.mjs +43 -10
  36. package/build/internal/es/index.mjs.map +1 -1
  37. package/build/internal/es/index.typings.d.mts +107 -7
  38. package/build/internal/es/index.typings.mjs +36 -3
  39. package/build/internal/es/index.typings.mjs.map +1 -1
  40. package/build/internal/es/meta.d.mts +106 -2
  41. package/build/internal/es/meta.mjs +35 -0
  42. package/build/internal/es/meta.mjs.map +1 -1
  43. package/build/internal/es/schemas.mjs +28 -28
  44. package/build/internal/es/schemas.mjs.map +1 -1
  45. package/package.json +2 -2
@@ -798,7 +798,7 @@ interface Animation {
798
798
  /**
799
799
  * POINTER carries its fields directly on the union member in the JTD wall, hence
800
800
  * flat fields here (ts-proto camelCase must equal the JTD property names). A future
801
- * SCROLL variant will contend for the `effect` JSON name resolve when it lands.
801
+ * kind that also needs an `effect` field would contend for this JSON name.
802
802
  */
803
803
  effect?: PointerEffect;
804
804
  /** How quickly the node settles toward the pointer, in milliseconds (POINTER). */
@@ -2470,6 +2470,10 @@ interface LayoutData {
2470
2470
  backdrop?: Backdrop;
2471
2471
  /** Node animation. */
2472
2472
  animation?: Animation;
2473
+ /** Shape divider at the top edge of the layout. */
2474
+ topDivider?: SectionDivider;
2475
+ /** Shape divider at the bottom edge of the layout. */
2476
+ bottomDivider?: SectionDivider;
2473
2477
  }
2474
2478
  declare enum ImageScalingScaling {
2475
2479
  /** Auto image scaling */
@@ -2540,6 +2544,81 @@ declare enum BannerPosition {
2540
2544
  }
2541
2545
  /** @enumType */
2542
2546
  type BannerPositionWithLiterals = BannerPosition | 'TOP' | 'BOTTOM';
2547
+ /** How the stacked layers fade relative to the base shape. Named for a bottom divider; top dividers render mirrored, so the visual fade flips. */
2548
+ declare enum LayerEffect {
2549
+ /** Shape keeps its height, a solid filler bar pushes it away from the edge */
2550
+ CENTER = "CENTER",
2551
+ /** Deeper (more transparent) layers shrink toward the edge inside the original band while a solid filler bar keeps its full height, so the faded copies hug the top of the band */
2552
+ FADE_TO_TOP = "FADE_TO_TOP",
2553
+ /** Deeper (more transparent) layers stretch taller into the section, so the faded copies fan out above the base shape and descend to the layout edge */
2554
+ FADE_TO_BOTTOM = "FADE_TO_BOTTOM"
2555
+ }
2556
+ /** @enumType */
2557
+ type LayerEffectWithLiterals = LayerEffect | 'CENTER' | 'FADE_TO_TOP' | 'FADE_TO_BOTTOM';
2558
+ /** Divider shape preset */
2559
+ declare enum Shape {
2560
+ /** Ellipse shape */
2561
+ ELLIPSE = "ELLIPSE",
2562
+ /** Tilt shape */
2563
+ TILT = "TILT",
2564
+ /** Liquid shape */
2565
+ LIQUID = "LIQUID",
2566
+ /** Left wave shape */
2567
+ LEFT_WAVE = "LEFT_WAVE",
2568
+ /** Paint scribble shape */
2569
+ PAINT_SCRIBBLE = "PAINT_SCRIBBLE",
2570
+ /** Inverted ellipse shape */
2571
+ INVERTED_ELLIPSE = "INVERTED_ELLIPSE",
2572
+ /** Right wave shape */
2573
+ RIGHT_WAVE = "RIGHT_WAVE",
2574
+ /** Dunes shape */
2575
+ DUNES = "DUNES",
2576
+ /** Waves shape */
2577
+ WAVES = "WAVES",
2578
+ /** Triangle shape */
2579
+ TRIANGLE = "TRIANGLE",
2580
+ /** Semi-ellipse shape */
2581
+ SEMI_ELLIPSE = "SEMI_ELLIPSE",
2582
+ /** Plants shape */
2583
+ PLANTS = "PLANTS",
2584
+ /** Layered ellipse shape */
2585
+ LAYERED_ELLIPSE = "LAYERED_ELLIPSE",
2586
+ /** Pixels shape */
2587
+ PIXELS = "PIXELS",
2588
+ /** Paint shape */
2589
+ PAINT = "PAINT",
2590
+ /** Clouds shape */
2591
+ CLOUDS = "CLOUDS",
2592
+ /** Optical illusion shape */
2593
+ OPTICAL_ILLUSION = "OPTICAL_ILLUSION",
2594
+ /** Stripes shape */
2595
+ STRIPES = "STRIPES",
2596
+ /** Blobs shape */
2597
+ BLOBS = "BLOBS",
2598
+ /** Semi-circles shape */
2599
+ SEMI_CIRCLES = "SEMI_CIRCLES",
2600
+ /** Hill shape */
2601
+ HILL = "HILL",
2602
+ /** Brush shape */
2603
+ BRUSH = "BRUSH",
2604
+ /** Peaks shape */
2605
+ PEAKS = "PEAKS",
2606
+ /** Angled triangle shape */
2607
+ ANGLED_TRIANGLE = "ANGLED_TRIANGLE"
2608
+ }
2609
+ /** @enumType */
2610
+ type ShapeWithLiterals = Shape | 'ELLIPSE' | 'TILT' | 'LIQUID' | 'LEFT_WAVE' | 'PAINT_SCRIBBLE' | 'INVERTED_ELLIPSE' | 'RIGHT_WAVE' | 'DUNES' | 'WAVES' | 'TRIANGLE' | 'SEMI_ELLIPSE' | 'PLANTS' | 'LAYERED_ELLIPSE' | 'PIXELS' | 'PAINT' | 'CLOUDS' | 'OPTICAL_ILLUSION' | 'STRIPES' | 'BLOBS' | 'SEMI_CIRCLES' | 'HILL' | 'BRUSH' | 'PEAKS' | 'ANGLED_TRIANGLE';
2611
+ /** Layers effect - stacked semi-transparent copies of the divider shape */
2612
+ interface Layers {
2613
+ /** Total number of layers including the base shape (1-4). Absent or 1 disables the effect. */
2614
+ count?: number | null;
2615
+ /** Vertical distance in pixels between the silhouettes of consecutive layers: each successive layer's silhouette is offset from the previous one by this amount. The divider's own `height` is unchanged. Defaults to 20. */
2616
+ offsetY?: number | null;
2617
+ /** How the stacked layers fade relative to the base shape. */
2618
+ layerEffect?: LayerEffectWithLiterals;
2619
+ /** Horizontal distance between consecutive layers in pixels. Defaults to 0. Only applies to shapes that support horizontal offset. */
2620
+ offsetX?: number | null;
2621
+ }
2543
2622
  /** Backdrop type */
2544
2623
  declare enum BackdropType {
2545
2624
  /** Solid color backdrop */
@@ -2610,6 +2689,24 @@ interface Backdrop {
2610
2689
  /** Gradient configuration. */
2611
2690
  gradient?: Gradient;
2612
2691
  }
2692
+ /** Decorative shape divider at a layout edge */
2693
+ interface SectionDivider {
2694
+ /** Divider shape preset. Determines which customization properties apply. */
2695
+ type?: ShapeWithLiterals;
2696
+ /**
2697
+ * Divider fill color as a hexadecimal value (may include alpha).
2698
+ * @maxLength 19
2699
+ */
2700
+ color?: string | null;
2701
+ /** Divider height in pixels. */
2702
+ height?: number | null;
2703
+ /** Horizontal offset in pixels. */
2704
+ offsetX?: number | null;
2705
+ /** Whether the shape is flipped horizontally. */
2706
+ flipped?: boolean | null;
2707
+ /** Layers effect - stacked semi-transparent copies of the divider shape. */
2708
+ layers?: Layers;
2709
+ }
2613
2710
  interface LayoutCellData {
2614
2711
  /** Size of the cell in 12 columns grid. */
2615
2712
  colSpan?: number | null;
@@ -2623,6 +2720,13 @@ interface ShapeData {
2623
2720
  styles?: ShapeDataStyles;
2624
2721
  /** Node animation. */
2625
2722
  animation?: Animation;
2723
+ /** Link details for shapes that are links. */
2724
+ link?: Link;
2725
+ /**
2726
+ * Alternate text describing the link's purpose for accessibility. Applies only when `link` is set.
2727
+ * @maxLength 1000
2728
+ */
2729
+ altText?: string | null;
2626
2730
  }
2627
2731
  interface ShapeDataStyles {
2628
2732
  /**
@@ -5166,11 +5270,7 @@ type DraftPostQuery = {
5166
5270
  }[];
5167
5271
  };
5168
5272
  declare const utils: {
5169
- query: {
5170
- QueryBuilder: () => _wix_sdk_types.QueryBuilder<DraftPost, DraftPostQuerySpec, DraftPostQuery>;
5171
- Filter: _wix_sdk_types.FilterFactory<DraftPost, DraftPostQuerySpec>;
5172
- Sort: _wix_sdk_types.SortFactory<DraftPostQuerySpec>;
5173
- };
5273
+ query: _wix_sdk_types.QueryHelpers<DraftPost, DraftPostQuerySpec, DraftPostQuery>;
5174
5274
  };
5175
5275
  /**
5176
5276
  * Publishes a draft post by ID. This creates a new [post](https://dev.wix.com/docs/rest/business-solutions/blog/posts-stats/post-object)
@@ -5187,4 +5287,4 @@ declare const utils: {
5187
5287
  */
5188
5288
  declare function publishDraftPost(draftPostId: string): Promise<NonNullablePaths<PublishDraftPostResponse, `postId`, 2>>;
5189
5289
 
5190
- export { type AccountInfo, type AccountInfoMetadata, Action, type ActionEvent, type ActionWithLiterals, type AddressLocation, Alignment, type AlignmentWithLiterals, type AnchorData, type Animation, AnimationType, type AnimationTypeWithLiterals, 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 DividerDataStyles, 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 EntranceAnimation, type EntranceEffect, EntranceEffectType, type EntranceEffectTypeWithLiterals, 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 ImageDataCrop, 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, LineCap, type LineCapWithLiterals, 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 LoopAnimation, type LoopEffect, LoopEffectType, type LoopEffectTypeWithLiterals, 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 PointerEffect, PointerEffectType, type PointerEffectTypeWithLiterals, 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 };
5290
+ export { type AccountInfo, type AccountInfoMetadata, Action, type ActionEvent, type ActionWithLiterals, type AddressLocation, Alignment, type AlignmentWithLiterals, type AnchorData, type Animation, AnimationType, type AnimationTypeWithLiterals, 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 DividerDataStyles, 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 EntranceAnimation, type EntranceEffect, EntranceEffectType, type EntranceEffectTypeWithLiterals, 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 ImageDataCrop, 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, LayerEffect, type LayerEffectWithLiterals, type Layers, Layout, type LayoutCellData, type LayoutData, type LayoutDataBackground, type LayoutDataBackgroundImage, LayoutDataBackgroundType, type LayoutDataBackgroundTypeWithLiterals, LayoutType, type LayoutTypeWithLiterals, type LayoutWithLiterals, LineCap, type LineCapWithLiterals, 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 LoopAnimation, type LoopEffect, LoopEffectType, type LoopEffectTypeWithLiterals, 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 PointerEffect, PointerEffectType, type PointerEffectTypeWithLiterals, 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 SectionDivider, type SeoSchema, type Settings, Shape, type ShapeData, type ShapeDataStyles, type ShapeWithLiterals, 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 };
@@ -3523,6 +3523,39 @@ var BannerPosition = /* @__PURE__ */ ((BannerPosition2) => {
3523
3523
  BannerPosition2["BOTTOM"] = "BOTTOM";
3524
3524
  return BannerPosition2;
3525
3525
  })(BannerPosition || {});
3526
+ var LayerEffect = /* @__PURE__ */ ((LayerEffect2) => {
3527
+ LayerEffect2["CENTER"] = "CENTER";
3528
+ LayerEffect2["FADE_TO_TOP"] = "FADE_TO_TOP";
3529
+ LayerEffect2["FADE_TO_BOTTOM"] = "FADE_TO_BOTTOM";
3530
+ return LayerEffect2;
3531
+ })(LayerEffect || {});
3532
+ var Shape = /* @__PURE__ */ ((Shape2) => {
3533
+ Shape2["ELLIPSE"] = "ELLIPSE";
3534
+ Shape2["TILT"] = "TILT";
3535
+ Shape2["LIQUID"] = "LIQUID";
3536
+ Shape2["LEFT_WAVE"] = "LEFT_WAVE";
3537
+ Shape2["PAINT_SCRIBBLE"] = "PAINT_SCRIBBLE";
3538
+ Shape2["INVERTED_ELLIPSE"] = "INVERTED_ELLIPSE";
3539
+ Shape2["RIGHT_WAVE"] = "RIGHT_WAVE";
3540
+ Shape2["DUNES"] = "DUNES";
3541
+ Shape2["WAVES"] = "WAVES";
3542
+ Shape2["TRIANGLE"] = "TRIANGLE";
3543
+ Shape2["SEMI_ELLIPSE"] = "SEMI_ELLIPSE";
3544
+ Shape2["PLANTS"] = "PLANTS";
3545
+ Shape2["LAYERED_ELLIPSE"] = "LAYERED_ELLIPSE";
3546
+ Shape2["PIXELS"] = "PIXELS";
3547
+ Shape2["PAINT"] = "PAINT";
3548
+ Shape2["CLOUDS"] = "CLOUDS";
3549
+ Shape2["OPTICAL_ILLUSION"] = "OPTICAL_ILLUSION";
3550
+ Shape2["STRIPES"] = "STRIPES";
3551
+ Shape2["BLOBS"] = "BLOBS";
3552
+ Shape2["SEMI_CIRCLES"] = "SEMI_CIRCLES";
3553
+ Shape2["HILL"] = "HILL";
3554
+ Shape2["BRUSH"] = "BRUSH";
3555
+ Shape2["PEAKS"] = "PEAKS";
3556
+ Shape2["ANGLED_TRIANGLE"] = "ANGLED_TRIANGLE";
3557
+ return Shape2;
3558
+ })(Shape || {});
3526
3559
  var BackdropType = /* @__PURE__ */ ((BackdropType2) => {
3527
3560
  BackdropType2["COLOR"] = "COLOR";
3528
3561
  BackdropType2["GRADIENT"] = "GRADIENT";
@@ -4489,9 +4522,7 @@ async function typedQueryDraftPosts(query, options) {
4489
4522
  }
4490
4523
  }
4491
4524
  var utils = {
4492
- query: {
4493
- ...createQueryUtils()
4494
- }
4525
+ query: /* @__PURE__ */ createQueryUtils()
4495
4526
  };
4496
4527
  async function publishDraftPost2(draftPostId) {
4497
4528
  const { httpClient, sideEffects } = arguments[1];
@@ -4549,6 +4580,7 @@ export {
4549
4580
  ImageScalingScaling,
4550
4581
  Indentation,
4551
4582
  InitialExpandedItems,
4583
+ LayerEffect,
4552
4584
  Layout,
4553
4585
  LayoutDataBackgroundType,
4554
4586
  LayoutType,
@@ -4572,6 +4604,7 @@ export {
4572
4604
  Resizing,
4573
4605
  ResponsivenessBehaviour,
4574
4606
  Scaling,
4607
+ Shape,
4575
4608
  SmartBlockDataType,
4576
4609
  SortOrder,
4577
4610
  Source,