@wix/auto_sdk_blog_posts 1.0.35 → 1.0.37
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 +16 -9
- package/build/cjs/index.js +69 -18
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +188 -12
- package/build/cjs/index.typings.js +69 -18
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +8 -8
- package/build/es/index.d.mts +16 -9
- package/build/es/index.mjs +62 -18
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +188 -12
- package/build/es/index.typings.mjs +62 -18
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +8 -8
- package/build/internal/cjs/index.d.ts +16 -9
- package/build/internal/cjs/index.js +69 -18
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +188 -12
- package/build/internal/cjs/index.typings.js +69 -18
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +8 -8
- package/build/internal/es/index.d.mts +16 -9
- package/build/internal/es/index.mjs +62 -18
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +188 -12
- package/build/internal/es/index.typings.mjs +62 -18
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +8 -8
- package/package.json +2 -2
@@ -504,7 +504,7 @@ interface ButtonData {
|
|
504
504
|
/** Styling for the button's container. */
|
505
505
|
containerData?: PluginContainerData;
|
506
506
|
/** The button type. */
|
507
|
-
type?:
|
507
|
+
type?: ButtonDataTypeWithLiterals;
|
508
508
|
/** Styling for the button. */
|
509
509
|
styles?: Styles;
|
510
510
|
/** The text to display on the button. */
|
@@ -597,14 +597,14 @@ interface Height {
|
|
597
597
|
/** A custom height value in pixels. */
|
598
598
|
custom?: string | null;
|
599
599
|
}
|
600
|
-
declare enum
|
600
|
+
declare enum ButtonDataType {
|
601
601
|
/** Regular link button */
|
602
602
|
LINK = "LINK",
|
603
603
|
/** Triggers custom action that is defined in plugin configuration by the consumer */
|
604
604
|
ACTION = "ACTION"
|
605
605
|
}
|
606
606
|
/** @enumType */
|
607
|
-
type
|
607
|
+
type ButtonDataTypeWithLiterals = ButtonDataType | 'LINK' | 'ACTION';
|
608
608
|
interface Styles {
|
609
609
|
/** Border attributes. */
|
610
610
|
border?: Border;
|
@@ -690,7 +690,7 @@ interface DividerData {
|
|
690
690
|
/** Divider width. */
|
691
691
|
width?: WidthWithLiterals;
|
692
692
|
/** Divider alignment. */
|
693
|
-
alignment?:
|
693
|
+
alignment?: DividerDataAlignmentWithLiterals;
|
694
694
|
}
|
695
695
|
declare enum LineStyle {
|
696
696
|
/** Single Line */
|
@@ -714,7 +714,7 @@ declare enum Width {
|
|
714
714
|
}
|
715
715
|
/** @enumType */
|
716
716
|
type WidthWithLiterals = Width | 'LARGE' | 'MEDIUM' | 'SMALL';
|
717
|
-
declare enum
|
717
|
+
declare enum DividerDataAlignment {
|
718
718
|
/** Center alignment */
|
719
719
|
CENTER = "CENTER",
|
720
720
|
/** Left alignment */
|
@@ -723,7 +723,7 @@ declare enum Alignment {
|
|
723
723
|
RIGHT = "RIGHT"
|
724
724
|
}
|
725
725
|
/** @enumType */
|
726
|
-
type
|
726
|
+
type DividerDataAlignmentWithLiterals = DividerDataAlignment | 'CENTER' | 'LEFT' | 'RIGHT';
|
727
727
|
interface FileData {
|
728
728
|
/** Styling for the file's container. */
|
729
729
|
containerData?: PluginContainerData;
|
@@ -848,7 +848,7 @@ interface ItemDataOneOf {
|
|
848
848
|
}
|
849
849
|
interface GalleryOptions {
|
850
850
|
/** Gallery layout. */
|
851
|
-
layout?:
|
851
|
+
layout?: GalleryOptionsLayout;
|
852
852
|
/** Styling for gallery items. */
|
853
853
|
item?: ItemStyle;
|
854
854
|
/** Styling for gallery thumbnail images. */
|
@@ -908,7 +908,7 @@ declare enum ThumbnailsAlignment {
|
|
908
908
|
}
|
909
909
|
/** @enumType */
|
910
910
|
type ThumbnailsAlignmentWithLiterals = ThumbnailsAlignment | 'TOP' | 'RIGHT' | 'BOTTOM' | 'LEFT' | 'NONE';
|
911
|
-
interface
|
911
|
+
interface GalleryOptionsLayout {
|
912
912
|
/** Gallery layout type. */
|
913
913
|
type?: LayoutTypeWithLiterals;
|
914
914
|
/** Sets whether horizontal scroll is enabled. Defaults to `true` unless the layout `type` is set to `GRID` or `COLLAGE`. */
|
@@ -1,7 +1,8 @@
|
|
1
|
-
import { HttpClient, EventDefinition, MaybeContext, BuildRESTFunction, BuildEventDefinition } from '@wix/sdk-types';
|
1
|
+
import { HttpClient, NonNullablePaths, EventDefinition, MaybeContext, BuildRESTFunction, BuildEventDefinition } from '@wix/sdk-types';
|
2
2
|
import { QueryPostCountStatsOptions, QueryPostCountStatsResponse, GetTotalPostsOptions, GetTotalPostsResponse, GetPostOptions, GetPostResponse, GetPostBySlugOptions, GetPostBySlugResponse, ListPostsOptions, ListPostsResponse, QueryPostsOptions, PostsQueryBuilder, GetPostMetricsResponse, PostCreatedEnvelope, PostDeletedEnvelope, PostLikedEnvelope, PostUnlikedEnvelope, PostUpdatedEnvelope } from './index.typings.mjs';
|
3
|
-
export { ActionEvent, Alignment, AnchorData, AppEmbedData, AppEmbedDataAppDataOneOf, AppType, AudioData, Background, BackgroundBackgroundOneOf, BackgroundType, BaseEventMetadata, BlockquoteData, BlogPaging, BookingData, Border, BorderColors, BulkGetPostMetricsRequest, BulkGetPostMetricsResponse, BulkGetPostReactionsRequest, BulkGetPostReactionsResponse, BulletedListData, ButtonData, CaptionData, Category, CategoryTranslation, CellStyle, CodeBlockData, CollapsibleListData, ColorData, Colors, ConvertDraftJsToRichContentRequest, ConvertDraftJsToRichContentResponse, ConvertRichContentToDraftJsRequest, ConvertRichContentToDraftJsResponse, CoverMedia, CoverMediaMediaOneOf, CreateDraftPostFromTemplateRequest, CreateDraftPostFromTemplateResponse, Crop, CursorPaging, Cursors, Decoration, DecorationDataOneOf, DecorationType, Design, Dimensions, Direction, DividerData, DocumentStyle, DomainEvent, DomainEventBodyOneOf, DraftPost, DraftPostTranslation, EmbedData, EmbedMedia, EmbedThumbnail, EmbedVideo, EntityCreatedEvent, EntityDeletedEvent, EntityUpdatedEvent, EventData, EventMetadata, Field, FileData, FileSource, FileSourceDataOneOf, FocalPoint, FontSizeData, FontType, GIF, GIFData, GIFType, GalleryData, GalleryOptions, GetPostBySlugRequest, GetPostMetricsRequest, GetPostRequest, GetPostTemplatesSort, GetPostsSort, GetTemplateRequest, GetTemplateResponse, GetTotalLikesPerMemberRequest, GetTotalLikesPerMemberResponse, GetTotalPostsRequest, GetTotalPublicationsRequest, GetTotalPublicationsResponse, Gradient, HTMLData, HTMLDataDataOneOf, HeadingData, Height, IdentificationData, IdentificationDataIdOneOf, Image, ImageData, ImageDataStyles, InitialExpandedItems, InitialPostsCopied, Item, ItemDataOneOf, ItemStyle, Keyword, Layout, LayoutCellData, LayoutType, LikePostRequest, LikePostResponse, LineStyle, Link, LinkData, LinkDataOneOf, LinkPreviewData, LinkPreviewDataStyles, ListDemoPostsRequest, ListDemoPostsResponse, ListPostsArchiveRequest, ListPostsArchiveResponse, ListPostsRequest, ListTemplatesRequest, ListTemplatesResponse, ListValue, MapData, MapSettings, MapType, Media, MediaMediaOneOf, MentionData, MessageEnvelope, MetaData, Metadata, Metrics, ModerationDetails, ModerationStatusStatus, Node, NodeDataOneOf, NodeStyle, NodeType, NullValue, Oembed, OldBlogMigratedEvent, Option, OptionDesign, OptionLayout, Order, OrderedListData, Orientation, Origin, PDFSettings, Paging, PagingMetadataV2, ParagraphData, PeriodPostCount, PeriodPublicationsCount, Permissions, PinPostRequest, PinPostResponse, PlatformQuery, PlatformQueryPagingMethodOneOf, PlaybackOptions, PluginContainerData, PluginContainerDataAlignment, PluginContainerDataWidth, PluginContainerDataWidthDataOneOf, Poll, PollData, PollDataLayout, PollDesign, PollLayout, PollLayoutDirection, PollLayoutType, PollSettings, Position, Post, PostCategoriesUpdated, PostCountInfo, PostCountersUpdated, PostCountersUpdatedInitiatorOneOf, PostFieldField, PostLiked, PostLikedInitiatorOneOf, PostOwnerChanged, PostTagsUpdated, PostTranslation, PostUnliked, PostUnlikedInitiatorOneOf, PostsQueryResult, QueryPostCountStatsRequest, QueryPostsRequest, QueryPostsResponse, QueryPublicationsCountStatsRequest, QueryPublicationsCountStatsRequestOrder, QueryPublicationsCountStatsResponse, Reactions, Rel, RestoreInfo, RichContent, ScheduledPostPublished, SeoSchema, Settings, SortOrder, Sorting, Source, Spoiler, SpoilerData, Status, Styles, StylesBorder, TableCellData, TableData, Tag, Target, TextAlignment, TextData, TextNodeStyle, TextStyle, Thumbnails, ThumbnailsAlignment, Type, UnlikePostRequest, UnlikePostResponse, UnpinPostRequest, UnpinPostResponse, V1Media, VerticalAlignment, Video, VideoData, VideoResolution, ViewMode, ViewPostRequest, ViewPostResponse, ViewRole, VoteRole, WebhookIdentityType, Width, WidthType, WixMedia } from './index.typings.mjs';
|
3
|
+
export { ActionEvent, Alignment, AnchorData, AppEmbedData, AppEmbedDataAppDataOneOf, AppType, AspectRatio, AudioData, Background, BackgroundBackgroundOneOf, BackgroundType, BaseEventMetadata, BlockquoteData, BlogPaging, BookingData, Border, BorderColors, BulkGetPostMetricsRequest, BulkGetPostMetricsResponse, BulkGetPostReactionsRequest, BulkGetPostReactionsResponse, BulletedListData, ButtonData, ButtonDataType, ButtonStyles, CaptionData, CardStyles, Category, CategoryTranslation, CellStyle, CodeBlockData, CollapsibleListData, ColorData, Colors, ConvertDraftJsToRichContentRequest, ConvertDraftJsToRichContentResponse, ConvertRichContentToDraftJsRequest, ConvertRichContentToDraftJsResponse, CoverMedia, CoverMediaMediaOneOf, CreateDraftPostFromTemplateRequest, CreateDraftPostFromTemplateResponse, Crop, CursorPaging, Cursors, Decoration, DecorationDataOneOf, DecorationType, Design, Dimensions, Direction, DividerData, DividerDataAlignment, DocumentStyle, DomainEvent, DomainEventBodyOneOf, DraftPost, DraftPostTranslation, EmbedData, EmbedMedia, EmbedThumbnail, EmbedVideo, EntityCreatedEvent, EntityDeletedEvent, EntityUpdatedEvent, EventData, EventMetadata, Field, FileData, FileSource, FileSourceDataOneOf, FocalPoint, FontSizeData, FontType, GIF, GIFData, GIFType, GalleryData, GalleryOptions, GalleryOptionsLayout, GetPostBySlugRequest, GetPostMetricsRequest, GetPostRequest, GetPostTemplatesSort, GetPostsSort, GetTemplateRequest, GetTemplateResponse, GetTotalLikesPerMemberRequest, GetTotalLikesPerMemberResponse, GetTotalPostsRequest, GetTotalPublicationsRequest, GetTotalPublicationsResponse, Gradient, HTMLData, HTMLDataDataOneOf, HeadingData, Height, IdentificationData, IdentificationDataIdOneOf, Image, ImageData, ImageDataStyles, ImageStyles, InitialExpandedItems, InitialPostsCopied, Item, ItemDataOneOf, ItemStyle, Keyword, Layout, LayoutCellData, LayoutType, LikePostRequest, LikePostResponse, LineStyle, Link, LinkData, LinkDataOneOf, LinkPreviewData, LinkPreviewDataStyles, ListDemoPostsRequest, ListDemoPostsResponse, ListPostsArchiveRequest, ListPostsArchiveResponse, ListPostsRequest, ListTemplatesRequest, ListTemplatesResponse, ListValue, MapData, MapSettings, MapType, Media, MediaMediaOneOf, MentionData, MessageEnvelope, MetaData, Metadata, Metrics, ModerationDetails, ModerationStatusStatus, Node, NodeDataOneOf, NodeStyle, NodeType, NullValue, Oembed, OldBlogMigratedEvent, Option, OptionDesign, OptionLayout, Order, OrderedListData, Orientation, Origin, PDFSettings, Paging, PagingMetadataV2, ParagraphData, PeriodPostCount, PeriodPublicationsCount, Permissions, PinPostRequest, PinPostResponse, Placement, PlatformQuery, PlatformQueryPagingMethodOneOf, PlaybackOptions, PluginContainerData, PluginContainerDataAlignment, PluginContainerDataWidth, PluginContainerDataWidthDataOneOf, Poll, PollData, PollDataLayout, PollDesign, PollLayout, PollLayoutDirection, PollLayoutType, PollSettings, Position, Post, PostCategoriesUpdated, PostCountInfo, PostCountersUpdated, PostCountersUpdatedInitiatorOneOf, PostFieldField, PostLiked, PostLikedInitiatorOneOf, PostOwnerChanged, PostTagsUpdated, PostTranslation, PostUnliked, PostUnlikedInitiatorOneOf, PostsQueryResult, QueryPostCountStatsRequest, QueryPostsRequest, QueryPostsResponse, QueryPublicationsCountStatsRequest, QueryPublicationsCountStatsRequestOrder, QueryPublicationsCountStatsResponse, Reactions, Rel, Resizing, RestoreInfo, RibbonStyles, RichContent, ScheduledPostPublished, SeoSchema, Settings, SortOrder, Sorting, Source, Spoiler, SpoilerData, Status, Styles, StylesBorder, StylesPosition, TableCellData, TableData, Tag, Target, TextAlignment, TextData, TextNodeStyle, TextStyle, Thumbnails, ThumbnailsAlignment, Type, UnlikePostRequest, UnlikePostResponse, UnpinPostRequest, UnpinPostResponse, V1Media, VerticalAlignment, Video, VideoData, VideoResolution, ViewMode, ViewPostRequest, ViewPostResponse, ViewRole, VoteRole, WebhookIdentityType, Width, WidthType, WixMedia } from './index.typings.mjs';
|
4
4
|
|
5
|
+
type PostNonNullablePaths = `_id` | `title` | `excerpt` | `slug` | `featured` | `pinned` | `categoryIds` | `coverMedia.enabled` | `coverMedia.displayed` | `coverMedia.custom` | `memberId` | `hashtags` | `commentingEnabled` | `minutesToRead` | `tagIds` | `relatedPostIds` | `pricingPlanIds` | `seoData.tags` | `seoData.tags.${number}.type` | `seoData.tags.${number}.children` | `seoData.tags.${number}.custom` | `seoData.tags.${number}.disabled` | `seoData.settings.preventAutoRedirect` | `seoData.settings.keywords` | `seoData.settings.keywords.${number}.term` | `seoData.settings.keywords.${number}.isMain` | `preview` | `moderationDetails.submittedBy` | `moderationDetails.status` | `media.embedMedia.thumbnail.url` | `media.embedMedia.thumbnail.width` | `media.embedMedia.thumbnail.height` | `media.embedMedia.video.url` | `media.embedMedia.video.width` | `media.embedMedia.video.height` | `media.displayed` | `media.custom` | `hasUnpublishedChanges`;
|
5
6
|
declare function queryPostCountStats$1(httpClient: HttpClient): QueryPostCountStatsSignature;
|
6
7
|
interface QueryPostCountStatsSignature {
|
7
8
|
/**
|
@@ -16,7 +17,7 @@ interface QueryPostCountStatsSignature {
|
|
16
17
|
* @param - Options specifying time frame, sort, and filter.
|
17
18
|
* @returns Get Blog Post Count Stats response
|
18
19
|
*/
|
19
|
-
(options?: QueryPostCountStatsOptions
|
20
|
+
(options?: QueryPostCountStatsOptions): Promise<NonNullablePaths<QueryPostCountStatsResponse, `stats` | `stats.${number}.postCount`>>;
|
20
21
|
}
|
21
22
|
declare function getTotalPosts$1(httpClient: HttpClient): GetTotalPostsSignature;
|
22
23
|
interface GetTotalPostsSignature {
|
@@ -24,7 +25,7 @@ interface GetTotalPostsSignature {
|
|
24
25
|
* Retrieves the total amount of published posts of the blog.
|
25
26
|
* @param - Language Options.
|
26
27
|
*/
|
27
|
-
(options?: GetTotalPostsOptions
|
28
|
+
(options?: GetTotalPostsOptions): Promise<NonNullablePaths<GetTotalPostsResponse, `total`>>;
|
28
29
|
}
|
29
30
|
declare function getPost$1(httpClient: HttpClient): GetPostSignature;
|
30
31
|
interface GetPostSignature {
|
@@ -33,7 +34,9 @@ interface GetPostSignature {
|
|
33
34
|
* @param - Post ID.
|
34
35
|
* @param - Options specifying which fields to return.
|
35
36
|
*/
|
36
|
-
(postId: string, options?: GetPostOptions
|
37
|
+
(postId: string, options?: GetPostOptions): Promise<NonNullablePaths<GetPostResponse, {
|
38
|
+
[P in PostNonNullablePaths]: `post.${P}`;
|
39
|
+
}[PostNonNullablePaths]>>;
|
37
40
|
}
|
38
41
|
declare function getPostBySlug$1(httpClient: HttpClient): GetPostBySlugSignature;
|
39
42
|
interface GetPostBySlugSignature {
|
@@ -47,7 +50,9 @@ interface GetPostBySlugSignature {
|
|
47
50
|
* @param - Slug of the post to retrieve.
|
48
51
|
* @param - Options specifying which fields to return.
|
49
52
|
*/
|
50
|
-
(slug: string, options?: GetPostBySlugOptions
|
53
|
+
(slug: string, options?: GetPostBySlugOptions): Promise<NonNullablePaths<GetPostBySlugResponse, {
|
54
|
+
[P in PostNonNullablePaths]: `post.${P}`;
|
55
|
+
}[PostNonNullablePaths]>>;
|
51
56
|
}
|
52
57
|
declare function listPosts$1(httpClient: HttpClient): ListPostsSignature;
|
53
58
|
interface ListPostsSignature {
|
@@ -60,7 +65,9 @@ interface ListPostsSignature {
|
|
60
65
|
* - `paging.offset` is `0`.
|
61
66
|
* @param - Sort, filter, and paging options.
|
62
67
|
*/
|
63
|
-
(options?: ListPostsOptions
|
68
|
+
(options?: ListPostsOptions): Promise<NonNullablePaths<ListPostsResponse, {
|
69
|
+
[P in PostNonNullablePaths]: `posts.${number}.${P}`;
|
70
|
+
}[PostNonNullablePaths] | `metaData.count` | `metaData.offset` | `metaData.total`>>;
|
64
71
|
}
|
65
72
|
declare function queryPosts$1(httpClient: HttpClient): QueryPostsSignature;
|
66
73
|
interface QueryPostsSignature {
|
@@ -85,7 +92,7 @@ interface QueryPostsSignature {
|
|
85
92
|
* The following `PostsQueryBuilder` functions are supported for the `queryPosts()` function. For a full description of the Posts object, see the object returned for the `items` property in `PostsQueryResult`.
|
86
93
|
* @param - Options specifying which fields to return.
|
87
94
|
*/
|
88
|
-
(options?: QueryPostsOptions
|
95
|
+
(options?: QueryPostsOptions): PostsQueryBuilder;
|
89
96
|
}
|
90
97
|
declare function getPostMetrics$1(httpClient: HttpClient): GetPostMetricsSignature;
|
91
98
|
interface GetPostMetricsSignature {
|
@@ -95,7 +102,7 @@ interface GetPostMetricsSignature {
|
|
95
102
|
* A post's metrics include the comments, likes, and views the post receives.
|
96
103
|
* @param - Post ID to retrieve metrics for.
|
97
104
|
*/
|
98
|
-
(postId: string): Promise<GetPostMetricsResponse
|
105
|
+
(postId: string): Promise<NonNullablePaths<GetPostMetricsResponse, `metrics.comments` | `metrics.likes` | `metrics.views`>>;
|
99
106
|
}
|
100
107
|
declare const onPostCreated$1: EventDefinition<PostCreatedEnvelope, "wix.blog.v3.post_created">;
|
101
108
|
declare const onPostDeleted$1: EventDefinition<PostDeletedEnvelope, "wix.blog.v3.post_deleted">;
|
@@ -905,11 +905,11 @@ var PluginContainerDataAlignment = /* @__PURE__ */ ((PluginContainerDataAlignmen
|
|
905
905
|
PluginContainerDataAlignment2["RIGHT"] = "RIGHT";
|
906
906
|
return PluginContainerDataAlignment2;
|
907
907
|
})(PluginContainerDataAlignment || {});
|
908
|
-
var
|
909
|
-
|
910
|
-
|
911
|
-
return
|
912
|
-
})(
|
908
|
+
var ButtonDataType = /* @__PURE__ */ ((ButtonDataType2) => {
|
909
|
+
ButtonDataType2["LINK"] = "LINK";
|
910
|
+
ButtonDataType2["ACTION"] = "ACTION";
|
911
|
+
return ButtonDataType2;
|
912
|
+
})(ButtonDataType || {});
|
913
913
|
var Target = /* @__PURE__ */ ((Target2) => {
|
914
914
|
Target2["SELF"] = "SELF";
|
915
915
|
Target2["BLANK"] = "BLANK";
|
@@ -938,12 +938,12 @@ var Width = /* @__PURE__ */ ((Width2) => {
|
|
938
938
|
Width2["SMALL"] = "SMALL";
|
939
939
|
return Width2;
|
940
940
|
})(Width || {});
|
941
|
-
var
|
942
|
-
|
943
|
-
|
944
|
-
|
945
|
-
return
|
946
|
-
})(
|
941
|
+
var DividerDataAlignment = /* @__PURE__ */ ((DividerDataAlignment2) => {
|
942
|
+
DividerDataAlignment2["CENTER"] = "CENTER";
|
943
|
+
DividerDataAlignment2["LEFT"] = "LEFT";
|
944
|
+
DividerDataAlignment2["RIGHT"] = "RIGHT";
|
945
|
+
return DividerDataAlignment2;
|
946
|
+
})(DividerDataAlignment || {});
|
947
947
|
var ViewMode = /* @__PURE__ */ ((ViewMode2) => {
|
948
948
|
ViewMode2["NONE"] = "NONE";
|
949
949
|
ViewMode2["FULL"] = "FULL";
|
@@ -991,13 +991,13 @@ var Source = /* @__PURE__ */ ((Source2) => {
|
|
991
991
|
Source2["ADSENSE"] = "ADSENSE";
|
992
992
|
return Source2;
|
993
993
|
})(Source || {});
|
994
|
-
var
|
995
|
-
|
996
|
-
|
997
|
-
|
998
|
-
|
999
|
-
return
|
1000
|
-
})(
|
994
|
+
var StylesPosition = /* @__PURE__ */ ((StylesPosition2) => {
|
995
|
+
StylesPosition2["START"] = "START";
|
996
|
+
StylesPosition2["END"] = "END";
|
997
|
+
StylesPosition2["TOP"] = "TOP";
|
998
|
+
StylesPosition2["HIDDEN"] = "HIDDEN";
|
999
|
+
return StylesPosition2;
|
1000
|
+
})(StylesPosition || {});
|
1001
1001
|
var MapType = /* @__PURE__ */ ((MapType2) => {
|
1002
1002
|
MapType2["ROADMAP"] = "ROADMAP";
|
1003
1003
|
MapType2["SATELITE"] = "SATELITE";
|
@@ -1050,6 +1050,43 @@ var FontType = /* @__PURE__ */ ((FontType2) => {
|
|
1050
1050
|
FontType2["EM"] = "EM";
|
1051
1051
|
return FontType2;
|
1052
1052
|
})(FontType || {});
|
1053
|
+
var Position = /* @__PURE__ */ ((Position2) => {
|
1054
|
+
Position2["START"] = "START";
|
1055
|
+
Position2["END"] = "END";
|
1056
|
+
Position2["TOP"] = "TOP";
|
1057
|
+
return Position2;
|
1058
|
+
})(Position || {});
|
1059
|
+
var AspectRatio = /* @__PURE__ */ ((AspectRatio2) => {
|
1060
|
+
AspectRatio2["SQUARE"] = "SQUARE";
|
1061
|
+
AspectRatio2["RECTANGLE"] = "RECTANGLE";
|
1062
|
+
return AspectRatio2;
|
1063
|
+
})(AspectRatio || {});
|
1064
|
+
var Resizing = /* @__PURE__ */ ((Resizing2) => {
|
1065
|
+
Resizing2["FILL"] = "FILL";
|
1066
|
+
Resizing2["FIT"] = "FIT";
|
1067
|
+
return Resizing2;
|
1068
|
+
})(Resizing || {});
|
1069
|
+
var Placement = /* @__PURE__ */ ((Placement2) => {
|
1070
|
+
Placement2["IMAGE"] = "IMAGE";
|
1071
|
+
Placement2["PRODUCT_INFO"] = "PRODUCT_INFO";
|
1072
|
+
return Placement2;
|
1073
|
+
})(Placement || {});
|
1074
|
+
var Type = /* @__PURE__ */ ((Type2) => {
|
1075
|
+
Type2["CONTAINED"] = "CONTAINED";
|
1076
|
+
Type2["FRAMELESS"] = "FRAMELESS";
|
1077
|
+
return Type2;
|
1078
|
+
})(Type || {});
|
1079
|
+
var Alignment = /* @__PURE__ */ ((Alignment2) => {
|
1080
|
+
Alignment2["START"] = "START";
|
1081
|
+
Alignment2["CENTER"] = "CENTER";
|
1082
|
+
Alignment2["END"] = "END";
|
1083
|
+
return Alignment2;
|
1084
|
+
})(Alignment || {});
|
1085
|
+
var Layout = /* @__PURE__ */ ((Layout2) => {
|
1086
|
+
Layout2["STACKED"] = "STACKED";
|
1087
|
+
Layout2["SIDE_BY_SIDE"] = "SIDE_BY_SIDE";
|
1088
|
+
return Layout2;
|
1089
|
+
})(Layout || {});
|
1053
1090
|
var AppType = /* @__PURE__ */ ((AppType2) => {
|
1054
1091
|
AppType2["PRODUCT"] = "PRODUCT";
|
1055
1092
|
AppType2["EVENT"] = "EVENT";
|
@@ -1844,16 +1881,20 @@ var onPostUpdated2 = createEventModule(onPostUpdated);
|
|
1844
1881
|
export {
|
1845
1882
|
Alignment,
|
1846
1883
|
AppType,
|
1884
|
+
AspectRatio,
|
1847
1885
|
BackgroundType,
|
1886
|
+
ButtonDataType,
|
1848
1887
|
Crop,
|
1849
1888
|
DecorationType,
|
1850
1889
|
Direction,
|
1890
|
+
DividerDataAlignment,
|
1851
1891
|
Field,
|
1852
1892
|
FontType,
|
1853
1893
|
GIFType,
|
1854
1894
|
GetPostTemplatesSort,
|
1855
1895
|
GetPostsSort,
|
1856
1896
|
InitialExpandedItems,
|
1897
|
+
Layout,
|
1857
1898
|
LayoutType,
|
1858
1899
|
LineStyle,
|
1859
1900
|
MapType,
|
@@ -1863,15 +1904,18 @@ export {
|
|
1863
1904
|
Order,
|
1864
1905
|
Orientation,
|
1865
1906
|
Origin,
|
1907
|
+
Placement,
|
1866
1908
|
PluginContainerDataAlignment,
|
1867
1909
|
PollLayoutDirection,
|
1868
1910
|
PollLayoutType,
|
1869
1911
|
Position,
|
1870
1912
|
PostFieldField,
|
1871
1913
|
QueryPublicationsCountStatsRequestOrder,
|
1914
|
+
Resizing,
|
1872
1915
|
SortOrder,
|
1873
1916
|
Source,
|
1874
1917
|
Status,
|
1918
|
+
StylesPosition,
|
1875
1919
|
Target,
|
1876
1920
|
TextAlignment,
|
1877
1921
|
ThumbnailsAlignment,
|