@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.
- 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 +107 -7
- package/build/cjs/index.typings.js +38 -3
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +106 -2
- 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 +107 -7
- package/build/es/index.typings.mjs +36 -3
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +106 -2
- 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 +107 -7
- 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 +106 -2
- 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 +107 -7
- 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 +106 -2
- 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
|
@@ -733,7 +733,7 @@ interface Animation {
|
|
|
733
733
|
/**
|
|
734
734
|
* POINTER carries its fields directly on the union member in the JTD wall, hence
|
|
735
735
|
* flat fields here (ts-proto camelCase must equal the JTD property names). A future
|
|
736
|
-
*
|
|
736
|
+
* kind that also needs an `effect` field would contend for this JSON name.
|
|
737
737
|
*/
|
|
738
738
|
effect?: PointerEffect;
|
|
739
739
|
/** How quickly the node settles toward the pointer, in milliseconds (POINTER). */
|
|
@@ -2405,6 +2405,10 @@ interface LayoutData {
|
|
|
2405
2405
|
backdrop?: Backdrop;
|
|
2406
2406
|
/** Node animation. */
|
|
2407
2407
|
animation?: Animation;
|
|
2408
|
+
/** Shape divider at the top edge of the layout. */
|
|
2409
|
+
topDivider?: SectionDivider;
|
|
2410
|
+
/** Shape divider at the bottom edge of the layout. */
|
|
2411
|
+
bottomDivider?: SectionDivider;
|
|
2408
2412
|
}
|
|
2409
2413
|
declare enum ImageScalingScaling {
|
|
2410
2414
|
/** Auto image scaling */
|
|
@@ -2475,6 +2479,81 @@ declare enum BannerPosition {
|
|
|
2475
2479
|
}
|
|
2476
2480
|
/** @enumType */
|
|
2477
2481
|
type BannerPositionWithLiterals = BannerPosition | 'TOP' | 'BOTTOM';
|
|
2482
|
+
/** How the stacked layers fade relative to the base shape. Named for a bottom divider; top dividers render mirrored, so the visual fade flips. */
|
|
2483
|
+
declare enum LayerEffect {
|
|
2484
|
+
/** Shape keeps its height, a solid filler bar pushes it away from the edge */
|
|
2485
|
+
CENTER = "CENTER",
|
|
2486
|
+
/** 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 */
|
|
2487
|
+
FADE_TO_TOP = "FADE_TO_TOP",
|
|
2488
|
+
/** 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 */
|
|
2489
|
+
FADE_TO_BOTTOM = "FADE_TO_BOTTOM"
|
|
2490
|
+
}
|
|
2491
|
+
/** @enumType */
|
|
2492
|
+
type LayerEffectWithLiterals = LayerEffect | 'CENTER' | 'FADE_TO_TOP' | 'FADE_TO_BOTTOM';
|
|
2493
|
+
/** Divider shape preset */
|
|
2494
|
+
declare enum Shape {
|
|
2495
|
+
/** Ellipse shape */
|
|
2496
|
+
ELLIPSE = "ELLIPSE",
|
|
2497
|
+
/** Tilt shape */
|
|
2498
|
+
TILT = "TILT",
|
|
2499
|
+
/** Liquid shape */
|
|
2500
|
+
LIQUID = "LIQUID",
|
|
2501
|
+
/** Left wave shape */
|
|
2502
|
+
LEFT_WAVE = "LEFT_WAVE",
|
|
2503
|
+
/** Paint scribble shape */
|
|
2504
|
+
PAINT_SCRIBBLE = "PAINT_SCRIBBLE",
|
|
2505
|
+
/** Inverted ellipse shape */
|
|
2506
|
+
INVERTED_ELLIPSE = "INVERTED_ELLIPSE",
|
|
2507
|
+
/** Right wave shape */
|
|
2508
|
+
RIGHT_WAVE = "RIGHT_WAVE",
|
|
2509
|
+
/** Dunes shape */
|
|
2510
|
+
DUNES = "DUNES",
|
|
2511
|
+
/** Waves shape */
|
|
2512
|
+
WAVES = "WAVES",
|
|
2513
|
+
/** Triangle shape */
|
|
2514
|
+
TRIANGLE = "TRIANGLE",
|
|
2515
|
+
/** Semi-ellipse shape */
|
|
2516
|
+
SEMI_ELLIPSE = "SEMI_ELLIPSE",
|
|
2517
|
+
/** Plants shape */
|
|
2518
|
+
PLANTS = "PLANTS",
|
|
2519
|
+
/** Layered ellipse shape */
|
|
2520
|
+
LAYERED_ELLIPSE = "LAYERED_ELLIPSE",
|
|
2521
|
+
/** Pixels shape */
|
|
2522
|
+
PIXELS = "PIXELS",
|
|
2523
|
+
/** Paint shape */
|
|
2524
|
+
PAINT = "PAINT",
|
|
2525
|
+
/** Clouds shape */
|
|
2526
|
+
CLOUDS = "CLOUDS",
|
|
2527
|
+
/** Optical illusion shape */
|
|
2528
|
+
OPTICAL_ILLUSION = "OPTICAL_ILLUSION",
|
|
2529
|
+
/** Stripes shape */
|
|
2530
|
+
STRIPES = "STRIPES",
|
|
2531
|
+
/** Blobs shape */
|
|
2532
|
+
BLOBS = "BLOBS",
|
|
2533
|
+
/** Semi-circles shape */
|
|
2534
|
+
SEMI_CIRCLES = "SEMI_CIRCLES",
|
|
2535
|
+
/** Hill shape */
|
|
2536
|
+
HILL = "HILL",
|
|
2537
|
+
/** Brush shape */
|
|
2538
|
+
BRUSH = "BRUSH",
|
|
2539
|
+
/** Peaks shape */
|
|
2540
|
+
PEAKS = "PEAKS",
|
|
2541
|
+
/** Angled triangle shape */
|
|
2542
|
+
ANGLED_TRIANGLE = "ANGLED_TRIANGLE"
|
|
2543
|
+
}
|
|
2544
|
+
/** @enumType */
|
|
2545
|
+
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';
|
|
2546
|
+
/** Layers effect - stacked semi-transparent copies of the divider shape */
|
|
2547
|
+
interface Layers {
|
|
2548
|
+
/** Total number of layers including the base shape (1-4). Absent or 1 disables the effect. */
|
|
2549
|
+
count?: number | null;
|
|
2550
|
+
/** 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. */
|
|
2551
|
+
offsetY?: number | null;
|
|
2552
|
+
/** How the stacked layers fade relative to the base shape. */
|
|
2553
|
+
layerEffect?: LayerEffectWithLiterals;
|
|
2554
|
+
/** Horizontal distance between consecutive layers in pixels. Defaults to 0. Only applies to shapes that support horizontal offset. */
|
|
2555
|
+
offsetX?: number | null;
|
|
2556
|
+
}
|
|
2478
2557
|
/** Backdrop type */
|
|
2479
2558
|
declare enum BackdropType {
|
|
2480
2559
|
/** Solid color backdrop */
|
|
@@ -2545,6 +2624,24 @@ interface Backdrop {
|
|
|
2545
2624
|
/** Gradient configuration. */
|
|
2546
2625
|
gradient?: Gradient;
|
|
2547
2626
|
}
|
|
2627
|
+
/** Decorative shape divider at a layout edge */
|
|
2628
|
+
interface SectionDivider {
|
|
2629
|
+
/** Divider shape preset. Determines which customization properties apply. */
|
|
2630
|
+
type?: ShapeWithLiterals;
|
|
2631
|
+
/**
|
|
2632
|
+
* Divider fill color as a hexadecimal value (may include alpha).
|
|
2633
|
+
* @maxLength 19
|
|
2634
|
+
*/
|
|
2635
|
+
color?: string | null;
|
|
2636
|
+
/** Divider height in pixels. */
|
|
2637
|
+
height?: number | null;
|
|
2638
|
+
/** Horizontal offset in pixels. */
|
|
2639
|
+
offsetX?: number | null;
|
|
2640
|
+
/** Whether the shape is flipped horizontally. */
|
|
2641
|
+
flipped?: boolean | null;
|
|
2642
|
+
/** Layers effect - stacked semi-transparent copies of the divider shape. */
|
|
2643
|
+
layers?: Layers;
|
|
2644
|
+
}
|
|
2548
2645
|
interface LayoutCellData {
|
|
2549
2646
|
/** Size of the cell in 12 columns grid. */
|
|
2550
2647
|
colSpan?: number | null;
|
|
@@ -2558,6 +2655,13 @@ interface ShapeData {
|
|
|
2558
2655
|
styles?: ShapeDataStyles;
|
|
2559
2656
|
/** Node animation. */
|
|
2560
2657
|
animation?: Animation;
|
|
2658
|
+
/** Link details for shapes that are links. */
|
|
2659
|
+
link?: Link;
|
|
2660
|
+
/**
|
|
2661
|
+
* Alternate text describing the link's purpose for accessibility. Applies only when `link` is set.
|
|
2662
|
+
* @maxLength 1000
|
|
2663
|
+
*/
|
|
2664
|
+
altText?: string | null;
|
|
2561
2665
|
}
|
|
2562
2666
|
interface ShapeDataStyles {
|
|
2563
2667
|
/**
|
|
@@ -4845,11 +4949,7 @@ type DraftPostQuery = {
|
|
|
4845
4949
|
}[];
|
|
4846
4950
|
};
|
|
4847
4951
|
declare const utils: {
|
|
4848
|
-
query:
|
|
4849
|
-
QueryBuilder: () => _wix_sdk_types.QueryBuilder<DraftPost, DraftPostQuerySpec, DraftPostQuery>;
|
|
4850
|
-
Filter: _wix_sdk_types.FilterFactory<DraftPost, DraftPostQuerySpec>;
|
|
4851
|
-
Sort: _wix_sdk_types.SortFactory<DraftPostQuerySpec>;
|
|
4852
|
-
};
|
|
4952
|
+
query: _wix_sdk_types.QueryHelpers<DraftPost, DraftPostQuerySpec, DraftPostQuery>;
|
|
4853
4953
|
};
|
|
4854
4954
|
/**
|
|
4855
4955
|
* Publishes a draft post by ID. This creates a new [post](https://dev.wix.com/docs/rest/business-solutions/blog/posts-stats/post-object)
|
|
@@ -4866,4 +4966,4 @@ declare const utils: {
|
|
|
4866
4966
|
*/
|
|
4867
4967
|
declare function publishDraftPost(draftPostId: string): Promise<NonNullablePaths<PublishDraftPostResponse, `postId`, 2>>;
|
|
4868
4968
|
|
|
4869
|
-
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 };
|
|
4969
|
+
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,
|