@wix/auto_sdk_blog_posts 1.0.160 → 1.0.162

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 (41) hide show
  1. package/build/cjs/index.d.ts +1 -1
  2. package/build/cjs/index.js +248 -31
  3. package/build/cjs/index.js.map +1 -1
  4. package/build/cjs/index.typings.d.ts +376 -350
  5. package/build/cjs/index.typings.js +155 -31
  6. package/build/cjs/index.typings.js.map +1 -1
  7. package/build/cjs/meta.d.ts +376 -350
  8. package/build/cjs/meta.js +155 -31
  9. package/build/cjs/meta.js.map +1 -1
  10. package/build/cjs/schemas.d.ts +2 -2
  11. package/build/es/index.d.mts +1 -1
  12. package/build/es/index.mjs +248 -31
  13. package/build/es/index.mjs.map +1 -1
  14. package/build/es/index.typings.d.mts +376 -350
  15. package/build/es/index.typings.mjs +155 -31
  16. package/build/es/index.typings.mjs.map +1 -1
  17. package/build/es/meta.d.mts +376 -350
  18. package/build/es/meta.mjs +155 -31
  19. package/build/es/meta.mjs.map +1 -1
  20. package/build/es/schemas.d.mts +2 -2
  21. package/build/internal/cjs/index.d.ts +1 -1
  22. package/build/internal/cjs/index.js +248 -31
  23. package/build/internal/cjs/index.js.map +1 -1
  24. package/build/internal/cjs/index.typings.d.ts +376 -350
  25. package/build/internal/cjs/index.typings.js +155 -31
  26. package/build/internal/cjs/index.typings.js.map +1 -1
  27. package/build/internal/cjs/meta.d.ts +376 -350
  28. package/build/internal/cjs/meta.js +155 -31
  29. package/build/internal/cjs/meta.js.map +1 -1
  30. package/build/internal/cjs/schemas.d.ts +2 -2
  31. package/build/internal/es/index.d.mts +1 -1
  32. package/build/internal/es/index.mjs +248 -31
  33. package/build/internal/es/index.mjs.map +1 -1
  34. package/build/internal/es/index.typings.d.mts +376 -350
  35. package/build/internal/es/index.typings.mjs +155 -31
  36. package/build/internal/es/index.typings.mjs.map +1 -1
  37. package/build/internal/es/meta.d.mts +376 -350
  38. package/build/internal/es/meta.mjs +155 -31
  39. package/build/internal/es/meta.mjs.map +1 -1
  40. package/build/internal/es/schemas.d.mts +2 -2
  41. package/package.json +2 -2
@@ -1166,6 +1166,8 @@ interface ImageData {
1166
1166
  decorative?: boolean | null;
1167
1167
  /** Styling for the image. */
1168
1168
  styles?: ImageDataStyles;
1169
+ /** Non-destructive crop rectangle, expressed as fractions (0-1) of the original image. When omitted, the full image is shown. */
1170
+ crop?: ImageDataCrop;
1169
1171
  }
1170
1172
  interface StylesBorder {
1171
1173
  /** Border width in pixels. */
@@ -1182,6 +1184,16 @@ interface ImageDataStyles {
1182
1184
  /** Border attributes. */
1183
1185
  border?: StylesBorder;
1184
1186
  }
1187
+ interface ImageDataCrop {
1188
+ /** Left edge of the crop, as a fraction (0-1) of the original image width. */
1189
+ x?: number | null;
1190
+ /** Top edge of the crop, as a fraction (0-1) of the original image height. */
1191
+ y?: number | null;
1192
+ /** Visible width of the crop, as a fraction (0-1) of the original image width. */
1193
+ width?: number | null;
1194
+ /** Visible height of the crop, as a fraction (0-1) of the original image height. */
1195
+ height?: number | null;
1196
+ }
1185
1197
  interface LinkPreviewData {
1186
1198
  /** Styling for the link preview's container. */
1187
1199
  containerData?: PluginContainerData;
@@ -2219,6 +2231,27 @@ declare enum ImagePosition {
2219
2231
  }
2220
2232
  /** @enumType */
2221
2233
  type ImagePositionWithLiterals = ImagePosition | 'CENTER' | 'CENTER_LEFT' | 'CENTER_RIGHT' | 'TOP' | 'TOP_LEFT' | 'TOP_RIGHT' | 'BOTTOM' | 'BOTTOM_LEFT' | 'BOTTOM_RIGHT';
2234
+ /** Background styling (color or gradient) */
2235
+ interface LayoutDataBackground {
2236
+ /** Background type. */
2237
+ type?: LayoutDataBackgroundTypeWithLiterals;
2238
+ /**
2239
+ * Background color as a hexadecimal value.
2240
+ * @maxLength 19
2241
+ */
2242
+ color?: string | null;
2243
+ /** Gradient configuration. */
2244
+ gradient?: Gradient;
2245
+ }
2246
+ /** Background type */
2247
+ declare enum LayoutDataBackgroundType {
2248
+ /** Solid color background */
2249
+ COLOR = "COLOR",
2250
+ /** Gradient background */
2251
+ GRADIENT = "GRADIENT"
2252
+ }
2253
+ /** @enumType */
2254
+ type LayoutDataBackgroundTypeWithLiterals = LayoutDataBackgroundType | 'COLOR' | 'GRADIENT';
2222
2255
  declare enum Origin {
2223
2256
  /** Banner originated from an image */
2224
2257
  IMAGE = "IMAGE",
@@ -2235,15 +2268,6 @@ declare enum BannerPosition {
2235
2268
  }
2236
2269
  /** @enumType */
2237
2270
  type BannerPositionWithLiterals = BannerPosition | 'TOP' | 'BOTTOM';
2238
- /** Background type */
2239
- declare enum LayoutDataBackgroundType {
2240
- /** Solid color background */
2241
- COLOR = "COLOR",
2242
- /** Gradient background */
2243
- GRADIENT = "GRADIENT"
2244
- }
2245
- /** @enumType */
2246
- type LayoutDataBackgroundTypeWithLiterals = LayoutDataBackgroundType | 'COLOR' | 'GRADIENT';
2247
2271
  /** Backdrop type */
2248
2272
  declare enum BackdropType {
2249
2273
  /** Solid color backdrop */
@@ -2256,12 +2280,19 @@ type BackdropTypeWithLiterals = BackdropType | 'COLOR' | 'GRADIENT';
2256
2280
  interface LayoutDataBackgroundImage {
2257
2281
  /** Background image. */
2258
2282
  media?: V1Media;
2259
- /** Background image opacity. */
2283
+ /**
2284
+ * Deprecated: use `overlay` instead. Legacy image opacity (0–100) that dimmed the image to reveal the `background`/`backdrop` color behind it.
2285
+ * @deprecated
2286
+ */
2260
2287
  opacity?: number | null;
2261
2288
  /** Background image scaling. */
2262
2289
  scaling?: ImageScalingScalingWithLiterals;
2263
2290
  /** Position of background. Defaults to `CENTER`. */
2264
2291
  position?: ImagePositionWithLiterals;
2292
+ /** Blur radius in pixels applied to the image layer. `0` (default) leaves the image unblurred; blur is independent of any color overlay and the two stack. */
2293
+ blur?: number | null;
2294
+ /** Color or gradient drawn on top of the image. When present, this is the authoritative overlay and `opacity` is ignored. Its presence also marks content as authored under the new overlay model (vs. the legacy `opacity`-based dimming on `background`/`backdrop`). */
2295
+ overlay?: LayoutDataBackground;
2265
2296
  }
2266
2297
  declare enum VerticalAlignmentAlignment {
2267
2298
  /** Top alignment */
@@ -2295,18 +2326,6 @@ interface Banner {
2295
2326
  /** Position of the banner */
2296
2327
  position?: BannerPositionWithLiterals;
2297
2328
  }
2298
- /** Background styling (color or gradient) */
2299
- interface LayoutDataBackground {
2300
- /** Background type. */
2301
- type?: LayoutDataBackgroundTypeWithLiterals;
2302
- /**
2303
- * Background color as a hexadecimal value.
2304
- * @maxLength 19
2305
- */
2306
- color?: string | null;
2307
- /** Gradient configuration. */
2308
- gradient?: Gradient;
2309
- }
2310
2329
  /** Backdrop styling (color or gradient) */
2311
2330
  interface Backdrop {
2312
2331
  /** Backdrop type. */
@@ -2378,15 +2397,6 @@ declare enum ImagePositionPosition {
2378
2397
  }
2379
2398
  /** @enumType */
2380
2399
  type ImagePositionPositionWithLiterals = ImagePositionPosition | 'CENTER' | 'CENTER_LEFT' | 'CENTER_RIGHT' | 'TOP' | 'TOP_LEFT' | 'TOP_RIGHT' | 'BOTTOM' | 'BOTTOM_LEFT' | 'BOTTOM_RIGHT';
2381
- /** Background type */
2382
- declare enum CardDataBackgroundType {
2383
- /** Solid color background */
2384
- COLOR = "COLOR",
2385
- /** Gradient background */
2386
- GRADIENT = "GRADIENT"
2387
- }
2388
- /** @enumType */
2389
- type CardDataBackgroundTypeWithLiterals = CardDataBackgroundType | 'COLOR' | 'GRADIENT';
2390
2400
  /** Background styling (color or gradient) */
2391
2401
  interface CardDataBackground {
2392
2402
  /** Background type. */
@@ -2399,15 +2409,31 @@ interface CardDataBackground {
2399
2409
  /** Gradient configuration. */
2400
2410
  gradient?: Gradient;
2401
2411
  }
2412
+ /** Background type */
2413
+ declare enum CardDataBackgroundType {
2414
+ /** Solid color background */
2415
+ COLOR = "COLOR",
2416
+ /** Gradient background */
2417
+ GRADIENT = "GRADIENT"
2418
+ }
2419
+ /** @enumType */
2420
+ type CardDataBackgroundTypeWithLiterals = CardDataBackgroundType | 'COLOR' | 'GRADIENT';
2402
2421
  interface BackgroundImage {
2403
2422
  /** Background image. */
2404
2423
  media?: V1Media;
2405
- /** Background image opacity. */
2424
+ /**
2425
+ * Deprecated: use `overlay` instead. Legacy image opacity (0–100) that dimmed the image to reveal the `background` color behind it.
2426
+ * @deprecated
2427
+ */
2406
2428
  opacity?: number | null;
2407
2429
  /** Background image scaling. */
2408
2430
  scaling?: ScalingWithLiterals;
2409
2431
  /** Position of background. Defaults to `CENTER`. */
2410
2432
  position?: ImagePositionPositionWithLiterals;
2433
+ /** Color or gradient drawn on top of the image. When present, this is the authoritative overlay and `opacity` is ignored. Its presence also marks content as authored under the new overlay model (vs. the legacy `opacity`-based dimming on `background`). */
2434
+ overlay?: CardDataBackground;
2435
+ /** Blur radius in pixels applied to the image layer. `0` (default) leaves the image unblurred; blur is independent of any color overlay and the two stack. */
2436
+ blur?: number | null;
2411
2437
  }
2412
2438
  interface TocData {
2413
2439
  /** Heading levels included in the table of contents. Default: [1, 2, 3, 4, 5, 6]. */
@@ -2861,124 +2887,15 @@ interface PostUnlikedInitiatorOneOf {
2861
2887
  */
2862
2888
  anonymousVisitorId?: string | null;
2863
2889
  }
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;
2874
- /**
2875
- * Language filter
2876
- *
2877
- * 2-or-4-letter language code in [IETF BCP 47 language tag](https://en.wikipedia.org/wiki/IETF_language_tag) format.
2878
- * @format LANGUAGE_TAG
2879
- */
2880
- language?: string | null;
2881
- /**
2882
- * Timezone of the client.
2883
- * @minLength 3
2884
- * @maxLength 100
2885
- */
2886
- timeZone?: string | null;
2887
- }
2888
- declare enum QueryPublicationsCountStatsRequestOrder {
2889
- UNKNOWN = "UNKNOWN",
2890
- OLDEST = "OLDEST",
2891
- NEWEST = "NEWEST"
2892
- }
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[];
2899
- }
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;
2906
- }
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;
2911
- /**
2912
- * Order of returned results.
2913
- *
2914
- * - `OLDEST`: posts by date in ascending order.
2915
- * - `NEWEST`: posts by date in descending order.
2916
- *
2917
- * Default: `OLDEST`
2918
- */
2919
- order?: OrderWithLiterals;
2920
- /** Number of months to include in response. */
2921
- months?: number;
2922
- /**
2923
- * Language filter.
2924
- *
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.
2927
- * @format LANGUAGE_TAG
2928
- */
2929
- language?: string | null;
2930
- /**
2931
- * Time zone to use when calculating the start of the month.
2932
- *
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
2935
- * @maxLength 100
2936
- */
2937
- timeZone?: string | null;
2938
- }
2939
- declare enum Order {
2940
- UNKNOWN = "UNKNOWN",
2941
- OLDEST = "OLDEST",
2942
- NEWEST = "NEWEST"
2943
- }
2944
- /** @enumType */
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[];
2950
- }
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 {
2959
- /**
2960
- * Language filter
2961
- * @minLength 2
2962
- * @format LANGUAGE_TAG
2963
- */
2964
- language?: string | null;
2965
- }
2966
- interface GetTotalPublicationsResponse {
2967
- /** Total amount of publications. */
2968
- total?: number;
2969
- }
2970
- interface GetTotalPostsRequest {
2890
+ interface GetTotalLikesPerMemberRequest {
2971
2891
  /**
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
2892
+ * Member ID.
2893
+ * @format GUID
2977
2894
  */
2978
- language?: string | null;
2895
+ memberId?: string;
2979
2896
  }
2980
- interface GetTotalPostsResponse {
2981
- /** Total amount of published posts. */
2897
+ interface GetTotalLikesPerMemberResponse {
2898
+ /** The total number of likes of the member. */
2982
2899
  total?: number;
2983
2900
  }
2984
2901
  interface DomainEvent extends DomainEventBodyOneOf {
@@ -3136,27 +3053,324 @@ interface AccountInfo {
3136
3053
  */
3137
3054
  siteId?: string | null;
3138
3055
  }
3139
- interface GetTotalLikesPerMemberRequest {
3056
+ /** Get Blog Publications Count Stats request */
3057
+ interface QueryPublicationsCountStatsRequest {
3058
+ /** Start of time range to return, in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date and time format. */
3059
+ rangeStart?: Date | null;
3060
+ /** Non-inclusive end of time range to return, in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date and time format. */
3061
+ rangeEnd?: Date | null;
3062
+ /** Order of the returned results. */
3063
+ order?: QueryPublicationsCountStatsRequestOrderWithLiterals;
3064
+ /** Number of months to include in the response. */
3065
+ months?: number;
3140
3066
  /**
3141
- * Member ID.
3142
- * @format GUID
3067
+ * Language filter
3068
+ *
3069
+ * 2-or-4-letter language code in [IETF BCP 47 language tag](https://en.wikipedia.org/wiki/IETF_language_tag) format.
3070
+ * @format LANGUAGE_TAG
3143
3071
  */
3144
- memberId?: string;
3072
+ language?: string | null;
3073
+ /**
3074
+ * Timezone of the client.
3075
+ * @minLength 3
3076
+ * @maxLength 100
3077
+ */
3078
+ timeZone?: string | null;
3145
3079
  }
3146
- interface GetTotalLikesPerMemberResponse {
3147
- /** The total number of likes of the member. */
3148
- total?: number;
3080
+ declare enum QueryPublicationsCountStatsRequestOrder {
3081
+ UNKNOWN = "UNKNOWN",
3082
+ OLDEST = "OLDEST",
3083
+ NEWEST = "NEWEST"
3149
3084
  }
3150
- interface PostCountersUpdated extends PostCountersUpdatedInitiatorOneOf {
3085
+ /** @enumType */
3086
+ type QueryPublicationsCountStatsRequestOrderWithLiterals = QueryPublicationsCountStatsRequestOrder | 'UNKNOWN' | 'OLDEST' | 'NEWEST';
3087
+ /** Get Blog Publications Count Stats response */
3088
+ interface QueryPublicationsCountStatsResponse {
3089
+ /** Chronologically ordered list of publications. */
3090
+ stats?: PeriodPublicationsCount[];
3091
+ }
3092
+ /** Publications count for a specific time period */
3093
+ interface PeriodPublicationsCount {
3094
+ /** Start of time range in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date and time format. */
3095
+ periodStart?: Date | null;
3096
+ /** Number of posts published during this month. */
3097
+ publicationsCount?: number;
3098
+ }
3099
+ /** Get Blog Post Count Stats request */
3100
+ interface QueryPostCountStatsRequest {
3101
+ /** Start of time range to return, in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date and time format. */
3102
+ rangeStart?: Date | null;
3151
3103
  /**
3152
- * Member ID of person who triggered the counter update
3153
- * @format GUID
3104
+ * Order of returned results.
3105
+ *
3106
+ * - `OLDEST`: posts by date in ascending order.
3107
+ * - `NEWEST`: posts by date in descending order.
3108
+ *
3109
+ * Default: `OLDEST`
3154
3110
  */
3155
- memberId?: string | null;
3111
+ order?: OrderWithLiterals;
3112
+ /** Number of months to include in response. */
3113
+ months?: number;
3156
3114
  /**
3157
- * Visitor ID if person that liked the post is not logged in
3158
- * @format GUID
3159
- */
3115
+ * Language filter.
3116
+ *
3117
+ * 2-or-4-letter language code in [IETF BCP 47 language tag](https://en.wikipedia.org/wiki/IETF_language_tag) format.
3118
+ * Pass a language to only receive the period post count for that specified language.
3119
+ * @format LANGUAGE_TAG
3120
+ */
3121
+ language?: string | null;
3122
+ /**
3123
+ * Time zone to use when calculating the start of the month.
3124
+ *
3125
+ * [UTC timezone offset](https://en.wikipedia.org/wiki/List_of_UTC_offsets) format. For example, New York time zone is `-05`.
3126
+ * @minLength 3
3127
+ * @maxLength 100
3128
+ */
3129
+ timeZone?: string | null;
3130
+ }
3131
+ declare enum Order {
3132
+ UNKNOWN = "UNKNOWN",
3133
+ OLDEST = "OLDEST",
3134
+ NEWEST = "NEWEST"
3135
+ }
3136
+ /** @enumType */
3137
+ type OrderWithLiterals = Order | 'UNKNOWN' | 'OLDEST' | 'NEWEST';
3138
+ /** Get Blog Post Count Stats response */
3139
+ interface QueryPostCountStatsResponse {
3140
+ /** List of published post counts by month. */
3141
+ stats?: PeriodPostCount[];
3142
+ }
3143
+ /** Post count for a specific time period */
3144
+ interface PeriodPostCount {
3145
+ /** Start of time range in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date and time format. */
3146
+ periodStart?: Date | null;
3147
+ /** Number of posts published during this month. */
3148
+ postCount?: number;
3149
+ }
3150
+ interface GetTotalPublicationsRequest {
3151
+ /**
3152
+ * Language filter
3153
+ * @minLength 2
3154
+ * @format LANGUAGE_TAG
3155
+ */
3156
+ language?: string | null;
3157
+ }
3158
+ interface GetTotalPublicationsResponse {
3159
+ /** Total amount of publications. */
3160
+ total?: number;
3161
+ }
3162
+ interface GetTotalPostsRequest {
3163
+ /**
3164
+ * Language filter.
3165
+ *
3166
+ * 2-or-4-letter language code in [IETF BCP 47 language tag](https://en.wikipedia.org/wiki/IETF_language_tag) format.
3167
+ * Pass a language to receive the total amount of posts in that specified language.
3168
+ * @format LANGUAGE_TAG
3169
+ */
3170
+ language?: string | null;
3171
+ }
3172
+ interface GetTotalPostsResponse {
3173
+ /** Total amount of published posts. */
3174
+ total?: number;
3175
+ }
3176
+ interface ListDemoPostsRequest {
3177
+ /**
3178
+ * Whether to return only featured posts.
3179
+ *
3180
+ * Default: `false`
3181
+ */
3182
+ featured?: boolean;
3183
+ /**
3184
+ * Hashtag filter.
3185
+ *
3186
+ * Pass an array of hashtags to return only posts containing any of the provided hashtags.
3187
+ * If omitted, all posts with or without hashtags are returned.
3188
+ * @maxSize 100
3189
+ * @maxLength 100
3190
+ */
3191
+ hashtags?: string[];
3192
+ /**
3193
+ * Category filter.
3194
+ *
3195
+ * Pass an array of category IDs to return only posts with any of the provided categories.
3196
+ * If omitted, all posts with or without associated categories are returned.
3197
+ * @maxSize 50
3198
+ * @format GUID
3199
+ */
3200
+ categoryIds?: string[];
3201
+ /**
3202
+ * Tag filter.
3203
+ *
3204
+ * Pass an array of tag IDs to return only posts with any of the provided tags.
3205
+ * If omitted, all posts with or without tags are returned.
3206
+ * @maxSize 50
3207
+ * @format GUID
3208
+ */
3209
+ tagIds?: string[];
3210
+ /**
3211
+ * Sorting options.
3212
+ *
3213
+ * - `FEED`: Ordered by `firstPublishedDate` in descending order with pinned posts first.
3214
+ * - `VIEW_COUNT`: Ordered by total number of views in descending order.
3215
+ * - `LIKE_COUNT`: Ordered by total number of likes in descending order.
3216
+ * - `PUBLISHED_DATE_ASC`: Ordered by `firstPublishedDate` in ascending order.
3217
+ * - `PUBLISHED_DATE_DESC`: Ordered by `firstPublishedDate` in descending order.
3218
+ * - `TITLE_ASC`: Ordered by `title` in ascending order.
3219
+ * - `TITLE_DESC`: Ordered by `title` in descending order.
3220
+ * - `RATING`: reserved for internal use.
3221
+ *
3222
+ * Default: `FEED`
3223
+ */
3224
+ sort?: GetPostsSortWithLiterals;
3225
+ /** Pagination options. */
3226
+ paging?: BlogPaging;
3227
+ /**
3228
+ * __Deprecated.__ Use `fieldsets` instead.
3229
+ * This parameter will be removed on June 30, 2023.
3230
+ *
3231
+ * List of post fields to be included in the response.
3232
+ * @maxSize 20
3233
+ * @deprecated __Deprecated.__ Use `fieldsets` instead.
3234
+ * This parameter will be removed on June 30, 2023.
3235
+ *
3236
+ * List of post fields to be included in the response.
3237
+ * @replacedBy fieldsets
3238
+ * @targetRemovalDate 2024-06-30
3239
+ */
3240
+ fieldsToInclude?: PostFieldFieldWithLiterals[];
3241
+ /**
3242
+ * Language filter.
3243
+ *
3244
+ * 2-or-4-letter language code in [IETF BCP 47 language tag](https://en.wikipedia.org/wiki/IETF_language_tag) format.
3245
+ * Pass a language to only receive posts that are in that language.
3246
+ * If omitted, posts in all languages are returned.
3247
+ * @format LANGUAGE_TAG
3248
+ */
3249
+ language?: string | null;
3250
+ /**
3251
+ * Post owner's member ID.
3252
+ * @format GUID
3253
+ */
3254
+ memberId?: string | null;
3255
+ /**
3256
+ * List of additional post fields to include in the response. For example, use the `URL` fieldset to retrieve the url field in
3257
+ * the response in addition to the post’s base fields. Base fields don’t include any of the supported fieldset values. By default
3258
+ * only the post’s base fields are returned.
3259
+ * @maxSize 20
3260
+ */
3261
+ fieldsets?: PostFieldFieldWithLiterals[];
3262
+ }
3263
+ declare enum GetPostsSort {
3264
+ /** Ordered by `firstPublishedDate` in descending order with pinned posts first. */
3265
+ FEED = "FEED",
3266
+ /** Ordered by `firstPublishedDate` in ascending order. */
3267
+ PUBLISHED_DATE_ASC = "PUBLISHED_DATE_ASC",
3268
+ /** Ordered by `firstPublishedDate` in descending order. */
3269
+ PUBLISHED_DATE_DESC = "PUBLISHED_DATE_DESC",
3270
+ /** Ordered by total number of views in descending order. */
3271
+ VIEW_COUNT = "VIEW_COUNT",
3272
+ /** Ordered by total number of likes in descending order. */
3273
+ LIKE_COUNT = "LIKE_COUNT",
3274
+ /** Ordered by `title` in ascending order. */
3275
+ TITLE_ASC = "TITLE_ASC",
3276
+ /** Ordered by `title` in descending order. */
3277
+ TITLE_DESC = "TITLE_DESC"
3278
+ }
3279
+ /** @enumType */
3280
+ type GetPostsSortWithLiterals = GetPostsSort | 'FEED' | 'PUBLISHED_DATE_ASC' | 'PUBLISHED_DATE_DESC' | 'VIEW_COUNT' | 'LIKE_COUNT' | 'TITLE_ASC' | 'TITLE_DESC';
3281
+ interface BlogPaging {
3282
+ /**
3283
+ * Number of items to skip in the current sort order.
3284
+ *
3285
+ *
3286
+ * Default: `0`
3287
+ */
3288
+ offset?: number;
3289
+ /**
3290
+ * Number of items to return.
3291
+ *
3292
+ *
3293
+ * Default:`50`
3294
+ * @min 1
3295
+ * @max 100
3296
+ */
3297
+ limit?: number;
3298
+ /**
3299
+ * Pointer to the next or previous page in the list of results.
3300
+ * @maxLength 2000
3301
+ */
3302
+ cursor?: string | null;
3303
+ }
3304
+ declare enum PostFieldField {
3305
+ UNKNOWN = "UNKNOWN",
3306
+ /** Includes post URL when present. */
3307
+ URL = "URL",
3308
+ /** Includes post content text string when present. */
3309
+ CONTENT_TEXT = "CONTENT_TEXT",
3310
+ /** Includes post metrics when present. */
3311
+ METRICS = "METRICS",
3312
+ /** Includes SEO data. */
3313
+ SEO = "SEO",
3314
+ /** Includes post owner's contact ID. */
3315
+ CONTACT_ID = "CONTACT_ID",
3316
+ /** Includes post rich content. */
3317
+ RICH_CONTENT = "RICH_CONTENT",
3318
+ /** Includes post reference ID field. */
3319
+ REFERENCE_ID = "REFERENCE_ID"
3320
+ }
3321
+ /** @enumType */
3322
+ type PostFieldFieldWithLiterals = PostFieldField | 'UNKNOWN' | 'URL' | 'CONTENT_TEXT' | 'METRICS' | 'SEO' | 'CONTACT_ID' | 'RICH_CONTENT' | 'REFERENCE_ID';
3323
+ interface ListDemoPostsResponse {
3324
+ /** List of posts. */
3325
+ posts?: Post[];
3326
+ /** Details on the paged set of results returned. */
3327
+ metaData?: MetaData;
3328
+ }
3329
+ interface MetaData {
3330
+ /** Number of items returned in this response. */
3331
+ count?: number;
3332
+ /** Requested offset. */
3333
+ offset?: number;
3334
+ /** Total number of items that match the query. */
3335
+ total?: number;
3336
+ /**
3337
+ * Pointer to the next or previous page in the list of results.
3338
+ * @maxLength 2000
3339
+ */
3340
+ cursor?: string | null;
3341
+ }
3342
+ interface ConvertDraftJsToRichContentRequest {
3343
+ /** DraftJs content to convert to Rich content. */
3344
+ content?: Record<string, any> | null;
3345
+ }
3346
+ interface ConvertDraftJsToRichContentResponse {
3347
+ /**
3348
+ * Rich content converted from DraftJs content.
3349
+ * @maxLength 2000000
3350
+ */
3351
+ richContent?: string;
3352
+ }
3353
+ interface ConvertRichContentToDraftJsRequest {
3354
+ /**
3355
+ * Rich content to convert to DraftJs content.
3356
+ * @maxLength 2000000
3357
+ */
3358
+ richContent?: string;
3359
+ }
3360
+ interface ConvertRichContentToDraftJsResponse {
3361
+ /** DraftJs content converted from Rich content. */
3362
+ content?: Record<string, any> | null;
3363
+ }
3364
+ interface PostCountersUpdated extends PostCountersUpdatedInitiatorOneOf {
3365
+ /**
3366
+ * Member ID of person who triggered the counter update
3367
+ * @format GUID
3368
+ */
3369
+ memberId?: string | null;
3370
+ /**
3371
+ * Visitor ID if person that liked the post is not logged in
3372
+ * @format GUID
3373
+ */
3160
3374
  anonymousVisitorId?: string | null;
3161
3375
  /**
3162
3376
  * ID of the post which counters were updated.
@@ -3216,25 +3430,6 @@ interface GetPostRequest {
3216
3430
  */
3217
3431
  fieldsets?: PostFieldFieldWithLiterals[];
3218
3432
  }
3219
- declare enum PostFieldField {
3220
- UNKNOWN = "UNKNOWN",
3221
- /** Includes post URL when present. */
3222
- URL = "URL",
3223
- /** Includes post content text string when present. */
3224
- CONTENT_TEXT = "CONTENT_TEXT",
3225
- /** Includes post metrics when present. */
3226
- METRICS = "METRICS",
3227
- /** Includes SEO data. */
3228
- SEO = "SEO",
3229
- /** Includes post owner's contact ID. */
3230
- CONTACT_ID = "CONTACT_ID",
3231
- /** Includes post rich content. */
3232
- RICH_CONTENT = "RICH_CONTENT",
3233
- /** Includes post reference ID field. */
3234
- REFERENCE_ID = "REFERENCE_ID"
3235
- }
3236
- /** @enumType */
3237
- type PostFieldFieldWithLiterals = PostFieldField | 'UNKNOWN' | 'URL' | 'CONTENT_TEXT' | 'METRICS' | 'SEO' | 'CONTACT_ID' | 'RICH_CONTENT' | 'REFERENCE_ID';
3238
3433
  interface GetPostResponse {
3239
3434
  /** Retrieved post info. */
3240
3435
  post?: Post;
@@ -3327,66 +3522,12 @@ interface ListPostsRequest {
3327
3522
  */
3328
3523
  fieldsets?: PostFieldFieldWithLiterals[];
3329
3524
  }
3330
- declare enum GetPostsSort {
3331
- /** Ordered by `firstPublishedDate` in descending order with pinned posts first. */
3332
- FEED = "FEED",
3333
- /** Ordered by `firstPublishedDate` in ascending order. */
3334
- PUBLISHED_DATE_ASC = "PUBLISHED_DATE_ASC",
3335
- /** Ordered by `firstPublishedDate` in descending order. */
3336
- PUBLISHED_DATE_DESC = "PUBLISHED_DATE_DESC",
3337
- /** Ordered by total number of views in descending order. */
3338
- VIEW_COUNT = "VIEW_COUNT",
3339
- /** Ordered by total number of likes in descending order. */
3340
- LIKE_COUNT = "LIKE_COUNT",
3341
- /** Ordered by `title` in ascending order. */
3342
- TITLE_ASC = "TITLE_ASC",
3343
- /** Ordered by `title` in descending order. */
3344
- TITLE_DESC = "TITLE_DESC"
3345
- }
3346
- /** @enumType */
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
- }
3371
3525
  interface ListPostsResponse {
3372
3526
  /** List of retrieved posts. */
3373
3527
  posts?: Post[];
3374
3528
  /** Details on the paged set of results returned. */
3375
3529
  metaData?: MetaData;
3376
3530
  }
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
- }
3390
3531
  interface QueryPostsRequest {
3391
3532
  /** Query options. */
3392
3533
  query?: PlatformQuery;
@@ -3730,121 +3871,6 @@ interface PostCount {
3730
3871
  /** Number of posts. */
3731
3872
  postCount?: number;
3732
3873
  }
3733
- interface ListDemoPostsRequest {
3734
- /**
3735
- * Whether to return only featured posts.
3736
- *
3737
- * Default: `false`
3738
- */
3739
- featured?: boolean;
3740
- /**
3741
- * Hashtag filter.
3742
- *
3743
- * Pass an array of hashtags to return only posts containing any of the provided hashtags.
3744
- * If omitted, all posts with or without hashtags are returned.
3745
- * @maxSize 100
3746
- * @maxLength 100
3747
- */
3748
- hashtags?: string[];
3749
- /**
3750
- * Category filter.
3751
- *
3752
- * Pass an array of category IDs to return only posts with any of the provided categories.
3753
- * If omitted, all posts with or without associated categories are returned.
3754
- * @maxSize 50
3755
- * @format GUID
3756
- */
3757
- categoryIds?: string[];
3758
- /**
3759
- * Tag filter.
3760
- *
3761
- * Pass an array of tag IDs to return only posts with any of the provided tags.
3762
- * If omitted, all posts with or without tags are returned.
3763
- * @maxSize 50
3764
- * @format GUID
3765
- */
3766
- tagIds?: string[];
3767
- /**
3768
- * Sorting options.
3769
- *
3770
- * - `FEED`: Ordered by `firstPublishedDate` in descending order with pinned posts first.
3771
- * - `VIEW_COUNT`: Ordered by total number of views in descending order.
3772
- * - `LIKE_COUNT`: Ordered by total number of likes in descending order.
3773
- * - `PUBLISHED_DATE_ASC`: Ordered by `firstPublishedDate` in ascending order.
3774
- * - `PUBLISHED_DATE_DESC`: Ordered by `firstPublishedDate` in descending order.
3775
- * - `TITLE_ASC`: Ordered by `title` in ascending order.
3776
- * - `TITLE_DESC`: Ordered by `title` in descending order.
3777
- * - `RATING`: reserved for internal use.
3778
- *
3779
- * Default: `FEED`
3780
- */
3781
- sort?: GetPostsSortWithLiterals;
3782
- /** Pagination options. */
3783
- paging?: BlogPaging;
3784
- /**
3785
- * __Deprecated.__ Use `fieldsets` instead.
3786
- * This parameter will be removed on June 30, 2023.
3787
- *
3788
- * List of post fields to be included in the response.
3789
- * @maxSize 20
3790
- * @deprecated __Deprecated.__ Use `fieldsets` instead.
3791
- * This parameter will be removed on June 30, 2023.
3792
- *
3793
- * List of post fields to be included in the response.
3794
- * @replacedBy fieldsets
3795
- * @targetRemovalDate 2024-06-30
3796
- */
3797
- fieldsToInclude?: PostFieldFieldWithLiterals[];
3798
- /**
3799
- * Language filter.
3800
- *
3801
- * 2-or-4-letter language code in [IETF BCP 47 language tag](https://en.wikipedia.org/wiki/IETF_language_tag) format.
3802
- * Pass a language to only receive posts that are in that language.
3803
- * If omitted, posts in all languages are returned.
3804
- * @format LANGUAGE_TAG
3805
- */
3806
- language?: string | null;
3807
- /**
3808
- * Post owner's member ID.
3809
- * @format GUID
3810
- */
3811
- memberId?: string | null;
3812
- /**
3813
- * List of additional post fields to include in the response. For example, use the `URL` fieldset to retrieve the url field in
3814
- * the response in addition to the post’s base fields. Base fields don’t include any of the supported fieldset values. By default
3815
- * only the post’s base fields are returned.
3816
- * @maxSize 20
3817
- */
3818
- fieldsets?: PostFieldFieldWithLiterals[];
3819
- }
3820
- interface ListDemoPostsResponse {
3821
- /** List of posts. */
3822
- posts?: Post[];
3823
- /** Details on the paged set of results returned. */
3824
- metaData?: MetaData;
3825
- }
3826
- interface ConvertDraftJsToRichContentRequest {
3827
- /** DraftJs content to convert to Rich content. */
3828
- content?: Record<string, any> | null;
3829
- }
3830
- interface ConvertDraftJsToRichContentResponse {
3831
- /**
3832
- * Rich content converted from DraftJs content.
3833
- * @maxLength 2000000
3834
- */
3835
- richContent?: string;
3836
- }
3837
- interface ConvertRichContentToDraftJsRequest {
3838
- /**
3839
- * Rich content to convert to DraftJs content.
3840
- * @maxLength 2000000
3841
- */
3842
- richContent?: string;
3843
- }
3844
- interface ConvertRichContentToDraftJsResponse {
3845
- /** DraftJs content converted from Rich content. */
3846
- content?: Record<string, any> | null;
3847
- }
3848
3874
 
3849
3875
  type __PublicMethodMetaInfo<K = string, M = unknown, T = unknown, S = unknown, Q = unknown, R = unknown> = {
3850
3876
  getUrl: (context: any) => string;
@@ -3870,4 +3896,4 @@ declare function getPostMetrics(): __PublicMethodMetaInfo<'GET', {
3870
3896
  postId: string;
3871
3897
  }, GetPostMetricsRequest$1, GetPostMetricsRequest, GetPostMetricsResponse$1, GetPostMetricsResponse>;
3872
3898
 
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 };
3899
+ 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 ImageDataCrop as ImageDataCropOriginal, 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 };