@wix/auto_sdk_blog_posts 1.0.150 → 1.0.152

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 +7 -0
  3. package/build/cjs/index.js.map +1 -1
  4. package/build/cjs/index.typings.d.ts +77 -52
  5. package/build/cjs/index.typings.js +7 -0
  6. package/build/cjs/index.typings.js.map +1 -1
  7. package/build/cjs/meta.d.ts +77 -52
  8. package/build/cjs/meta.js +7 -0
  9. package/build/cjs/meta.js.map +1 -1
  10. package/build/es/index.d.mts +1 -1
  11. package/build/es/index.mjs +6 -0
  12. package/build/es/index.mjs.map +1 -1
  13. package/build/es/index.typings.d.mts +77 -52
  14. package/build/es/index.typings.mjs +6 -0
  15. package/build/es/index.typings.mjs.map +1 -1
  16. package/build/es/meta.d.mts +77 -52
  17. package/build/es/meta.mjs +6 -0
  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 +7 -0
  21. package/build/internal/cjs/index.js.map +1 -1
  22. package/build/internal/cjs/index.typings.d.ts +77 -52
  23. package/build/internal/cjs/index.typings.js +7 -0
  24. package/build/internal/cjs/index.typings.js.map +1 -1
  25. package/build/internal/cjs/meta.d.ts +77 -52
  26. package/build/internal/cjs/meta.js +7 -0
  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 +6 -0
  30. package/build/internal/es/index.mjs.map +1 -1
  31. package/build/internal/es/index.typings.d.mts +77 -52
  32. package/build/internal/es/index.typings.mjs +6 -0
  33. package/build/internal/es/index.typings.mjs.map +1 -1
  34. package/build/internal/es/meta.d.mts +77 -52
  35. package/build/internal/es/meta.mjs +6 -0
  36. package/build/internal/es/meta.mjs.map +1 -1
  37. package/package.json +2 -2
@@ -508,7 +508,7 @@ type GradientTypeWithLiterals = GradientType | 'LINEAR' | 'RADIAL';
508
508
  interface Stop {
509
509
  /**
510
510
  * Stop color as hex value.
511
- * @format COLOR_HEX
511
+ * @maxLength 19
512
512
  */
513
513
  color?: string | null;
514
514
  /** Stop position (0-1). */
@@ -549,7 +549,7 @@ interface Background {
549
549
  type?: BackgroundTypeWithLiterals;
550
550
  /**
551
551
  * Background color as a hexadecimal value.
552
- * @format COLOR_HEX
552
+ * @maxLength 19
553
553
  */
554
554
  color?: string | null;
555
555
  /** Gradient configuration. */
@@ -656,33 +656,33 @@ interface Styles {
656
656
  borderRadius?: number | null;
657
657
  /**
658
658
  * Border color as a hexadecimal value.
659
- * @format COLOR_HEX
659
+ * @maxLength 19
660
660
  */
661
661
  borderColor?: string | null;
662
662
  /**
663
663
  * Border color as a hexadecimal value (hover state).
664
- * @format COLOR_HEX
664
+ * @maxLength 19
665
665
  */
666
666
  borderColorHover?: string | null;
667
667
  /**
668
668
  * Text color as a hexadecimal value.
669
- * @format COLOR_HEX
669
+ * @maxLength 19
670
670
  */
671
671
  textColor?: string | null;
672
672
  /**
673
673
  * Text color as a hexadecimal value (hover state).
674
- * @format COLOR_HEX
674
+ * @maxLength 19
675
675
  */
676
676
  textColorHover?: string | null;
677
677
  /**
678
678
  * Deprecated: Use `background` instead.
679
- * @format COLOR_HEX
679
+ * @maxLength 19
680
680
  * @deprecated
681
681
  */
682
682
  backgroundColor?: string | null;
683
683
  /**
684
684
  * Deprecated: Use `backgroundHover` instead.
685
- * @format COLOR_HEX
685
+ * @maxLength 19
686
686
  * @deprecated
687
687
  */
688
688
  backgroundColorHover?: string | null;
@@ -1134,7 +1134,7 @@ interface StylesBorder {
1134
1134
  width?: number | null;
1135
1135
  /**
1136
1136
  * Border color as a hexadecimal value.
1137
- * @format COLOR_HEX
1137
+ * @maxLength 19
1138
1138
  */
1139
1139
  color?: string | null;
1140
1140
  /** Border radius in pixels. */
@@ -1175,22 +1175,22 @@ type StylesPositionWithLiterals = StylesPosition | 'START' | 'END' | 'TOP' | 'HI
1175
1175
  interface LinkPreviewDataStyles {
1176
1176
  /**
1177
1177
  * Background color as a hexadecimal value.
1178
- * @format COLOR_HEX
1178
+ * @maxLength 19
1179
1179
  */
1180
1180
  backgroundColor?: string | null;
1181
1181
  /**
1182
1182
  * Title color as a hexadecimal value.
1183
- * @format COLOR_HEX
1183
+ * @maxLength 19
1184
1184
  */
1185
1185
  titleColor?: string | null;
1186
1186
  /**
1187
1187
  * Subtitle color as a hexadecimal value.
1188
- * @format COLOR_HEX
1188
+ * @maxLength 19
1189
1189
  */
1190
1190
  subtitleColor?: string | null;
1191
1191
  /**
1192
1192
  * Link color as a hexadecimal value.
1193
- * @format COLOR_HEX
1193
+ * @maxLength 19
1194
1194
  */
1195
1195
  linkColor?: string | null;
1196
1196
  /** Border width in pixels. */
@@ -1199,7 +1199,7 @@ interface LinkPreviewDataStyles {
1199
1199
  borderRadius?: number | null;
1200
1200
  /**
1201
1201
  * Border color as a hexadecimal value.
1202
- * @format COLOR_HEX
1202
+ * @maxLength 19
1203
1203
  */
1204
1204
  borderColor?: string | null;
1205
1205
  /** Position of thumbnail. Defaults to `START`. */
@@ -1350,19 +1350,19 @@ interface BackgroundGradient {
1350
1350
  angle?: number | null;
1351
1351
  /**
1352
1352
  * The start color as a hexademical value.
1353
- * @format COLOR_HEX
1353
+ * @maxLength 19
1354
1354
  */
1355
1355
  startColor?: string | null;
1356
1356
  /**
1357
1357
  * The end color as a hexademical value.
1358
- * @format COLOR_HEX
1358
+ * @maxLength 19
1359
1359
  */
1360
1360
  lastColor?: string | null;
1361
1361
  }
1362
1362
  interface PollDesignBackground extends PollDesignBackgroundBackgroundOneOf {
1363
1363
  /**
1364
1364
  * The background color as a hexademical value.
1365
- * @format COLOR_HEX
1365
+ * @maxLength 19
1366
1366
  */
1367
1367
  color?: string | null;
1368
1368
  /** An image to use for the background. */
@@ -1376,7 +1376,7 @@ interface PollDesignBackground extends PollDesignBackgroundBackgroundOneOf {
1376
1376
  interface PollDesignBackgroundBackgroundOneOf {
1377
1377
  /**
1378
1378
  * The background color as a hexademical value.
1379
- * @format COLOR_HEX
1379
+ * @maxLength 19
1380
1380
  */
1381
1381
  color?: string | null;
1382
1382
  /** An image to use for the background. */
@@ -1690,32 +1690,32 @@ interface ButtonStyles {
1690
1690
  borderRadius?: number | null;
1691
1691
  /**
1692
1692
  * Border color as a hexadecimal value.
1693
- * @format COLOR_HEX
1693
+ * @maxLength 19
1694
1694
  */
1695
1695
  borderColor?: string | null;
1696
1696
  /**
1697
1697
  * Text color as a hexadecimal value.
1698
- * @format COLOR_HEX
1698
+ * @maxLength 19
1699
1699
  */
1700
1700
  textColor?: string | null;
1701
1701
  /**
1702
1702
  * Background color as a hexadecimal value.
1703
- * @format COLOR_HEX
1703
+ * @maxLength 19
1704
1704
  */
1705
1705
  backgroundColor?: string | null;
1706
1706
  /**
1707
1707
  * Border color as a hexadecimal value (hover state).
1708
- * @format COLOR_HEX
1708
+ * @maxLength 19
1709
1709
  */
1710
1710
  borderColorHover?: string | null;
1711
1711
  /**
1712
1712
  * Text color as a hexadecimal value (hover state).
1713
- * @format COLOR_HEX
1713
+ * @maxLength 19
1714
1714
  */
1715
1715
  textColorHover?: string | null;
1716
1716
  /**
1717
1717
  * Background color as a hexadecimal value (hover state).
1718
- * @format COLOR_HEX
1718
+ * @maxLength 19
1719
1719
  */
1720
1720
  backgroundColorHover?: string | null;
1721
1721
  /** Button size option, one of `SMALL`, `MEDIUM` or `LARGE`. Defaults to `MEDIUM`. */
@@ -1732,7 +1732,7 @@ interface ImageStyles {
1732
1732
  resizing?: ResizingWithLiterals;
1733
1733
  /**
1734
1734
  * Image border color as a hexadecimal value.
1735
- * @format COLOR_HEX
1735
+ * @maxLength 19
1736
1736
  */
1737
1737
  borderColor?: string | null;
1738
1738
  /** Image border width in pixels. */
@@ -1745,17 +1745,17 @@ interface RibbonStyles {
1745
1745
  ribbonText?: string | null;
1746
1746
  /**
1747
1747
  * Ribbon background color as a hexadecimal value.
1748
- * @format COLOR_HEX
1748
+ * @maxLength 19
1749
1749
  */
1750
1750
  backgroundColor?: string | null;
1751
1751
  /**
1752
1752
  * Ribbon text color as a hexadecimal value.
1753
- * @format COLOR_HEX
1753
+ * @maxLength 19
1754
1754
  */
1755
1755
  textColor?: string | null;
1756
1756
  /**
1757
1757
  * Ribbon border color as a hexadecimal value.
1758
- * @format COLOR_HEX
1758
+ * @maxLength 19
1759
1759
  */
1760
1760
  borderColor?: string | null;
1761
1761
  /** Ribbon border width in pixels. */
@@ -1768,12 +1768,12 @@ interface RibbonStyles {
1768
1768
  interface CardStyles {
1769
1769
  /**
1770
1770
  * Card background color as a hexadecimal value.
1771
- * @format COLOR_HEX
1771
+ * @maxLength 19
1772
1772
  */
1773
1773
  backgroundColor?: string | null;
1774
1774
  /**
1775
1775
  * Card border color as a hexadecimal value.
1776
- * @format COLOR_HEX
1776
+ * @maxLength 19
1777
1777
  */
1778
1778
  borderColor?: string | null;
1779
1779
  /** Card border width in pixels. */
@@ -1788,12 +1788,12 @@ interface CardStyles {
1788
1788
  titlePriceLayout?: LayoutWithLiterals;
1789
1789
  /**
1790
1790
  * Title text color as a hexadecimal value.
1791
- * @format COLOR_HEX
1791
+ * @maxLength 19
1792
1792
  */
1793
1793
  titleColor?: string | null;
1794
1794
  /**
1795
1795
  * Text color as a hexadecimal value.
1796
- * @format COLOR_HEX
1796
+ * @maxLength 19
1797
1797
  */
1798
1798
  textColor?: string | null;
1799
1799
  }
@@ -1975,29 +1975,29 @@ interface CellStyle {
1975
1975
  verticalAlignment?: VerticalAlignmentWithLiterals;
1976
1976
  /**
1977
1977
  * Cell background color as a hexadecimal value.
1978
- * @format COLOR_HEX
1978
+ * @maxLength 19
1979
1979
  */
1980
1980
  backgroundColor?: string | null;
1981
1981
  }
1982
1982
  interface BorderColors {
1983
1983
  /**
1984
1984
  * Left border color as a hexadecimal value.
1985
- * @format COLOR_HEX
1985
+ * @maxLength 19
1986
1986
  */
1987
1987
  left?: string | null;
1988
1988
  /**
1989
1989
  * Right border color as a hexadecimal value.
1990
- * @format COLOR_HEX
1990
+ * @maxLength 19
1991
1991
  */
1992
1992
  right?: string | null;
1993
1993
  /**
1994
1994
  * Top border color as a hexadecimal value.
1995
- * @format COLOR_HEX
1995
+ * @maxLength 19
1996
1996
  */
1997
1997
  top?: string | null;
1998
1998
  /**
1999
1999
  * Bottom border color as a hexadecimal value.
2000
- * @format COLOR_HEX
2000
+ * @maxLength 19
2001
2001
  */
2002
2002
  bottom?: string | null;
2003
2003
  }
@@ -2072,7 +2072,7 @@ interface CaptionData {
2072
2072
  interface LayoutData {
2073
2073
  /**
2074
2074
  * Deprecated: Use `background` instead.
2075
- * @format COLOR_HEX
2075
+ * @maxLength 19
2076
2076
  * @deprecated
2077
2077
  */
2078
2078
  backgroundColor?: string | null;
@@ -2080,7 +2080,7 @@ interface LayoutData {
2080
2080
  backgroundImage?: LayoutDataBackgroundImage;
2081
2081
  /**
2082
2082
  * Border color as a hexadecimal value.
2083
- * @format COLOR_HEX
2083
+ * @maxLength 19
2084
2084
  */
2085
2085
  borderColor?: string | null;
2086
2086
  /** Border width in pixels. */
@@ -2089,7 +2089,7 @@ interface LayoutData {
2089
2089
  borderRadius?: number | null;
2090
2090
  /**
2091
2091
  * Deprecated: Use `backdrop` instead.
2092
- * @format COLOR_HEX
2092
+ * @maxLength 19
2093
2093
  * @deprecated
2094
2094
  */
2095
2095
  backdropColor?: string | null;
@@ -2116,7 +2116,7 @@ interface LayoutData {
2116
2116
  containerData?: PluginContainerData;
2117
2117
  /** Defines where selected design propertied applies to */
2118
2118
  designTarget?: DesignTargetWithLiterals;
2119
- /** Banner configuration. When present, this layout is displayed as a banner. */
2119
+ /** Banner configuration. When present, this layout is attached to a document edge (top or bottom). */
2120
2120
  banner?: Banner;
2121
2121
  /** Background styling (color or gradient). */
2122
2122
  background?: LayoutDataBackground;
@@ -2163,6 +2163,14 @@ declare enum BannerOrigin {
2163
2163
  }
2164
2164
  /** @enumType */
2165
2165
  type BannerOriginWithLiterals = BannerOrigin | 'IMAGE' | 'LAYOUT';
2166
+ declare enum BannerPosition {
2167
+ /** Attached to the top edge (banner) */
2168
+ TOP = "TOP",
2169
+ /** Attached to the bottom edge (footer) */
2170
+ BOTTOM = "BOTTOM"
2171
+ }
2172
+ /** @enumType */
2173
+ type BannerPositionWithLiterals = BannerPosition | 'TOP' | 'BOTTOM';
2166
2174
  /** Background type */
2167
2175
  declare enum LayoutDataBackgroundType {
2168
2176
  /** Solid color background */
@@ -2220,6 +2228,8 @@ type DesignTargetWithLiterals = DesignTarget | 'LAYOUT' | 'CELL';
2220
2228
  interface Banner {
2221
2229
  /** Origin of the banner */
2222
2230
  origin?: BannerOriginWithLiterals;
2231
+ /** Position of the banner */
2232
+ position?: BannerPositionWithLiterals;
2223
2233
  }
2224
2234
  /** Background styling (color or gradient) */
2225
2235
  interface LayoutDataBackground {
@@ -2227,7 +2237,7 @@ interface LayoutDataBackground {
2227
2237
  type?: LayoutDataBackgroundTypeWithLiterals;
2228
2238
  /**
2229
2239
  * Background color as a hexadecimal value.
2230
- * @format COLOR_HEX
2240
+ * @maxLength 19
2231
2241
  */
2232
2242
  color?: string | null;
2233
2243
  /** Gradient configuration. */
@@ -2239,7 +2249,7 @@ interface Backdrop {
2239
2249
  type?: BackdropTypeWithLiterals;
2240
2250
  /**
2241
2251
  * Backdrop color as a hexadecimal value.
2242
- * @format COLOR_HEX
2252
+ * @maxLength 19
2243
2253
  */
2244
2254
  color?: string | null;
2245
2255
  /** Gradient configuration. */
@@ -2260,7 +2270,7 @@ interface ShapeData {
2260
2270
  interface ShapeDataStyles {
2261
2271
  /**
2262
2272
  * Shape fill color as a hexadecimal value.
2263
- * @format COLOR_HEX
2273
+ * @maxLength 19
2264
2274
  */
2265
2275
  color?: string | null;
2266
2276
  /** Map of original color keys to their new color values. */
@@ -2319,7 +2329,7 @@ interface CardDataBackground {
2319
2329
  type?: CardDataBackgroundTypeWithLiterals;
2320
2330
  /**
2321
2331
  * Background color as a hexadecimal value.
2322
- * @format COLOR_HEX
2332
+ * @maxLength 19
2323
2333
  */
2324
2334
  color?: string | null;
2325
2335
  /** Gradient configuration. */
@@ -2346,7 +2356,7 @@ interface TocData {
2346
2356
  itemSpacing?: number | null;
2347
2357
  /**
2348
2358
  * Optional override for the text color.
2349
- * @format COLOR_HEX
2359
+ * @maxLength 19
2350
2360
  */
2351
2361
  color?: string | null;
2352
2362
  /** Indentation style. Default: NESTED. */
@@ -2388,7 +2398,10 @@ interface SmartBlockData {
2388
2398
  orientation?: string | null;
2389
2399
  /** Column size controlling cells per row. */
2390
2400
  columnSize?: ColumnSizeWithLiterals;
2391
- /** Border color (for SOLID_JOINED_BOXES variant). */
2401
+ /**
2402
+ * Border color (for SOLID_JOINED_BOXES variant).
2403
+ * @maxLength 19
2404
+ */
2392
2405
  borderColor?: string | null;
2393
2406
  /** Border width in pixels (for SOLID_JOINED_BOXES variant). */
2394
2407
  borderWidth?: number | null;
@@ -2447,7 +2460,10 @@ interface SmartBlockCellData {
2447
2460
  label?: string | null;
2448
2461
  /** Shape file details. */
2449
2462
  shape?: V1Media;
2450
- /** Border color of the cell. */
2463
+ /**
2464
+ * Border color of the cell.
2465
+ * @maxLength 19
2466
+ */
2451
2467
  borderColor?: string | null;
2452
2468
  /** Border width in pixels. */
2453
2469
  borderWidth?: number | null;
@@ -2455,11 +2471,20 @@ interface SmartBlockCellData {
2455
2471
  borderRadius?: number | null;
2456
2472
  /** The type of the parent smart block (must match parent). */
2457
2473
  type?: SmartBlockDataTypeWithLiterals;
2458
- /** Accent color for non-background variants (e.g., line, bullet, label color). */
2474
+ /**
2475
+ * Accent color for non-background variants (e.g., line, bullet, label color).
2476
+ * @maxLength 19
2477
+ */
2459
2478
  accentColor?: string | null;
2460
- /** Background color for background-based variants (SOLID_BOXES, SOLID_BOXES_ALTERNATING, SOLID_JOINED_BOXES). */
2479
+ /**
2480
+ * Background color for background-based variants (SOLID_BOXES, SOLID_BOXES_ALTERNATING, SOLID_JOINED_BOXES).
2481
+ * @maxLength 19
2482
+ */
2461
2483
  backgroundColor?: string | null;
2462
- /** Shape fill color as a hexadecimal value. */
2484
+ /**
2485
+ * Shape fill color as a hexadecimal value.
2486
+ * @maxLength 19
2487
+ */
2463
2488
  shapeColor?: string | null;
2464
2489
  }
2465
2490
  interface Metadata {
@@ -4728,4 +4753,4 @@ declare const utils: {
4728
4753
  */
4729
4754
  declare function getPostMetrics(postId: string): Promise<NonNullablePaths<GetPostMetricsResponse, `metrics.comments` | `metrics.likes` | `metrics.views`, 3>>;
4730
4755
 
4731
- export { type AccountInfo, type AccountInfoMetadata, type ActionEvent, Alignment, type AlignmentWithLiterals, type AnchorData, type AppEmbedData, type AppEmbedDataAppDataOneOf, AppType, type AppTypeWithLiterals, AspectRatio, type AspectRatioWithLiterals, type AudioData, type Backdrop, BackdropType, type BackdropTypeWithLiterals, type Background, type BackgroundGradient, type BackgroundImage, BackgroundType, type BackgroundTypeWithLiterals, type Banner, BannerOrigin, type BannerOriginWithLiterals, type BaseEventMetadata, type BlockquoteData, type BlogPaging, type BookingData, type Border, type BorderColors, type BorderWidths, type BulkDeletePostsRequest, type BulkDeletePostsResponse, type BulkGetPostReactionsRequest, type BulkGetPostReactionsResponse, type BulletedListData, type ButtonData, ButtonDataType, type ButtonDataTypeWithLiterals, type ButtonStyles, type CaptionData, type CardData, type CardDataBackground, CardDataBackgroundType, type CardDataBackgroundTypeWithLiterals, type CardStyles, type Category, type CategoryTranslation, type CellStyle, type CodeBlockData, type CollapsibleListData, type ColorData, type Colors, ColumnSize, type ColumnSizeWithLiterals, type CommonQueryWithEntityContext, type ConvertDraftJsToRichContentRequest, type ConvertDraftJsToRichContentResponse, type ConvertRichContentToDraftJsRequest, type ConvertRichContentToDraftJsResponse, type CreateDraftPostFromTemplateRequest, type CreateDraftPostFromTemplateResponse, Crop, type CropWithLiterals, type CursorPaging, type Cursors, type Decoration, type DecorationDataOneOf, DecorationType, type DecorationTypeWithLiterals, type DeletePostRequest, type DeletePostResponse, type Design, DesignTarget, type DesignTargetWithLiterals, 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 FontFamilyData, 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 GetPostCountPerMonthRequest, type GetPostCountPerMonthResponse, type GetPostCountsRequest, type GetPostCountsResponse, 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, GradientType, type GradientTypeWithLiterals, type HTMLData, type HTMLDataDataOneOf, type HeadingData, type Height, type IdentificationData, type IdentificationDataIdOneOf, type Image, type ImageData, type ImageDataStyles, ImagePosition, ImagePositionPosition, type ImagePositionPositionWithLiterals, type ImagePositionWithLiterals, ImageScalingScaling, type ImageScalingScalingWithLiterals, type ImageStyles, Indentation, type IndentationWithLiterals, InitialExpandedItems, type InitialExpandedItemsWithLiterals, type InitialPostsCopied, type Item, type ItemDataOneOf, type ItemStyle, type Keyword, Layout, type LayoutCellData, type LayoutData, type LayoutDataBackground, type LayoutDataBackgroundImage, LayoutDataBackgroundType, type LayoutDataBackgroundTypeWithLiterals, 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, ListStyle, type ListStyleWithLiterals, 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 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 PollDesignBackground, type PollDesignBackgroundBackgroundOneOf, PollDesignBackgroundType, type PollDesignBackgroundTypeWithLiterals, type PollLayout, PollLayoutDirection, type PollLayoutDirectionWithLiterals, PollLayoutType, type PollLayoutTypeWithLiterals, type PollSettings, Position, type PositionWithLiterals, type Post, type PostCategoriesUpdated, type PostCount, type PostCountInfo, type PostCountPerMonth, type PostCountersUpdated, type PostCountersUpdatedInitiatorOneOf, type PostCreatedEnvelope, type PostDeletedEnvelope, PostFieldField, type PostFieldFieldWithLiterals, type PostLiked, type PostLikedEnvelope, type PostLikedInitiatorOneOf, type PostOwnerChanged, type PostQuery, type PostQuerySpec, 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, type ShapeData, type ShapeDataStyles, 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, 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, typedQueryPosts, utils };
4756
+ export { type AccountInfo, type AccountInfoMetadata, type ActionEvent, Alignment, type AlignmentWithLiterals, type AnchorData, type AppEmbedData, type AppEmbedDataAppDataOneOf, AppType, type AppTypeWithLiterals, 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 BulkDeletePostsRequest, type BulkDeletePostsResponse, type BulkGetPostReactionsRequest, type BulkGetPostReactionsResponse, type BulletedListData, type ButtonData, ButtonDataType, type ButtonDataTypeWithLiterals, type ButtonStyles, type CaptionData, type CardData, type CardDataBackground, CardDataBackgroundType, type CardDataBackgroundTypeWithLiterals, type CardStyles, type Category, type CategoryTranslation, type CellStyle, type CodeBlockData, type CollapsibleListData, type ColorData, type Colors, ColumnSize, type ColumnSizeWithLiterals, type CommonQueryWithEntityContext, type ConvertDraftJsToRichContentRequest, type ConvertDraftJsToRichContentResponse, type ConvertRichContentToDraftJsRequest, type ConvertRichContentToDraftJsResponse, type CreateDraftPostFromTemplateRequest, type CreateDraftPostFromTemplateResponse, Crop, type CropWithLiterals, type CursorPaging, type Cursors, type Decoration, type DecorationDataOneOf, DecorationType, type DecorationTypeWithLiterals, type DeletePostRequest, type DeletePostResponse, type Design, DesignTarget, type DesignTargetWithLiterals, 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 FontFamilyData, 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 GetPostCountPerMonthRequest, type GetPostCountPerMonthResponse, type GetPostCountsRequest, type GetPostCountsResponse, 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, GradientType, type GradientTypeWithLiterals, type HTMLData, type HTMLDataDataOneOf, type HeadingData, type Height, type IdentificationData, type IdentificationDataIdOneOf, type Image, type ImageData, type ImageDataStyles, ImagePosition, ImagePositionPosition, type ImagePositionPositionWithLiterals, type ImagePositionWithLiterals, ImageScalingScaling, type ImageScalingScalingWithLiterals, type ImageStyles, Indentation, type IndentationWithLiterals, InitialExpandedItems, type InitialExpandedItemsWithLiterals, type InitialPostsCopied, type Item, type ItemDataOneOf, type ItemStyle, type Keyword, Layout, type LayoutCellData, type LayoutData, type LayoutDataBackground, type LayoutDataBackgroundImage, LayoutDataBackgroundType, type LayoutDataBackgroundTypeWithLiterals, 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, ListStyle, type ListStyleWithLiterals, 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 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 PollDesignBackground, type PollDesignBackgroundBackgroundOneOf, PollDesignBackgroundType, type PollDesignBackgroundTypeWithLiterals, type PollLayout, PollLayoutDirection, type PollLayoutDirectionWithLiterals, PollLayoutType, type PollLayoutTypeWithLiterals, type PollSettings, Position, type PositionWithLiterals, type Post, type PostCategoriesUpdated, type PostCount, type PostCountInfo, type PostCountPerMonth, type PostCountersUpdated, type PostCountersUpdatedInitiatorOneOf, type PostCreatedEnvelope, type PostDeletedEnvelope, PostFieldField, type PostFieldFieldWithLiterals, type PostLiked, type PostLikedEnvelope, type PostLikedInitiatorOneOf, type PostOwnerChanged, type PostQuery, type PostQuerySpec, 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, type ShapeData, type ShapeDataStyles, 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, 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, typedQueryPosts, utils };
@@ -1259,6 +1259,11 @@ var BannerOrigin = /* @__PURE__ */ ((BannerOrigin2) => {
1259
1259
  BannerOrigin2["LAYOUT"] = "LAYOUT";
1260
1260
  return BannerOrigin2;
1261
1261
  })(BannerOrigin || {});
1262
+ var BannerPosition = /* @__PURE__ */ ((BannerPosition2) => {
1263
+ BannerPosition2["TOP"] = "TOP";
1264
+ BannerPosition2["BOTTOM"] = "BOTTOM";
1265
+ return BannerPosition2;
1266
+ })(BannerPosition || {});
1262
1267
  var LayoutDataBackgroundType = /* @__PURE__ */ ((LayoutDataBackgroundType2) => {
1263
1268
  LayoutDataBackgroundType2["COLOR"] = "COLOR";
1264
1269
  LayoutDataBackgroundType2["GRADIENT"] = "GRADIENT";
@@ -1829,6 +1834,7 @@ export {
1829
1834
  BackdropType,
1830
1835
  BackgroundType,
1831
1836
  BannerOrigin,
1837
+ BannerPosition,
1832
1838
  ButtonDataType,
1833
1839
  CardDataBackgroundType,
1834
1840
  ColumnSize,