@wix/auto_sdk_blog_posts 1.0.158 → 1.0.160

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 (49) hide show
  1. package/build/cjs/index.d.ts +15 -11
  2. package/build/cjs/index.js +43 -85
  3. package/build/cjs/index.js.map +1 -1
  4. package/build/cjs/index.typings.d.ts +185 -539
  5. package/build/cjs/index.typings.js +33 -80
  6. package/build/cjs/index.typings.js.map +1 -1
  7. package/build/cjs/meta.d.ts +154 -520
  8. package/build/cjs/meta.js +27 -74
  9. package/build/cjs/meta.js.map +1 -1
  10. package/build/cjs/schemas.d.ts +86 -84
  11. package/build/cjs/schemas.js +153 -147
  12. package/build/cjs/schemas.js.map +1 -1
  13. package/build/es/index.d.mts +15 -11
  14. package/build/es/index.mjs +42 -82
  15. package/build/es/index.mjs.map +1 -1
  16. package/build/es/index.typings.d.mts +185 -539
  17. package/build/es/index.typings.mjs +32 -77
  18. package/build/es/index.typings.mjs.map +1 -1
  19. package/build/es/meta.d.mts +154 -520
  20. package/build/es/meta.mjs +26 -71
  21. package/build/es/meta.mjs.map +1 -1
  22. package/build/es/schemas.d.mts +86 -84
  23. package/build/es/schemas.mjs +153 -147
  24. package/build/es/schemas.mjs.map +1 -1
  25. package/build/internal/cjs/index.d.ts +15 -11
  26. package/build/internal/cjs/index.js +43 -85
  27. package/build/internal/cjs/index.js.map +1 -1
  28. package/build/internal/cjs/index.typings.d.ts +185 -539
  29. package/build/internal/cjs/index.typings.js +33 -80
  30. package/build/internal/cjs/index.typings.js.map +1 -1
  31. package/build/internal/cjs/meta.d.ts +154 -520
  32. package/build/internal/cjs/meta.js +27 -74
  33. package/build/internal/cjs/meta.js.map +1 -1
  34. package/build/internal/cjs/schemas.d.ts +86 -84
  35. package/build/internal/cjs/schemas.js +153 -147
  36. package/build/internal/cjs/schemas.js.map +1 -1
  37. package/build/internal/es/index.d.mts +15 -11
  38. package/build/internal/es/index.mjs +42 -82
  39. package/build/internal/es/index.mjs.map +1 -1
  40. package/build/internal/es/index.typings.d.mts +185 -539
  41. package/build/internal/es/index.typings.mjs +32 -77
  42. package/build/internal/es/index.typings.mjs.map +1 -1
  43. package/build/internal/es/meta.d.mts +154 -520
  44. package/build/internal/es/meta.mjs +26 -71
  45. package/build/internal/es/meta.mjs.map +1 -1
  46. package/build/internal/es/schemas.d.mts +86 -84
  47. package/build/internal/es/schemas.mjs +153 -147
  48. package/build/internal/es/schemas.mjs.map +1 -1
  49. package/package.json +2 -2
@@ -1492,6 +1492,8 @@ interface Decoration extends DecorationDataOneOf {
1492
1492
  subscriptData?: boolean | null;
1493
1493
  /** Data for a font family decoration. */
1494
1494
  fontFamilyData?: FontFamilyData;
1495
+ /** Data for a hand-drawn sketch annotation decoration. */
1496
+ sketchData?: SketchData;
1495
1497
  /** The type of decoration to apply. */
1496
1498
  type?: DecorationTypeWithLiterals;
1497
1499
  }
@@ -1523,6 +1525,8 @@ interface DecorationDataOneOf {
1523
1525
  subscriptData?: boolean | null;
1524
1526
  /** Data for a font family decoration. */
1525
1527
  fontFamilyData?: FontFamilyData;
1528
+ /** Data for a hand-drawn sketch annotation decoration. */
1529
+ sketchData?: SketchData;
1526
1530
  }
1527
1531
  declare enum DecorationType {
1528
1532
  BOLD = "BOLD",
@@ -1538,10 +1542,11 @@ declare enum DecorationType {
1538
1542
  STRIKETHROUGH = "STRIKETHROUGH",
1539
1543
  SUPERSCRIPT = "SUPERSCRIPT",
1540
1544
  SUBSCRIPT = "SUBSCRIPT",
1541
- FONT_FAMILY = "FONT_FAMILY"
1545
+ FONT_FAMILY = "FONT_FAMILY",
1546
+ SKETCH = "SKETCH"
1542
1547
  }
1543
1548
  /** @enumType */
1544
- type DecorationTypeWithLiterals = DecorationType | 'BOLD' | 'ITALIC' | 'UNDERLINE' | 'SPOILER' | 'ANCHOR' | 'MENTION' | 'LINK' | 'COLOR' | 'FONT_SIZE' | 'EXTERNAL' | 'STRIKETHROUGH' | 'SUPERSCRIPT' | 'SUBSCRIPT' | 'FONT_FAMILY';
1549
+ type DecorationTypeWithLiterals = DecorationType | 'BOLD' | 'ITALIC' | 'UNDERLINE' | 'SPOILER' | 'ANCHOR' | 'MENTION' | 'LINK' | 'COLOR' | 'FONT_SIZE' | 'EXTERNAL' | 'STRIKETHROUGH' | 'SUPERSCRIPT' | 'SUBSCRIPT' | 'FONT_FAMILY' | 'SKETCH';
1545
1550
  interface AnchorData {
1546
1551
  /** The target node's ID. */
1547
1552
  anchor?: string;
@@ -1584,6 +1589,27 @@ interface FontFamilyData {
1584
1589
  /** @maxLength 1000 */
1585
1590
  value?: string | null;
1586
1591
  }
1592
+ interface SketchData {
1593
+ /** The sketch annotation variant to draw over the text. */
1594
+ variant?: VariantWithLiterals;
1595
+ /**
1596
+ * Annotation color. Defaults to the theme action color.
1597
+ * @maxLength 19
1598
+ */
1599
+ color?: string | null;
1600
+ /** Whether the annotation animates on first paint. Defaults to `true`. */
1601
+ animate?: boolean | null;
1602
+ }
1603
+ declare enum Variant {
1604
+ UNDERLINE = "UNDERLINE",
1605
+ BOX = "BOX",
1606
+ CIRCLE = "CIRCLE",
1607
+ HIGHLIGHT = "HIGHLIGHT",
1608
+ STRIKETHROUGH = "STRIKETHROUGH",
1609
+ CROSSED_OFF = "CROSSED_OFF"
1610
+ }
1611
+ /** @enumType */
1612
+ type VariantWithLiterals = Variant | 'UNDERLINE' | 'BOX' | 'CIRCLE' | 'HIGHLIGHT' | 'STRIKETHROUGH' | 'CROSSED_OFF';
1587
1613
  interface AppEmbedData extends AppEmbedDataAppDataOneOf {
1588
1614
  /** Data for embedded Wix Bookings content. */
1589
1615
  bookingData?: BookingData;
@@ -2193,14 +2219,14 @@ declare enum ImagePosition {
2193
2219
  }
2194
2220
  /** @enumType */
2195
2221
  type ImagePositionWithLiterals = ImagePosition | 'CENTER' | 'CENTER_LEFT' | 'CENTER_RIGHT' | 'TOP' | 'TOP_LEFT' | 'TOP_RIGHT' | 'BOTTOM' | 'BOTTOM_LEFT' | 'BOTTOM_RIGHT';
2196
- declare enum BannerOrigin {
2222
+ declare enum Origin {
2197
2223
  /** Banner originated from an image */
2198
2224
  IMAGE = "IMAGE",
2199
2225
  /** Banner originated from a layout */
2200
2226
  LAYOUT = "LAYOUT"
2201
2227
  }
2202
2228
  /** @enumType */
2203
- type BannerOriginWithLiterals = BannerOrigin | 'IMAGE' | 'LAYOUT';
2229
+ type OriginWithLiterals = Origin | 'IMAGE' | 'LAYOUT';
2204
2230
  declare enum BannerPosition {
2205
2231
  /** Attached to the top edge (banner) */
2206
2232
  TOP = "TOP",
@@ -2265,7 +2291,7 @@ declare enum DesignTarget {
2265
2291
  type DesignTargetWithLiterals = DesignTarget | 'LAYOUT' | 'CELL';
2266
2292
  interface Banner {
2267
2293
  /** Origin of the banner */
2268
- origin?: BannerOriginWithLiterals;
2294
+ origin?: OriginWithLiterals;
2269
2295
  /** Position of the banner */
2270
2296
  position?: BannerPositionWithLiterals;
2271
2297
  }
@@ -2607,7 +2633,7 @@ interface ModerationDetails {
2607
2633
  /** Date the post was submitted for review. */
2608
2634
  submittedDate?: Date | null;
2609
2635
  /** Status indicating whether the submission was approved or rejected by the moderator. */
2610
- status?: ModerationStatusStatusWithLiterals;
2636
+ status?: StatusWithLiterals;
2611
2637
  /**
2612
2638
  * Member ID of the person who approved or rejected the post.
2613
2639
  * @format GUID
@@ -2616,13 +2642,13 @@ interface ModerationDetails {
2616
2642
  /** Date the post was approved or rejected. */
2617
2643
  moderationDate?: Date | null;
2618
2644
  }
2619
- declare enum ModerationStatusStatus {
2645
+ declare enum Status {
2620
2646
  UNKNOWN = "UNKNOWN",
2621
2647
  APPROVED = "APPROVED",
2622
2648
  REJECTED = "REJECTED"
2623
2649
  }
2624
2650
  /** @enumType */
2625
- type ModerationStatusStatusWithLiterals = ModerationStatusStatus | 'UNKNOWN' | 'APPROVED' | 'REJECTED';
2651
+ type StatusWithLiterals = Status | 'UNKNOWN' | 'APPROVED' | 'REJECTED';
2626
2652
  interface Media extends MediaMediaOneOf {
2627
2653
  /** Wix Media details. */
2628
2654
  wixMedia?: WixMedia;
@@ -2835,433 +2861,125 @@ interface PostUnlikedInitiatorOneOf {
2835
2861
  */
2836
2862
  anonymousVisitorId?: string | null;
2837
2863
  }
2838
- interface ListTemplatesRequest {
2839
- /**
2840
- * Filter post templates by given template category ids
2841
- * @maxSize 50
2842
- * @format GUID
2843
- */
2844
- categoryIds?: string[];
2845
- /**
2846
- * Filter post templates by provided language
2847
- * @format LANGUAGE_TAG
2848
- */
2849
- language?: string | null;
2850
- /** Returns post template categories when set to TRUE */
2851
- listTemplateCategories?: boolean;
2852
- /** Sort order by ascending/descending publish date. Default is ascending publish date sort */
2853
- sort?: GetPostTemplatesSortWithLiterals;
2854
- /** Pagination options. */
2855
- paging?: BlogPaging;
2856
- }
2857
- declare enum GetPostTemplatesSort {
2858
- /** Sort by ascending publishing date. */
2859
- PUBLISHED_DATE_ASC = "PUBLISHED_DATE_ASC",
2860
- /** Sort by descending publishing date. */
2861
- PUBLISHED_DATE_DESC = "PUBLISHED_DATE_DESC"
2862
- }
2863
- /** @enumType */
2864
- type GetPostTemplatesSortWithLiterals = GetPostTemplatesSort | 'PUBLISHED_DATE_ASC' | 'PUBLISHED_DATE_DESC';
2865
- interface BlogPaging {
2866
- /**
2867
- * Number of items to skip in the current sort order.
2868
- *
2869
- *
2870
- * Default: `0`
2871
- */
2872
- offset?: number;
2873
- /**
2874
- * Number of items to return.
2875
- *
2876
- *
2877
- * Default:`50`
2878
- * @min 1
2879
- * @max 100
2880
- */
2881
- limit?: number;
2882
- /**
2883
- * Pointer to the next or previous page in the list of results.
2884
- * @maxLength 2000
2885
- */
2886
- cursor?: string | null;
2887
- }
2888
- interface ListTemplatesResponse {
2889
- /** Available post templates */
2890
- postTemplates?: Post[];
2891
- /** Details on the paged set of posts templates returned. */
2892
- postTemplatesMetaData?: MetaData;
2893
- /** Post template categories. This value is returned empty unless asked explicitly */
2894
- templateCategories?: Category[];
2895
- }
2896
- interface MetaData {
2897
- /** Number of items returned in this response. */
2898
- count?: number;
2899
- /** Requested offset. */
2900
- offset?: number;
2901
- /** Total number of items that match the query. */
2902
- total?: number;
2903
- /**
2904
- * Pointer to the next or previous page in the list of results.
2905
- * @maxLength 2000
2906
- */
2907
- cursor?: string | null;
2908
- }
2909
- interface Category {
2910
- /**
2911
- * Category ID.
2912
- * @immutable
2913
- * @maxLength 38
2914
- */
2915
- id?: string;
2916
- /**
2917
- * Category label. Displayed in the Category Menu.
2918
- * @maxLength 35
2919
- */
2920
- label?: string;
2921
- /**
2922
- * Number of posts in the category.
2923
- * @readonly
2924
- */
2925
- postCount?: number;
2926
- /**
2927
- * The `url` of the page that lists every post with the specified category.
2928
- * @readonly
2929
- */
2930
- url?: PageUrl;
2931
- /**
2932
- * Category description.
2933
- * @maxLength 500
2934
- */
2935
- description?: string | null;
2936
- /**
2937
- * Category title.
2938
- * @maxLength 200
2939
- * @deprecated Category title.
2940
- * @targetRemovalDate 2025-07-16
2941
- */
2942
- title?: string;
2943
- /**
2944
- * Position of the category in the [Category Menu](https://support.wix.com/en/article/wix-blog-adding-and-customizing-a-category-menu).
2945
- * Categories are displayed in ascending order. Categories with a position of `-1` appear at the end of the sequence.
2946
- *
2947
- * Default: `-1`
2948
- */
2949
- displayPosition?: number | null;
2950
- /**
2951
- * ID of the category's translations. All translations of a single category share the same `translationId`.
2952
- * @format GUID
2953
- */
2954
- translationId?: string | null;
2864
+ /** Get Blog Publications Count Stats request */
2865
+ interface QueryPublicationsCountStatsRequest {
2866
+ /** Start of time range to return, in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date and time format. */
2867
+ rangeStart?: Date | null;
2868
+ /** Non-inclusive end of time range to return, in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date and time format. */
2869
+ rangeEnd?: Date | null;
2870
+ /** Order of the returned results. */
2871
+ order?: QueryPublicationsCountStatsRequestOrderWithLiterals;
2872
+ /** Number of months to include in the response. */
2873
+ months?: number;
2955
2874
  /**
2956
- * Category language.
2875
+ * Language filter
2957
2876
  *
2958
2877
  * 2-or-4-letter language code in [IETF BCP 47 language tag](https://en.wikipedia.org/wiki/IETF_language_tag) format.
2959
- * @immutable
2960
- */
2961
- language?: string | null;
2962
- /**
2963
- * Part of a category's URL that refers to a specific category. For example, the slug of `https:/example.com/blog/category/famous-cats` is `famous-cats`.
2964
- * @maxLength 100
2965
- */
2966
- slug?: string;
2967
- /** SEO data. */
2968
- seoData?: SeoSchema;
2969
- /** Category cover image. */
2970
- coverImage?: Image;
2971
- /**
2972
- * Date and time the Category was last updated.
2973
- * @readonly
2974
- */
2975
- updatedDate?: Date | null;
2976
- }
2977
- interface CategoryTranslation {
2978
- /**
2979
- * Category ID.
2980
- * @format GUID
2981
- */
2982
- id?: string;
2983
- /**
2984
- * Label displayed in the categories menu on the site.
2985
- * @maxLength 100
2986
- */
2987
- label?: string | null;
2988
- /**
2989
- * Language of the category.
2990
2878
  * @format LANGUAGE_TAG
2991
2879
  */
2992
2880
  language?: string | null;
2993
- /** URL of this category page. */
2994
- url?: PageUrl;
2995
- }
2996
- interface GetTemplateRequest {
2997
2881
  /**
2998
- * Post template id
2999
- * @format GUID
2882
+ * Timezone of the client.
2883
+ * @minLength 3
2884
+ * @maxLength 100
3000
2885
  */
3001
- postTemplateId?: string;
2886
+ timeZone?: string | null;
3002
2887
  }
3003
- interface GetTemplateResponse {
3004
- /** Post template */
3005
- postTemplate?: Post;
2888
+ declare enum QueryPublicationsCountStatsRequestOrder {
2889
+ UNKNOWN = "UNKNOWN",
2890
+ OLDEST = "OLDEST",
2891
+ NEWEST = "NEWEST"
3006
2892
  }
3007
- interface CreateDraftPostFromTemplateRequest {
3008
- /**
3009
- * Post template id
3010
- * @format GUID
3011
- */
3012
- postTemplateId?: string;
2893
+ /** @enumType */
2894
+ type QueryPublicationsCountStatsRequestOrderWithLiterals = QueryPublicationsCountStatsRequestOrder | 'UNKNOWN' | 'OLDEST' | 'NEWEST';
2895
+ /** Get Blog Publications Count Stats response */
2896
+ interface QueryPublicationsCountStatsResponse {
2897
+ /** Chronologically ordered list of publications. */
2898
+ stats?: PeriodPublicationsCount[];
3013
2899
  }
3014
- interface CreateDraftPostFromTemplateResponse {
3015
- /** Created draft post */
3016
- draftPost?: DraftPost;
2900
+ /** Publications count for a specific time period */
2901
+ interface PeriodPublicationsCount {
2902
+ /** Start of time range in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date and time format. */
2903
+ periodStart?: Date | null;
2904
+ /** Number of posts published during this month. */
2905
+ publicationsCount?: number;
3017
2906
  }
3018
- interface DraftPost {
3019
- /**
3020
- * Draft post ID.
3021
- * @readonly
3022
- * @maxLength 38
3023
- */
3024
- id?: string;
3025
- /**
3026
- * Draft post title.
3027
- * @maxLength 200
3028
- */
3029
- title?: string;
2907
+ /** Get Blog Post Count Stats request */
2908
+ interface QueryPostCountStatsRequest {
2909
+ /** Start of time range to return, in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date and time format. */
2910
+ rangeStart?: Date | null;
3030
2911
  /**
3031
- * Draft post excerpt.
2912
+ * Order of returned results.
3032
2913
  *
3033
- * If no excerpt has been manually set, an excerpt is automatically generated from the post's text.
3034
- * This can be retrieved using the `GENERATED_EXCERPT` fieldset.
3035
- * @maxLength 500
3036
- */
3037
- excerpt?: string | null;
3038
- /** Whether the draft post is marked as featured. */
3039
- featured?: boolean | null;
3040
- /**
3041
- * Category IDs of the draft post.
3042
- * @maxSize 10
3043
- * @maxLength 38
3044
- */
3045
- categoryIds?: string[];
3046
- /**
3047
- * Draft post owner's member ID.
3048
- * @format GUID
3049
- */
3050
- memberId?: string | null;
3051
- /**
3052
- * Hashtags in the post.
3053
- * @maxSize 100
3054
- * @maxLength 100
3055
- */
3056
- hashtags?: string[];
3057
- /** Whether commenting on the draft post is enabled. */
3058
- commentingEnabled?: boolean | null;
3059
- /**
3060
- * Estimated reading time of the draft post (calculated automatically).
3061
- * @readonly
3062
- */
3063
- minutesToRead?: number;
3064
- /** Image placed at the top of the blog page. */
3065
- heroImage?: Image;
3066
- /**
3067
- * Tag IDs the draft post is tagged with.
3068
- * @maxSize 30
3069
- * @maxLength 38
3070
- */
3071
- tagIds?: string[];
3072
- /**
3073
- * IDs of posts related to this draft post.
3074
- * @maxSize 3
3075
- * @maxLength 38
3076
- */
3077
- relatedPostIds?: string[];
3078
- /**
3079
- * Pricing plan IDs. Only relevant if a post is assigned to a specific pricing plan. See the Pricing Plans API for more info.
3080
- * @maxSize 100
3081
- * @format GUID
3082
- */
3083
- pricingPlanIds?: string[];
3084
- /**
3085
- * ID of the draft post's translations.
2914
+ * - `OLDEST`: posts by date in ascending order.
2915
+ * - `NEWEST`: posts by date in descending order.
3086
2916
  *
3087
- * All translations of a single post share the same `translationId`.
3088
- * Available only if the [Multilingual](https://support.wix.com/en/article/wix-multilingual-an-overview) app is installed.
3089
- * @format GUID
2917
+ * Default: `OLDEST`
3090
2918
  */
3091
- translationId?: string | null;
2919
+ order?: OrderWithLiterals;
2920
+ /** Number of months to include in response. */
2921
+ months?: number;
3092
2922
  /**
3093
- * Language the draft post is written in.
2923
+ * Language filter.
3094
2924
  *
3095
2925
  * 2-or-4-letter language code in [IETF BCP 47 language tag](https://en.wikipedia.org/wiki/IETF_language_tag) format.
2926
+ * Pass a language to only receive the period post count for that specified language.
3096
2927
  * @format LANGUAGE_TAG
3097
2928
  */
3098
2929
  language?: string | null;
3099
2930
  /**
3100
- * Draft Post rich content.
2931
+ * Time zone to use when calculating the start of the month.
3101
2932
  *
3102
- * <widget src="https://apps.wix.com/_serverless/ricos-playground-services/goto/api-component" plugins="image.gallery.video.audio.divider.linkButton.html.giphy.codeBlock.file.hashtag.lineSpacing.indent.link.textColor.textHighlight.heading.verticalEmbed.table.collapsibleList.poll" exampleid="72c23a25-524f-4f70-a260-4a2777b6f5d5">
3103
- * <a href="https://dev.wix.com/docs/ricos/api-reference/ricos-document">See Ricos document reference</a>
3104
- * </widget>
3105
- */
3106
- richContent?: RichContent;
3107
- /**
3108
- * Status of the draft post.
3109
- * @readonly
3110
- */
3111
- status?: StatusWithLiterals;
3112
- /** Details of the draft post in review. Only relevant to posts submitted by guest writers. */
3113
- moderationDetails?: ModerationDetails;
3114
- /**
3115
- * Indicates if there are changes made to the draft post that have not yet been published.
3116
- * @readonly
3117
- */
3118
- hasUnpublishedChanges?: boolean;
3119
- /**
3120
- * Date the draft post was last edited.
3121
- * @readonly
3122
- */
3123
- editedDate?: Date | null;
3124
- /**
3125
- * Date the draft post is scheduled to be published.
3126
- * @readonly
3127
- */
3128
- scheduledPublishDate?: Date | null;
3129
- /** Date the post was first published. */
3130
- firstPublishedDate?: Date | null;
3131
- /** SEO data. */
3132
- seoData?: SeoSchema;
3133
- /**
3134
- * Draft post URL preview. What the URL will look like once the post is published.
3135
- * @readonly
3136
- */
3137
- url?: PageUrl;
3138
- /**
3139
- * Date the draft post was first created.
3140
- * @readonly
3141
- */
3142
- createdDate?: Date | null;
3143
- /**
3144
- * SEO slug.
2933
+ * [UTC timezone offset](https://en.wikipedia.org/wiki/List_of_UTC_offsets) format. For example, New York time zone is `-05`.
2934
+ * @minLength 3
3145
2935
  * @maxLength 100
3146
2936
  */
3147
- seoSlug?: string | null;
3148
- /** Post cover media. */
3149
- media?: Media;
3150
- /** Number of paragraphs to display in a paid content preview for non-paying users. */
3151
- previewTextParagraph?: number | null;
2937
+ timeZone?: string | null;
3152
2938
  }
3153
- declare enum Origin {
2939
+ declare enum Order {
3154
2940
  UNKNOWN = "UNKNOWN",
3155
- /** Changed by admin */
3156
- ADMIN = "ADMIN",
3157
- /** Categories were changed */
3158
- ADD_CATEGORIES = "ADD_CATEGORIES",
3159
- /** Saved automatically */
3160
- AUTO_SAVE = "AUTO_SAVE",
3161
- /** Copied from template */
3162
- COPY_TEMPLATE = "COPY_TEMPLATE",
3163
- /** Imported */
3164
- IMPORT = "IMPORT",
3165
- /** Imported in bulk */
3166
- IMPORT_BULK = "IMPORT_BULK",
3167
- /** Imported with html import */
3168
- IMPORT_HTML = "IMPORT_HTML",
3169
- /** Patch import */
3170
- IMPORT_PATCH = "IMPORT_PATCH",
3171
- /** Changed language */
3172
- LANGUAGE_CHANGE = "LANGUAGE_CHANGE",
3173
- /** Saved manually */
3174
- MANUAL_SAVE = "MANUAL_SAVE",
3175
- /** Affected by migration */
3176
- MIGRATION = "MIGRATION",
3177
- /** Affected by moderation */
3178
- MODERATION = "MODERATION",
3179
- /** Moved to trash */
3180
- MOVE_TO_TRASH = "MOVE_TO_TRASH",
3181
- /** Pricing plans were changed */
3182
- PRICING_PLANS_CHANGE = "PRICING_PLANS_CHANGE",
3183
- /** Was provisioned */
3184
- PROVISION = "PROVISION",
3185
- /** Was published */
3186
- PUBLISH = "PUBLISH",
3187
- /** Owner was reassigned */
3188
- REASSIGN_OWNER = "REASSIGN_OWNER",
3189
- /** Was reblogged */
3190
- REBLOG = "REBLOG",
3191
- /** Was restored */
3192
- RESTORE = "RESTORE",
3193
- /** Reverted to draft */
3194
- REVERT_TO_DRAFT = "REVERT_TO_DRAFT",
3195
- /** Was translated */
3196
- TRANSLATION = "TRANSLATION",
3197
- /** Was unpublished */
3198
- UNPUBLISH = "UNPUBLISH",
3199
- /** Was unscheduled */
3200
- UNSCHEDULE = "UNSCHEDULE",
3201
- /** New edit session started which updated editing_session_id id */
3202
- NEW_EDIT_SESSION = "NEW_EDIT_SESSION",
3203
- /** Was scheduled by Later */
3204
- SCHEDULING_SERVICE_SCHEDULE = "SCHEDULING_SERVICE_SCHEDULE",
3205
- /** Was unscheduled by Later */
3206
- SCHEDULING_SERVICE_UNSCHEDULE = "SCHEDULING_SERVICE_UNSCHEDULE",
3207
- /** Was published by Later */
3208
- SCHEDULING_SERVICE_PUBLISH = "SCHEDULING_SERVICE_PUBLISH",
3209
- /** Was scheduled */
3210
- SCHEDULE = "SCHEDULE",
3211
- /** Was removed from moderation */
3212
- REMOVE_FROM_MODERATION = "REMOVE_FROM_MODERATION",
3213
- /** Was rejected from moderation */
3214
- REJECT_FROM_MODERATION = "REJECT_FROM_MODERATION",
3215
- /** Was approved in moderation */
3216
- APPROVE_IN_MODERATION = "APPROVE_IN_MODERATION",
3217
- /** Tag was deleted */
3218
- DELETE_TAG = "DELETE_TAG",
3219
- /** Post was pinned */
3220
- PIN = "PIN",
3221
- /** Post was unpinned */
3222
- UNPIN = "UNPIN",
3223
- /** Saved automatically by AI tool. */
3224
- AI_AUTO_SAVE = "AI_AUTO_SAVE"
2941
+ OLDEST = "OLDEST",
2942
+ NEWEST = "NEWEST"
3225
2943
  }
3226
2944
  /** @enumType */
3227
- type OriginWithLiterals = Origin | 'UNKNOWN' | 'ADMIN' | 'ADD_CATEGORIES' | 'AUTO_SAVE' | 'COPY_TEMPLATE' | 'IMPORT' | 'IMPORT_BULK' | 'IMPORT_HTML' | 'IMPORT_PATCH' | 'LANGUAGE_CHANGE' | 'MANUAL_SAVE' | 'MIGRATION' | 'MODERATION' | 'MOVE_TO_TRASH' | 'PRICING_PLANS_CHANGE' | 'PROVISION' | 'PUBLISH' | 'REASSIGN_OWNER' | 'REBLOG' | 'RESTORE' | 'REVERT_TO_DRAFT' | 'TRANSLATION' | 'UNPUBLISH' | 'UNSCHEDULE' | 'NEW_EDIT_SESSION' | 'SCHEDULING_SERVICE_SCHEDULE' | 'SCHEDULING_SERVICE_UNSCHEDULE' | 'SCHEDULING_SERVICE_PUBLISH' | 'SCHEDULE' | 'REMOVE_FROM_MODERATION' | 'REJECT_FROM_MODERATION' | 'APPROVE_IN_MODERATION' | 'DELETE_TAG' | 'PIN' | 'UNPIN' | 'AI_AUTO_SAVE';
3228
- declare enum Status {
3229
- UNKNOWN = "UNKNOWN",
3230
- /** Status indicating the draft post is published. */
3231
- PUBLISHED = "PUBLISHED",
3232
- /** Status indicating the draft post is unpublished. */
3233
- UNPUBLISHED = "UNPUBLISHED",
3234
- /** Status indicating the draft post is scheduled for publication. */
3235
- SCHEDULED = "SCHEDULED",
3236
- /** Status indicating the draft post is deleted. */
3237
- DELETED = "DELETED",
3238
- /** Status indicating the draft post is in review. */
3239
- IN_REVIEW = "IN_REVIEW"
2945
+ type OrderWithLiterals = Order | 'UNKNOWN' | 'OLDEST' | 'NEWEST';
2946
+ /** Get Blog Post Count Stats response */
2947
+ interface QueryPostCountStatsResponse {
2948
+ /** List of published post counts by month. */
2949
+ stats?: PeriodPostCount[];
3240
2950
  }
3241
- /** @enumType */
3242
- type StatusWithLiterals = Status | 'UNKNOWN' | 'PUBLISHED' | 'UNPUBLISHED' | 'SCHEDULED' | 'DELETED' | 'IN_REVIEW';
3243
- interface DraftPostTranslation {
3244
- /**
3245
- * Post ID.
3246
- * @format GUID
3247
- */
3248
- id?: string;
3249
- /** Post status. */
3250
- status?: StatusWithLiterals;
2951
+ /** Post count for a specific time period */
2952
+ interface PeriodPostCount {
2953
+ /** Start of time range in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date and time format. */
2954
+ periodStart?: Date | null;
2955
+ /** Number of posts published during this month. */
2956
+ postCount?: number;
2957
+ }
2958
+ interface GetTotalPublicationsRequest {
3251
2959
  /**
3252
- * Language the post is written in.
2960
+ * Language filter
2961
+ * @minLength 2
3253
2962
  * @format LANGUAGE_TAG
3254
2963
  */
3255
2964
  language?: string | null;
2965
+ }
2966
+ interface GetTotalPublicationsResponse {
2967
+ /** Total amount of publications. */
2968
+ total?: number;
2969
+ }
2970
+ interface GetTotalPostsRequest {
3256
2971
  /**
3257
- * Post slug. For example, 'post-slug'.
3258
- * @maxLength 100
2972
+ * Language filter.
2973
+ *
2974
+ * 2-or-4-letter language code in [IETF BCP 47 language tag](https://en.wikipedia.org/wiki/IETF_language_tag) format.
2975
+ * Pass a language to receive the total amount of posts in that specified language.
2976
+ * @format LANGUAGE_TAG
3259
2977
  */
3260
- slug?: string | null;
3261
- /** SEO data. */
3262
- seoData?: SeoSchema;
3263
- /** Post URL. */
3264
- url?: PageUrl;
2978
+ language?: string | null;
2979
+ }
2980
+ interface GetTotalPostsResponse {
2981
+ /** Total amount of published posts. */
2982
+ total?: number;
3265
2983
  }
3266
2984
  interface DomainEvent extends DomainEventBodyOneOf {
3267
2985
  createdEvent?: EntityCreatedEvent;
@@ -3292,7 +3010,7 @@ interface DomainEvent extends DomainEventBodyOneOf {
3292
3010
  /** If present, indicates the action that triggered the event. */
3293
3011
  originatedFrom?: string | null;
3294
3012
  /**
3295
- * 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.
3013
+ * 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.
3296
3014
  * 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.
3297
3015
  */
3298
3016
  entityEventSequence?: string | null;
@@ -3418,126 +3136,6 @@ interface AccountInfo {
3418
3136
  */
3419
3137
  siteId?: string | null;
3420
3138
  }
3421
- /** Get Blog Publications Count Stats request */
3422
- interface QueryPublicationsCountStatsRequest {
3423
- /** Start of time range to return, in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date and time format. */
3424
- rangeStart?: Date | null;
3425
- /** Non-inclusive end of time range to return, in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date and time format. */
3426
- rangeEnd?: Date | null;
3427
- /** Order of the returned results. */
3428
- order?: QueryPublicationsCountStatsRequestOrderWithLiterals;
3429
- /** Number of months to include in the response. */
3430
- months?: number;
3431
- /**
3432
- * Language filter
3433
- *
3434
- * 2-or-4-letter language code in [IETF BCP 47 language tag](https://en.wikipedia.org/wiki/IETF_language_tag) format.
3435
- * @format LANGUAGE_TAG
3436
- */
3437
- language?: string | null;
3438
- /**
3439
- * Timezone of the client.
3440
- * @minLength 3
3441
- * @maxLength 100
3442
- */
3443
- timeZone?: string | null;
3444
- }
3445
- declare enum QueryPublicationsCountStatsRequestOrder {
3446
- UNKNOWN = "UNKNOWN",
3447
- OLDEST = "OLDEST",
3448
- NEWEST = "NEWEST"
3449
- }
3450
- /** @enumType */
3451
- type QueryPublicationsCountStatsRequestOrderWithLiterals = QueryPublicationsCountStatsRequestOrder | 'UNKNOWN' | 'OLDEST' | 'NEWEST';
3452
- /** Get Blog Publications Count Stats response */
3453
- interface QueryPublicationsCountStatsResponse {
3454
- /** Chronologically ordered list of publications. */
3455
- stats?: PeriodPublicationsCount[];
3456
- }
3457
- /** Publications count for a specific time period */
3458
- interface PeriodPublicationsCount {
3459
- /** Start of time range in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date and time format. */
3460
- periodStart?: Date | null;
3461
- /** Number of posts published during this month. */
3462
- publicationsCount?: number;
3463
- }
3464
- /** Get Blog Post Count Stats request */
3465
- interface QueryPostCountStatsRequest {
3466
- /** Start of time range to return, in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date and time format. */
3467
- rangeStart?: Date | null;
3468
- /**
3469
- * Order of returned results.
3470
- *
3471
- * - `OLDEST`: posts by date in ascending order.
3472
- * - `NEWEST`: posts by date in descending order.
3473
- *
3474
- * Default: `OLDEST`
3475
- */
3476
- order?: OrderWithLiterals;
3477
- /** Number of months to include in response. */
3478
- months?: number;
3479
- /**
3480
- * Language filter.
3481
- *
3482
- * 2-or-4-letter language code in [IETF BCP 47 language tag](https://en.wikipedia.org/wiki/IETF_language_tag) format.
3483
- * Pass a language to only receive the period post count for that specified language.
3484
- * @format LANGUAGE_TAG
3485
- */
3486
- language?: string | null;
3487
- /**
3488
- * Time zone to use when calculating the start of the month.
3489
- *
3490
- * [UTC timezone offset](https://en.wikipedia.org/wiki/List_of_UTC_offsets) format. For example, New York time zone is `-05`.
3491
- * @minLength 3
3492
- * @maxLength 100
3493
- */
3494
- timeZone?: string | null;
3495
- }
3496
- declare enum Order {
3497
- UNKNOWN = "UNKNOWN",
3498
- OLDEST = "OLDEST",
3499
- NEWEST = "NEWEST"
3500
- }
3501
- /** @enumType */
3502
- type OrderWithLiterals = Order | 'UNKNOWN' | 'OLDEST' | 'NEWEST';
3503
- /** Get Blog Post Count Stats response */
3504
- interface QueryPostCountStatsResponse {
3505
- /** List of published post counts by month. */
3506
- stats?: PeriodPostCount[];
3507
- }
3508
- /** Post count for a specific time period */
3509
- interface PeriodPostCount {
3510
- /** Start of time range in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date and time format. */
3511
- periodStart?: Date | null;
3512
- /** Number of posts published during this month. */
3513
- postCount?: number;
3514
- }
3515
- interface GetTotalPublicationsRequest {
3516
- /**
3517
- * Language filter
3518
- * @minLength 2
3519
- * @format LANGUAGE_TAG
3520
- */
3521
- language?: string | null;
3522
- }
3523
- interface GetTotalPublicationsResponse {
3524
- /** Total amount of publications. */
3525
- total?: number;
3526
- }
3527
- interface GetTotalPostsRequest {
3528
- /**
3529
- * Language filter.
3530
- *
3531
- * 2-or-4-letter language code in [IETF BCP 47 language tag](https://en.wikipedia.org/wiki/IETF_language_tag) format.
3532
- * Pass a language to receive the total amount of posts in that specified language.
3533
- * @format LANGUAGE_TAG
3534
- */
3535
- language?: string | null;
3536
- }
3537
- interface GetTotalPostsResponse {
3538
- /** Total amount of published posts. */
3539
- total?: number;
3540
- }
3541
3139
  interface GetTotalLikesPerMemberRequest {
3542
3140
  /**
3543
3141
  * Member ID.
@@ -3747,12 +3345,48 @@ declare enum GetPostsSort {
3747
3345
  }
3748
3346
  /** @enumType */
3749
3347
  type GetPostsSortWithLiterals = GetPostsSort | 'FEED' | 'PUBLISHED_DATE_ASC' | 'PUBLISHED_DATE_DESC' | 'VIEW_COUNT' | 'LIKE_COUNT' | 'TITLE_ASC' | 'TITLE_DESC';
3348
+ interface BlogPaging {
3349
+ /**
3350
+ * Number of items to skip in the current sort order.
3351
+ *
3352
+ *
3353
+ * Default: `0`
3354
+ */
3355
+ offset?: number;
3356
+ /**
3357
+ * Number of items to return.
3358
+ *
3359
+ *
3360
+ * Default:`50`
3361
+ * @min 1
3362
+ * @max 100
3363
+ */
3364
+ limit?: number;
3365
+ /**
3366
+ * Pointer to the next or previous page in the list of results.
3367
+ * @maxLength 2000
3368
+ */
3369
+ cursor?: string | null;
3370
+ }
3750
3371
  interface ListPostsResponse {
3751
3372
  /** List of retrieved posts. */
3752
3373
  posts?: Post[];
3753
3374
  /** Details on the paged set of results returned. */
3754
3375
  metaData?: MetaData;
3755
3376
  }
3377
+ interface MetaData {
3378
+ /** Number of items returned in this response. */
3379
+ count?: number;
3380
+ /** Requested offset. */
3381
+ offset?: number;
3382
+ /** Total number of items that match the query. */
3383
+ total?: number;
3384
+ /**
3385
+ * Pointer to the next or previous page in the list of results.
3386
+ * @maxLength 2000
3387
+ */
3388
+ cursor?: string | null;
3389
+ }
3756
3390
  interface QueryPostsRequest {
3757
3391
  /** Query options. */
3758
3392
  query?: PlatformQuery;
@@ -4236,4 +3870,4 @@ declare function getPostMetrics(): __PublicMethodMetaInfo<'GET', {
4236
3870
  postId: string;
4237
3871
  }, GetPostMetricsRequest$1, GetPostMetricsRequest, GetPostMetricsResponse$1, GetPostMetricsResponse>;
4238
3872
 
4239
- 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, BannerPosition as BannerPositionOriginal, type BannerPositionWithLiterals as BannerPositionWithLiteralsOriginal, 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 CheckboxListData as CheckboxListDataOriginal, type CodeBlockData as CodeBlockDataOriginal, type CollapsibleListData as CollapsibleListDataOriginal, type ColorData as ColorDataOriginal, type Colors as ColorsOriginal, ColumnSize as ColumnSizeOriginal, type ColumnSizeWithLiterals as ColumnSizeWithLiteralsOriginal, 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, Indentation as IndentationOriginal, type IndentationWithLiterals as IndentationWithLiteralsOriginal, 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 ListItemNodeData as ListItemNodeDataOriginal, type ListPostsArchiveRequest as ListPostsArchiveRequestOriginal, type ListPostsArchiveResponse as ListPostsArchiveResponseOriginal, type ListPostsRequest as ListPostsRequestOriginal, type ListPostsResponse as ListPostsResponseOriginal, ListStyle as ListStyleOriginal, type ListStyleWithLiterals as ListStyleWithLiteralsOriginal, 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, type SmartBlockCellData as SmartBlockCellDataOriginal, type SmartBlockData as SmartBlockDataOriginal, SmartBlockDataType as SmartBlockDataTypeOriginal, type SmartBlockDataTypeWithLiterals as SmartBlockDataTypeWithLiteralsOriginal, 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 TocData as TocDataOriginal, 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 };
3873
+ 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, type Banner as BannerOriginal, BannerPosition as BannerPositionOriginal, type BannerPositionWithLiterals as BannerPositionWithLiteralsOriginal, 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 CellStyle as CellStyleOriginal, type CheckboxListData as CheckboxListDataOriginal, type CodeBlockData as CodeBlockDataOriginal, type CollapsibleListData as CollapsibleListDataOriginal, type ColorData as ColorDataOriginal, type Colors as ColorsOriginal, ColumnSize as ColumnSizeOriginal, type ColumnSizeWithLiterals as ColumnSizeWithLiteralsOriginal, type ConvertDraftJsToRichContentRequest as ConvertDraftJsToRichContentRequestOriginal, type ConvertDraftJsToRichContentResponse as ConvertDraftJsToRichContentResponseOriginal, type ConvertRichContentToDraftJsRequest as ConvertRichContentToDraftJsRequestOriginal, type ConvertRichContentToDraftJsResponse as ConvertRichContentToDraftJsResponseOriginal, 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 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, GetPostsSort as GetPostsSortOriginal, type GetPostsSortWithLiterals as GetPostsSortWithLiteralsOriginal, 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, Indentation as IndentationOriginal, type IndentationWithLiterals as IndentationWithLiteralsOriginal, 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 ListItemNodeData as ListItemNodeDataOriginal, type ListPostsArchiveRequest as ListPostsArchiveRequestOriginal, type ListPostsArchiveResponse as ListPostsArchiveResponseOriginal, type ListPostsRequest as ListPostsRequestOriginal, type ListPostsResponse as ListPostsResponseOriginal, ListStyle as ListStyleOriginal, type ListStyleWithLiterals as ListStyleWithLiteralsOriginal, 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, 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, type SketchData as SketchDataOriginal, type SmartBlockCellData as SmartBlockCellDataOriginal, type SmartBlockData as SmartBlockDataOriginal, SmartBlockDataType as SmartBlockDataTypeOriginal, type SmartBlockDataTypeWithLiterals as SmartBlockDataTypeWithLiteralsOriginal, 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 TocData as TocDataOriginal, 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, Variant as VariantOriginal, type VariantWithLiterals as VariantWithLiteralsOriginal, 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 };