@wix/auto_sdk_blog_posts 1.0.138 → 1.0.140

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 +433 -43
  3. package/build/cjs/index.js.map +1 -1
  4. package/build/cjs/index.typings.d.ts +540 -351
  5. package/build/cjs/index.typings.js +286 -40
  6. package/build/cjs/index.typings.js.map +1 -1
  7. package/build/cjs/meta.d.ts +541 -352
  8. package/build/cjs/meta.js +286 -40
  9. package/build/cjs/meta.js.map +1 -1
  10. package/build/es/index.d.mts +1 -1
  11. package/build/es/index.mjs +426 -43
  12. package/build/es/index.mjs.map +1 -1
  13. package/build/es/index.typings.d.mts +540 -351
  14. package/build/es/index.typings.mjs +279 -40
  15. package/build/es/index.typings.mjs.map +1 -1
  16. package/build/es/meta.d.mts +541 -352
  17. package/build/es/meta.mjs +279 -40
  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 +433 -43
  21. package/build/internal/cjs/index.js.map +1 -1
  22. package/build/internal/cjs/index.typings.d.ts +540 -351
  23. package/build/internal/cjs/index.typings.js +286 -40
  24. package/build/internal/cjs/index.typings.js.map +1 -1
  25. package/build/internal/cjs/meta.d.ts +541 -352
  26. package/build/internal/cjs/meta.js +286 -40
  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 +426 -43
  30. package/build/internal/es/index.mjs.map +1 -1
  31. package/build/internal/es/index.typings.d.mts +540 -351
  32. package/build/internal/es/index.typings.mjs +279 -40
  33. package/build/internal/es/index.typings.mjs.map +1 -1
  34. package/build/internal/es/meta.d.mts +541 -352
  35. package/build/internal/es/meta.mjs +279 -40
  36. package/build/internal/es/meta.mjs.map +1 -1
  37. package/package.json +2 -2
@@ -345,6 +345,8 @@ interface Node extends NodeDataOneOf {
345
345
  layoutCellData?: LayoutCellData;
346
346
  /** Data for a shape node. */
347
347
  shapeData?: ShapeData;
348
+ /** Data for a card node. */
349
+ cardData?: CardData;
348
350
  /** 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. */
349
351
  type?: NodeTypeWithLiterals;
350
352
  /** Node ID. */
@@ -414,6 +416,8 @@ interface NodeDataOneOf {
414
416
  layoutCellData?: LayoutCellData;
415
417
  /** Data for a shape node. */
416
418
  shapeData?: ShapeData;
419
+ /** Data for a card node. */
420
+ cardData?: CardData;
417
421
  }
418
422
  declare enum NodeType {
419
423
  PARAGRAPH = "PARAGRAPH",
@@ -450,10 +454,11 @@ declare enum NodeType {
450
454
  CAPTION = "CAPTION",
451
455
  LAYOUT = "LAYOUT",
452
456
  LAYOUT_CELL = "LAYOUT_CELL",
453
- SHAPE = "SHAPE"
457
+ SHAPE = "SHAPE",
458
+ CARD = "CARD"
454
459
  }
455
460
  /** @enumType */
456
- type NodeTypeWithLiterals = NodeType | 'PARAGRAPH' | 'TEXT' | 'HEADING' | 'BULLETED_LIST' | 'ORDERED_LIST' | 'LIST_ITEM' | 'BLOCKQUOTE' | 'CODE_BLOCK' | 'VIDEO' | 'DIVIDER' | 'FILE' | 'GALLERY' | 'GIF' | 'HTML' | 'IMAGE' | 'LINK_PREVIEW' | 'MAP' | 'POLL' | 'APP_EMBED' | 'BUTTON' | 'COLLAPSIBLE_LIST' | 'TABLE' | 'EMBED' | 'COLLAPSIBLE_ITEM' | 'COLLAPSIBLE_ITEM_TITLE' | 'COLLAPSIBLE_ITEM_BODY' | 'TABLE_CELL' | 'TABLE_ROW' | 'EXTERNAL' | 'AUDIO' | 'CAPTION' | 'LAYOUT' | 'LAYOUT_CELL' | 'SHAPE';
461
+ type NodeTypeWithLiterals = NodeType | 'PARAGRAPH' | 'TEXT' | 'HEADING' | 'BULLETED_LIST' | 'ORDERED_LIST' | 'LIST_ITEM' | 'BLOCKQUOTE' | 'CODE_BLOCK' | 'VIDEO' | 'DIVIDER' | 'FILE' | 'GALLERY' | 'GIF' | 'HTML' | 'IMAGE' | 'LINK_PREVIEW' | 'MAP' | 'POLL' | 'APP_EMBED' | 'BUTTON' | 'COLLAPSIBLE_LIST' | 'TABLE' | 'EMBED' | 'COLLAPSIBLE_ITEM' | 'COLLAPSIBLE_ITEM_TITLE' | 'COLLAPSIBLE_ITEM_BODY' | 'TABLE_CELL' | 'TABLE_ROW' | 'EXTERNAL' | 'AUDIO' | 'CAPTION' | 'LAYOUT' | 'LAYOUT_CELL' | 'SHAPE' | 'CARD';
457
462
  interface NodeStyle {
458
463
  /** The top padding value in pixels. */
459
464
  paddingTop?: string | null;
@@ -474,6 +479,55 @@ interface ButtonData {
474
479
  /** Button link details. */
475
480
  link?: Link;
476
481
  }
482
+ /** Background type */
483
+ declare enum BackgroundType {
484
+ /** Solid color background */
485
+ COLOR = "COLOR",
486
+ /** Gradient background */
487
+ GRADIENT = "GRADIENT"
488
+ }
489
+ /** @enumType */
490
+ type BackgroundTypeWithLiterals = BackgroundType | 'COLOR' | 'GRADIENT';
491
+ interface Gradient {
492
+ /** Gradient type. */
493
+ type?: GradientTypeWithLiterals;
494
+ /**
495
+ * Color stops for the gradient.
496
+ * @maxSize 1000
497
+ */
498
+ stops?: Stop[];
499
+ /** Angle in degrees for linear gradient (0-360). */
500
+ angle?: number | null;
501
+ /**
502
+ * Horizontal center position for radial gradient (0-100).
503
+ * @max 100
504
+ */
505
+ centerX?: number | null;
506
+ /**
507
+ * Vertical center position for radial gradient (0-100).
508
+ * @max 100
509
+ */
510
+ centerY?: number | null;
511
+ }
512
+ /** Gradient type. */
513
+ declare enum GradientType {
514
+ /** Linear gradient. */
515
+ LINEAR = "LINEAR",
516
+ /** Radial gradient. */
517
+ RADIAL = "RADIAL"
518
+ }
519
+ /** @enumType */
520
+ type GradientTypeWithLiterals = GradientType | 'LINEAR' | 'RADIAL';
521
+ /** A single color stop in the gradient. */
522
+ interface Stop {
523
+ /**
524
+ * Stop color as hex value.
525
+ * @format COLOR_HEX
526
+ */
527
+ color?: string | null;
528
+ /** Stop position (0-1). */
529
+ position?: number | null;
530
+ }
477
531
  interface Border {
478
532
  /**
479
533
  * Deprecated: Use `borderWidth` in `styles` instead.
@@ -503,6 +557,18 @@ interface Colors {
503
557
  */
504
558
  background?: string | null;
505
559
  }
560
+ /** Background styling (color or gradient) */
561
+ interface Background {
562
+ /** Background type. */
563
+ type?: BackgroundTypeWithLiterals;
564
+ /**
565
+ * Background color as a hexadecimal value.
566
+ * @format COLOR_HEX
567
+ */
568
+ color?: string | null;
569
+ /** Gradient configuration. */
570
+ gradient?: Gradient;
571
+ }
506
572
  interface PluginContainerData {
507
573
  /** The width of the node when it's displayed. */
508
574
  width?: PluginContainerDataWidth;
@@ -623,17 +689,23 @@ interface Styles {
623
689
  */
624
690
  textColorHover?: string | null;
625
691
  /**
626
- * Background color as a hexadecimal value.
692
+ * Deprecated: Use `background` instead.
627
693
  * @format COLOR_HEX
694
+ * @deprecated
628
695
  */
629
696
  backgroundColor?: string | null;
630
697
  /**
631
- * Background color as a hexadecimal value (hover state).
698
+ * Deprecated: Use `backgroundHover` instead.
632
699
  * @format COLOR_HEX
700
+ * @deprecated
633
701
  */
634
702
  backgroundColorHover?: string | null;
635
703
  /** Button size option, one of `SMALL`, `MEDIUM` or `LARGE`. Defaults to `MEDIUM`. */
636
704
  buttonSize?: string | null;
705
+ /** Background styling (color or gradient). */
706
+ background?: Background;
707
+ /** Background styling for hover state (color or gradient). */
708
+ backgroundHover?: Background;
637
709
  }
638
710
  interface Link extends LinkDataOneOf {
639
711
  /** The absolute URL for the linked document. */
@@ -1270,7 +1342,7 @@ interface OptionLayout {
1270
1342
  /** Sets whether to display option images. Defaults to `false`. */
1271
1343
  enableImage?: boolean | null;
1272
1344
  }
1273
- declare enum BackgroundType {
1345
+ declare enum PollDesignBackgroundType {
1274
1346
  /** Color background type */
1275
1347
  COLOR = "COLOR",
1276
1348
  /** Image background type */
@@ -1279,8 +1351,8 @@ declare enum BackgroundType {
1279
1351
  GRADIENT = "GRADIENT"
1280
1352
  }
1281
1353
  /** @enumType */
1282
- type BackgroundTypeWithLiterals = BackgroundType | 'COLOR' | 'IMAGE' | 'GRADIENT';
1283
- interface Gradient {
1354
+ type PollDesignBackgroundTypeWithLiterals = PollDesignBackgroundType | 'COLOR' | 'IMAGE' | 'GRADIENT';
1355
+ interface BackgroundGradient {
1284
1356
  /** The gradient angle in degrees. */
1285
1357
  angle?: number | null;
1286
1358
  /**
@@ -1294,7 +1366,7 @@ interface Gradient {
1294
1366
  */
1295
1367
  lastColor?: string | null;
1296
1368
  }
1297
- interface Background extends BackgroundBackgroundOneOf {
1369
+ interface PollDesignBackground extends PollDesignBackgroundBackgroundOneOf {
1298
1370
  /**
1299
1371
  * The background color as a hexademical value.
1300
1372
  * @format COLOR_HEX
@@ -1303,12 +1375,12 @@ interface Background extends BackgroundBackgroundOneOf {
1303
1375
  /** An image to use for the background. */
1304
1376
  image?: V1Media;
1305
1377
  /** Details for a gradient background. */
1306
- gradient?: Gradient;
1378
+ gradient?: BackgroundGradient;
1307
1379
  /** Background type. For each option, include the relevant details. */
1308
- type?: BackgroundTypeWithLiterals;
1380
+ type?: PollDesignBackgroundTypeWithLiterals;
1309
1381
  }
1310
1382
  /** @oneof */
1311
- interface BackgroundBackgroundOneOf {
1383
+ interface PollDesignBackgroundBackgroundOneOf {
1312
1384
  /**
1313
1385
  * The background color as a hexademical value.
1314
1386
  * @format COLOR_HEX
@@ -1317,11 +1389,11 @@ interface BackgroundBackgroundOneOf {
1317
1389
  /** An image to use for the background. */
1318
1390
  image?: V1Media;
1319
1391
  /** Details for a gradient background. */
1320
- gradient?: Gradient;
1392
+ gradient?: BackgroundGradient;
1321
1393
  }
1322
1394
  interface PollDesign {
1323
1395
  /** Background styling. */
1324
- background?: Background;
1396
+ background?: PollDesignBackground;
1325
1397
  /** Border radius in pixels. */
1326
1398
  borderRadius?: number | null;
1327
1399
  }
@@ -2004,12 +2076,13 @@ interface CaptionData {
2004
2076
  }
2005
2077
  interface LayoutData {
2006
2078
  /**
2007
- * Background color as a hexadecimal value.
2079
+ * Deprecated: Use `background` instead.
2008
2080
  * @format COLOR_HEX
2081
+ * @deprecated
2009
2082
  */
2010
2083
  backgroundColor?: string | null;
2011
2084
  /** Background image. */
2012
- backgroundImage?: BackgroundImage;
2085
+ backgroundImage?: LayoutDataBackgroundImage;
2013
2086
  /**
2014
2087
  * Border color as a hexadecimal value.
2015
2088
  * @format COLOR_HEX
@@ -2017,15 +2090,16 @@ interface LayoutData {
2017
2090
  borderColor?: string | null;
2018
2091
  /** Border width in pixels. */
2019
2092
  borderWidth?: number | null;
2020
- /** Border */
2093
+ /** Border radius in pixels. */
2021
2094
  borderRadius?: number | null;
2022
2095
  /**
2023
- * Backdrop color as a hexadecimal value.
2096
+ * Deprecated: Use `backdrop` instead.
2024
2097
  * @format COLOR_HEX
2098
+ * @deprecated
2025
2099
  */
2026
2100
  backdropColor?: string | null;
2027
- /** Backdrop image.radius in pixels. */
2028
- backdropImage?: BackgroundImage;
2101
+ /** Backdrop image. */
2102
+ backdropImage?: LayoutDataBackgroundImage;
2029
2103
  /** Backdrop top padding. */
2030
2104
  backdropPaddingTop?: number | null;
2031
2105
  /** Backdrop bottom padding */
@@ -2049,8 +2123,12 @@ interface LayoutData {
2049
2123
  designTarget?: DesignTargetWithLiterals;
2050
2124
  /** Banner configuration. When present, this layout is displayed as a banner. */
2051
2125
  banner?: Banner;
2126
+ /** Background styling (color or gradient). */
2127
+ background?: LayoutDataBackground;
2128
+ /** Backdrop styling (color or gradient). */
2129
+ backdrop?: Backdrop;
2052
2130
  }
2053
- declare enum Scaling {
2131
+ declare enum ImageScalingScaling {
2054
2132
  /** Auto image scaling */
2055
2133
  AUTO = "AUTO",
2056
2134
  /** Contain image scaling */
@@ -2059,7 +2137,7 @@ declare enum Scaling {
2059
2137
  COVER = "COVER"
2060
2138
  }
2061
2139
  /** @enumType */
2062
- type ScalingWithLiterals = Scaling | 'AUTO' | 'CONTAIN' | 'COVER';
2140
+ type ImageScalingScalingWithLiterals = ImageScalingScaling | 'AUTO' | 'CONTAIN' | 'COVER';
2063
2141
  declare enum ImagePosition {
2064
2142
  /** Image positioned at the center */
2065
2143
  CENTER = "CENTER",
@@ -2090,13 +2168,31 @@ declare enum BannerOrigin {
2090
2168
  }
2091
2169
  /** @enumType */
2092
2170
  type BannerOriginWithLiterals = BannerOrigin | 'IMAGE' | 'LAYOUT';
2093
- interface BackgroundImage {
2171
+ /** Background type */
2172
+ declare enum LayoutDataBackgroundType {
2173
+ /** Solid color background */
2174
+ COLOR = "COLOR",
2175
+ /** Gradient background */
2176
+ GRADIENT = "GRADIENT"
2177
+ }
2178
+ /** @enumType */
2179
+ type LayoutDataBackgroundTypeWithLiterals = LayoutDataBackgroundType | 'COLOR' | 'GRADIENT';
2180
+ /** Backdrop type */
2181
+ declare enum BackdropType {
2182
+ /** Solid color backdrop */
2183
+ COLOR = "COLOR",
2184
+ /** Gradient backdrop */
2185
+ GRADIENT = "GRADIENT"
2186
+ }
2187
+ /** @enumType */
2188
+ type BackdropTypeWithLiterals = BackdropType | 'COLOR' | 'GRADIENT';
2189
+ interface LayoutDataBackgroundImage {
2094
2190
  /** Background image. */
2095
2191
  media?: V1Media;
2096
2192
  /** Background image opacity. */
2097
2193
  opacity?: number | null;
2098
2194
  /** Background image scaling. */
2099
- scaling?: ScalingWithLiterals;
2195
+ scaling?: ImageScalingScalingWithLiterals;
2100
2196
  /** Position of background. Defaults to `CENTER`. */
2101
2197
  position?: ImagePositionWithLiterals;
2102
2198
  }
@@ -2130,6 +2226,30 @@ interface Banner {
2130
2226
  /** Origin of the banner */
2131
2227
  origin?: BannerOriginWithLiterals;
2132
2228
  }
2229
+ /** Background styling (color or gradient) */
2230
+ interface LayoutDataBackground {
2231
+ /** Background type. */
2232
+ type?: LayoutDataBackgroundTypeWithLiterals;
2233
+ /**
2234
+ * Background color as a hexadecimal value.
2235
+ * @format COLOR_HEX
2236
+ */
2237
+ color?: string | null;
2238
+ /** Gradient configuration. */
2239
+ gradient?: Gradient;
2240
+ }
2241
+ /** Backdrop styling (color or gradient) */
2242
+ interface Backdrop {
2243
+ /** Backdrop type. */
2244
+ type?: BackdropTypeWithLiterals;
2245
+ /**
2246
+ * Backdrop color as a hexadecimal value.
2247
+ * @format COLOR_HEX
2248
+ */
2249
+ color?: string | null;
2250
+ /** Gradient configuration. */
2251
+ gradient?: Gradient;
2252
+ }
2133
2253
  interface LayoutCellData {
2134
2254
  /** Size of the cell in 12 columns grid. */
2135
2255
  colSpan?: number | null;
@@ -2151,6 +2271,75 @@ interface ShapeDataStyles {
2151
2271
  /** Map of original color keys to their new color values. */
2152
2272
  colors?: Record<string, string>;
2153
2273
  }
2274
+ interface CardData {
2275
+ /** Background styling (color or gradient). */
2276
+ background?: CardDataBackground;
2277
+ /** Background image. */
2278
+ backgroundImage?: BackgroundImage;
2279
+ }
2280
+ declare enum Scaling {
2281
+ /** Auto image scaling */
2282
+ AUTO = "AUTO",
2283
+ /** Contain image scaling */
2284
+ CONTAIN = "CONTAIN",
2285
+ /** Cover image scaling */
2286
+ COVER = "COVER"
2287
+ }
2288
+ /** @enumType */
2289
+ type ScalingWithLiterals = Scaling | 'AUTO' | 'CONTAIN' | 'COVER';
2290
+ declare enum ImagePositionPosition {
2291
+ /** Image positioned at the center */
2292
+ CENTER = "CENTER",
2293
+ /** Image positioned on the left */
2294
+ CENTER_LEFT = "CENTER_LEFT",
2295
+ /** Image positioned on the right */
2296
+ CENTER_RIGHT = "CENTER_RIGHT",
2297
+ /** Image positioned at the center top */
2298
+ TOP = "TOP",
2299
+ /** Image positioned at the top left */
2300
+ TOP_LEFT = "TOP_LEFT",
2301
+ /** Image positioned at the top right */
2302
+ TOP_RIGHT = "TOP_RIGHT",
2303
+ /** Image positioned at the center bottom */
2304
+ BOTTOM = "BOTTOM",
2305
+ /** Image positioned at the bottom left */
2306
+ BOTTOM_LEFT = "BOTTOM_LEFT",
2307
+ /** Image positioned at the bottom right */
2308
+ BOTTOM_RIGHT = "BOTTOM_RIGHT"
2309
+ }
2310
+ /** @enumType */
2311
+ type ImagePositionPositionWithLiterals = ImagePositionPosition | 'CENTER' | 'CENTER_LEFT' | 'CENTER_RIGHT' | 'TOP' | 'TOP_LEFT' | 'TOP_RIGHT' | 'BOTTOM' | 'BOTTOM_LEFT' | 'BOTTOM_RIGHT';
2312
+ /** Background type */
2313
+ declare enum CardDataBackgroundType {
2314
+ /** Solid color background */
2315
+ COLOR = "COLOR",
2316
+ /** Gradient background */
2317
+ GRADIENT = "GRADIENT"
2318
+ }
2319
+ /** @enumType */
2320
+ type CardDataBackgroundTypeWithLiterals = CardDataBackgroundType | 'COLOR' | 'GRADIENT';
2321
+ /** Background styling (color or gradient) */
2322
+ interface CardDataBackground {
2323
+ /** Background type. */
2324
+ type?: CardDataBackgroundTypeWithLiterals;
2325
+ /**
2326
+ * Background color as a hexadecimal value.
2327
+ * @format COLOR_HEX
2328
+ */
2329
+ color?: string | null;
2330
+ /** Gradient configuration. */
2331
+ gradient?: Gradient;
2332
+ }
2333
+ interface BackgroundImage {
2334
+ /** Background image. */
2335
+ media?: V1Media;
2336
+ /** Background image opacity. */
2337
+ opacity?: number | null;
2338
+ /** Background image scaling. */
2339
+ scaling?: ScalingWithLiterals;
2340
+ /** Position of background. Defaults to `CENTER`. */
2341
+ position?: ImagePositionPositionWithLiterals;
2342
+ }
2154
2343
  interface Metadata {
2155
2344
  /** Schema version. */
2156
2345
  version?: number;
@@ -2433,78 +2622,353 @@ interface PostUnlikedInitiatorOneOf {
2433
2622
  */
2434
2623
  anonymousVisitorId?: string | null;
2435
2624
  }
2436
- interface ListTemplatesRequest {
2437
- /**
2438
- * Filter post templates by given template category ids
2439
- * @maxSize 50
2440
- * @format GUID
2441
- */
2442
- categoryIds?: string[];
2625
+ /** Get Blog Publications Count Stats request */
2626
+ interface QueryPublicationsCountStatsRequest {
2627
+ /** Start of time range to return, in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date and time format. */
2628
+ rangeStart?: Date | null;
2629
+ /** Non-inclusive end of time range to return, in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date and time format. */
2630
+ rangeEnd?: Date | null;
2631
+ /** Order of the returned results. */
2632
+ order?: QueryPublicationsCountStatsRequestOrderWithLiterals;
2633
+ /** Number of months to include in the response. */
2634
+ months?: number;
2443
2635
  /**
2444
- * Filter post templates by provided language
2636
+ * Language filter
2637
+ *
2638
+ * 2-or-4-letter language code in [IETF BCP 47 language tag](https://en.wikipedia.org/wiki/IETF_language_tag) format.
2445
2639
  * @format LANGUAGE_TAG
2446
2640
  */
2447
2641
  language?: string | null;
2448
- /** Returns post template categories when set to TRUE */
2449
- listTemplateCategories?: boolean;
2450
- /** Sort order by ascending/descending publish date. Default is ascending publish date sort */
2451
- sort?: GetPostTemplatesSortWithLiterals;
2452
- /** Pagination options. */
2453
- paging?: BlogPaging;
2642
+ /**
2643
+ * Timezone of the client.
2644
+ * @minLength 3
2645
+ * @maxLength 100
2646
+ */
2647
+ timeZone?: string | null;
2454
2648
  }
2455
- declare enum GetPostTemplatesSort {
2456
- /** Sort by ascending publishing date. */
2457
- PUBLISHED_DATE_ASC = "PUBLISHED_DATE_ASC",
2458
- /** Sort by descending publishing date. */
2459
- PUBLISHED_DATE_DESC = "PUBLISHED_DATE_DESC"
2649
+ declare enum QueryPublicationsCountStatsRequestOrder {
2650
+ UNKNOWN = "UNKNOWN",
2651
+ OLDEST = "OLDEST",
2652
+ NEWEST = "NEWEST"
2460
2653
  }
2461
2654
  /** @enumType */
2462
- type GetPostTemplatesSortWithLiterals = GetPostTemplatesSort | 'PUBLISHED_DATE_ASC' | 'PUBLISHED_DATE_DESC';
2463
- interface BlogPaging {
2655
+ type QueryPublicationsCountStatsRequestOrderWithLiterals = QueryPublicationsCountStatsRequestOrder | 'UNKNOWN' | 'OLDEST' | 'NEWEST';
2656
+ /** Get Blog Publications Count Stats response */
2657
+ interface QueryPublicationsCountStatsResponse {
2658
+ /** Chronologically ordered list of publications. */
2659
+ stats?: PeriodPublicationsCount[];
2660
+ }
2661
+ /** Publications count for a specific time period */
2662
+ interface PeriodPublicationsCount {
2663
+ /** Start of time range in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date and time format. */
2664
+ periodStart?: Date | null;
2665
+ /** Number of posts published during this month. */
2666
+ publicationsCount?: number;
2667
+ }
2668
+ /** Get Blog Post Count Stats request */
2669
+ interface QueryPostCountStatsRequest {
2670
+ /** Start of time range to return, in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date and time format. */
2671
+ rangeStart?: Date | null;
2464
2672
  /**
2465
- * Number of items to skip in the current sort order.
2673
+ * Order of returned results.
2466
2674
  *
2675
+ * - `OLDEST`: posts by date in ascending order.
2676
+ * - `NEWEST`: posts by date in descending order.
2467
2677
  *
2468
- * Default: `0`
2678
+ * Default: `OLDEST`
2469
2679
  */
2470
- offset?: number;
2680
+ order?: OrderWithLiterals;
2681
+ /** Number of months to include in response. */
2682
+ months?: number;
2471
2683
  /**
2472
- * Number of items to return.
2473
- *
2684
+ * Language filter.
2474
2685
  *
2475
- * Default:`50`
2476
- * @min 1
2477
- * @max 100
2686
+ * 2-or-4-letter language code in [IETF BCP 47 language tag](https://en.wikipedia.org/wiki/IETF_language_tag) format.
2687
+ * Pass a language to only receive the period post count for that specified language.
2688
+ * @format LANGUAGE_TAG
2478
2689
  */
2479
- limit?: number;
2690
+ language?: string | null;
2480
2691
  /**
2481
- * Pointer to the next or previous page in the list of results.
2482
- * @maxLength 2000
2692
+ * Time zone to use when calculating the start of the month.
2693
+ *
2694
+ * [UTC timezone offset](https://en.wikipedia.org/wiki/List_of_UTC_offsets) format. For example, New York time zone is `-05`.
2695
+ * @minLength 3
2696
+ * @maxLength 100
2483
2697
  */
2484
- cursor?: string | null;
2698
+ timeZone?: string | null;
2485
2699
  }
2486
- interface ListTemplatesResponse {
2487
- /** Available post templates */
2488
- postTemplates?: Post[];
2489
- /** Details on the paged set of posts templates returned. */
2490
- postTemplatesMetaData?: MetaData;
2491
- /** Post template categories. This value is returned empty unless asked explicitly */
2492
- templateCategories?: Category[];
2700
+ declare enum Order {
2701
+ UNKNOWN = "UNKNOWN",
2702
+ OLDEST = "OLDEST",
2703
+ NEWEST = "NEWEST"
2493
2704
  }
2494
- interface MetaData {
2495
- /** Number of items returned in this response. */
2496
- count?: number;
2497
- /** Requested offset. */
2498
- offset?: number;
2499
- /** Total number of items that match the query. */
2500
- total?: number;
2501
- /**
2502
- * Pointer to the next or previous page in the list of results.
2503
- * @maxLength 2000
2504
- */
2505
- cursor?: string | null;
2705
+ /** @enumType */
2706
+ type OrderWithLiterals = Order | 'UNKNOWN' | 'OLDEST' | 'NEWEST';
2707
+ /** Get Blog Post Count Stats response */
2708
+ interface QueryPostCountStatsResponse {
2709
+ /** List of published post counts by month. */
2710
+ stats?: PeriodPostCount[];
2506
2711
  }
2507
- interface Category {
2712
+ /** Post count for a specific time period */
2713
+ interface PeriodPostCount {
2714
+ /** Start of time range in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date and time format. */
2715
+ periodStart?: Date | null;
2716
+ /** Number of posts published during this month. */
2717
+ postCount?: number;
2718
+ }
2719
+ interface GetTotalPublicationsRequest {
2720
+ /**
2721
+ * Language filter
2722
+ * @minLength 2
2723
+ * @format LANGUAGE_TAG
2724
+ */
2725
+ language?: string | null;
2726
+ }
2727
+ interface GetTotalPublicationsResponse {
2728
+ /** Total amount of publications. */
2729
+ total?: number;
2730
+ }
2731
+ interface GetTotalPostsRequest {
2732
+ /**
2733
+ * Language filter.
2734
+ *
2735
+ * 2-or-4-letter language code in [IETF BCP 47 language tag](https://en.wikipedia.org/wiki/IETF_language_tag) format.
2736
+ * Pass a language to receive the total amount of posts in that specified language.
2737
+ * @format LANGUAGE_TAG
2738
+ */
2739
+ language?: string | null;
2740
+ }
2741
+ interface GetTotalPostsResponse {
2742
+ /** Total amount of published posts. */
2743
+ total?: number;
2744
+ }
2745
+ interface DomainEvent extends DomainEventBodyOneOf {
2746
+ createdEvent?: EntityCreatedEvent;
2747
+ updatedEvent?: EntityUpdatedEvent;
2748
+ deletedEvent?: EntityDeletedEvent;
2749
+ actionEvent?: ActionEvent;
2750
+ /** Event ID. With this ID you can easily spot duplicated events and ignore them. */
2751
+ id?: string;
2752
+ /**
2753
+ * Fully Qualified Domain Name of an entity. This is a unique identifier assigned to the API main business entities.
2754
+ * For example, `wix.stores.catalog.product`, `wix.bookings.session`, `wix.payments.transaction`.
2755
+ */
2756
+ entityFqdn?: string;
2757
+ /**
2758
+ * Event action name, placed at the top level to make it easier for users to dispatch messages.
2759
+ * For example: `created`/`updated`/`deleted`/`started`/`completed`/`email_opened`.
2760
+ */
2761
+ slug?: string;
2762
+ /** ID of the entity associated with the event. */
2763
+ entityId?: string;
2764
+ /** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example, `2020-04-26T13:57:50.699Z`. */
2765
+ eventTime?: Date | null;
2766
+ /**
2767
+ * Whether the event was triggered as a result of a privacy regulation application
2768
+ * (for example, GDPR).
2769
+ */
2770
+ triggeredByAnonymizeRequest?: boolean | null;
2771
+ /** If present, indicates the action that triggered the event. */
2772
+ originatedFrom?: string | null;
2773
+ /**
2774
+ * A sequence number that indicates the order of updates to an entity. For example, if an entity was updated at 16:00 and then again at 16:01, the second update will always have a higher sequence number.
2775
+ * You can use this number to make sure you're handling updates in the right order. Just save the latest sequence number on your end and compare it to the one in each new message. If the new message has an older (lower) number, you can safely ignore it.
2776
+ */
2777
+ entityEventSequence?: string | null;
2778
+ }
2779
+ /** @oneof */
2780
+ interface DomainEventBodyOneOf {
2781
+ createdEvent?: EntityCreatedEvent;
2782
+ updatedEvent?: EntityUpdatedEvent;
2783
+ deletedEvent?: EntityDeletedEvent;
2784
+ actionEvent?: ActionEvent;
2785
+ }
2786
+ interface EntityCreatedEvent {
2787
+ entityAsJson?: string;
2788
+ /** Indicates the event was triggered by a restore-from-trashbin operation for a previously deleted entity */
2789
+ restoreInfo?: RestoreInfo;
2790
+ }
2791
+ interface RestoreInfo {
2792
+ deletedDate?: Date | null;
2793
+ }
2794
+ interface EntityUpdatedEvent {
2795
+ /**
2796
+ * Since platformized APIs only expose PATCH and not PUT we can't assume that the fields sent from the client are the actual diff.
2797
+ * This means that to generate a list of changed fields (as opposed to sent fields) one needs to traverse both objects.
2798
+ * We don't want to impose this on all developers and so we leave this traversal to the notification recipients which need it.
2799
+ */
2800
+ currentEntityAsJson?: string;
2801
+ }
2802
+ interface EntityDeletedEvent {
2803
+ /** Entity that was deleted. */
2804
+ deletedEntityAsJson?: string | null;
2805
+ }
2806
+ interface ActionEvent {
2807
+ bodyAsJson?: string;
2808
+ }
2809
+ interface MessageEnvelope {
2810
+ /**
2811
+ * App instance ID.
2812
+ * @format GUID
2813
+ */
2814
+ instanceId?: string | null;
2815
+ /**
2816
+ * Event type.
2817
+ * @maxLength 150
2818
+ */
2819
+ eventType?: string;
2820
+ /** The identification type and identity data. */
2821
+ identity?: IdentificationData;
2822
+ /** Stringify payload. */
2823
+ data?: string;
2824
+ /** Details related to the account */
2825
+ accountInfo?: AccountInfo;
2826
+ }
2827
+ interface IdentificationData extends IdentificationDataIdOneOf {
2828
+ /**
2829
+ * ID of a site visitor that has not logged in to the site.
2830
+ * @format GUID
2831
+ */
2832
+ anonymousVisitorId?: string;
2833
+ /**
2834
+ * ID of a site visitor that has logged in to the site.
2835
+ * @format GUID
2836
+ */
2837
+ memberId?: string;
2838
+ /**
2839
+ * ID of a Wix user (site owner, contributor, etc.).
2840
+ * @format GUID
2841
+ */
2842
+ wixUserId?: string;
2843
+ /**
2844
+ * ID of an app.
2845
+ * @format GUID
2846
+ */
2847
+ appId?: string;
2848
+ /** @readonly */
2849
+ identityType?: WebhookIdentityTypeWithLiterals;
2850
+ }
2851
+ /** @oneof */
2852
+ interface IdentificationDataIdOneOf {
2853
+ /**
2854
+ * ID of a site visitor that has not logged in to the site.
2855
+ * @format GUID
2856
+ */
2857
+ anonymousVisitorId?: string;
2858
+ /**
2859
+ * ID of a site visitor that has logged in to the site.
2860
+ * @format GUID
2861
+ */
2862
+ memberId?: string;
2863
+ /**
2864
+ * ID of a Wix user (site owner, contributor, etc.).
2865
+ * @format GUID
2866
+ */
2867
+ wixUserId?: string;
2868
+ /**
2869
+ * ID of an app.
2870
+ * @format GUID
2871
+ */
2872
+ appId?: string;
2873
+ }
2874
+ declare enum WebhookIdentityType {
2875
+ UNKNOWN = "UNKNOWN",
2876
+ ANONYMOUS_VISITOR = "ANONYMOUS_VISITOR",
2877
+ MEMBER = "MEMBER",
2878
+ WIX_USER = "WIX_USER",
2879
+ APP = "APP"
2880
+ }
2881
+ /** @enumType */
2882
+ type WebhookIdentityTypeWithLiterals = WebhookIdentityType | 'UNKNOWN' | 'ANONYMOUS_VISITOR' | 'MEMBER' | 'WIX_USER' | 'APP';
2883
+ interface AccountInfo {
2884
+ /**
2885
+ * ID of the Wix account associated with the event.
2886
+ * @format GUID
2887
+ */
2888
+ accountId?: string | null;
2889
+ /**
2890
+ * ID of the parent Wix account. Only included when accountId belongs to a child account.
2891
+ * @format GUID
2892
+ */
2893
+ parentAccountId?: string | null;
2894
+ /**
2895
+ * ID of the Wix site associated with the event. Only included when the event is tied to a specific site.
2896
+ * @format GUID
2897
+ */
2898
+ siteId?: string | null;
2899
+ }
2900
+ interface ListTemplatesRequest {
2901
+ /**
2902
+ * Filter post templates by given template category ids
2903
+ * @maxSize 50
2904
+ * @format GUID
2905
+ */
2906
+ categoryIds?: string[];
2907
+ /**
2908
+ * Filter post templates by provided language
2909
+ * @format LANGUAGE_TAG
2910
+ */
2911
+ language?: string | null;
2912
+ /** Returns post template categories when set to TRUE */
2913
+ listTemplateCategories?: boolean;
2914
+ /** Sort order by ascending/descending publish date. Default is ascending publish date sort */
2915
+ sort?: GetPostTemplatesSortWithLiterals;
2916
+ /** Pagination options. */
2917
+ paging?: BlogPaging;
2918
+ }
2919
+ declare enum GetPostTemplatesSort {
2920
+ /** Sort by ascending publishing date. */
2921
+ PUBLISHED_DATE_ASC = "PUBLISHED_DATE_ASC",
2922
+ /** Sort by descending publishing date. */
2923
+ PUBLISHED_DATE_DESC = "PUBLISHED_DATE_DESC"
2924
+ }
2925
+ /** @enumType */
2926
+ type GetPostTemplatesSortWithLiterals = GetPostTemplatesSort | 'PUBLISHED_DATE_ASC' | 'PUBLISHED_DATE_DESC';
2927
+ interface BlogPaging {
2928
+ /**
2929
+ * Number of items to skip in the current sort order.
2930
+ *
2931
+ *
2932
+ * Default: `0`
2933
+ */
2934
+ offset?: number;
2935
+ /**
2936
+ * Number of items to return.
2937
+ *
2938
+ *
2939
+ * Default:`50`
2940
+ * @min 1
2941
+ * @max 100
2942
+ */
2943
+ limit?: number;
2944
+ /**
2945
+ * Pointer to the next or previous page in the list of results.
2946
+ * @maxLength 2000
2947
+ */
2948
+ cursor?: string | null;
2949
+ }
2950
+ interface ListTemplatesResponse {
2951
+ /** Available post templates */
2952
+ postTemplates?: Post[];
2953
+ /** Details on the paged set of posts templates returned. */
2954
+ postTemplatesMetaData?: MetaData;
2955
+ /** Post template categories. This value is returned empty unless asked explicitly */
2956
+ templateCategories?: Category[];
2957
+ }
2958
+ interface MetaData {
2959
+ /** Number of items returned in this response. */
2960
+ count?: number;
2961
+ /** Requested offset. */
2962
+ offset?: number;
2963
+ /** Total number of items that match the query. */
2964
+ total?: number;
2965
+ /**
2966
+ * Pointer to the next or previous page in the list of results.
2967
+ * @maxLength 2000
2968
+ */
2969
+ cursor?: string | null;
2970
+ }
2971
+ interface Category {
2508
2972
  /**
2509
2973
  * Category ID.
2510
2974
  * @immutable
@@ -2861,281 +3325,6 @@ interface DraftPostTranslation {
2861
3325
  /** Post URL. */
2862
3326
  url?: PageUrl;
2863
3327
  }
2864
- interface DomainEvent extends DomainEventBodyOneOf {
2865
- createdEvent?: EntityCreatedEvent;
2866
- updatedEvent?: EntityUpdatedEvent;
2867
- deletedEvent?: EntityDeletedEvent;
2868
- actionEvent?: ActionEvent;
2869
- /** Event ID. With this ID you can easily spot duplicated events and ignore them. */
2870
- id?: string;
2871
- /**
2872
- * Fully Qualified Domain Name of an entity. This is a unique identifier assigned to the API main business entities.
2873
- * For example, `wix.stores.catalog.product`, `wix.bookings.session`, `wix.payments.transaction`.
2874
- */
2875
- entityFqdn?: string;
2876
- /**
2877
- * Event action name, placed at the top level to make it easier for users to dispatch messages.
2878
- * For example: `created`/`updated`/`deleted`/`started`/`completed`/`email_opened`.
2879
- */
2880
- slug?: string;
2881
- /** ID of the entity associated with the event. */
2882
- entityId?: string;
2883
- /** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example, `2020-04-26T13:57:50.699Z`. */
2884
- eventTime?: Date | null;
2885
- /**
2886
- * Whether the event was triggered as a result of a privacy regulation application
2887
- * (for example, GDPR).
2888
- */
2889
- triggeredByAnonymizeRequest?: boolean | null;
2890
- /** If present, indicates the action that triggered the event. */
2891
- originatedFrom?: string | null;
2892
- /**
2893
- * A sequence number that indicates the order of updates to an entity. For example, if an entity was updated at 16:00 and then again at 16:01, the second update will always have a higher sequence number.
2894
- * You can use this number to make sure you're handling updates in the right order. Just save the latest sequence number on your end and compare it to the one in each new message. If the new message has an older (lower) number, you can safely ignore it.
2895
- */
2896
- entityEventSequence?: string | null;
2897
- }
2898
- /** @oneof */
2899
- interface DomainEventBodyOneOf {
2900
- createdEvent?: EntityCreatedEvent;
2901
- updatedEvent?: EntityUpdatedEvent;
2902
- deletedEvent?: EntityDeletedEvent;
2903
- actionEvent?: ActionEvent;
2904
- }
2905
- interface EntityCreatedEvent {
2906
- entityAsJson?: string;
2907
- /** Indicates the event was triggered by a restore-from-trashbin operation for a previously deleted entity */
2908
- restoreInfo?: RestoreInfo;
2909
- }
2910
- interface RestoreInfo {
2911
- deletedDate?: Date | null;
2912
- }
2913
- interface EntityUpdatedEvent {
2914
- /**
2915
- * Since platformized APIs only expose PATCH and not PUT we can't assume that the fields sent from the client are the actual diff.
2916
- * This means that to generate a list of changed fields (as opposed to sent fields) one needs to traverse both objects.
2917
- * We don't want to impose this on all developers and so we leave this traversal to the notification recipients which need it.
2918
- */
2919
- currentEntityAsJson?: string;
2920
- }
2921
- interface EntityDeletedEvent {
2922
- /** Entity that was deleted. */
2923
- deletedEntityAsJson?: string | null;
2924
- }
2925
- interface ActionEvent {
2926
- bodyAsJson?: string;
2927
- }
2928
- interface MessageEnvelope {
2929
- /**
2930
- * App instance ID.
2931
- * @format GUID
2932
- */
2933
- instanceId?: string | null;
2934
- /**
2935
- * Event type.
2936
- * @maxLength 150
2937
- */
2938
- eventType?: string;
2939
- /** The identification type and identity data. */
2940
- identity?: IdentificationData;
2941
- /** Stringify payload. */
2942
- data?: string;
2943
- /** Details related to the account */
2944
- accountInfo?: AccountInfo;
2945
- }
2946
- interface IdentificationData extends IdentificationDataIdOneOf {
2947
- /**
2948
- * ID of a site visitor that has not logged in to the site.
2949
- * @format GUID
2950
- */
2951
- anonymousVisitorId?: string;
2952
- /**
2953
- * ID of a site visitor that has logged in to the site.
2954
- * @format GUID
2955
- */
2956
- memberId?: string;
2957
- /**
2958
- * ID of a Wix user (site owner, contributor, etc.).
2959
- * @format GUID
2960
- */
2961
- wixUserId?: string;
2962
- /**
2963
- * ID of an app.
2964
- * @format GUID
2965
- */
2966
- appId?: string;
2967
- /** @readonly */
2968
- identityType?: WebhookIdentityTypeWithLiterals;
2969
- }
2970
- /** @oneof */
2971
- interface IdentificationDataIdOneOf {
2972
- /**
2973
- * ID of a site visitor that has not logged in to the site.
2974
- * @format GUID
2975
- */
2976
- anonymousVisitorId?: string;
2977
- /**
2978
- * ID of a site visitor that has logged in to the site.
2979
- * @format GUID
2980
- */
2981
- memberId?: string;
2982
- /**
2983
- * ID of a Wix user (site owner, contributor, etc.).
2984
- * @format GUID
2985
- */
2986
- wixUserId?: string;
2987
- /**
2988
- * ID of an app.
2989
- * @format GUID
2990
- */
2991
- appId?: string;
2992
- }
2993
- declare enum WebhookIdentityType {
2994
- UNKNOWN = "UNKNOWN",
2995
- ANONYMOUS_VISITOR = "ANONYMOUS_VISITOR",
2996
- MEMBER = "MEMBER",
2997
- WIX_USER = "WIX_USER",
2998
- APP = "APP"
2999
- }
3000
- /** @enumType */
3001
- type WebhookIdentityTypeWithLiterals = WebhookIdentityType | 'UNKNOWN' | 'ANONYMOUS_VISITOR' | 'MEMBER' | 'WIX_USER' | 'APP';
3002
- interface AccountInfo {
3003
- /**
3004
- * ID of the Wix account associated with the event.
3005
- * @format GUID
3006
- */
3007
- accountId?: string | null;
3008
- /**
3009
- * ID of the parent Wix account. Only included when accountId belongs to a child account.
3010
- * @format GUID
3011
- */
3012
- parentAccountId?: string | null;
3013
- /**
3014
- * ID of the Wix site associated with the event. Only included when the event is tied to a specific site.
3015
- * @format GUID
3016
- */
3017
- siteId?: string | null;
3018
- }
3019
- /** Get Blog Publications Count Stats request */
3020
- interface QueryPublicationsCountStatsRequest {
3021
- /** Start of time range to return, in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date and time format. */
3022
- rangeStart?: Date | null;
3023
- /** Non-inclusive end of time range to return, in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date and time format. */
3024
- rangeEnd?: Date | null;
3025
- /** Order of the returned results. */
3026
- order?: QueryPublicationsCountStatsRequestOrderWithLiterals;
3027
- /** Number of months to include in the response. */
3028
- months?: number;
3029
- /**
3030
- * Language filter
3031
- *
3032
- * 2-or-4-letter language code in [IETF BCP 47 language tag](https://en.wikipedia.org/wiki/IETF_language_tag) format.
3033
- * @format LANGUAGE_TAG
3034
- */
3035
- language?: string | null;
3036
- /**
3037
- * Timezone of the client.
3038
- * @minLength 3
3039
- * @maxLength 100
3040
- */
3041
- timeZone?: string | null;
3042
- }
3043
- declare enum QueryPublicationsCountStatsRequestOrder {
3044
- UNKNOWN = "UNKNOWN",
3045
- OLDEST = "OLDEST",
3046
- NEWEST = "NEWEST"
3047
- }
3048
- /** @enumType */
3049
- type QueryPublicationsCountStatsRequestOrderWithLiterals = QueryPublicationsCountStatsRequestOrder | 'UNKNOWN' | 'OLDEST' | 'NEWEST';
3050
- /** Get Blog Publications Count Stats response */
3051
- interface QueryPublicationsCountStatsResponse {
3052
- /** Chronologically ordered list of publications. */
3053
- stats?: PeriodPublicationsCount[];
3054
- }
3055
- /** Publications count for a specific time period */
3056
- interface PeriodPublicationsCount {
3057
- /** Start of time range in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date and time format. */
3058
- periodStart?: Date | null;
3059
- /** Number of posts published during this month. */
3060
- publicationsCount?: number;
3061
- }
3062
- /** Get Blog Post Count Stats request */
3063
- interface QueryPostCountStatsRequest {
3064
- /** Start of time range to return, in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date and time format. */
3065
- rangeStart?: Date | null;
3066
- /**
3067
- * Order of returned results.
3068
- *
3069
- * - `OLDEST`: posts by date in ascending order.
3070
- * - `NEWEST`: posts by date in descending order.
3071
- *
3072
- * Default: `OLDEST`
3073
- */
3074
- order?: OrderWithLiterals;
3075
- /** Number of months to include in response. */
3076
- months?: number;
3077
- /**
3078
- * Language filter.
3079
- *
3080
- * 2-or-4-letter language code in [IETF BCP 47 language tag](https://en.wikipedia.org/wiki/IETF_language_tag) format.
3081
- * Pass a language to only receive the period post count for that specified language.
3082
- * @format LANGUAGE_TAG
3083
- */
3084
- language?: string | null;
3085
- /**
3086
- * Time zone to use when calculating the start of the month.
3087
- *
3088
- * [UTC timezone offset](https://en.wikipedia.org/wiki/List_of_UTC_offsets) format. For example, New York time zone is `-05`.
3089
- * @minLength 3
3090
- * @maxLength 100
3091
- */
3092
- timeZone?: string | null;
3093
- }
3094
- declare enum Order {
3095
- UNKNOWN = "UNKNOWN",
3096
- OLDEST = "OLDEST",
3097
- NEWEST = "NEWEST"
3098
- }
3099
- /** @enumType */
3100
- type OrderWithLiterals = Order | 'UNKNOWN' | 'OLDEST' | 'NEWEST';
3101
- /** Get Blog Post Count Stats response */
3102
- interface QueryPostCountStatsResponse {
3103
- /** List of published post counts by month. */
3104
- stats?: PeriodPostCount[];
3105
- }
3106
- /** Post count for a specific time period */
3107
- interface PeriodPostCount {
3108
- /** Start of time range in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date and time format. */
3109
- periodStart?: Date | null;
3110
- /** Number of posts published during this month. */
3111
- postCount?: number;
3112
- }
3113
- interface GetTotalPublicationsRequest {
3114
- /**
3115
- * Language filter
3116
- * @minLength 2
3117
- * @format LANGUAGE_TAG
3118
- */
3119
- language?: string | null;
3120
- }
3121
- interface GetTotalPublicationsResponse {
3122
- /** Total amount of publications. */
3123
- total?: number;
3124
- }
3125
- interface GetTotalPostsRequest {
3126
- /**
3127
- * Language filter.
3128
- *
3129
- * 2-or-4-letter language code in [IETF BCP 47 language tag](https://en.wikipedia.org/wiki/IETF_language_tag) format.
3130
- * Pass a language to receive the total amount of posts in that specified language.
3131
- * @format LANGUAGE_TAG
3132
- */
3133
- language?: string | null;
3134
- }
3135
- interface GetTotalPostsResponse {
3136
- /** Total amount of published posts. */
3137
- total?: number;
3138
- }
3139
3328
  interface GetTotalLikesPerMemberRequest {
3140
3329
  /**
3141
3330
  * Member ID.
@@ -3834,4 +4023,4 @@ declare function getPostMetrics(): __PublicMethodMetaInfo<'GET', {
3834
4023
  postId: string;
3835
4024
  }, GetPostMetricsRequest$1, GetPostMetricsRequest, GetPostMetricsResponse$1, GetPostMetricsResponse>;
3836
4025
 
3837
- export { type AccountInfo as AccountInfoOriginal, type ActionEvent as ActionEventOriginal, Alignment as AlignmentOriginal, type AlignmentWithLiterals as AlignmentWithLiteralsOriginal, type AnchorData as AnchorDataOriginal, type AppEmbedDataAppDataOneOf as AppEmbedDataAppDataOneOfOriginal, type AppEmbedData as AppEmbedDataOriginal, AppType as AppTypeOriginal, type AppTypeWithLiterals as AppTypeWithLiteralsOriginal, AspectRatio as AspectRatioOriginal, type AspectRatioWithLiterals as AspectRatioWithLiteralsOriginal, type AudioData as AudioDataOriginal, type BackgroundBackgroundOneOf as BackgroundBackgroundOneOfOriginal, type BackgroundImage as BackgroundImageOriginal, type Background as BackgroundOriginal, BackgroundType as BackgroundTypeOriginal, type BackgroundTypeWithLiterals as BackgroundTypeWithLiteralsOriginal, BannerOrigin as BannerOriginOriginal, type BannerOriginWithLiterals as BannerOriginWithLiteralsOriginal, type Banner as BannerOriginal, type BlockquoteData as BlockquoteDataOriginal, type BlogPaging as BlogPagingOriginal, type BookingData as BookingDataOriginal, type BorderColors as BorderColorsOriginal, type Border as BorderOriginal, type BorderWidths as BorderWidthsOriginal, type BulkDeletePostsRequest as BulkDeletePostsRequestOriginal, type BulkDeletePostsResponse as BulkDeletePostsResponseOriginal, type BulkGetPostReactionsRequest as BulkGetPostReactionsRequestOriginal, type BulkGetPostReactionsResponse as BulkGetPostReactionsResponseOriginal, type BulletedListData as BulletedListDataOriginal, type ButtonData as ButtonDataOriginal, ButtonDataType as ButtonDataTypeOriginal, type ButtonDataTypeWithLiterals as ButtonDataTypeWithLiteralsOriginal, type ButtonStyles as ButtonStylesOriginal, type CaptionData as CaptionDataOriginal, type CardStyles as CardStylesOriginal, type Category as CategoryOriginal, type CategoryTranslation as CategoryTranslationOriginal, type CellStyle as CellStyleOriginal, type CodeBlockData as CodeBlockDataOriginal, type CollapsibleListData as CollapsibleListDataOriginal, type ColorData as ColorDataOriginal, type Colors as ColorsOriginal, type ConvertDraftJsToRichContentRequest as ConvertDraftJsToRichContentRequestOriginal, type ConvertDraftJsToRichContentResponse as ConvertDraftJsToRichContentResponseOriginal, type ConvertRichContentToDraftJsRequest as ConvertRichContentToDraftJsRequestOriginal, type ConvertRichContentToDraftJsResponse as ConvertRichContentToDraftJsResponseOriginal, type CreateDraftPostFromTemplateRequest as CreateDraftPostFromTemplateRequestOriginal, type CreateDraftPostFromTemplateResponse as CreateDraftPostFromTemplateResponseOriginal, Crop as CropOriginal, type CropWithLiterals as CropWithLiteralsOriginal, type CursorPaging as CursorPagingOriginal, type Cursors as CursorsOriginal, type DecorationDataOneOf as DecorationDataOneOfOriginal, type Decoration as DecorationOriginal, DecorationType as DecorationTypeOriginal, type DecorationTypeWithLiterals as DecorationTypeWithLiteralsOriginal, type DeletePostRequest as DeletePostRequestOriginal, type DeletePostResponse as DeletePostResponseOriginal, type Design as DesignOriginal, DesignTarget as DesignTargetOriginal, type DesignTargetWithLiterals as DesignTargetWithLiteralsOriginal, type Dimensions as DimensionsOriginal, Direction as DirectionOriginal, type DirectionWithLiterals as DirectionWithLiteralsOriginal, DividerDataAlignment as DividerDataAlignmentOriginal, type DividerDataAlignmentWithLiterals as DividerDataAlignmentWithLiteralsOriginal, type DividerData as DividerDataOriginal, type DocumentStyle as DocumentStyleOriginal, type DomainEventBodyOneOf as DomainEventBodyOneOfOriginal, type DomainEvent as DomainEventOriginal, type DraftPost as DraftPostOriginal, type DraftPostTranslation as DraftPostTranslationOriginal, type EmbedData as EmbedDataOriginal, type EmbedMedia as EmbedMediaOriginal, type EmbedThumbnail as EmbedThumbnailOriginal, type EmbedVideo as EmbedVideoOriginal, type EntityCreatedEvent as EntityCreatedEventOriginal, type EntityDeletedEvent as EntityDeletedEventOriginal, type EntityUpdatedEvent as EntityUpdatedEventOriginal, type EventData as EventDataOriginal, Field as FieldOriginal, type FieldWithLiterals as FieldWithLiteralsOriginal, type FileData as FileDataOriginal, type FileSourceDataOneOf as FileSourceDataOneOfOriginal, type FileSource as FileSourceOriginal, type FocalPoint as FocalPointOriginal, type FontFamilyData as FontFamilyDataOriginal, type FontSizeData as FontSizeDataOriginal, FontType as FontTypeOriginal, type FontTypeWithLiterals as FontTypeWithLiteralsOriginal, type GIFData as GIFDataOriginal, type GIF as GIFOriginal, GIFType as GIFTypeOriginal, type GIFTypeWithLiterals as GIFTypeWithLiteralsOriginal, type GalleryData as GalleryDataOriginal, type GalleryOptionsLayout as GalleryOptionsLayoutOriginal, type GalleryOptions as GalleryOptionsOriginal, type GetPostBySlugRequest as GetPostBySlugRequestOriginal, type GetPostBySlugResponse as GetPostBySlugResponseOriginal, type GetPostCountPerMonthRequest as GetPostCountPerMonthRequestOriginal, type GetPostCountPerMonthResponse as GetPostCountPerMonthResponseOriginal, type GetPostCountsRequest as GetPostCountsRequestOriginal, type GetPostCountsResponse as GetPostCountsResponseOriginal, type GetPostMetricsRequest as GetPostMetricsRequestOriginal, type GetPostMetricsResponse as GetPostMetricsResponseOriginal, type GetPostRequest as GetPostRequestOriginal, type GetPostResponse as GetPostResponseOriginal, GetPostTemplatesSort as GetPostTemplatesSortOriginal, type GetPostTemplatesSortWithLiterals as GetPostTemplatesSortWithLiteralsOriginal, GetPostsSort as GetPostsSortOriginal, type GetPostsSortWithLiterals as GetPostsSortWithLiteralsOriginal, type GetTemplateRequest as GetTemplateRequestOriginal, type GetTemplateResponse as GetTemplateResponseOriginal, type GetTotalLikesPerMemberRequest as GetTotalLikesPerMemberRequestOriginal, type GetTotalLikesPerMemberResponse as GetTotalLikesPerMemberResponseOriginal, type GetTotalPostsRequest as GetTotalPostsRequestOriginal, type GetTotalPostsResponse as GetTotalPostsResponseOriginal, type GetTotalPublicationsRequest as GetTotalPublicationsRequestOriginal, type GetTotalPublicationsResponse as GetTotalPublicationsResponseOriginal, type Gradient as GradientOriginal, type HTMLDataDataOneOf as HTMLDataDataOneOfOriginal, type HTMLData as HTMLDataOriginal, type HeadingData as HeadingDataOriginal, type Height as HeightOriginal, type IdentificationDataIdOneOf as IdentificationDataIdOneOfOriginal, type IdentificationData as IdentificationDataOriginal, type ImageData as ImageDataOriginal, type ImageDataStyles as ImageDataStylesOriginal, type Image as ImageOriginal, ImagePosition as ImagePositionOriginal, type ImagePositionWithLiterals as ImagePositionWithLiteralsOriginal, type ImageStyles as ImageStylesOriginal, InitialExpandedItems as InitialExpandedItemsOriginal, type InitialExpandedItemsWithLiterals as InitialExpandedItemsWithLiteralsOriginal, type InitialPostsCopied as InitialPostsCopiedOriginal, type ItemDataOneOf as ItemDataOneOfOriginal, type ItemImage as ItemImageOriginal, type Item as ItemOriginal, type ItemStyle as ItemStyleOriginal, type Keyword as KeywordOriginal, type LayoutCellData as LayoutCellDataOriginal, type LayoutData as LayoutDataOriginal, Layout as LayoutOriginal, LayoutType as LayoutTypeOriginal, type LayoutTypeWithLiterals as LayoutTypeWithLiteralsOriginal, type LayoutWithLiterals as LayoutWithLiteralsOriginal, type LikePostRequest as LikePostRequestOriginal, type LikePostResponse as LikePostResponseOriginal, LineStyle as LineStyleOriginal, type LineStyleWithLiterals as LineStyleWithLiteralsOriginal, type LinkDataOneOf as LinkDataOneOfOriginal, type LinkData as LinkDataOriginal, type Link as LinkOriginal, type LinkPreviewData as LinkPreviewDataOriginal, type LinkPreviewDataStyles as LinkPreviewDataStylesOriginal, type ListDemoPostsRequest as ListDemoPostsRequestOriginal, type ListDemoPostsResponse as ListDemoPostsResponseOriginal, type ListPostsArchiveRequest as ListPostsArchiveRequestOriginal, type ListPostsArchiveResponse as ListPostsArchiveResponseOriginal, type ListPostsRequest as ListPostsRequestOriginal, type ListPostsResponse as ListPostsResponseOriginal, type ListTemplatesRequest as ListTemplatesRequestOriginal, type ListTemplatesResponse as ListTemplatesResponseOriginal, type ListValue as ListValueOriginal, type MapData as MapDataOriginal, type MapSettings as MapSettingsOriginal, MapType as MapTypeOriginal, type MapTypeWithLiterals as MapTypeWithLiteralsOriginal, type MediaMediaOneOf as MediaMediaOneOfOriginal, type Media as MediaOriginal, type MentionData as MentionDataOriginal, type MessageEnvelope as MessageEnvelopeOriginal, type MetaData as MetaDataOriginal, type Metadata as MetadataOriginal, type Metrics as MetricsOriginal, type ModerationDetails as ModerationDetailsOriginal, ModerationStatusStatus as ModerationStatusStatusOriginal, type ModerationStatusStatusWithLiterals as ModerationStatusStatusWithLiteralsOriginal, type NodeDataOneOf as NodeDataOneOfOriginal, type Node as NodeOriginal, type NodeStyle as NodeStyleOriginal, NodeType as NodeTypeOriginal, type NodeTypeWithLiterals as NodeTypeWithLiteralsOriginal, NullValue as NullValueOriginal, type NullValueWithLiterals as NullValueWithLiteralsOriginal, type Oembed as OembedOriginal, type OptionDesign as OptionDesignOriginal, type OptionLayout as OptionLayoutOriginal, type Option as OptionOriginal, Order as OrderOriginal, type OrderWithLiterals as OrderWithLiteralsOriginal, type OrderedListData as OrderedListDataOriginal, Orientation as OrientationOriginal, type OrientationWithLiterals as OrientationWithLiteralsOriginal, Origin as OriginOriginal, type OriginWithLiterals as OriginWithLiteralsOriginal, type PDFSettings as PDFSettingsOriginal, type PageUrl as PageUrlOriginal, type PagingMetadataV2 as PagingMetadataV2Original, type Paging as PagingOriginal, type ParagraphData as ParagraphDataOriginal, type PeriodPostCount as PeriodPostCountOriginal, type PeriodPublicationsCount as PeriodPublicationsCountOriginal, type Permissions as PermissionsOriginal, type PinPostRequest as PinPostRequestOriginal, type PinPostResponse as PinPostResponseOriginal, Placement as PlacementOriginal, type PlacementWithLiterals as PlacementWithLiteralsOriginal, type PlatformQuery as PlatformQueryOriginal, type PlatformQueryPagingMethodOneOf as PlatformQueryPagingMethodOneOfOriginal, type PlaybackOptions as PlaybackOptionsOriginal, PluginContainerDataAlignment as PluginContainerDataAlignmentOriginal, type PluginContainerDataAlignmentWithLiterals as PluginContainerDataAlignmentWithLiteralsOriginal, type PluginContainerData as PluginContainerDataOriginal, type PluginContainerDataWidthDataOneOf as PluginContainerDataWidthDataOneOfOriginal, type PluginContainerDataWidth as PluginContainerDataWidthOriginal, type PollDataLayout as PollDataLayoutOriginal, type PollData as PollDataOriginal, type PollDesign as PollDesignOriginal, PollLayoutDirection as PollLayoutDirectionOriginal, type PollLayoutDirectionWithLiterals as PollLayoutDirectionWithLiteralsOriginal, type PollLayout as PollLayoutOriginal, PollLayoutType as PollLayoutTypeOriginal, type PollLayoutTypeWithLiterals as PollLayoutTypeWithLiteralsOriginal, type Poll as PollOriginal, type PollSettings as PollSettingsOriginal, Position as PositionOriginal, type PositionWithLiterals as PositionWithLiteralsOriginal, type PostCategoriesUpdated as PostCategoriesUpdatedOriginal, type PostCountInfo as PostCountInfoOriginal, type PostCount as PostCountOriginal, type PostCountPerMonth as PostCountPerMonthOriginal, type PostCountersUpdatedInitiatorOneOf as PostCountersUpdatedInitiatorOneOfOriginal, type PostCountersUpdated as PostCountersUpdatedOriginal, PostFieldField as PostFieldFieldOriginal, type PostFieldFieldWithLiterals as PostFieldFieldWithLiteralsOriginal, type PostLikedInitiatorOneOf as PostLikedInitiatorOneOfOriginal, type PostLiked as PostLikedOriginal, type Post as PostOriginal, type PostOwnerChanged as PostOwnerChangedOriginal, type PostTagsUpdated as PostTagsUpdatedOriginal, type PostTranslation as PostTranslationOriginal, type PostUnlikedInitiatorOneOf as PostUnlikedInitiatorOneOfOriginal, type PostUnliked as PostUnlikedOriginal, type PricingData as PricingDataOriginal, type QueryPostCountStatsRequest as QueryPostCountStatsRequestOriginal, type QueryPostCountStatsResponse as QueryPostCountStatsResponseOriginal, type QueryPostsRequest as QueryPostsRequestOriginal, type QueryPostsResponse as QueryPostsResponseOriginal, QueryPublicationsCountStatsRequestOrder as QueryPublicationsCountStatsRequestOrderOriginal, type QueryPublicationsCountStatsRequestOrderWithLiterals as QueryPublicationsCountStatsRequestOrderWithLiteralsOriginal, type QueryPublicationsCountStatsRequest as QueryPublicationsCountStatsRequestOriginal, type QueryPublicationsCountStatsResponse as QueryPublicationsCountStatsResponseOriginal, type Reactions as ReactionsOriginal, type Rel as RelOriginal, Resizing as ResizingOriginal, type ResizingWithLiterals as ResizingWithLiteralsOriginal, ResponsivenessBehaviour as ResponsivenessBehaviourOriginal, type ResponsivenessBehaviourWithLiterals as ResponsivenessBehaviourWithLiteralsOriginal, type RestoreInfo as RestoreInfoOriginal, type RibbonStyles as RibbonStylesOriginal, type RichContent as RichContentOriginal, Scaling as ScalingOriginal, type ScalingWithLiterals as ScalingWithLiteralsOriginal, type ScheduledPostPublished as ScheduledPostPublishedOriginal, type SeoSchema as SeoSchemaOriginal, type Settings as SettingsOriginal, type ShapeData as ShapeDataOriginal, type ShapeDataStyles as ShapeDataStylesOriginal, SortOrder as SortOrderOriginal, type SortOrderWithLiterals as SortOrderWithLiteralsOriginal, type Sorting as SortingOriginal, Source as SourceOriginal, type SourceWithLiterals as SourceWithLiteralsOriginal, type SpoilerData as SpoilerDataOriginal, type Spoiler as SpoilerOriginal, Status as StatusOriginal, type StatusWithLiterals as StatusWithLiteralsOriginal, type StylesBorder as StylesBorderOriginal, type Styles as StylesOriginal, StylesPosition as StylesPositionOriginal, type StylesPositionWithLiterals as StylesPositionWithLiteralsOriginal, type TableCellData as TableCellDataOriginal, type TableData as TableDataOriginal, type Tag as TagOriginal, Target as TargetOriginal, type TargetWithLiterals as TargetWithLiteralsOriginal, TextAlignment as TextAlignmentOriginal, type TextAlignmentWithLiterals as TextAlignmentWithLiteralsOriginal, type TextData as TextDataOriginal, type TextNodeStyle as TextNodeStyleOriginal, type TextStyle as TextStyleOriginal, ThumbnailsAlignment as ThumbnailsAlignmentOriginal, type ThumbnailsAlignmentWithLiterals as ThumbnailsAlignmentWithLiteralsOriginal, type Thumbnails as ThumbnailsOriginal, Type as TypeOriginal, type TypeWithLiterals as TypeWithLiteralsOriginal, type UnlikePostRequest as UnlikePostRequestOriginal, type UnlikePostResponse as UnlikePostResponseOriginal, type UnpinPostRequest as UnpinPostRequestOriginal, type UnpinPostResponse as UnpinPostResponseOriginal, type V1Media as V1MediaOriginal, VerticalAlignmentAlignment as VerticalAlignmentAlignmentOriginal, type VerticalAlignmentAlignmentWithLiterals as VerticalAlignmentAlignmentWithLiteralsOriginal, VerticalAlignment as VerticalAlignmentOriginal, type VerticalAlignmentWithLiterals as VerticalAlignmentWithLiteralsOriginal, type VideoData as VideoDataOriginal, type Video as VideoOriginal, type VideoResolution as VideoResolutionOriginal, type VideoV2 as VideoV2Original, ViewMode as ViewModeOriginal, type ViewModeWithLiterals as ViewModeWithLiteralsOriginal, type ViewPostRequest as ViewPostRequestOriginal, type ViewPostResponse as ViewPostResponseOriginal, ViewRole as ViewRoleOriginal, type ViewRoleWithLiterals as ViewRoleWithLiteralsOriginal, VoteRole as VoteRoleOriginal, type VoteRoleWithLiterals as VoteRoleWithLiteralsOriginal, WebhookIdentityType as WebhookIdentityTypeOriginal, type WebhookIdentityTypeWithLiterals as WebhookIdentityTypeWithLiteralsOriginal, Width as WidthOriginal, WidthType as WidthTypeOriginal, type WidthTypeWithLiterals as WidthTypeWithLiteralsOriginal, type WidthWithLiterals as WidthWithLiteralsOriginal, type WixMedia as WixMediaOriginal, type __PublicMethodMetaInfo, getPost, getPostBySlug, getPostMetrics, getTotalPosts, listPosts, queryPostCountStats, queryPosts };
4026
+ export { type AccountInfo as AccountInfoOriginal, type ActionEvent as ActionEventOriginal, Alignment as AlignmentOriginal, type AlignmentWithLiterals as AlignmentWithLiteralsOriginal, type AnchorData as AnchorDataOriginal, type AppEmbedDataAppDataOneOf as AppEmbedDataAppDataOneOfOriginal, type AppEmbedData as AppEmbedDataOriginal, AppType as AppTypeOriginal, type AppTypeWithLiterals as AppTypeWithLiteralsOriginal, AspectRatio as AspectRatioOriginal, type AspectRatioWithLiterals as AspectRatioWithLiteralsOriginal, type AudioData as AudioDataOriginal, type Backdrop as BackdropOriginal, BackdropType as BackdropTypeOriginal, type BackdropTypeWithLiterals as BackdropTypeWithLiteralsOriginal, type BackgroundGradient as BackgroundGradientOriginal, type BackgroundImage as BackgroundImageOriginal, type Background as BackgroundOriginal, BackgroundType as BackgroundTypeOriginal, type BackgroundTypeWithLiterals as BackgroundTypeWithLiteralsOriginal, BannerOrigin as BannerOriginOriginal, type BannerOriginWithLiterals as BannerOriginWithLiteralsOriginal, type Banner as BannerOriginal, type BlockquoteData as BlockquoteDataOriginal, type BlogPaging as BlogPagingOriginal, type BookingData as BookingDataOriginal, type BorderColors as BorderColorsOriginal, type Border as BorderOriginal, type BorderWidths as BorderWidthsOriginal, type BulkDeletePostsRequest as BulkDeletePostsRequestOriginal, type BulkDeletePostsResponse as BulkDeletePostsResponseOriginal, type BulkGetPostReactionsRequest as BulkGetPostReactionsRequestOriginal, type BulkGetPostReactionsResponse as BulkGetPostReactionsResponseOriginal, type BulletedListData as BulletedListDataOriginal, type ButtonData as ButtonDataOriginal, ButtonDataType as ButtonDataTypeOriginal, type ButtonDataTypeWithLiterals as ButtonDataTypeWithLiteralsOriginal, type ButtonStyles as ButtonStylesOriginal, type CaptionData as CaptionDataOriginal, type CardDataBackground as CardDataBackgroundOriginal, CardDataBackgroundType as CardDataBackgroundTypeOriginal, type CardDataBackgroundTypeWithLiterals as CardDataBackgroundTypeWithLiteralsOriginal, type CardData as CardDataOriginal, type CardStyles as CardStylesOriginal, type Category as CategoryOriginal, type CategoryTranslation as CategoryTranslationOriginal, type CellStyle as CellStyleOriginal, type CodeBlockData as CodeBlockDataOriginal, type CollapsibleListData as CollapsibleListDataOriginal, type ColorData as ColorDataOriginal, type Colors as ColorsOriginal, type ConvertDraftJsToRichContentRequest as ConvertDraftJsToRichContentRequestOriginal, type ConvertDraftJsToRichContentResponse as ConvertDraftJsToRichContentResponseOriginal, type ConvertRichContentToDraftJsRequest as ConvertRichContentToDraftJsRequestOriginal, type ConvertRichContentToDraftJsResponse as ConvertRichContentToDraftJsResponseOriginal, type CreateDraftPostFromTemplateRequest as CreateDraftPostFromTemplateRequestOriginal, type CreateDraftPostFromTemplateResponse as CreateDraftPostFromTemplateResponseOriginal, Crop as CropOriginal, type CropWithLiterals as CropWithLiteralsOriginal, type CursorPaging as CursorPagingOriginal, type Cursors as CursorsOriginal, type DecorationDataOneOf as DecorationDataOneOfOriginal, type Decoration as DecorationOriginal, DecorationType as DecorationTypeOriginal, type DecorationTypeWithLiterals as DecorationTypeWithLiteralsOriginal, type DeletePostRequest as DeletePostRequestOriginal, type DeletePostResponse as DeletePostResponseOriginal, type Design as DesignOriginal, DesignTarget as DesignTargetOriginal, type DesignTargetWithLiterals as DesignTargetWithLiteralsOriginal, type Dimensions as DimensionsOriginal, Direction as DirectionOriginal, type DirectionWithLiterals as DirectionWithLiteralsOriginal, DividerDataAlignment as DividerDataAlignmentOriginal, type DividerDataAlignmentWithLiterals as DividerDataAlignmentWithLiteralsOriginal, type DividerData as DividerDataOriginal, type DocumentStyle as DocumentStyleOriginal, type DomainEventBodyOneOf as DomainEventBodyOneOfOriginal, type DomainEvent as DomainEventOriginal, type DraftPost as DraftPostOriginal, type DraftPostTranslation as DraftPostTranslationOriginal, type EmbedData as EmbedDataOriginal, type EmbedMedia as EmbedMediaOriginal, type EmbedThumbnail as EmbedThumbnailOriginal, type EmbedVideo as EmbedVideoOriginal, type EntityCreatedEvent as EntityCreatedEventOriginal, type EntityDeletedEvent as EntityDeletedEventOriginal, type EntityUpdatedEvent as EntityUpdatedEventOriginal, type EventData as EventDataOriginal, Field as FieldOriginal, type FieldWithLiterals as FieldWithLiteralsOriginal, type FileData as FileDataOriginal, type FileSourceDataOneOf as FileSourceDataOneOfOriginal, type FileSource as FileSourceOriginal, type FocalPoint as FocalPointOriginal, type FontFamilyData as FontFamilyDataOriginal, type FontSizeData as FontSizeDataOriginal, FontType as FontTypeOriginal, type FontTypeWithLiterals as FontTypeWithLiteralsOriginal, type GIFData as GIFDataOriginal, type GIF as GIFOriginal, GIFType as GIFTypeOriginal, type GIFTypeWithLiterals as GIFTypeWithLiteralsOriginal, type GalleryData as GalleryDataOriginal, type GalleryOptionsLayout as GalleryOptionsLayoutOriginal, type GalleryOptions as GalleryOptionsOriginal, type GetPostBySlugRequest as GetPostBySlugRequestOriginal, type GetPostBySlugResponse as GetPostBySlugResponseOriginal, type GetPostCountPerMonthRequest as GetPostCountPerMonthRequestOriginal, type GetPostCountPerMonthResponse as GetPostCountPerMonthResponseOriginal, type GetPostCountsRequest as GetPostCountsRequestOriginal, type GetPostCountsResponse as GetPostCountsResponseOriginal, type GetPostMetricsRequest as GetPostMetricsRequestOriginal, type GetPostMetricsResponse as GetPostMetricsResponseOriginal, type GetPostRequest as GetPostRequestOriginal, type GetPostResponse as GetPostResponseOriginal, GetPostTemplatesSort as GetPostTemplatesSortOriginal, type GetPostTemplatesSortWithLiterals as GetPostTemplatesSortWithLiteralsOriginal, GetPostsSort as GetPostsSortOriginal, type GetPostsSortWithLiterals as GetPostsSortWithLiteralsOriginal, type GetTemplateRequest as GetTemplateRequestOriginal, type GetTemplateResponse as GetTemplateResponseOriginal, type GetTotalLikesPerMemberRequest as GetTotalLikesPerMemberRequestOriginal, type GetTotalLikesPerMemberResponse as GetTotalLikesPerMemberResponseOriginal, type GetTotalPostsRequest as GetTotalPostsRequestOriginal, type GetTotalPostsResponse as GetTotalPostsResponseOriginal, type GetTotalPublicationsRequest as GetTotalPublicationsRequestOriginal, type GetTotalPublicationsResponse as GetTotalPublicationsResponseOriginal, type Gradient as GradientOriginal, GradientType as GradientTypeOriginal, type GradientTypeWithLiterals as GradientTypeWithLiteralsOriginal, type HTMLDataDataOneOf as HTMLDataDataOneOfOriginal, type HTMLData as HTMLDataOriginal, type HeadingData as HeadingDataOriginal, type Height as HeightOriginal, type IdentificationDataIdOneOf as IdentificationDataIdOneOfOriginal, type IdentificationData as IdentificationDataOriginal, type ImageData as ImageDataOriginal, type ImageDataStyles as ImageDataStylesOriginal, type Image as ImageOriginal, ImagePosition as ImagePositionOriginal, ImagePositionPosition as ImagePositionPositionOriginal, type ImagePositionPositionWithLiterals as ImagePositionPositionWithLiteralsOriginal, type ImagePositionWithLiterals as ImagePositionWithLiteralsOriginal, ImageScalingScaling as ImageScalingScalingOriginal, type ImageScalingScalingWithLiterals as ImageScalingScalingWithLiteralsOriginal, type ImageStyles as ImageStylesOriginal, InitialExpandedItems as InitialExpandedItemsOriginal, type InitialExpandedItemsWithLiterals as InitialExpandedItemsWithLiteralsOriginal, type InitialPostsCopied as InitialPostsCopiedOriginal, type ItemDataOneOf as ItemDataOneOfOriginal, type ItemImage as ItemImageOriginal, type Item as ItemOriginal, type ItemStyle as ItemStyleOriginal, type Keyword as KeywordOriginal, type LayoutCellData as LayoutCellDataOriginal, type LayoutDataBackgroundImage as LayoutDataBackgroundImageOriginal, type LayoutDataBackground as LayoutDataBackgroundOriginal, LayoutDataBackgroundType as LayoutDataBackgroundTypeOriginal, type LayoutDataBackgroundTypeWithLiterals as LayoutDataBackgroundTypeWithLiteralsOriginal, type LayoutData as LayoutDataOriginal, Layout as LayoutOriginal, LayoutType as LayoutTypeOriginal, type LayoutTypeWithLiterals as LayoutTypeWithLiteralsOriginal, type LayoutWithLiterals as LayoutWithLiteralsOriginal, type LikePostRequest as LikePostRequestOriginal, type LikePostResponse as LikePostResponseOriginal, LineStyle as LineStyleOriginal, type LineStyleWithLiterals as LineStyleWithLiteralsOriginal, type LinkDataOneOf as LinkDataOneOfOriginal, type LinkData as LinkDataOriginal, type Link as LinkOriginal, type LinkPreviewData as LinkPreviewDataOriginal, type LinkPreviewDataStyles as LinkPreviewDataStylesOriginal, type ListDemoPostsRequest as ListDemoPostsRequestOriginal, type ListDemoPostsResponse as ListDemoPostsResponseOriginal, type ListPostsArchiveRequest as ListPostsArchiveRequestOriginal, type ListPostsArchiveResponse as ListPostsArchiveResponseOriginal, type ListPostsRequest as ListPostsRequestOriginal, type ListPostsResponse as ListPostsResponseOriginal, type ListTemplatesRequest as ListTemplatesRequestOriginal, type ListTemplatesResponse as ListTemplatesResponseOriginal, type ListValue as ListValueOriginal, type MapData as MapDataOriginal, type MapSettings as MapSettingsOriginal, MapType as MapTypeOriginal, type MapTypeWithLiterals as MapTypeWithLiteralsOriginal, type MediaMediaOneOf as MediaMediaOneOfOriginal, type Media as MediaOriginal, type MentionData as MentionDataOriginal, type MessageEnvelope as MessageEnvelopeOriginal, type MetaData as MetaDataOriginal, type Metadata as MetadataOriginal, type Metrics as MetricsOriginal, type ModerationDetails as ModerationDetailsOriginal, ModerationStatusStatus as ModerationStatusStatusOriginal, type ModerationStatusStatusWithLiterals as ModerationStatusStatusWithLiteralsOriginal, type NodeDataOneOf as NodeDataOneOfOriginal, type Node as NodeOriginal, type NodeStyle as NodeStyleOriginal, NodeType as NodeTypeOriginal, type NodeTypeWithLiterals as NodeTypeWithLiteralsOriginal, NullValue as NullValueOriginal, type NullValueWithLiterals as NullValueWithLiteralsOriginal, type Oembed as OembedOriginal, type OptionDesign as OptionDesignOriginal, type OptionLayout as OptionLayoutOriginal, type Option as OptionOriginal, Order as OrderOriginal, type OrderWithLiterals as OrderWithLiteralsOriginal, type OrderedListData as OrderedListDataOriginal, Orientation as OrientationOriginal, type OrientationWithLiterals as OrientationWithLiteralsOriginal, Origin as OriginOriginal, type OriginWithLiterals as OriginWithLiteralsOriginal, type PDFSettings as PDFSettingsOriginal, type PageUrl as PageUrlOriginal, type PagingMetadataV2 as PagingMetadataV2Original, type Paging as PagingOriginal, type ParagraphData as ParagraphDataOriginal, type PeriodPostCount as PeriodPostCountOriginal, type PeriodPublicationsCount as PeriodPublicationsCountOriginal, type Permissions as PermissionsOriginal, type PinPostRequest as PinPostRequestOriginal, type PinPostResponse as PinPostResponseOriginal, Placement as PlacementOriginal, type PlacementWithLiterals as PlacementWithLiteralsOriginal, type PlatformQuery as PlatformQueryOriginal, type PlatformQueryPagingMethodOneOf as PlatformQueryPagingMethodOneOfOriginal, type PlaybackOptions as PlaybackOptionsOriginal, PluginContainerDataAlignment as PluginContainerDataAlignmentOriginal, type PluginContainerDataAlignmentWithLiterals as PluginContainerDataAlignmentWithLiteralsOriginal, type PluginContainerData as PluginContainerDataOriginal, type PluginContainerDataWidthDataOneOf as PluginContainerDataWidthDataOneOfOriginal, type PluginContainerDataWidth as PluginContainerDataWidthOriginal, type PollDataLayout as PollDataLayoutOriginal, type PollData as PollDataOriginal, type PollDesignBackgroundBackgroundOneOf as PollDesignBackgroundBackgroundOneOfOriginal, type PollDesignBackground as PollDesignBackgroundOriginal, PollDesignBackgroundType as PollDesignBackgroundTypeOriginal, type PollDesignBackgroundTypeWithLiterals as PollDesignBackgroundTypeWithLiteralsOriginal, type PollDesign as PollDesignOriginal, PollLayoutDirection as PollLayoutDirectionOriginal, type PollLayoutDirectionWithLiterals as PollLayoutDirectionWithLiteralsOriginal, type PollLayout as PollLayoutOriginal, PollLayoutType as PollLayoutTypeOriginal, type PollLayoutTypeWithLiterals as PollLayoutTypeWithLiteralsOriginal, type Poll as PollOriginal, type PollSettings as PollSettingsOriginal, Position as PositionOriginal, type PositionWithLiterals as PositionWithLiteralsOriginal, type PostCategoriesUpdated as PostCategoriesUpdatedOriginal, type PostCountInfo as PostCountInfoOriginal, type PostCount as PostCountOriginal, type PostCountPerMonth as PostCountPerMonthOriginal, type PostCountersUpdatedInitiatorOneOf as PostCountersUpdatedInitiatorOneOfOriginal, type PostCountersUpdated as PostCountersUpdatedOriginal, PostFieldField as PostFieldFieldOriginal, type PostFieldFieldWithLiterals as PostFieldFieldWithLiteralsOriginal, type PostLikedInitiatorOneOf as PostLikedInitiatorOneOfOriginal, type PostLiked as PostLikedOriginal, type Post as PostOriginal, type PostOwnerChanged as PostOwnerChangedOriginal, type PostTagsUpdated as PostTagsUpdatedOriginal, type PostTranslation as PostTranslationOriginal, type PostUnlikedInitiatorOneOf as PostUnlikedInitiatorOneOfOriginal, type PostUnliked as PostUnlikedOriginal, type PricingData as PricingDataOriginal, type QueryPostCountStatsRequest as QueryPostCountStatsRequestOriginal, type QueryPostCountStatsResponse as QueryPostCountStatsResponseOriginal, type QueryPostsRequest as QueryPostsRequestOriginal, type QueryPostsResponse as QueryPostsResponseOriginal, QueryPublicationsCountStatsRequestOrder as QueryPublicationsCountStatsRequestOrderOriginal, type QueryPublicationsCountStatsRequestOrderWithLiterals as QueryPublicationsCountStatsRequestOrderWithLiteralsOriginal, type QueryPublicationsCountStatsRequest as QueryPublicationsCountStatsRequestOriginal, type QueryPublicationsCountStatsResponse as QueryPublicationsCountStatsResponseOriginal, type Reactions as ReactionsOriginal, type Rel as RelOriginal, Resizing as ResizingOriginal, type ResizingWithLiterals as ResizingWithLiteralsOriginal, ResponsivenessBehaviour as ResponsivenessBehaviourOriginal, type ResponsivenessBehaviourWithLiterals as ResponsivenessBehaviourWithLiteralsOriginal, type RestoreInfo as RestoreInfoOriginal, type RibbonStyles as RibbonStylesOriginal, type RichContent as RichContentOriginal, Scaling as ScalingOriginal, type ScalingWithLiterals as ScalingWithLiteralsOriginal, type ScheduledPostPublished as ScheduledPostPublishedOriginal, type SeoSchema as SeoSchemaOriginal, type Settings as SettingsOriginal, type ShapeData as ShapeDataOriginal, type ShapeDataStyles as ShapeDataStylesOriginal, SortOrder as SortOrderOriginal, type SortOrderWithLiterals as SortOrderWithLiteralsOriginal, type Sorting as SortingOriginal, Source as SourceOriginal, type SourceWithLiterals as SourceWithLiteralsOriginal, type SpoilerData as SpoilerDataOriginal, type Spoiler as SpoilerOriginal, Status as StatusOriginal, type StatusWithLiterals as StatusWithLiteralsOriginal, type Stop as StopOriginal, type StylesBorder as StylesBorderOriginal, type Styles as StylesOriginal, StylesPosition as StylesPositionOriginal, type StylesPositionWithLiterals as StylesPositionWithLiteralsOriginal, type TableCellData as TableCellDataOriginal, type TableData as TableDataOriginal, type Tag as TagOriginal, Target as TargetOriginal, type TargetWithLiterals as TargetWithLiteralsOriginal, TextAlignment as TextAlignmentOriginal, type TextAlignmentWithLiterals as TextAlignmentWithLiteralsOriginal, type TextData as TextDataOriginal, type TextNodeStyle as TextNodeStyleOriginal, type TextStyle as TextStyleOriginal, ThumbnailsAlignment as ThumbnailsAlignmentOriginal, type ThumbnailsAlignmentWithLiterals as ThumbnailsAlignmentWithLiteralsOriginal, type Thumbnails as ThumbnailsOriginal, Type as TypeOriginal, type TypeWithLiterals as TypeWithLiteralsOriginal, type UnlikePostRequest as UnlikePostRequestOriginal, type UnlikePostResponse as UnlikePostResponseOriginal, type UnpinPostRequest as UnpinPostRequestOriginal, type UnpinPostResponse as UnpinPostResponseOriginal, type V1Media as V1MediaOriginal, VerticalAlignmentAlignment as VerticalAlignmentAlignmentOriginal, type VerticalAlignmentAlignmentWithLiterals as VerticalAlignmentAlignmentWithLiteralsOriginal, VerticalAlignment as VerticalAlignmentOriginal, type VerticalAlignmentWithLiterals as VerticalAlignmentWithLiteralsOriginal, type VideoData as VideoDataOriginal, type Video as VideoOriginal, type VideoResolution as VideoResolutionOriginal, type VideoV2 as VideoV2Original, ViewMode as ViewModeOriginal, type ViewModeWithLiterals as ViewModeWithLiteralsOriginal, type ViewPostRequest as ViewPostRequestOriginal, type ViewPostResponse as ViewPostResponseOriginal, ViewRole as ViewRoleOriginal, type ViewRoleWithLiterals as ViewRoleWithLiteralsOriginal, VoteRole as VoteRoleOriginal, type VoteRoleWithLiterals as VoteRoleWithLiteralsOriginal, WebhookIdentityType as WebhookIdentityTypeOriginal, type WebhookIdentityTypeWithLiterals as WebhookIdentityTypeWithLiteralsOriginal, Width as WidthOriginal, WidthType as WidthTypeOriginal, type WidthTypeWithLiterals as WidthTypeWithLiteralsOriginal, type WidthWithLiterals as WidthWithLiteralsOriginal, type WixMedia as WixMediaOriginal, type __PublicMethodMetaInfo, getPost, getPostBySlug, getPostMetrics, getTotalPosts, listPosts, queryPostCountStats, queryPosts };