@wix/auto_sdk_blog_draft-posts 1.0.50 → 1.0.51
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 +5 -150
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +3 -109
- package/build/cjs/index.typings.js +2 -129
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +3 -109
- package/build/cjs/meta.js +2 -129
- package/build/cjs/meta.js.map +1 -1
- package/build/es/index.d.mts +1 -1
- package/build/es/index.mjs +5 -146
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +3 -109
- package/build/es/index.typings.mjs +2 -125
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +3 -109
- package/build/es/meta.mjs +2 -125
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/index.d.ts +1 -1
- package/build/internal/cjs/index.js +5 -150
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +3 -109
- package/build/internal/cjs/index.typings.js +2 -129
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +3 -109
- package/build/internal/cjs/meta.js +2 -129
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/index.d.mts +1 -1
- package/build/internal/es/index.mjs +5 -146
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +3 -109
- package/build/internal/es/index.typings.mjs +2 -125
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +3 -109
- package/build/internal/es/meta.mjs +2 -125
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -281,9 +281,7 @@ interface Node extends NodeDataOneOf {
|
|
|
281
281
|
blockquoteData?: BlockquoteData;
|
|
282
282
|
/** Data for a caption node. */
|
|
283
283
|
captionData?: CaptionData;
|
|
284
|
-
/** Data for a layout node. Reserved for future use. */
|
|
285
|
-
layoutData?: LayoutData;
|
|
286
|
-
/** Data for a cell node. */
|
|
284
|
+
/** LayoutData layout_data = 31; // Data for a layout node. Reserved for future use. */
|
|
287
285
|
layoutCellData?: LayoutCellData;
|
|
288
286
|
/** Node type. Use `APP_EMBED` for nodes that embed content from other Wix apps. Use `EMBED` to embed content in [oEmbed](https://oembed.com/) format. */
|
|
289
287
|
type?: NodeTypeWithLiterals;
|
|
@@ -348,9 +346,7 @@ interface NodeDataOneOf {
|
|
|
348
346
|
blockquoteData?: BlockquoteData;
|
|
349
347
|
/** Data for a caption node. */
|
|
350
348
|
captionData?: CaptionData;
|
|
351
|
-
/** Data for a layout node. Reserved for future use. */
|
|
352
|
-
layoutData?: LayoutData;
|
|
353
|
-
/** Data for a cell node. */
|
|
349
|
+
/** LayoutData layout_data = 31; // Data for a layout node. Reserved for future use. */
|
|
354
350
|
layoutCellData?: LayoutCellData;
|
|
355
351
|
}
|
|
356
352
|
declare enum NodeType {
|
|
@@ -1907,108 +1903,6 @@ interface BlockquoteData {
|
|
|
1907
1903
|
interface CaptionData {
|
|
1908
1904
|
textStyle?: TextStyle;
|
|
1909
1905
|
}
|
|
1910
|
-
interface LayoutData {
|
|
1911
|
-
/**
|
|
1912
|
-
* Background color as a hexadecimal value.
|
|
1913
|
-
* @format COLOR_HEX
|
|
1914
|
-
*/
|
|
1915
|
-
backgroundColor?: string | null;
|
|
1916
|
-
/** Background image. */
|
|
1917
|
-
backgroundImage?: BackgroundImage;
|
|
1918
|
-
/**
|
|
1919
|
-
* Border color as a hexadecimal value.
|
|
1920
|
-
* @format COLOR_HEX
|
|
1921
|
-
*/
|
|
1922
|
-
borderColor?: string | null;
|
|
1923
|
-
/** Border width in pixels. */
|
|
1924
|
-
borderWidth?: number | null;
|
|
1925
|
-
/** Border */
|
|
1926
|
-
borderRadius?: number | null;
|
|
1927
|
-
/**
|
|
1928
|
-
* Backdrop color as a hexadecimal value.
|
|
1929
|
-
* @format COLOR_HEX
|
|
1930
|
-
*/
|
|
1931
|
-
backdropColor?: string | null;
|
|
1932
|
-
/** Backdrop image.radius in pixels. */
|
|
1933
|
-
backdropImage?: BackgroundImage;
|
|
1934
|
-
/** Backdrop top padding. */
|
|
1935
|
-
backdropPaddingTop?: number | null;
|
|
1936
|
-
/** Backdrop bottom padding */
|
|
1937
|
-
backdropPaddingBottom?: number | null;
|
|
1938
|
-
/** Horizontal and vertical gap between columns */
|
|
1939
|
-
gap?: number | null;
|
|
1940
|
-
/**
|
|
1941
|
-
* Padding in pixels for cells. Follows CSS order: top, right, bottom, left
|
|
1942
|
-
* @maxSize 4
|
|
1943
|
-
*/
|
|
1944
|
-
cellPadding?: number[];
|
|
1945
|
-
/** Vertical alignment for the cell's items. */
|
|
1946
|
-
cellVerticalAlignment?: VerticalAlignmentAlignmentWithLiterals;
|
|
1947
|
-
/** Responsiveness behaviour of columns when responsiveness applies. Either stacks or wrappers. */
|
|
1948
|
-
responsivenessBehaviour?: ResponsivenessBehaviourWithLiterals;
|
|
1949
|
-
/** Size in pixels when responsiveness_behaviour applies */
|
|
1950
|
-
responsivenessBreakpoint?: number | null;
|
|
1951
|
-
}
|
|
1952
|
-
declare enum Scaling {
|
|
1953
|
-
/** Auto image scaling */
|
|
1954
|
-
AUTO = "AUTO",
|
|
1955
|
-
/** Contain image scaling */
|
|
1956
|
-
CONTAIN = "CONTAIN",
|
|
1957
|
-
/** Cover image scaling */
|
|
1958
|
-
COVER = "COVER"
|
|
1959
|
-
}
|
|
1960
|
-
/** @enumType */
|
|
1961
|
-
type ScalingWithLiterals = Scaling | 'AUTO' | 'CONTAIN' | 'COVER';
|
|
1962
|
-
declare enum ImagePosition {
|
|
1963
|
-
/** Image positioned at the center */
|
|
1964
|
-
CENTER = "CENTER",
|
|
1965
|
-
/** Image positioned on the left */
|
|
1966
|
-
CENTER_LEFT = "CENTER_LEFT",
|
|
1967
|
-
/** Image positioned on the right */
|
|
1968
|
-
CENTER_RIGHT = "CENTER_RIGHT",
|
|
1969
|
-
/** Image positioned at the center top */
|
|
1970
|
-
TOP = "TOP",
|
|
1971
|
-
/** Image positioned at the top left */
|
|
1972
|
-
TOP_LEFT = "TOP_LEFT",
|
|
1973
|
-
/** Image positioned at the top right */
|
|
1974
|
-
TOP_RIGHT = "TOP_RIGHT",
|
|
1975
|
-
/** Image positioned at the center bottom */
|
|
1976
|
-
BOTTOM = "BOTTOM",
|
|
1977
|
-
/** Image positioned at the bottom left */
|
|
1978
|
-
BOTTOM_LEFT = "BOTTOM_LEFT",
|
|
1979
|
-
/** Image positioned at the bottom right */
|
|
1980
|
-
BOTTOM_RIGHT = "BOTTOM_RIGHT"
|
|
1981
|
-
}
|
|
1982
|
-
/** @enumType */
|
|
1983
|
-
type ImagePositionWithLiterals = ImagePosition | 'CENTER' | 'CENTER_LEFT' | 'CENTER_RIGHT' | 'TOP' | 'TOP_LEFT' | 'TOP_RIGHT' | 'BOTTOM' | 'BOTTOM_LEFT' | 'BOTTOM_RIGHT';
|
|
1984
|
-
interface BackgroundImage {
|
|
1985
|
-
/** Background image. */
|
|
1986
|
-
media?: V1Media;
|
|
1987
|
-
/** Background image opacity. */
|
|
1988
|
-
opacity?: number | null;
|
|
1989
|
-
/** Background image scaling. */
|
|
1990
|
-
scaling?: ScalingWithLiterals;
|
|
1991
|
-
/** Position of background. Defaults to `CENTER`. */
|
|
1992
|
-
position?: ImagePositionWithLiterals;
|
|
1993
|
-
}
|
|
1994
|
-
declare enum VerticalAlignmentAlignment {
|
|
1995
|
-
/** Top alignment */
|
|
1996
|
-
TOP = "TOP",
|
|
1997
|
-
/** Middle alignment */
|
|
1998
|
-
MIDDLE = "MIDDLE",
|
|
1999
|
-
/** Bottom alignment */
|
|
2000
|
-
BOTTOM = "BOTTOM"
|
|
2001
|
-
}
|
|
2002
|
-
/** @enumType */
|
|
2003
|
-
type VerticalAlignmentAlignmentWithLiterals = VerticalAlignmentAlignment | 'TOP' | 'MIDDLE' | 'BOTTOM';
|
|
2004
|
-
declare enum ResponsivenessBehaviour {
|
|
2005
|
-
/** Stacking of columns */
|
|
2006
|
-
STACK = "STACK",
|
|
2007
|
-
/** Wrapping of columns */
|
|
2008
|
-
WRAP = "WRAP"
|
|
2009
|
-
}
|
|
2010
|
-
/** @enumType */
|
|
2011
|
-
type ResponsivenessBehaviourWithLiterals = ResponsivenessBehaviour | 'STACK' | 'WRAP';
|
|
2012
1906
|
interface LayoutCellData {
|
|
2013
1907
|
/** Size of the cell in 12 columns grid. */
|
|
2014
1908
|
colSpan?: number | null;
|
|
@@ -3847,4 +3741,4 @@ interface DraftPostsQueryBuilder {
|
|
|
3847
3741
|
*/
|
|
3848
3742
|
declare function publishDraftPost(draftPostId: string): Promise<NonNullablePaths<PublishDraftPostResponse, `postId`, 2>>;
|
|
3849
3743
|
|
|
3850
|
-
export { Action, type ActionEvent, type ActionWithLiterals, Alignment, type AlignmentWithLiterals, type AnchorData, type AppEmbedData, type AppEmbedDataAppDataOneOf, AppType, type AppTypeWithLiterals, type ApplicationError, type ApproveDraftPostRequest, type ApproveDraftPostResponse, AspectRatio, type AspectRatioWithLiterals, type AudioData, type Background, type BackgroundBackgroundOneOf,
|
|
3744
|
+
export { Action, type ActionEvent, type ActionWithLiterals, Alignment, type AlignmentWithLiterals, type AnchorData, type AppEmbedData, type AppEmbedDataAppDataOneOf, AppType, type AppTypeWithLiterals, type ApplicationError, type ApproveDraftPostRequest, type ApproveDraftPostResponse, AspectRatio, type AspectRatioWithLiterals, type AudioData, type Background, type BackgroundBackgroundOneOf, BackgroundType, type BackgroundTypeWithLiterals, type BaseEventMetadata, type BlockquoteData, type BlogPaging, type BookingData, type Border, type BorderColors, 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 CardStyles, CardStylesType, type CardStylesTypeWithLiterals, type CellStyle, type CodeBlockData, type CollapsibleListData, type ColorData, type Colors, 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, type Dimensions, Direction, type DirectionWithLiterals, type DividerData, DividerDataAlignment, type DividerDataAlignmentWithLiterals, type DocumentStyle, type DomainEvent, type DomainEventBodyOneOf, type DraftCategoriesUpdated, type DraftCreatedEnvelope, type DraftDeletedEnvelope, type DraftPost, type DraftPostOwnerChanged, type DraftPostTranslation, type DraftPostsQueryBuilder, type DraftPostsQueryResult, type DraftTagsUpdated, type DraftUpdatedEnvelope, type EmbedData, type EmbedMedia, type EmbedThumbnail, type EmbedVideo, type EntityCreatedEvent, type EntityDeletedEvent, type EntityUpdatedEvent, type EventData, type EventMetadata, Field, type FieldWithLiterals, type FileData, type FileSource, type FileSourceDataOneOf, type FocalPoint, type FontSizeData, FontType, type FontTypeWithLiterals, type GIF, type GIFData, GIFType, type GIFTypeWithLiterals, type GalleryData, type GalleryOptions, type GalleryOptionsLayout, type GetDeletedDraftPostRequest, type GetDeletedDraftPostResponse, type GetDraftPostOptions, type GetDraftPostRequest, type GetDraftPostResponse, type GetDraftPostTotalsRequest, type GetDraftPostTotalsResponse, GetDraftPostsSort, type GetDraftPostsSortWithLiterals, type Gradient, type HTMLData, type HTMLDataDataOneOf, type HeadingData, type Height, type IdentificationData, type IdentificationDataIdOneOf, type Image, type ImageData, type ImageDataStyles, type ImageStyles, type InitialDraftPostsCopied, InitialExpandedItems, type InitialExpandedItemsWithLiterals, type IsDraftPostAutoTranslatableRequest, type IsDraftPostAutoTranslatableResponse, type Item, type ItemDataOneOf, type ItemMetadata, type ItemStyle, type Keyword, Layout, type LayoutCellData, LayoutType, type LayoutTypeWithLiterals, type LayoutWithLiterals, LineStyle, type LineStyleWithLiterals, type Link, type LinkData, type LinkDataOneOf, type LinkPreviewData, type LinkPreviewDataStyles, type ListDeletedDraftPostsOptions, type ListDeletedDraftPostsRequest, type ListDeletedDraftPostsResponse, type ListDraftPostsOptions, type ListDraftPostsRequest, type ListDraftPostsResponse, type ListValue, type MapData, type MapSettings, MapType, type MapTypeWithLiterals, type MarkPostAsInModerationRequest, type MarkPostAsInModerationResponse, type MaskedDraftPosts, type Media, type MediaMediaOneOf, type MentionData, type MessageEnvelope, type MetaData, type Metadata, type ModerationDetails, ModerationStatusStatus, type ModerationStatusStatusWithLiterals, type Node, type NodeDataOneOf, type NodeStyle, NodeType, type NodeTypeWithLiterals, NullValue, type NullValueWithLiterals, type Oembed, type Option, type OptionDesign, type OptionLayout, type OrderedListData, Orientation, type OrientationWithLiterals, Origin, type OriginWithLiterals, type PDFSettings, type Paging, type PagingMetadataV2, type ParagraphData, type Permissions, Placement, type PlacementWithLiterals, type PlatformQuery, type PlatformQueryPagingMethodOneOf, type PlaybackOptions, type PluginContainerData, PluginContainerDataAlignment, type PluginContainerDataAlignmentWithLiterals, type PluginContainerDataWidth, type PluginContainerDataWidthDataOneOf, type Poll, type PollData, type PollDataLayout, type PollDesign, type 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, type RestoreFromTrashBinRequest, type RestoreFromTrashBinResponse, type RestoreInfo, type RevertToUnpublishedRequest, type RevertToUnpublishedResponse, type RibbonStyles, type RichContent, type SeoSchema, type Settings, SortOrder, type SortOrderWithLiterals, type Sorting, Source, type SourceWithLiterals, type Spoiler, type SpoilerData, Status, type StatusWithLiterals, 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 TotalDraftPosts, TotalDraftPostsGroupingField, type TotalDraftPostsGroupingFieldWithLiterals, type TranslateDraftRequest, type TranslateDraftResponse, Type, type TypeWithLiterals, type UnpublishPostRequest, type UnpublishPostResponse, type UpdateDraftPost, type UpdateDraftPostContentRequest, type UpdateDraftPostContentResponse, type UpdateDraftPostLanguageRequest, type UpdateDraftPostLanguageResponse, type UpdateDraftPostOptions, type UpdateDraftPostRequest, type UpdateDraftPostResponse, type V1Media, VerticalAlignment, 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, updateDraftPost };
|
|
@@ -218,13 +218,7 @@ function createDraftPost(payload) {
|
|
|
218
218
|
{ path: "draftPost.richContent.nodes.videoData.video.duration" },
|
|
219
219
|
{ path: "draftPost.richContent.nodes.videoData.thumbnail.duration" },
|
|
220
220
|
{ path: "draftPost.richContent.nodes.audioData.audio.duration" },
|
|
221
|
-
{ path: "draftPost.richContent.nodes.audioData.coverImage.duration" }
|
|
222
|
-
{
|
|
223
|
-
path: "draftPost.richContent.nodes.layoutData.backgroundImage.media.duration"
|
|
224
|
-
},
|
|
225
|
-
{
|
|
226
|
-
path: "draftPost.richContent.nodes.layoutData.backdropImage.media.duration"
|
|
227
|
-
}
|
|
221
|
+
{ path: "draftPost.richContent.nodes.audioData.coverImage.duration" }
|
|
228
222
|
]
|
|
229
223
|
}
|
|
230
224
|
]);
|
|
@@ -315,12 +309,6 @@ function createDraftPost(payload) {
|
|
|
315
309
|
{ path: "draftPost.richContent.nodes.audioData.audio.duration" },
|
|
316
310
|
{
|
|
317
311
|
path: "draftPost.richContent.nodes.audioData.coverImage.duration"
|
|
318
|
-
},
|
|
319
|
-
{
|
|
320
|
-
path: "draftPost.richContent.nodes.layoutData.backgroundImage.media.duration"
|
|
321
|
-
},
|
|
322
|
-
{
|
|
323
|
-
path: "draftPost.richContent.nodes.layoutData.backdropImage.media.duration"
|
|
324
312
|
}
|
|
325
313
|
]
|
|
326
314
|
}
|
|
@@ -401,12 +389,6 @@ function bulkCreateDraftPosts(payload) {
|
|
|
401
389
|
{ path: "draftPosts.richContent.nodes.audioData.audio.duration" },
|
|
402
390
|
{
|
|
403
391
|
path: "draftPosts.richContent.nodes.audioData.coverImage.duration"
|
|
404
|
-
},
|
|
405
|
-
{
|
|
406
|
-
path: "draftPosts.richContent.nodes.layoutData.backgroundImage.media.duration"
|
|
407
|
-
},
|
|
408
|
-
{
|
|
409
|
-
path: "draftPosts.richContent.nodes.layoutData.backdropImage.media.duration"
|
|
410
392
|
}
|
|
411
393
|
]
|
|
412
394
|
}
|
|
@@ -512,12 +494,6 @@ function bulkCreateDraftPosts(payload) {
|
|
|
512
494
|
},
|
|
513
495
|
{
|
|
514
496
|
path: "results.item.richContent.nodes.audioData.coverImage.duration"
|
|
515
|
-
},
|
|
516
|
-
{
|
|
517
|
-
path: "results.item.richContent.nodes.layoutData.backgroundImage.media.duration"
|
|
518
|
-
},
|
|
519
|
-
{
|
|
520
|
-
path: "results.item.richContent.nodes.layoutData.backdropImage.media.duration"
|
|
521
497
|
}
|
|
522
498
|
]
|
|
523
499
|
}
|
|
@@ -631,12 +607,6 @@ function bulkUpdateDraftPosts(payload) {
|
|
|
631
607
|
},
|
|
632
608
|
{
|
|
633
609
|
path: "draftPosts.draftPost.richContent.nodes.audioData.coverImage.duration"
|
|
634
|
-
},
|
|
635
|
-
{
|
|
636
|
-
path: "draftPosts.draftPost.richContent.nodes.layoutData.backgroundImage.media.duration"
|
|
637
|
-
},
|
|
638
|
-
{
|
|
639
|
-
path: "draftPosts.draftPost.richContent.nodes.layoutData.backdropImage.media.duration"
|
|
640
610
|
}
|
|
641
611
|
]
|
|
642
612
|
}
|
|
@@ -742,12 +712,6 @@ function bulkUpdateDraftPosts(payload) {
|
|
|
742
712
|
},
|
|
743
713
|
{
|
|
744
714
|
path: "results.item.richContent.nodes.audioData.coverImage.duration"
|
|
745
|
-
},
|
|
746
|
-
{
|
|
747
|
-
path: "results.item.richContent.nodes.layoutData.backgroundImage.media.duration"
|
|
748
|
-
},
|
|
749
|
-
{
|
|
750
|
-
path: "results.item.richContent.nodes.layoutData.backdropImage.media.duration"
|
|
751
715
|
}
|
|
752
716
|
]
|
|
753
717
|
}
|
|
@@ -850,12 +814,6 @@ function listDeletedDraftPosts(payload) {
|
|
|
850
814
|
{ path: "draftPosts.richContent.nodes.audioData.audio.duration" },
|
|
851
815
|
{
|
|
852
816
|
path: "draftPosts.richContent.nodes.audioData.coverImage.duration"
|
|
853
|
-
},
|
|
854
|
-
{
|
|
855
|
-
path: "draftPosts.richContent.nodes.layoutData.backgroundImage.media.duration"
|
|
856
|
-
},
|
|
857
|
-
{
|
|
858
|
-
path: "draftPosts.richContent.nodes.layoutData.backdropImage.media.duration"
|
|
859
817
|
}
|
|
860
818
|
]
|
|
861
819
|
}
|
|
@@ -954,12 +912,6 @@ function getDraftPost(payload) {
|
|
|
954
912
|
{ path: "draftPost.richContent.nodes.audioData.audio.duration" },
|
|
955
913
|
{
|
|
956
914
|
path: "draftPost.richContent.nodes.audioData.coverImage.duration"
|
|
957
|
-
},
|
|
958
|
-
{
|
|
959
|
-
path: "draftPost.richContent.nodes.layoutData.backgroundImage.media.duration"
|
|
960
|
-
},
|
|
961
|
-
{
|
|
962
|
-
path: "draftPost.richContent.nodes.layoutData.backdropImage.media.duration"
|
|
963
915
|
}
|
|
964
916
|
]
|
|
965
917
|
}
|
|
@@ -1043,13 +995,7 @@ function updateDraftPost(payload) {
|
|
|
1043
995
|
{ path: "draftPost.richContent.nodes.videoData.video.duration" },
|
|
1044
996
|
{ path: "draftPost.richContent.nodes.videoData.thumbnail.duration" },
|
|
1045
997
|
{ path: "draftPost.richContent.nodes.audioData.audio.duration" },
|
|
1046
|
-
{ path: "draftPost.richContent.nodes.audioData.coverImage.duration" }
|
|
1047
|
-
{
|
|
1048
|
-
path: "draftPost.richContent.nodes.layoutData.backgroundImage.media.duration"
|
|
1049
|
-
},
|
|
1050
|
-
{
|
|
1051
|
-
path: "draftPost.richContent.nodes.layoutData.backdropImage.media.duration"
|
|
1052
|
-
}
|
|
998
|
+
{ path: "draftPost.richContent.nodes.audioData.coverImage.duration" }
|
|
1053
999
|
]
|
|
1054
1000
|
}
|
|
1055
1001
|
]);
|
|
@@ -1144,12 +1090,6 @@ function updateDraftPost(payload) {
|
|
|
1144
1090
|
{ path: "draftPost.richContent.nodes.audioData.audio.duration" },
|
|
1145
1091
|
{
|
|
1146
1092
|
path: "draftPost.richContent.nodes.audioData.coverImage.duration"
|
|
1147
|
-
},
|
|
1148
|
-
{
|
|
1149
|
-
path: "draftPost.richContent.nodes.layoutData.backgroundImage.media.duration"
|
|
1150
|
-
},
|
|
1151
|
-
{
|
|
1152
|
-
path: "draftPost.richContent.nodes.layoutData.backdropImage.media.duration"
|
|
1153
1093
|
}
|
|
1154
1094
|
]
|
|
1155
1095
|
}
|
|
@@ -1304,12 +1244,6 @@ function bulkDeleteDraftPosts(payload) {
|
|
|
1304
1244
|
},
|
|
1305
1245
|
{
|
|
1306
1246
|
path: "results.item.richContent.nodes.audioData.coverImage.duration"
|
|
1307
|
-
},
|
|
1308
|
-
{
|
|
1309
|
-
path: "results.item.richContent.nodes.layoutData.backgroundImage.media.duration"
|
|
1310
|
-
},
|
|
1311
|
-
{
|
|
1312
|
-
path: "results.item.richContent.nodes.layoutData.backdropImage.media.duration"
|
|
1313
1247
|
}
|
|
1314
1248
|
]
|
|
1315
1249
|
}
|
|
@@ -1412,12 +1346,6 @@ function listDraftPosts(payload) {
|
|
|
1412
1346
|
{ path: "draftPosts.richContent.nodes.audioData.audio.duration" },
|
|
1413
1347
|
{
|
|
1414
1348
|
path: "draftPosts.richContent.nodes.audioData.coverImage.duration"
|
|
1415
|
-
},
|
|
1416
|
-
{
|
|
1417
|
-
path: "draftPosts.richContent.nodes.layoutData.backgroundImage.media.duration"
|
|
1418
|
-
},
|
|
1419
|
-
{
|
|
1420
|
-
path: "draftPosts.richContent.nodes.layoutData.backdropImage.media.duration"
|
|
1421
1349
|
}
|
|
1422
1350
|
]
|
|
1423
1351
|
}
|
|
@@ -1520,12 +1448,6 @@ function getDeletedDraftPost(payload) {
|
|
|
1520
1448
|
{ path: "draftPost.richContent.nodes.audioData.audio.duration" },
|
|
1521
1449
|
{
|
|
1522
1450
|
path: "draftPost.richContent.nodes.audioData.coverImage.duration"
|
|
1523
|
-
},
|
|
1524
|
-
{
|
|
1525
|
-
path: "draftPost.richContent.nodes.layoutData.backgroundImage.media.duration"
|
|
1526
|
-
},
|
|
1527
|
-
{
|
|
1528
|
-
path: "draftPost.richContent.nodes.layoutData.backdropImage.media.duration"
|
|
1529
1451
|
}
|
|
1530
1452
|
]
|
|
1531
1453
|
}
|
|
@@ -1628,12 +1550,6 @@ function restoreFromTrashBin(payload) {
|
|
|
1628
1550
|
{ path: "draftPost.richContent.nodes.audioData.audio.duration" },
|
|
1629
1551
|
{
|
|
1630
1552
|
path: "draftPost.richContent.nodes.audioData.coverImage.duration"
|
|
1631
|
-
},
|
|
1632
|
-
{
|
|
1633
|
-
path: "draftPost.richContent.nodes.layoutData.backgroundImage.media.duration"
|
|
1634
|
-
},
|
|
1635
|
-
{
|
|
1636
|
-
path: "draftPost.richContent.nodes.layoutData.backdropImage.media.duration"
|
|
1637
1553
|
}
|
|
1638
1554
|
]
|
|
1639
1555
|
}
|
|
@@ -1736,12 +1652,6 @@ function queryDraftPosts(payload) {
|
|
|
1736
1652
|
{ path: "draftPosts.richContent.nodes.audioData.audio.duration" },
|
|
1737
1653
|
{
|
|
1738
1654
|
path: "draftPosts.richContent.nodes.audioData.coverImage.duration"
|
|
1739
|
-
},
|
|
1740
|
-
{
|
|
1741
|
-
path: "draftPosts.richContent.nodes.layoutData.backgroundImage.media.duration"
|
|
1742
|
-
},
|
|
1743
|
-
{
|
|
1744
|
-
path: "draftPosts.richContent.nodes.layoutData.backdropImage.media.duration"
|
|
1745
1655
|
}
|
|
1746
1656
|
]
|
|
1747
1657
|
}
|
|
@@ -2084,35 +1994,6 @@ var NullValue = /* @__PURE__ */ ((NullValue2) => {
|
|
|
2084
1994
|
NullValue2["NULL_VALUE"] = "NULL_VALUE";
|
|
2085
1995
|
return NullValue2;
|
|
2086
1996
|
})(NullValue || {});
|
|
2087
|
-
var Scaling = /* @__PURE__ */ ((Scaling2) => {
|
|
2088
|
-
Scaling2["AUTO"] = "AUTO";
|
|
2089
|
-
Scaling2["CONTAIN"] = "CONTAIN";
|
|
2090
|
-
Scaling2["COVER"] = "COVER";
|
|
2091
|
-
return Scaling2;
|
|
2092
|
-
})(Scaling || {});
|
|
2093
|
-
var ImagePosition = /* @__PURE__ */ ((ImagePosition2) => {
|
|
2094
|
-
ImagePosition2["CENTER"] = "CENTER";
|
|
2095
|
-
ImagePosition2["CENTER_LEFT"] = "CENTER_LEFT";
|
|
2096
|
-
ImagePosition2["CENTER_RIGHT"] = "CENTER_RIGHT";
|
|
2097
|
-
ImagePosition2["TOP"] = "TOP";
|
|
2098
|
-
ImagePosition2["TOP_LEFT"] = "TOP_LEFT";
|
|
2099
|
-
ImagePosition2["TOP_RIGHT"] = "TOP_RIGHT";
|
|
2100
|
-
ImagePosition2["BOTTOM"] = "BOTTOM";
|
|
2101
|
-
ImagePosition2["BOTTOM_LEFT"] = "BOTTOM_LEFT";
|
|
2102
|
-
ImagePosition2["BOTTOM_RIGHT"] = "BOTTOM_RIGHT";
|
|
2103
|
-
return ImagePosition2;
|
|
2104
|
-
})(ImagePosition || {});
|
|
2105
|
-
var VerticalAlignmentAlignment = /* @__PURE__ */ ((VerticalAlignmentAlignment2) => {
|
|
2106
|
-
VerticalAlignmentAlignment2["TOP"] = "TOP";
|
|
2107
|
-
VerticalAlignmentAlignment2["MIDDLE"] = "MIDDLE";
|
|
2108
|
-
VerticalAlignmentAlignment2["BOTTOM"] = "BOTTOM";
|
|
2109
|
-
return VerticalAlignmentAlignment2;
|
|
2110
|
-
})(VerticalAlignmentAlignment || {});
|
|
2111
|
-
var ResponsivenessBehaviour = /* @__PURE__ */ ((ResponsivenessBehaviour2) => {
|
|
2112
|
-
ResponsivenessBehaviour2["STACK"] = "STACK";
|
|
2113
|
-
ResponsivenessBehaviour2["WRAP"] = "WRAP";
|
|
2114
|
-
return ResponsivenessBehaviour2;
|
|
2115
|
-
})(ResponsivenessBehaviour || {});
|
|
2116
1997
|
var Status = /* @__PURE__ */ ((Status2) => {
|
|
2117
1998
|
Status2["UNKNOWN"] = "UNKNOWN";
|
|
2118
1999
|
Status2["PUBLISHED"] = "PUBLISHED";
|
|
@@ -2977,7 +2858,6 @@ export {
|
|
|
2977
2858
|
FontType,
|
|
2978
2859
|
GIFType,
|
|
2979
2860
|
GetDraftPostsSort,
|
|
2980
|
-
ImagePosition,
|
|
2981
2861
|
InitialExpandedItems,
|
|
2982
2862
|
Layout,
|
|
2983
2863
|
LayoutType,
|
|
@@ -2994,8 +2874,6 @@ export {
|
|
|
2994
2874
|
PollLayoutType,
|
|
2995
2875
|
Position,
|
|
2996
2876
|
Resizing,
|
|
2997
|
-
ResponsivenessBehaviour,
|
|
2998
|
-
Scaling,
|
|
2999
2877
|
SortOrder,
|
|
3000
2878
|
Source,
|
|
3001
2879
|
Status,
|
|
@@ -3006,7 +2884,6 @@ export {
|
|
|
3006
2884
|
TotalDraftPostsGroupingField,
|
|
3007
2885
|
Type,
|
|
3008
2886
|
VerticalAlignment,
|
|
3009
|
-
VerticalAlignmentAlignment,
|
|
3010
2887
|
ViewMode,
|
|
3011
2888
|
ViewRole,
|
|
3012
2889
|
VoteRole,
|