@wix/auto_sdk_blog_posts 1.0.65 → 1.0.66

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (37) hide show
  1. package/build/cjs/index.d.ts +1 -1
  2. package/build/cjs/index.js +0 -37
  3. package/build/cjs/index.js.map +1 -1
  4. package/build/cjs/index.typings.d.ts +1 -103
  5. package/build/cjs/index.typings.js +0 -37
  6. package/build/cjs/index.typings.js.map +1 -1
  7. package/build/cjs/meta.d.ts +1 -103
  8. package/build/cjs/meta.js +0 -37
  9. package/build/cjs/meta.js.map +1 -1
  10. package/build/es/index.d.mts +1 -1
  11. package/build/es/index.mjs +0 -33
  12. package/build/es/index.mjs.map +1 -1
  13. package/build/es/index.typings.d.mts +1 -103
  14. package/build/es/index.typings.mjs +0 -33
  15. package/build/es/index.typings.mjs.map +1 -1
  16. package/build/es/meta.d.mts +1 -103
  17. package/build/es/meta.mjs +0 -33
  18. package/build/es/meta.mjs.map +1 -1
  19. package/build/internal/cjs/index.d.ts +1 -1
  20. package/build/internal/cjs/index.js +0 -37
  21. package/build/internal/cjs/index.js.map +1 -1
  22. package/build/internal/cjs/index.typings.d.ts +1 -103
  23. package/build/internal/cjs/index.typings.js +0 -37
  24. package/build/internal/cjs/index.typings.js.map +1 -1
  25. package/build/internal/cjs/meta.d.ts +1 -103
  26. package/build/internal/cjs/meta.js +0 -37
  27. package/build/internal/cjs/meta.js.map +1 -1
  28. package/build/internal/es/index.d.mts +1 -1
  29. package/build/internal/es/index.mjs +0 -33
  30. package/build/internal/es/index.mjs.map +1 -1
  31. package/build/internal/es/index.typings.d.mts +1 -103
  32. package/build/internal/es/index.typings.mjs +0 -33
  33. package/build/internal/es/index.typings.mjs.map +1 -1
  34. package/build/internal/es/meta.d.mts +1 -103
  35. package/build/internal/es/meta.mjs +0 -33
  36. package/build/internal/es/meta.mjs.map +1 -1
  37. package/package.json +2 -2
@@ -1840,108 +1840,6 @@ interface BlockquoteData {
1840
1840
  interface CaptionData {
1841
1841
  textStyle?: TextStyle;
1842
1842
  }
1843
- interface LayoutData {
1844
- /**
1845
- * Background color as a hexadecimal value.
1846
- * @format COLOR_HEX
1847
- */
1848
- backgroundColor?: string | null;
1849
- /** Background image. */
1850
- backgroundImage?: BackgroundImage;
1851
- /**
1852
- * Border color as a hexadecimal value.
1853
- * @format COLOR_HEX
1854
- */
1855
- borderColor?: string | null;
1856
- /** Border width in pixels. */
1857
- borderWidth?: number | null;
1858
- /** Border */
1859
- borderRadius?: number | null;
1860
- /**
1861
- * Backdrop color as a hexadecimal value.
1862
- * @format COLOR_HEX
1863
- */
1864
- backdropColor?: string | null;
1865
- /** Backdrop image.radius in pixels. */
1866
- backdropImage?: BackgroundImage;
1867
- /** Backdrop top padding. */
1868
- backdropPaddingTop?: number | null;
1869
- /** Backdrop bottom padding */
1870
- backdropPaddingBottom?: number | null;
1871
- /** Horizontal and vertical gap between columns */
1872
- gap?: number | null;
1873
- /**
1874
- * Padding in pixels for cells. Follows CSS order: top, right, bottom, left
1875
- * @maxSize 4
1876
- */
1877
- cellPadding?: number[];
1878
- /** Vertical alignment for the cell's items. */
1879
- cellVerticalAlignment?: VerticalAlignmentAlignmentWithLiterals;
1880
- /** Responsiveness behaviour of columns when responsiveness applies. Either stacks or wrappers. */
1881
- responsivenessBehaviour?: ResponsivenessBehaviourWithLiterals;
1882
- /** Size in pixels when responsiveness_behaviour applies */
1883
- responsivenessBreakpoint?: number | null;
1884
- }
1885
- declare enum Scaling {
1886
- /** Auto image scaling */
1887
- AUTO = "AUTO",
1888
- /** Contain image scaling */
1889
- CONTAIN = "CONTAIN",
1890
- /** Cover image scaling */
1891
- COVER = "COVER"
1892
- }
1893
- /** @enumType */
1894
- type ScalingWithLiterals = Scaling | 'AUTO' | 'CONTAIN' | 'COVER';
1895
- declare enum ImagePosition {
1896
- /** Image positioned at the center */
1897
- CENTER = "CENTER",
1898
- /** Image positioned on the left */
1899
- CENTER_LEFT = "CENTER_LEFT",
1900
- /** Image positioned on the right */
1901
- CENTER_RIGHT = "CENTER_RIGHT",
1902
- /** Image positioned at the center top */
1903
- TOP = "TOP",
1904
- /** Image positioned at the top left */
1905
- TOP_LEFT = "TOP_LEFT",
1906
- /** Image positioned at the top right */
1907
- TOP_RIGHT = "TOP_RIGHT",
1908
- /** Image positioned at the center bottom */
1909
- BOTTOM = "BOTTOM",
1910
- /** Image positioned at the bottom left */
1911
- BOTTOM_LEFT = "BOTTOM_LEFT",
1912
- /** Image positioned at the bottom right */
1913
- BOTTOM_RIGHT = "BOTTOM_RIGHT"
1914
- }
1915
- /** @enumType */
1916
- type ImagePositionWithLiterals = ImagePosition | 'CENTER' | 'CENTER_LEFT' | 'CENTER_RIGHT' | 'TOP' | 'TOP_LEFT' | 'TOP_RIGHT' | 'BOTTOM' | 'BOTTOM_LEFT' | 'BOTTOM_RIGHT';
1917
- interface BackgroundImage {
1918
- /** Background image. */
1919
- media?: V1Media;
1920
- /** Background image opacity. */
1921
- opacity?: number | null;
1922
- /** Background image scaling. */
1923
- scaling?: ScalingWithLiterals;
1924
- /** Position of background. Defaults to `CENTER`. */
1925
- position?: ImagePositionWithLiterals;
1926
- }
1927
- declare enum VerticalAlignmentAlignment {
1928
- /** Top alignment */
1929
- TOP = "TOP",
1930
- /** Middle alignment */
1931
- MIDDLE = "MIDDLE",
1932
- /** Bottom alignment */
1933
- BOTTOM = "BOTTOM"
1934
- }
1935
- /** @enumType */
1936
- type VerticalAlignmentAlignmentWithLiterals = VerticalAlignmentAlignment | 'TOP' | 'MIDDLE' | 'BOTTOM';
1937
- declare enum ResponsivenessBehaviour {
1938
- /** Stacking of columns */
1939
- STACK = "STACK",
1940
- /** Wrapping of columns */
1941
- WRAP = "WRAP"
1942
- }
1943
- /** @enumType */
1944
- type ResponsivenessBehaviourWithLiterals = ResponsivenessBehaviour | 'STACK' | 'WRAP';
1945
1843
  interface LayoutCellData {
1946
1844
  /** Size of the cell in 12 columns grid. */
1947
1845
  colSpan?: number | null;
@@ -3992,4 +3890,4 @@ interface PostsQueryBuilder {
3992
3890
  */
3993
3891
  declare function getPostMetrics(postId: string): Promise<NonNullablePaths<GetPostMetricsResponse, `metrics.comments` | `metrics.likes` | `metrics.views`, 3>>;
3994
3892
 
3995
- export { type ActionEvent, Alignment, type AlignmentWithLiterals, type AnchorData, type AppEmbedData, type AppEmbedDataAppDataOneOf, AppType, type AppTypeWithLiterals, AspectRatio, type AspectRatioWithLiterals, type AudioData, type Background, type BackgroundBackgroundOneOf, type BackgroundImage, BackgroundType, type BackgroundTypeWithLiterals, type BaseEventMetadata, type BlockquoteData, type BlogPaging, type BookingData, type Border, type BorderColors, type BulkGetPostReactionsRequest, type BulkGetPostReactionsResponse, type BulletedListData, type ButtonData, ButtonDataType, type ButtonDataTypeWithLiterals, type ButtonStyles, type CaptionData, type CardStyles, type Category, type CategoryTranslation, type CellStyle, type CodeBlockData, type CollapsibleListData, type ColorData, type Colors, type ConvertDraftJsToRichContentRequest, type ConvertDraftJsToRichContentResponse, type ConvertRichContentToDraftJsRequest, type ConvertRichContentToDraftJsResponse, type CoverMedia, type CoverMediaMediaOneOf, type CreateDraftPostFromTemplateRequest, type CreateDraftPostFromTemplateResponse, Crop, type CropWithLiterals, type CursorPaging, type Cursors, type Decoration, type DecorationDataOneOf, DecorationType, type DecorationTypeWithLiterals, type Design, type Dimensions, Direction, type DirectionWithLiterals, type DividerData, DividerDataAlignment, type DividerDataAlignmentWithLiterals, type DocumentStyle, type DomainEvent, type DomainEventBodyOneOf, type DraftPost, type DraftPostTranslation, 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 GetPostBySlugOptions, type GetPostBySlugRequest, type GetPostBySlugResponse, type GetPostMetricsRequest, type GetPostMetricsResponse, type GetPostOptions, type GetPostRequest, type GetPostResponse, GetPostTemplatesSort, type GetPostTemplatesSortWithLiterals, GetPostsSort, type GetPostsSortWithLiterals, type GetTemplateRequest, type GetTemplateResponse, type GetTotalLikesPerMemberRequest, type GetTotalLikesPerMemberResponse, type GetTotalPostsOptions, type GetTotalPostsRequest, type GetTotalPostsResponse, type GetTotalPublicationsRequest, type GetTotalPublicationsResponse, type Gradient, type HTMLData, type HTMLDataDataOneOf, type HeadingData, type Height, type IdentificationData, type IdentificationDataIdOneOf, type Image, type ImageData, type ImageDataStyles, ImagePosition, type ImagePositionWithLiterals, type ImageStyles, InitialExpandedItems, type InitialExpandedItemsWithLiterals, type InitialPostsCopied, type Item, type ItemDataOneOf, type ItemStyle, type Keyword, Layout, type LayoutCellData, type LayoutData, LayoutType, type LayoutTypeWithLiterals, type LayoutWithLiterals, type LikePostRequest, type LikePostResponse, LineStyle, type LineStyleWithLiterals, type Link, type LinkData, type LinkDataOneOf, type LinkPreviewData, type LinkPreviewDataStyles, type ListDemoPostsRequest, type ListDemoPostsResponse, type ListPostsArchiveRequest, type ListPostsArchiveResponse, type ListPostsOptions, type ListPostsRequest, type ListPostsResponse, type ListTemplatesRequest, type ListTemplatesResponse, type ListValue, type MapData, type MapSettings, MapType, type MapTypeWithLiterals, type Media, type MediaMediaOneOf, type MentionData, type MessageEnvelope, type MetaData, type Metadata, type Metrics, type ModerationDetails, ModerationStatusStatus, type ModerationStatusStatusWithLiterals, type Node, type NodeDataOneOf, type NodeStyle, NodeType, type NodeTypeWithLiterals, NullValue, type NullValueWithLiterals, type Oembed, type OldBlogMigratedEvent, type Option, type OptionDesign, type OptionLayout, Order, type OrderWithLiterals, type OrderedListData, Orientation, type OrientationWithLiterals, Origin, type OriginWithLiterals, type PDFSettings, type Paging, type PagingMetadataV2, type ParagraphData, type PeriodPostCount, type PeriodPublicationsCount, type Permissions, type PinPostRequest, type PinPostResponse, 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 Post, type PostCategoriesUpdated, type PostCountInfo, type PostCountersUpdated, type PostCountersUpdatedInitiatorOneOf, type PostCreatedEnvelope, type PostDeletedEnvelope, PostFieldField, type PostFieldFieldWithLiterals, type PostLiked, type PostLikedEnvelope, type PostLikedInitiatorOneOf, type PostOwnerChanged, type PostTagsUpdated, type PostTranslation, type PostUnliked, type PostUnlikedEnvelope, type PostUnlikedInitiatorOneOf, type PostUpdatedEnvelope, type PostsQueryBuilder, type PostsQueryResult, type PricingData, type QueryPostCountStatsOptions, type QueryPostCountStatsRequest, type QueryPostCountStatsResponse, type QueryPostsOptions, type QueryPostsRequest, type QueryPostsResponse, type QueryPublicationsCountStatsRequest, QueryPublicationsCountStatsRequestOrder, type QueryPublicationsCountStatsRequestOrderWithLiterals, type QueryPublicationsCountStatsResponse, type Reactions, type Rel, Resizing, type ResizingWithLiterals, ResponsivenessBehaviour, type ResponsivenessBehaviourWithLiterals, type RestoreInfo, type RibbonStyles, type RichContent, Scaling, type ScalingWithLiterals, type ScheduledPostPublished, 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, type TypeWithLiterals, type UnlikePostRequest, type UnlikePostResponse, type UnpinPostRequest, type UnpinPostResponse, type V1Media, VerticalAlignment, VerticalAlignmentAlignment, type VerticalAlignmentAlignmentWithLiterals, type VerticalAlignmentWithLiterals, type Video, type VideoData, type VideoResolution, ViewMode, type ViewModeWithLiterals, type ViewPostRequest, type ViewPostResponse, ViewRole, type ViewRoleWithLiterals, VoteRole, type VoteRoleWithLiterals, WebhookIdentityType, type WebhookIdentityTypeWithLiterals, Width, WidthType, type WidthTypeWithLiterals, type WidthWithLiterals, type WixMedia, getPost, getPostBySlug, getPostMetrics, getTotalPosts, listPosts, onPostCreated, onPostDeleted, onPostLiked, onPostUnliked, onPostUpdated, queryPostCountStats, queryPosts };
3893
+ export { type ActionEvent, Alignment, type AlignmentWithLiterals, type AnchorData, type AppEmbedData, type AppEmbedDataAppDataOneOf, AppType, type AppTypeWithLiterals, 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 BulkGetPostReactionsRequest, type BulkGetPostReactionsResponse, type BulletedListData, type ButtonData, ButtonDataType, type ButtonDataTypeWithLiterals, type ButtonStyles, type CaptionData, type CardStyles, type Category, type CategoryTranslation, type CellStyle, type CodeBlockData, type CollapsibleListData, type ColorData, type Colors, type ConvertDraftJsToRichContentRequest, type ConvertDraftJsToRichContentResponse, type ConvertRichContentToDraftJsRequest, type ConvertRichContentToDraftJsResponse, type CoverMedia, type CoverMediaMediaOneOf, type CreateDraftPostFromTemplateRequest, type CreateDraftPostFromTemplateResponse, Crop, type CropWithLiterals, type CursorPaging, type Cursors, type Decoration, type DecorationDataOneOf, DecorationType, type DecorationTypeWithLiterals, type Design, type Dimensions, Direction, type DirectionWithLiterals, type DividerData, DividerDataAlignment, type DividerDataAlignmentWithLiterals, type DocumentStyle, type DomainEvent, type DomainEventBodyOneOf, type DraftPost, type DraftPostTranslation, 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 GetPostBySlugOptions, type GetPostBySlugRequest, type GetPostBySlugResponse, type GetPostMetricsRequest, type GetPostMetricsResponse, type GetPostOptions, type GetPostRequest, type GetPostResponse, GetPostTemplatesSort, type GetPostTemplatesSortWithLiterals, GetPostsSort, type GetPostsSortWithLiterals, type GetTemplateRequest, type GetTemplateResponse, type GetTotalLikesPerMemberRequest, type GetTotalLikesPerMemberResponse, type GetTotalPostsOptions, type GetTotalPostsRequest, type GetTotalPostsResponse, type GetTotalPublicationsRequest, type GetTotalPublicationsResponse, type Gradient, type HTMLData, type HTMLDataDataOneOf, type HeadingData, type Height, type IdentificationData, type IdentificationDataIdOneOf, type Image, type ImageData, type ImageDataStyles, type ImageStyles, InitialExpandedItems, type InitialExpandedItemsWithLiterals, type InitialPostsCopied, type Item, type ItemDataOneOf, type ItemStyle, type Keyword, Layout, type LayoutCellData, LayoutType, type LayoutTypeWithLiterals, type LayoutWithLiterals, type LikePostRequest, type LikePostResponse, LineStyle, type LineStyleWithLiterals, type Link, type LinkData, type LinkDataOneOf, type LinkPreviewData, type LinkPreviewDataStyles, type ListDemoPostsRequest, type ListDemoPostsResponse, type ListPostsArchiveRequest, type ListPostsArchiveResponse, type ListPostsOptions, type ListPostsRequest, type ListPostsResponse, type ListTemplatesRequest, type ListTemplatesResponse, type ListValue, type MapData, type MapSettings, MapType, type MapTypeWithLiterals, type Media, type MediaMediaOneOf, type MentionData, type MessageEnvelope, type MetaData, type Metadata, type Metrics, type ModerationDetails, ModerationStatusStatus, type ModerationStatusStatusWithLiterals, type Node, type NodeDataOneOf, type NodeStyle, NodeType, type NodeTypeWithLiterals, NullValue, type NullValueWithLiterals, type Oembed, type OldBlogMigratedEvent, type Option, type OptionDesign, type OptionLayout, Order, type OrderWithLiterals, type OrderedListData, Orientation, type OrientationWithLiterals, Origin, type OriginWithLiterals, type PDFSettings, type Paging, type PagingMetadataV2, type ParagraphData, type PeriodPostCount, type PeriodPublicationsCount, type Permissions, type PinPostRequest, type PinPostResponse, 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 Post, type PostCategoriesUpdated, type PostCountInfo, type PostCountersUpdated, type PostCountersUpdatedInitiatorOneOf, type PostCreatedEnvelope, type PostDeletedEnvelope, PostFieldField, type PostFieldFieldWithLiterals, type PostLiked, type PostLikedEnvelope, type PostLikedInitiatorOneOf, type PostOwnerChanged, type PostTagsUpdated, type PostTranslation, type PostUnliked, type PostUnlikedEnvelope, type PostUnlikedInitiatorOneOf, type PostUpdatedEnvelope, type PostsQueryBuilder, type PostsQueryResult, type PricingData, type QueryPostCountStatsOptions, type QueryPostCountStatsRequest, type QueryPostCountStatsResponse, type QueryPostsOptions, type QueryPostsRequest, type QueryPostsResponse, type QueryPublicationsCountStatsRequest, QueryPublicationsCountStatsRequestOrder, type QueryPublicationsCountStatsRequestOrderWithLiterals, type QueryPublicationsCountStatsResponse, type Reactions, type Rel, Resizing, type ResizingWithLiterals, type RestoreInfo, type RibbonStyles, type RichContent, type ScheduledPostPublished, 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, type TypeWithLiterals, type UnlikePostRequest, type UnlikePostResponse, type UnpinPostRequest, type UnpinPostResponse, type V1Media, VerticalAlignment, type VerticalAlignmentWithLiterals, type Video, type VideoData, type VideoResolution, ViewMode, type ViewModeWithLiterals, type ViewPostRequest, type ViewPostResponse, ViewRole, type ViewRoleWithLiterals, VoteRole, type VoteRoleWithLiterals, WebhookIdentityType, type WebhookIdentityTypeWithLiterals, Width, WidthType, type WidthTypeWithLiterals, type WidthWithLiterals, type WixMedia, getPost, getPostBySlug, getPostMetrics, getTotalPosts, listPosts, onPostCreated, onPostDeleted, onPostLiked, onPostUnliked, onPostUpdated, queryPostCountStats, queryPosts };
@@ -34,7 +34,6 @@ __export(index_typings_exports, {
34
34
  GIFType: () => GIFType,
35
35
  GetPostTemplatesSort: () => GetPostTemplatesSort,
36
36
  GetPostsSort: () => GetPostsSort,
37
- ImagePosition: () => ImagePosition,
38
37
  InitialExpandedItems: () => InitialExpandedItems,
39
38
  Layout: () => Layout,
40
39
  LayoutType: () => LayoutType,
@@ -54,8 +53,6 @@ __export(index_typings_exports, {
54
53
  PostFieldField: () => PostFieldField,
55
54
  QueryPublicationsCountStatsRequestOrder: () => QueryPublicationsCountStatsRequestOrder,
56
55
  Resizing: () => Resizing,
57
- ResponsivenessBehaviour: () => ResponsivenessBehaviour,
58
- Scaling: () => Scaling,
59
56
  SortOrder: () => SortOrder,
60
57
  Source: () => Source,
61
58
  Status: () => Status,
@@ -65,7 +62,6 @@ __export(index_typings_exports, {
65
62
  ThumbnailsAlignment: () => ThumbnailsAlignment,
66
63
  Type: () => Type,
67
64
  VerticalAlignment: () => VerticalAlignment,
68
- VerticalAlignmentAlignment: () => VerticalAlignmentAlignment,
69
65
  ViewMode: () => ViewMode,
70
66
  ViewRole: () => ViewRole,
71
67
  VoteRole: () => VoteRole,
@@ -1204,35 +1200,6 @@ var NullValue = /* @__PURE__ */ ((NullValue2) => {
1204
1200
  NullValue2["NULL_VALUE"] = "NULL_VALUE";
1205
1201
  return NullValue2;
1206
1202
  })(NullValue || {});
1207
- var Scaling = /* @__PURE__ */ ((Scaling2) => {
1208
- Scaling2["AUTO"] = "AUTO";
1209
- Scaling2["CONTAIN"] = "CONTAIN";
1210
- Scaling2["COVER"] = "COVER";
1211
- return Scaling2;
1212
- })(Scaling || {});
1213
- var ImagePosition = /* @__PURE__ */ ((ImagePosition2) => {
1214
- ImagePosition2["CENTER"] = "CENTER";
1215
- ImagePosition2["CENTER_LEFT"] = "CENTER_LEFT";
1216
- ImagePosition2["CENTER_RIGHT"] = "CENTER_RIGHT";
1217
- ImagePosition2["TOP"] = "TOP";
1218
- ImagePosition2["TOP_LEFT"] = "TOP_LEFT";
1219
- ImagePosition2["TOP_RIGHT"] = "TOP_RIGHT";
1220
- ImagePosition2["BOTTOM"] = "BOTTOM";
1221
- ImagePosition2["BOTTOM_LEFT"] = "BOTTOM_LEFT";
1222
- ImagePosition2["BOTTOM_RIGHT"] = "BOTTOM_RIGHT";
1223
- return ImagePosition2;
1224
- })(ImagePosition || {});
1225
- var VerticalAlignmentAlignment = /* @__PURE__ */ ((VerticalAlignmentAlignment2) => {
1226
- VerticalAlignmentAlignment2["TOP"] = "TOP";
1227
- VerticalAlignmentAlignment2["MIDDLE"] = "MIDDLE";
1228
- VerticalAlignmentAlignment2["BOTTOM"] = "BOTTOM";
1229
- return VerticalAlignmentAlignment2;
1230
- })(VerticalAlignmentAlignment || {});
1231
- var ResponsivenessBehaviour = /* @__PURE__ */ ((ResponsivenessBehaviour2) => {
1232
- ResponsivenessBehaviour2["STACK"] = "STACK";
1233
- ResponsivenessBehaviour2["WRAP"] = "WRAP";
1234
- return ResponsivenessBehaviour2;
1235
- })(ResponsivenessBehaviour || {});
1236
1203
  var ModerationStatusStatus = /* @__PURE__ */ ((ModerationStatusStatus2) => {
1237
1204
  ModerationStatusStatus2["UNKNOWN"] = "UNKNOWN";
1238
1205
  ModerationStatusStatus2["APPROVED"] = "APPROVED";
@@ -1694,7 +1661,6 @@ async function getPostMetrics2(postId) {
1694
1661
  GIFType,
1695
1662
  GetPostTemplatesSort,
1696
1663
  GetPostsSort,
1697
- ImagePosition,
1698
1664
  InitialExpandedItems,
1699
1665
  Layout,
1700
1666
  LayoutType,
@@ -1714,8 +1680,6 @@ async function getPostMetrics2(postId) {
1714
1680
  PostFieldField,
1715
1681
  QueryPublicationsCountStatsRequestOrder,
1716
1682
  Resizing,
1717
- ResponsivenessBehaviour,
1718
- Scaling,
1719
1683
  SortOrder,
1720
1684
  Source,
1721
1685
  Status,
@@ -1725,7 +1689,6 @@ async function getPostMetrics2(postId) {
1725
1689
  ThumbnailsAlignment,
1726
1690
  Type,
1727
1691
  VerticalAlignment,
1728
- VerticalAlignmentAlignment,
1729
1692
  ViewMode,
1730
1693
  ViewRole,
1731
1694
  VoteRole,