@wix/auto_sdk_blog_posts 1.0.159 → 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 +31 -85
  3. package/build/cjs/index.js.map +1 -1
  4. package/build/cjs/index.typings.d.ts +154 -534
  5. package/build/cjs/index.typings.js +21 -80
  6. package/build/cjs/index.typings.js.map +1 -1
  7. package/build/cjs/meta.d.ts +125 -517
  8. package/build/cjs/meta.js +15 -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 +31 -82
  15. package/build/es/index.mjs.map +1 -1
  16. package/build/es/index.typings.d.mts +154 -534
  17. package/build/es/index.typings.mjs +21 -77
  18. package/build/es/index.typings.mjs.map +1 -1
  19. package/build/es/meta.d.mts +125 -517
  20. package/build/es/meta.mjs +15 -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 +31 -85
  27. package/build/internal/cjs/index.js.map +1 -1
  28. package/build/internal/cjs/index.typings.d.ts +154 -534
  29. package/build/internal/cjs/index.typings.js +21 -80
  30. package/build/internal/cjs/index.typings.js.map +1 -1
  31. package/build/internal/cjs/meta.d.ts +125 -517
  32. package/build/internal/cjs/meta.js +15 -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 +31 -82
  39. package/build/internal/es/index.mjs.map +1 -1
  40. package/build/internal/es/index.typings.d.mts +154 -534
  41. package/build/internal/es/index.typings.mjs +21 -77
  42. package/build/internal/es/index.typings.mjs.map +1 -1
  43. package/build/internal/es/meta.d.mts +125 -517
  44. package/build/internal/es/meta.mjs +15 -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
@@ -2219,14 +2219,14 @@ declare enum ImagePosition {
2219
2219
  }
2220
2220
  /** @enumType */
2221
2221
  type ImagePositionWithLiterals = ImagePosition | 'CENTER' | 'CENTER_LEFT' | 'CENTER_RIGHT' | 'TOP' | 'TOP_LEFT' | 'TOP_RIGHT' | 'BOTTOM' | 'BOTTOM_LEFT' | 'BOTTOM_RIGHT';
2222
- declare enum BannerOrigin {
2222
+ declare enum Origin {
2223
2223
  /** Banner originated from an image */
2224
2224
  IMAGE = "IMAGE",
2225
2225
  /** Banner originated from a layout */
2226
2226
  LAYOUT = "LAYOUT"
2227
2227
  }
2228
2228
  /** @enumType */
2229
- type BannerOriginWithLiterals = BannerOrigin | 'IMAGE' | 'LAYOUT';
2229
+ type OriginWithLiterals = Origin | 'IMAGE' | 'LAYOUT';
2230
2230
  declare enum BannerPosition {
2231
2231
  /** Attached to the top edge (banner) */
2232
2232
  TOP = "TOP",
@@ -2291,7 +2291,7 @@ declare enum DesignTarget {
2291
2291
  type DesignTargetWithLiterals = DesignTarget | 'LAYOUT' | 'CELL';
2292
2292
  interface Banner {
2293
2293
  /** Origin of the banner */
2294
- origin?: BannerOriginWithLiterals;
2294
+ origin?: OriginWithLiterals;
2295
2295
  /** Position of the banner */
2296
2296
  position?: BannerPositionWithLiterals;
2297
2297
  }
@@ -2633,7 +2633,7 @@ interface ModerationDetails {
2633
2633
  /** Date the post was submitted for review. */
2634
2634
  submittedDate?: Date | null;
2635
2635
  /** Status indicating whether the submission was approved or rejected by the moderator. */
2636
- status?: ModerationStatusStatusWithLiterals;
2636
+ status?: StatusWithLiterals;
2637
2637
  /**
2638
2638
  * Member ID of the person who approved or rejected the post.
2639
2639
  * @format GUID
@@ -2642,13 +2642,13 @@ interface ModerationDetails {
2642
2642
  /** Date the post was approved or rejected. */
2643
2643
  moderationDate?: Date | null;
2644
2644
  }
2645
- declare enum ModerationStatusStatus {
2645
+ declare enum Status {
2646
2646
  UNKNOWN = "UNKNOWN",
2647
2647
  APPROVED = "APPROVED",
2648
2648
  REJECTED = "REJECTED"
2649
2649
  }
2650
2650
  /** @enumType */
2651
- type ModerationStatusStatusWithLiterals = ModerationStatusStatus | 'UNKNOWN' | 'APPROVED' | 'REJECTED';
2651
+ type StatusWithLiterals = Status | 'UNKNOWN' | 'APPROVED' | 'REJECTED';
2652
2652
  interface Media extends MediaMediaOneOf {
2653
2653
  /** Wix Media details. */
2654
2654
  wixMedia?: WixMedia;
@@ -2861,433 +2861,125 @@ interface PostUnlikedInitiatorOneOf {
2861
2861
  */
2862
2862
  anonymousVisitorId?: string | null;
2863
2863
  }
2864
- interface ListTemplatesRequest {
2865
- /**
2866
- * Filter post templates by given template category ids
2867
- * @maxSize 50
2868
- * @format GUID
2869
- */
2870
- categoryIds?: string[];
2871
- /**
2872
- * Filter post templates by provided language
2873
- * @format LANGUAGE_TAG
2874
- */
2875
- language?: string | null;
2876
- /** Returns post template categories when set to TRUE */
2877
- listTemplateCategories?: boolean;
2878
- /** Sort order by ascending/descending publish date. Default is ascending publish date sort */
2879
- sort?: GetPostTemplatesSortWithLiterals;
2880
- /** Pagination options. */
2881
- paging?: BlogPaging;
2882
- }
2883
- declare enum GetPostTemplatesSort {
2884
- /** Sort by ascending publishing date. */
2885
- PUBLISHED_DATE_ASC = "PUBLISHED_DATE_ASC",
2886
- /** Sort by descending publishing date. */
2887
- PUBLISHED_DATE_DESC = "PUBLISHED_DATE_DESC"
2888
- }
2889
- /** @enumType */
2890
- type GetPostTemplatesSortWithLiterals = GetPostTemplatesSort | 'PUBLISHED_DATE_ASC' | 'PUBLISHED_DATE_DESC';
2891
- interface BlogPaging {
2892
- /**
2893
- * Number of items to skip in the current sort order.
2894
- *
2895
- *
2896
- * Default: `0`
2897
- */
2898
- offset?: number;
2899
- /**
2900
- * Number of items to return.
2901
- *
2902
- *
2903
- * Default:`50`
2904
- * @min 1
2905
- * @max 100
2906
- */
2907
- limit?: number;
2908
- /**
2909
- * Pointer to the next or previous page in the list of results.
2910
- * @maxLength 2000
2911
- */
2912
- cursor?: string | null;
2913
- }
2914
- interface ListTemplatesResponse {
2915
- /** Available post templates */
2916
- postTemplates?: Post[];
2917
- /** Details on the paged set of posts templates returned. */
2918
- postTemplatesMetaData?: MetaData;
2919
- /** Post template categories. This value is returned empty unless asked explicitly */
2920
- templateCategories?: Category[];
2921
- }
2922
- interface MetaData {
2923
- /** Number of items returned in this response. */
2924
- count?: number;
2925
- /** Requested offset. */
2926
- offset?: number;
2927
- /** Total number of items that match the query. */
2928
- total?: number;
2929
- /**
2930
- * Pointer to the next or previous page in the list of results.
2931
- * @maxLength 2000
2932
- */
2933
- cursor?: string | null;
2934
- }
2935
- interface Category {
2936
- /**
2937
- * Category ID.
2938
- * @immutable
2939
- * @maxLength 38
2940
- */
2941
- id?: string;
2942
- /**
2943
- * Category label. Displayed in the Category Menu.
2944
- * @maxLength 35
2945
- */
2946
- label?: string;
2947
- /**
2948
- * Number of posts in the category.
2949
- * @readonly
2950
- */
2951
- postCount?: number;
2952
- /**
2953
- * The `url` of the page that lists every post with the specified category.
2954
- * @readonly
2955
- */
2956
- url?: PageUrl;
2957
- /**
2958
- * Category description.
2959
- * @maxLength 500
2960
- */
2961
- description?: string | null;
2962
- /**
2963
- * Category title.
2964
- * @maxLength 200
2965
- * @deprecated Category title.
2966
- * @targetRemovalDate 2025-07-16
2967
- */
2968
- title?: string;
2969
- /**
2970
- * Position of the category in the [Category Menu](https://support.wix.com/en/article/wix-blog-adding-and-customizing-a-category-menu).
2971
- * Categories are displayed in ascending order. Categories with a position of `-1` appear at the end of the sequence.
2972
- *
2973
- * Default: `-1`
2974
- */
2975
- displayPosition?: number | null;
2976
- /**
2977
- * ID of the category's translations. All translations of a single category share the same `translationId`.
2978
- * @format GUID
2979
- */
2980
- 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;
2981
2874
  /**
2982
- * Category language.
2875
+ * Language filter
2983
2876
  *
2984
2877
  * 2-or-4-letter language code in [IETF BCP 47 language tag](https://en.wikipedia.org/wiki/IETF_language_tag) format.
2985
- * @immutable
2986
- */
2987
- language?: string | null;
2988
- /**
2989
- * 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`.
2990
- * @maxLength 100
2991
- */
2992
- slug?: string;
2993
- /** SEO data. */
2994
- seoData?: SeoSchema;
2995
- /** Category cover image. */
2996
- coverImage?: Image;
2997
- /**
2998
- * Date and time the Category was last updated.
2999
- * @readonly
3000
- */
3001
- updatedDate?: Date | null;
3002
- }
3003
- interface CategoryTranslation {
3004
- /**
3005
- * Category ID.
3006
- * @format GUID
3007
- */
3008
- id?: string;
3009
- /**
3010
- * Label displayed in the categories menu on the site.
3011
- * @maxLength 100
3012
- */
3013
- label?: string | null;
3014
- /**
3015
- * Language of the category.
3016
2878
  * @format LANGUAGE_TAG
3017
2879
  */
3018
2880
  language?: string | null;
3019
- /** URL of this category page. */
3020
- url?: PageUrl;
3021
- }
3022
- interface GetTemplateRequest {
3023
2881
  /**
3024
- * Post template id
3025
- * @format GUID
2882
+ * Timezone of the client.
2883
+ * @minLength 3
2884
+ * @maxLength 100
3026
2885
  */
3027
- postTemplateId?: string;
2886
+ timeZone?: string | null;
3028
2887
  }
3029
- interface GetTemplateResponse {
3030
- /** Post template */
3031
- postTemplate?: Post;
2888
+ declare enum QueryPublicationsCountStatsRequestOrder {
2889
+ UNKNOWN = "UNKNOWN",
2890
+ OLDEST = "OLDEST",
2891
+ NEWEST = "NEWEST"
3032
2892
  }
3033
- interface CreateDraftPostFromTemplateRequest {
3034
- /**
3035
- * Post template id
3036
- * @format GUID
3037
- */
3038
- 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[];
3039
2899
  }
3040
- interface CreateDraftPostFromTemplateResponse {
3041
- /** Created draft post */
3042
- 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;
3043
2906
  }
3044
- interface DraftPost {
3045
- /**
3046
- * Draft post ID.
3047
- * @readonly
3048
- * @maxLength 38
3049
- */
3050
- id?: string;
3051
- /**
3052
- * Draft post title.
3053
- * @maxLength 200
3054
- */
3055
- 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;
3056
2911
  /**
3057
- * Draft post excerpt.
2912
+ * Order of returned results.
3058
2913
  *
3059
- * If no excerpt has been manually set, an excerpt is automatically generated from the post's text.
3060
- * This can be retrieved using the `GENERATED_EXCERPT` fieldset.
3061
- * @maxLength 500
3062
- */
3063
- excerpt?: string | null;
3064
- /** Whether the draft post is marked as featured. */
3065
- featured?: boolean | null;
3066
- /**
3067
- * Category IDs of the draft post.
3068
- * @maxSize 10
3069
- * @maxLength 38
3070
- */
3071
- categoryIds?: string[];
3072
- /**
3073
- * Draft post owner's member ID.
3074
- * @format GUID
3075
- */
3076
- memberId?: string | null;
3077
- /**
3078
- * Hashtags in the post.
3079
- * @maxSize 100
3080
- * @maxLength 100
3081
- */
3082
- hashtags?: string[];
3083
- /** Whether commenting on the draft post is enabled. */
3084
- commentingEnabled?: boolean | null;
3085
- /**
3086
- * Estimated reading time of the draft post (calculated automatically).
3087
- * @readonly
3088
- */
3089
- minutesToRead?: number;
3090
- /** Image placed at the top of the blog page. */
3091
- heroImage?: Image;
3092
- /**
3093
- * Tag IDs the draft post is tagged with.
3094
- * @maxSize 30
3095
- * @maxLength 38
3096
- */
3097
- tagIds?: string[];
3098
- /**
3099
- * IDs of posts related to this draft post.
3100
- * @maxSize 3
3101
- * @maxLength 38
3102
- */
3103
- relatedPostIds?: string[];
3104
- /**
3105
- * Pricing plan IDs. Only relevant if a post is assigned to a specific pricing plan. See the Pricing Plans API for more info.
3106
- * @maxSize 100
3107
- * @format GUID
3108
- */
3109
- pricingPlanIds?: string[];
3110
- /**
3111
- * ID of the draft post's translations.
2914
+ * - `OLDEST`: posts by date in ascending order.
2915
+ * - `NEWEST`: posts by date in descending order.
3112
2916
  *
3113
- * All translations of a single post share the same `translationId`.
3114
- * Available only if the [Multilingual](https://support.wix.com/en/article/wix-multilingual-an-overview) app is installed.
3115
- * @format GUID
2917
+ * Default: `OLDEST`
3116
2918
  */
3117
- translationId?: string | null;
2919
+ order?: OrderWithLiterals;
2920
+ /** Number of months to include in response. */
2921
+ months?: number;
3118
2922
  /**
3119
- * Language the draft post is written in.
2923
+ * Language filter.
3120
2924
  *
3121
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.
3122
2927
  * @format LANGUAGE_TAG
3123
2928
  */
3124
2929
  language?: string | null;
3125
2930
  /**
3126
- * Draft Post rich content.
2931
+ * Time zone to use when calculating the start of the month.
3127
2932
  *
3128
- * <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">
3129
- * <a href="https://dev.wix.com/docs/ricos/api-reference/ricos-document">See Ricos document reference</a>
3130
- * </widget>
3131
- */
3132
- richContent?: RichContent;
3133
- /**
3134
- * Status of the draft post.
3135
- * @readonly
3136
- */
3137
- status?: StatusWithLiterals;
3138
- /** Details of the draft post in review. Only relevant to posts submitted by guest writers. */
3139
- moderationDetails?: ModerationDetails;
3140
- /**
3141
- * Indicates if there are changes made to the draft post that have not yet been published.
3142
- * @readonly
3143
- */
3144
- hasUnpublishedChanges?: boolean;
3145
- /**
3146
- * Date the draft post was last edited.
3147
- * @readonly
3148
- */
3149
- editedDate?: Date | null;
3150
- /**
3151
- * Date the draft post is scheduled to be published.
3152
- * @readonly
3153
- */
3154
- scheduledPublishDate?: Date | null;
3155
- /** Date the post was first published. */
3156
- firstPublishedDate?: Date | null;
3157
- /** SEO data. */
3158
- seoData?: SeoSchema;
3159
- /**
3160
- * Draft post URL preview. What the URL will look like once the post is published.
3161
- * @readonly
3162
- */
3163
- url?: PageUrl;
3164
- /**
3165
- * Date the draft post was first created.
3166
- * @readonly
3167
- */
3168
- createdDate?: Date | null;
3169
- /**
3170
- * 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
3171
2935
  * @maxLength 100
3172
2936
  */
3173
- seoSlug?: string | null;
3174
- /** Post cover media. */
3175
- media?: Media;
3176
- /** Number of paragraphs to display in a paid content preview for non-paying users. */
3177
- previewTextParagraph?: number | null;
2937
+ timeZone?: string | null;
3178
2938
  }
3179
- declare enum Origin {
2939
+ declare enum Order {
3180
2940
  UNKNOWN = "UNKNOWN",
3181
- /** Changed by admin */
3182
- ADMIN = "ADMIN",
3183
- /** Categories were changed */
3184
- ADD_CATEGORIES = "ADD_CATEGORIES",
3185
- /** Saved automatically */
3186
- AUTO_SAVE = "AUTO_SAVE",
3187
- /** Copied from template */
3188
- COPY_TEMPLATE = "COPY_TEMPLATE",
3189
- /** Imported */
3190
- IMPORT = "IMPORT",
3191
- /** Imported in bulk */
3192
- IMPORT_BULK = "IMPORT_BULK",
3193
- /** Imported with html import */
3194
- IMPORT_HTML = "IMPORT_HTML",
3195
- /** Patch import */
3196
- IMPORT_PATCH = "IMPORT_PATCH",
3197
- /** Changed language */
3198
- LANGUAGE_CHANGE = "LANGUAGE_CHANGE",
3199
- /** Saved manually */
3200
- MANUAL_SAVE = "MANUAL_SAVE",
3201
- /** Affected by migration */
3202
- MIGRATION = "MIGRATION",
3203
- /** Affected by moderation */
3204
- MODERATION = "MODERATION",
3205
- /** Moved to trash */
3206
- MOVE_TO_TRASH = "MOVE_TO_TRASH",
3207
- /** Pricing plans were changed */
3208
- PRICING_PLANS_CHANGE = "PRICING_PLANS_CHANGE",
3209
- /** Was provisioned */
3210
- PROVISION = "PROVISION",
3211
- /** Was published */
3212
- PUBLISH = "PUBLISH",
3213
- /** Owner was reassigned */
3214
- REASSIGN_OWNER = "REASSIGN_OWNER",
3215
- /** Was reblogged */
3216
- REBLOG = "REBLOG",
3217
- /** Was restored */
3218
- RESTORE = "RESTORE",
3219
- /** Reverted to draft */
3220
- REVERT_TO_DRAFT = "REVERT_TO_DRAFT",
3221
- /** Was translated */
3222
- TRANSLATION = "TRANSLATION",
3223
- /** Was unpublished */
3224
- UNPUBLISH = "UNPUBLISH",
3225
- /** Was unscheduled */
3226
- UNSCHEDULE = "UNSCHEDULE",
3227
- /** New edit session started which updated editing_session_id id */
3228
- NEW_EDIT_SESSION = "NEW_EDIT_SESSION",
3229
- /** Was scheduled by Later */
3230
- SCHEDULING_SERVICE_SCHEDULE = "SCHEDULING_SERVICE_SCHEDULE",
3231
- /** Was unscheduled by Later */
3232
- SCHEDULING_SERVICE_UNSCHEDULE = "SCHEDULING_SERVICE_UNSCHEDULE",
3233
- /** Was published by Later */
3234
- SCHEDULING_SERVICE_PUBLISH = "SCHEDULING_SERVICE_PUBLISH",
3235
- /** Was scheduled */
3236
- SCHEDULE = "SCHEDULE",
3237
- /** Was removed from moderation */
3238
- REMOVE_FROM_MODERATION = "REMOVE_FROM_MODERATION",
3239
- /** Was rejected from moderation */
3240
- REJECT_FROM_MODERATION = "REJECT_FROM_MODERATION",
3241
- /** Was approved in moderation */
3242
- APPROVE_IN_MODERATION = "APPROVE_IN_MODERATION",
3243
- /** Tag was deleted */
3244
- DELETE_TAG = "DELETE_TAG",
3245
- /** Post was pinned */
3246
- PIN = "PIN",
3247
- /** Post was unpinned */
3248
- UNPIN = "UNPIN",
3249
- /** Saved automatically by AI tool. */
3250
- AI_AUTO_SAVE = "AI_AUTO_SAVE"
2941
+ OLDEST = "OLDEST",
2942
+ NEWEST = "NEWEST"
3251
2943
  }
3252
2944
  /** @enumType */
3253
- 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';
3254
- declare enum Status {
3255
- UNKNOWN = "UNKNOWN",
3256
- /** Status indicating the draft post is published. */
3257
- PUBLISHED = "PUBLISHED",
3258
- /** Status indicating the draft post is unpublished. */
3259
- UNPUBLISHED = "UNPUBLISHED",
3260
- /** Status indicating the draft post is scheduled for publication. */
3261
- SCHEDULED = "SCHEDULED",
3262
- /** Status indicating the draft post is deleted. */
3263
- DELETED = "DELETED",
3264
- /** Status indicating the draft post is in review. */
3265
- 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[];
3266
2950
  }
3267
- /** @enumType */
3268
- type StatusWithLiterals = Status | 'UNKNOWN' | 'PUBLISHED' | 'UNPUBLISHED' | 'SCHEDULED' | 'DELETED' | 'IN_REVIEW';
3269
- interface DraftPostTranslation {
3270
- /**
3271
- * Post ID.
3272
- * @format GUID
3273
- */
3274
- id?: string;
3275
- /** Post status. */
3276
- 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 {
3277
2959
  /**
3278
- * Language the post is written in.
2960
+ * Language filter
2961
+ * @minLength 2
3279
2962
  * @format LANGUAGE_TAG
3280
2963
  */
3281
2964
  language?: string | null;
2965
+ }
2966
+ interface GetTotalPublicationsResponse {
2967
+ /** Total amount of publications. */
2968
+ total?: number;
2969
+ }
2970
+ interface GetTotalPostsRequest {
3282
2971
  /**
3283
- * Post slug. For example, 'post-slug'.
3284
- * @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
3285
2977
  */
3286
- slug?: string | null;
3287
- /** SEO data. */
3288
- seoData?: SeoSchema;
3289
- /** Post URL. */
3290
- url?: PageUrl;
2978
+ language?: string | null;
2979
+ }
2980
+ interface GetTotalPostsResponse {
2981
+ /** Total amount of published posts. */
2982
+ total?: number;
3291
2983
  }
3292
2984
  interface DomainEvent extends DomainEventBodyOneOf {
3293
2985
  createdEvent?: EntityCreatedEvent;
@@ -3444,126 +3136,6 @@ interface AccountInfo {
3444
3136
  */
3445
3137
  siteId?: string | null;
3446
3138
  }
3447
- /** Get Blog Publications Count Stats request */
3448
- interface QueryPublicationsCountStatsRequest {
3449
- /** Start of time range to return, in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date and time format. */
3450
- rangeStart?: Date | null;
3451
- /** Non-inclusive end of time range to return, in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date and time format. */
3452
- rangeEnd?: Date | null;
3453
- /** Order of the returned results. */
3454
- order?: QueryPublicationsCountStatsRequestOrderWithLiterals;
3455
- /** Number of months to include in the response. */
3456
- months?: number;
3457
- /**
3458
- * Language filter
3459
- *
3460
- * 2-or-4-letter language code in [IETF BCP 47 language tag](https://en.wikipedia.org/wiki/IETF_language_tag) format.
3461
- * @format LANGUAGE_TAG
3462
- */
3463
- language?: string | null;
3464
- /**
3465
- * Timezone of the client.
3466
- * @minLength 3
3467
- * @maxLength 100
3468
- */
3469
- timeZone?: string | null;
3470
- }
3471
- declare enum QueryPublicationsCountStatsRequestOrder {
3472
- UNKNOWN = "UNKNOWN",
3473
- OLDEST = "OLDEST",
3474
- NEWEST = "NEWEST"
3475
- }
3476
- /** @enumType */
3477
- type QueryPublicationsCountStatsRequestOrderWithLiterals = QueryPublicationsCountStatsRequestOrder | 'UNKNOWN' | 'OLDEST' | 'NEWEST';
3478
- /** Get Blog Publications Count Stats response */
3479
- interface QueryPublicationsCountStatsResponse {
3480
- /** Chronologically ordered list of publications. */
3481
- stats?: PeriodPublicationsCount[];
3482
- }
3483
- /** Publications count for a specific time period */
3484
- interface PeriodPublicationsCount {
3485
- /** Start of time range in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date and time format. */
3486
- periodStart?: Date | null;
3487
- /** Number of posts published during this month. */
3488
- publicationsCount?: number;
3489
- }
3490
- /** Get Blog Post Count Stats request */
3491
- interface QueryPostCountStatsRequest {
3492
- /** Start of time range to return, in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date and time format. */
3493
- rangeStart?: Date | null;
3494
- /**
3495
- * Order of returned results.
3496
- *
3497
- * - `OLDEST`: posts by date in ascending order.
3498
- * - `NEWEST`: posts by date in descending order.
3499
- *
3500
- * Default: `OLDEST`
3501
- */
3502
- order?: OrderWithLiterals;
3503
- /** Number of months to include in response. */
3504
- months?: number;
3505
- /**
3506
- * Language filter.
3507
- *
3508
- * 2-or-4-letter language code in [IETF BCP 47 language tag](https://en.wikipedia.org/wiki/IETF_language_tag) format.
3509
- * Pass a language to only receive the period post count for that specified language.
3510
- * @format LANGUAGE_TAG
3511
- */
3512
- language?: string | null;
3513
- /**
3514
- * Time zone to use when calculating the start of the month.
3515
- *
3516
- * [UTC timezone offset](https://en.wikipedia.org/wiki/List_of_UTC_offsets) format. For example, New York time zone is `-05`.
3517
- * @minLength 3
3518
- * @maxLength 100
3519
- */
3520
- timeZone?: string | null;
3521
- }
3522
- declare enum Order {
3523
- UNKNOWN = "UNKNOWN",
3524
- OLDEST = "OLDEST",
3525
- NEWEST = "NEWEST"
3526
- }
3527
- /** @enumType */
3528
- type OrderWithLiterals = Order | 'UNKNOWN' | 'OLDEST' | 'NEWEST';
3529
- /** Get Blog Post Count Stats response */
3530
- interface QueryPostCountStatsResponse {
3531
- /** List of published post counts by month. */
3532
- stats?: PeriodPostCount[];
3533
- }
3534
- /** Post count for a specific time period */
3535
- interface PeriodPostCount {
3536
- /** Start of time range in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date and time format. */
3537
- periodStart?: Date | null;
3538
- /** Number of posts published during this month. */
3539
- postCount?: number;
3540
- }
3541
- interface GetTotalPublicationsRequest {
3542
- /**
3543
- * Language filter
3544
- * @minLength 2
3545
- * @format LANGUAGE_TAG
3546
- */
3547
- language?: string | null;
3548
- }
3549
- interface GetTotalPublicationsResponse {
3550
- /** Total amount of publications. */
3551
- total?: number;
3552
- }
3553
- interface GetTotalPostsRequest {
3554
- /**
3555
- * Language filter.
3556
- *
3557
- * 2-or-4-letter language code in [IETF BCP 47 language tag](https://en.wikipedia.org/wiki/IETF_language_tag) format.
3558
- * Pass a language to receive the total amount of posts in that specified language.
3559
- * @format LANGUAGE_TAG
3560
- */
3561
- language?: string | null;
3562
- }
3563
- interface GetTotalPostsResponse {
3564
- /** Total amount of published posts. */
3565
- total?: number;
3566
- }
3567
3139
  interface GetTotalLikesPerMemberRequest {
3568
3140
  /**
3569
3141
  * Member ID.
@@ -3773,12 +3345,48 @@ declare enum GetPostsSort {
3773
3345
  }
3774
3346
  /** @enumType */
3775
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
+ }
3776
3371
  interface ListPostsResponse {
3777
3372
  /** List of retrieved posts. */
3778
3373
  posts?: Post[];
3779
3374
  /** Details on the paged set of results returned. */
3780
3375
  metaData?: MetaData;
3781
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
+ }
3782
3390
  interface QueryPostsRequest {
3783
3391
  /** Query options. */
3784
3392
  query?: PlatformQuery;
@@ -4262,4 +3870,4 @@ declare function getPostMetrics(): __PublicMethodMetaInfo<'GET', {
4262
3870
  postId: string;
4263
3871
  }, GetPostMetricsRequest$1, GetPostMetricsRequest, GetPostMetricsResponse$1, GetPostMetricsResponse>;
4264
3872
 
4265
- 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 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 };
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 };