@wix/auto_sdk_blog_draft-posts 1.0.95 → 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.
- package/build/cjs/index.d.ts +1 -1
- package/build/cjs/index.js +45 -10
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +99 -6
- package/build/cjs/index.typings.js +38 -3
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +98 -1
- package/build/cjs/meta.js +37 -0
- package/build/cjs/meta.js.map +1 -1
- package/build/cjs/schemas.js +28 -28
- package/build/cjs/schemas.js.map +1 -1
- package/build/es/index.d.mts +1 -1
- package/build/es/index.mjs +43 -10
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +99 -6
- package/build/es/index.typings.mjs +36 -3
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +98 -1
- package/build/es/meta.mjs +35 -0
- package/build/es/meta.mjs.map +1 -1
- package/build/es/schemas.mjs +28 -28
- package/build/es/schemas.mjs.map +1 -1
- package/build/internal/cjs/index.d.ts +1 -1
- package/build/internal/cjs/index.js +45 -10
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +99 -6
- package/build/internal/cjs/index.typings.js +38 -3
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +98 -1
- package/build/internal/cjs/meta.js +37 -0
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/cjs/schemas.js +28 -28
- package/build/internal/cjs/schemas.js.map +1 -1
- package/build/internal/es/index.d.mts +1 -1
- package/build/internal/es/index.mjs +43 -10
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +99 -6
- package/build/internal/es/index.typings.mjs +36 -3
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +98 -1
- package/build/internal/es/meta.mjs +35 -0
- package/build/internal/es/meta.mjs.map +1 -1
- package/build/internal/es/schemas.mjs +28 -28
- package/build/internal/es/schemas.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -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;
|
|
@@ -5173,11 +5270,7 @@ type DraftPostQuery = {
|
|
|
5173
5270
|
}[];
|
|
5174
5271
|
};
|
|
5175
5272
|
declare const utils: {
|
|
5176
|
-
query:
|
|
5177
|
-
QueryBuilder: () => _wix_sdk_types.QueryBuilder<DraftPost, DraftPostQuerySpec, DraftPostQuery>;
|
|
5178
|
-
Filter: _wix_sdk_types.FilterFactory<DraftPost, DraftPostQuerySpec>;
|
|
5179
|
-
Sort: _wix_sdk_types.SortFactory<DraftPostQuerySpec>;
|
|
5180
|
-
};
|
|
5273
|
+
query: _wix_sdk_types.QueryHelpers<DraftPost, DraftPostQuerySpec, DraftPostQuery>;
|
|
5181
5274
|
};
|
|
5182
5275
|
/**
|
|
5183
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)
|
|
@@ -5194,4 +5287,4 @@ declare const utils: {
|
|
|
5194
5287
|
*/
|
|
5195
5288
|
declare function publishDraftPost(draftPostId: string): Promise<NonNullablePaths<PublishDraftPostResponse, `postId`, 2>>;
|
|
5196
5289
|
|
|
5197
|
-
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 };
|
|
@@ -49,6 +49,7 @@ __export(index_typings_exports, {
|
|
|
49
49
|
ImageScalingScaling: () => ImageScalingScaling,
|
|
50
50
|
Indentation: () => Indentation,
|
|
51
51
|
InitialExpandedItems: () => InitialExpandedItems,
|
|
52
|
+
LayerEffect: () => LayerEffect,
|
|
52
53
|
Layout: () => Layout,
|
|
53
54
|
LayoutDataBackgroundType: () => LayoutDataBackgroundType,
|
|
54
55
|
LayoutType: () => LayoutType,
|
|
@@ -72,6 +73,7 @@ __export(index_typings_exports, {
|
|
|
72
73
|
Resizing: () => Resizing,
|
|
73
74
|
ResponsivenessBehaviour: () => ResponsivenessBehaviour,
|
|
74
75
|
Scaling: () => Scaling,
|
|
76
|
+
Shape: () => Shape,
|
|
75
77
|
SmartBlockDataType: () => SmartBlockDataType,
|
|
76
78
|
SortOrder: () => SortOrder,
|
|
77
79
|
Source: () => Source,
|
|
@@ -3632,6 +3634,39 @@ var BannerPosition = /* @__PURE__ */ ((BannerPosition2) => {
|
|
|
3632
3634
|
BannerPosition2["BOTTOM"] = "BOTTOM";
|
|
3633
3635
|
return BannerPosition2;
|
|
3634
3636
|
})(BannerPosition || {});
|
|
3637
|
+
var LayerEffect = /* @__PURE__ */ ((LayerEffect2) => {
|
|
3638
|
+
LayerEffect2["CENTER"] = "CENTER";
|
|
3639
|
+
LayerEffect2["FADE_TO_TOP"] = "FADE_TO_TOP";
|
|
3640
|
+
LayerEffect2["FADE_TO_BOTTOM"] = "FADE_TO_BOTTOM";
|
|
3641
|
+
return LayerEffect2;
|
|
3642
|
+
})(LayerEffect || {});
|
|
3643
|
+
var Shape = /* @__PURE__ */ ((Shape2) => {
|
|
3644
|
+
Shape2["ELLIPSE"] = "ELLIPSE";
|
|
3645
|
+
Shape2["TILT"] = "TILT";
|
|
3646
|
+
Shape2["LIQUID"] = "LIQUID";
|
|
3647
|
+
Shape2["LEFT_WAVE"] = "LEFT_WAVE";
|
|
3648
|
+
Shape2["PAINT_SCRIBBLE"] = "PAINT_SCRIBBLE";
|
|
3649
|
+
Shape2["INVERTED_ELLIPSE"] = "INVERTED_ELLIPSE";
|
|
3650
|
+
Shape2["RIGHT_WAVE"] = "RIGHT_WAVE";
|
|
3651
|
+
Shape2["DUNES"] = "DUNES";
|
|
3652
|
+
Shape2["WAVES"] = "WAVES";
|
|
3653
|
+
Shape2["TRIANGLE"] = "TRIANGLE";
|
|
3654
|
+
Shape2["SEMI_ELLIPSE"] = "SEMI_ELLIPSE";
|
|
3655
|
+
Shape2["PLANTS"] = "PLANTS";
|
|
3656
|
+
Shape2["LAYERED_ELLIPSE"] = "LAYERED_ELLIPSE";
|
|
3657
|
+
Shape2["PIXELS"] = "PIXELS";
|
|
3658
|
+
Shape2["PAINT"] = "PAINT";
|
|
3659
|
+
Shape2["CLOUDS"] = "CLOUDS";
|
|
3660
|
+
Shape2["OPTICAL_ILLUSION"] = "OPTICAL_ILLUSION";
|
|
3661
|
+
Shape2["STRIPES"] = "STRIPES";
|
|
3662
|
+
Shape2["BLOBS"] = "BLOBS";
|
|
3663
|
+
Shape2["SEMI_CIRCLES"] = "SEMI_CIRCLES";
|
|
3664
|
+
Shape2["HILL"] = "HILL";
|
|
3665
|
+
Shape2["BRUSH"] = "BRUSH";
|
|
3666
|
+
Shape2["PEAKS"] = "PEAKS";
|
|
3667
|
+
Shape2["ANGLED_TRIANGLE"] = "ANGLED_TRIANGLE";
|
|
3668
|
+
return Shape2;
|
|
3669
|
+
})(Shape || {});
|
|
3635
3670
|
var BackdropType = /* @__PURE__ */ ((BackdropType2) => {
|
|
3636
3671
|
BackdropType2["COLOR"] = "COLOR";
|
|
3637
3672
|
BackdropType2["GRADIENT"] = "GRADIENT";
|
|
@@ -4598,9 +4633,7 @@ async function typedQueryDraftPosts(query, options) {
|
|
|
4598
4633
|
}
|
|
4599
4634
|
}
|
|
4600
4635
|
var utils = {
|
|
4601
|
-
query:
|
|
4602
|
-
...(0, import_query_builder_utils.createQueryUtils)()
|
|
4603
|
-
}
|
|
4636
|
+
query: /* @__PURE__ */ (0, import_query_builder_utils.createQueryUtils)()
|
|
4604
4637
|
};
|
|
4605
4638
|
async function publishDraftPost2(draftPostId) {
|
|
4606
4639
|
const { httpClient, sideEffects } = arguments[1];
|
|
@@ -4659,6 +4692,7 @@ async function publishDraftPost2(draftPostId) {
|
|
|
4659
4692
|
ImageScalingScaling,
|
|
4660
4693
|
Indentation,
|
|
4661
4694
|
InitialExpandedItems,
|
|
4695
|
+
LayerEffect,
|
|
4662
4696
|
Layout,
|
|
4663
4697
|
LayoutDataBackgroundType,
|
|
4664
4698
|
LayoutType,
|
|
@@ -4682,6 +4716,7 @@ async function publishDraftPost2(draftPostId) {
|
|
|
4682
4716
|
Resizing,
|
|
4683
4717
|
ResponsivenessBehaviour,
|
|
4684
4718
|
Scaling,
|
|
4719
|
+
Shape,
|
|
4685
4720
|
SmartBlockDataType,
|
|
4686
4721
|
SortOrder,
|
|
4687
4722
|
Source,
|