@wix/auto_sdk_blog_posts 1.0.151 → 1.0.153
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.
- package/build/cjs/index.d.ts +15 -11
- package/build/cjs/index.js +66 -49
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +666 -634
- package/build/cjs/index.typings.js +56 -44
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +536 -516
- package/build/cjs/meta.js +50 -38
- package/build/cjs/meta.js.map +1 -1
- package/build/cjs/schemas.d.ts +86 -84
- package/build/cjs/schemas.js +153 -147
- package/build/cjs/schemas.js.map +1 -1
- package/build/es/index.d.mts +15 -11
- package/build/es/index.mjs +65 -49
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +666 -634
- package/build/es/index.typings.mjs +55 -44
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +536 -516
- package/build/es/meta.mjs +49 -38
- package/build/es/meta.mjs.map +1 -1
- package/build/es/schemas.d.mts +86 -84
- package/build/es/schemas.mjs +153 -147
- package/build/es/schemas.mjs.map +1 -1
- package/build/internal/cjs/index.d.ts +15 -11
- package/build/internal/cjs/index.js +66 -49
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +666 -634
- package/build/internal/cjs/index.typings.js +56 -44
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +536 -516
- package/build/internal/cjs/meta.js +50 -38
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/cjs/schemas.d.ts +86 -84
- package/build/internal/cjs/schemas.js +153 -147
- package/build/internal/cjs/schemas.js.map +1 -1
- package/build/internal/es/index.d.mts +15 -11
- package/build/internal/es/index.mjs +65 -49
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +666 -634
- package/build/internal/es/index.typings.mjs +55 -44
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +536 -516
- package/build/internal/es/meta.mjs +49 -38
- package/build/internal/es/meta.mjs.map +1 -1
- package/build/internal/es/schemas.d.mts +86 -84
- package/build/internal/es/schemas.mjs +153 -147
- package/build/internal/es/schemas.mjs.map +1 -1
- package/package.json +2 -2
package/build/es/meta.d.mts
CHANGED
|
@@ -2145,7 +2145,7 @@ interface LayoutData {
|
|
|
2145
2145
|
containerData?: PluginContainerData;
|
|
2146
2146
|
/** Defines where selected design propertied applies to */
|
|
2147
2147
|
designTarget?: DesignTargetWithLiterals;
|
|
2148
|
-
/** Banner configuration. When present, this layout is
|
|
2148
|
+
/** Banner configuration. When present, this layout is attached to a document edge (top or bottom). */
|
|
2149
2149
|
banner?: Banner;
|
|
2150
2150
|
/** Background styling (color or gradient). */
|
|
2151
2151
|
background?: LayoutDataBackground;
|
|
@@ -2192,6 +2192,14 @@ declare enum BannerOrigin {
|
|
|
2192
2192
|
}
|
|
2193
2193
|
/** @enumType */
|
|
2194
2194
|
type BannerOriginWithLiterals = BannerOrigin | 'IMAGE' | 'LAYOUT';
|
|
2195
|
+
declare enum BannerPosition {
|
|
2196
|
+
/** Attached to the top edge (banner) */
|
|
2197
|
+
TOP = "TOP",
|
|
2198
|
+
/** Attached to the bottom edge (footer) */
|
|
2199
|
+
BOTTOM = "BOTTOM"
|
|
2200
|
+
}
|
|
2201
|
+
/** @enumType */
|
|
2202
|
+
type BannerPositionWithLiterals = BannerPosition | 'TOP' | 'BOTTOM';
|
|
2195
2203
|
/** Background type */
|
|
2196
2204
|
declare enum LayoutDataBackgroundType {
|
|
2197
2205
|
/** Solid color background */
|
|
@@ -2249,6 +2257,8 @@ type DesignTargetWithLiterals = DesignTarget | 'LAYOUT' | 'CELL';
|
|
|
2249
2257
|
interface Banner {
|
|
2250
2258
|
/** Origin of the banner */
|
|
2251
2259
|
origin?: BannerOriginWithLiterals;
|
|
2260
|
+
/** Position of the banner */
|
|
2261
|
+
position?: BannerPositionWithLiterals;
|
|
2252
2262
|
}
|
|
2253
2263
|
/** Background styling (color or gradient) */
|
|
2254
2264
|
interface LayoutDataBackground {
|
|
@@ -2456,10 +2466,20 @@ declare enum SmartBlockDataType {
|
|
|
2456
2466
|
/** Process steps with numbered/icon labels above a horizontal line. */
|
|
2457
2467
|
PROCESS_STEPS = "PROCESS_STEPS",
|
|
2458
2468
|
/** Statistics with bar visual elements. */
|
|
2459
|
-
BAR_STATS = "BAR_STATS"
|
|
2469
|
+
BAR_STATS = "BAR_STATS",
|
|
2470
|
+
/** Timeline layout with numbered chips on a connecting line; cells alternate around the line. */
|
|
2471
|
+
TIMELINE = "TIMELINE",
|
|
2472
|
+
/** Timeline layout with plain dot indicators; no numbers or shapes; cells alternate around the line. */
|
|
2473
|
+
MINIMAL_TIMELINE = "MINIMAL_TIMELINE",
|
|
2474
|
+
/** Numbered pill-shaped labels (stadium chips) with text content; supports HORIZONTAL (pill on top) and VERTICAL (pill on left) orientations. */
|
|
2475
|
+
PILLS = "PILLS",
|
|
2476
|
+
/** Star rating display with stars and a numeric value per cell. */
|
|
2477
|
+
STAR_RATING = "STAR_RATING",
|
|
2478
|
+
/** Outlined boxes with decorative quote glyphs at the top-left and bottom-right corners. */
|
|
2479
|
+
QUOTE_BOXES = "QUOTE_BOXES"
|
|
2460
2480
|
}
|
|
2461
2481
|
/** @enumType */
|
|
2462
|
-
type SmartBlockDataTypeWithLiterals = SmartBlockDataType | 'SOLID_BOXES' | 'NUMBERED_BOXES' | 'STATS' | 'CIRCLE_STATS' | 'SOLID_BOXES_ALTERNATING' | 'SOLID_JOINED_BOXES' | 'SIDE_LINE_TEXT' | 'TOP_LINE_TEXT' | 'OUTLINE_BOXES_WITH_TOP_CIRCLE' | 'BIG_BULLETS' | 'SMALL_BULLETS' | 'ARROW_BULLETS' | 'PROCESS_STEPS' | 'BAR_STATS';
|
|
2482
|
+
type SmartBlockDataTypeWithLiterals = SmartBlockDataType | 'SOLID_BOXES' | 'NUMBERED_BOXES' | 'STATS' | 'CIRCLE_STATS' | 'SOLID_BOXES_ALTERNATING' | 'SOLID_JOINED_BOXES' | 'SIDE_LINE_TEXT' | 'TOP_LINE_TEXT' | 'OUTLINE_BOXES_WITH_TOP_CIRCLE' | 'BIG_BULLETS' | 'SMALL_BULLETS' | 'ARROW_BULLETS' | 'PROCESS_STEPS' | 'BAR_STATS' | 'TIMELINE' | 'MINIMAL_TIMELINE' | 'PILLS' | 'STAR_RATING' | 'QUOTE_BOXES';
|
|
2463
2483
|
/** Column size controlling how many cells appear per row. */
|
|
2464
2484
|
declare enum ColumnSize {
|
|
2465
2485
|
/** Up to 4 cells in a row. */
|
|
@@ -2788,454 +2808,168 @@ interface PostUnlikedInitiatorOneOf {
|
|
|
2788
2808
|
*/
|
|
2789
2809
|
anonymousVisitorId?: string | null;
|
|
2790
2810
|
}
|
|
2791
|
-
interface
|
|
2811
|
+
interface ListTemplatesRequest {
|
|
2792
2812
|
/**
|
|
2793
|
-
*
|
|
2813
|
+
* Filter post templates by given template category ids
|
|
2814
|
+
* @maxSize 50
|
|
2794
2815
|
* @format GUID
|
|
2795
2816
|
*/
|
|
2796
|
-
|
|
2797
|
-
}
|
|
2798
|
-
interface GetTotalLikesPerMemberResponse {
|
|
2799
|
-
/** The total number of likes of the member. */
|
|
2800
|
-
total?: number;
|
|
2801
|
-
}
|
|
2802
|
-
interface DomainEvent extends DomainEventBodyOneOf {
|
|
2803
|
-
createdEvent?: EntityCreatedEvent;
|
|
2804
|
-
updatedEvent?: EntityUpdatedEvent;
|
|
2805
|
-
deletedEvent?: EntityDeletedEvent;
|
|
2806
|
-
actionEvent?: ActionEvent;
|
|
2807
|
-
/** Event ID. With this ID you can easily spot duplicated events and ignore them. */
|
|
2808
|
-
id?: string;
|
|
2817
|
+
categoryIds?: string[];
|
|
2809
2818
|
/**
|
|
2810
|
-
*
|
|
2811
|
-
*
|
|
2819
|
+
* Filter post templates by provided language
|
|
2820
|
+
* @format LANGUAGE_TAG
|
|
2812
2821
|
*/
|
|
2813
|
-
|
|
2822
|
+
language?: string | null;
|
|
2823
|
+
/** Returns post template categories when set to TRUE */
|
|
2824
|
+
listTemplateCategories?: boolean;
|
|
2825
|
+
/** Sort order by ascending/descending publish date. Default is ascending publish date sort */
|
|
2826
|
+
sort?: GetPostTemplatesSortWithLiterals;
|
|
2827
|
+
/** Pagination options. */
|
|
2828
|
+
paging?: BlogPaging;
|
|
2829
|
+
}
|
|
2830
|
+
declare enum GetPostTemplatesSort {
|
|
2831
|
+
/** Sort by ascending publishing date. */
|
|
2832
|
+
PUBLISHED_DATE_ASC = "PUBLISHED_DATE_ASC",
|
|
2833
|
+
/** Sort by descending publishing date. */
|
|
2834
|
+
PUBLISHED_DATE_DESC = "PUBLISHED_DATE_DESC"
|
|
2835
|
+
}
|
|
2836
|
+
/** @enumType */
|
|
2837
|
+
type GetPostTemplatesSortWithLiterals = GetPostTemplatesSort | 'PUBLISHED_DATE_ASC' | 'PUBLISHED_DATE_DESC';
|
|
2838
|
+
interface BlogPaging {
|
|
2814
2839
|
/**
|
|
2815
|
-
*
|
|
2816
|
-
*
|
|
2840
|
+
* Number of items to skip in the current sort order.
|
|
2841
|
+
*
|
|
2842
|
+
*
|
|
2843
|
+
* Default: `0`
|
|
2817
2844
|
*/
|
|
2818
|
-
|
|
2819
|
-
/** ID of the entity associated with the event. */
|
|
2820
|
-
entityId?: string;
|
|
2821
|
-
/** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example, `2020-04-26T13:57:50.699Z`. */
|
|
2822
|
-
eventTime?: Date | null;
|
|
2845
|
+
offset?: number;
|
|
2823
2846
|
/**
|
|
2824
|
-
*
|
|
2825
|
-
*
|
|
2847
|
+
* Number of items to return.
|
|
2848
|
+
*
|
|
2849
|
+
*
|
|
2850
|
+
* Default:`50`
|
|
2851
|
+
* @min 1
|
|
2852
|
+
* @max 100
|
|
2826
2853
|
*/
|
|
2827
|
-
|
|
2828
|
-
/** If present, indicates the action that triggered the event. */
|
|
2829
|
-
originatedFrom?: string | null;
|
|
2854
|
+
limit?: number;
|
|
2830
2855
|
/**
|
|
2831
|
-
*
|
|
2832
|
-
*
|
|
2856
|
+
* Pointer to the next or previous page in the list of results.
|
|
2857
|
+
* @maxLength 2000
|
|
2833
2858
|
*/
|
|
2834
|
-
|
|
2835
|
-
}
|
|
2836
|
-
/** @oneof */
|
|
2837
|
-
interface DomainEventBodyOneOf {
|
|
2838
|
-
createdEvent?: EntityCreatedEvent;
|
|
2839
|
-
updatedEvent?: EntityUpdatedEvent;
|
|
2840
|
-
deletedEvent?: EntityDeletedEvent;
|
|
2841
|
-
actionEvent?: ActionEvent;
|
|
2842
|
-
}
|
|
2843
|
-
interface EntityCreatedEvent {
|
|
2844
|
-
entityAsJson?: string;
|
|
2845
|
-
/** Indicates the event was triggered by a restore-from-trashbin operation for a previously deleted entity */
|
|
2846
|
-
restoreInfo?: RestoreInfo;
|
|
2859
|
+
cursor?: string | null;
|
|
2847
2860
|
}
|
|
2848
|
-
interface
|
|
2849
|
-
|
|
2861
|
+
interface ListTemplatesResponse {
|
|
2862
|
+
/** Available post templates */
|
|
2863
|
+
postTemplates?: Post[];
|
|
2864
|
+
/** Details on the paged set of posts templates returned. */
|
|
2865
|
+
postTemplatesMetaData?: MetaData;
|
|
2866
|
+
/** Post template categories. This value is returned empty unless asked explicitly */
|
|
2867
|
+
templateCategories?: Category[];
|
|
2850
2868
|
}
|
|
2851
|
-
interface
|
|
2869
|
+
interface MetaData {
|
|
2870
|
+
/** Number of items returned in this response. */
|
|
2871
|
+
count?: number;
|
|
2872
|
+
/** Requested offset. */
|
|
2873
|
+
offset?: number;
|
|
2874
|
+
/** Total number of items that match the query. */
|
|
2875
|
+
total?: number;
|
|
2852
2876
|
/**
|
|
2853
|
-
*
|
|
2854
|
-
*
|
|
2855
|
-
* We don't want to impose this on all developers and so we leave this traversal to the notification recipients which need it.
|
|
2877
|
+
* Pointer to the next or previous page in the list of results.
|
|
2878
|
+
* @maxLength 2000
|
|
2856
2879
|
*/
|
|
2857
|
-
|
|
2858
|
-
}
|
|
2859
|
-
interface EntityDeletedEvent {
|
|
2860
|
-
/** Entity that was deleted. */
|
|
2861
|
-
deletedEntityAsJson?: string | null;
|
|
2862
|
-
}
|
|
2863
|
-
interface ActionEvent {
|
|
2864
|
-
bodyAsJson?: string;
|
|
2880
|
+
cursor?: string | null;
|
|
2865
2881
|
}
|
|
2866
|
-
interface
|
|
2882
|
+
interface Category {
|
|
2867
2883
|
/**
|
|
2868
|
-
*
|
|
2869
|
-
* @
|
|
2884
|
+
* Category ID.
|
|
2885
|
+
* @immutable
|
|
2886
|
+
* @maxLength 38
|
|
2870
2887
|
*/
|
|
2871
|
-
|
|
2888
|
+
id?: string;
|
|
2872
2889
|
/**
|
|
2873
|
-
*
|
|
2874
|
-
* @maxLength
|
|
2890
|
+
* Category label. Displayed in the Category Menu.
|
|
2891
|
+
* @maxLength 35
|
|
2875
2892
|
*/
|
|
2876
|
-
|
|
2877
|
-
/** The identification type and identity data. */
|
|
2878
|
-
identity?: IdentificationData;
|
|
2879
|
-
/** Stringify payload. */
|
|
2880
|
-
data?: string;
|
|
2881
|
-
/** Details related to the account */
|
|
2882
|
-
accountInfo?: AccountInfo;
|
|
2883
|
-
}
|
|
2884
|
-
interface IdentificationData extends IdentificationDataIdOneOf {
|
|
2893
|
+
label?: string;
|
|
2885
2894
|
/**
|
|
2886
|
-
*
|
|
2887
|
-
* @
|
|
2895
|
+
* Number of posts in the category.
|
|
2896
|
+
* @readonly
|
|
2888
2897
|
*/
|
|
2889
|
-
|
|
2898
|
+
postCount?: number;
|
|
2890
2899
|
/**
|
|
2891
|
-
*
|
|
2892
|
-
* @
|
|
2900
|
+
* The `url` of the page that lists every post with the specified category.
|
|
2901
|
+
* @readonly
|
|
2893
2902
|
*/
|
|
2894
|
-
|
|
2903
|
+
url?: PageUrl;
|
|
2895
2904
|
/**
|
|
2896
|
-
*
|
|
2897
|
-
* @
|
|
2905
|
+
* Category description.
|
|
2906
|
+
* @maxLength 500
|
|
2898
2907
|
*/
|
|
2899
|
-
|
|
2908
|
+
description?: string | null;
|
|
2900
2909
|
/**
|
|
2901
|
-
*
|
|
2902
|
-
* @
|
|
2910
|
+
* Category title.
|
|
2911
|
+
* @maxLength 200
|
|
2912
|
+
* @deprecated Category title.
|
|
2913
|
+
* @targetRemovalDate 2025-07-16
|
|
2903
2914
|
*/
|
|
2904
|
-
|
|
2905
|
-
/** @readonly */
|
|
2906
|
-
identityType?: WebhookIdentityTypeWithLiterals;
|
|
2907
|
-
}
|
|
2908
|
-
/** @oneof */
|
|
2909
|
-
interface IdentificationDataIdOneOf {
|
|
2915
|
+
title?: string;
|
|
2910
2916
|
/**
|
|
2911
|
-
*
|
|
2912
|
-
*
|
|
2917
|
+
* Position of the category in the [Category Menu](https://support.wix.com/en/article/wix-blog-adding-and-customizing-a-category-menu).
|
|
2918
|
+
* Categories are displayed in ascending order. Categories with a position of `-1` appear at the end of the sequence.
|
|
2919
|
+
*
|
|
2920
|
+
* Default: `-1`
|
|
2913
2921
|
*/
|
|
2914
|
-
|
|
2922
|
+
displayPosition?: number | null;
|
|
2915
2923
|
/**
|
|
2916
|
-
* ID of
|
|
2924
|
+
* ID of the category's translations. All translations of a single category share the same `translationId`.
|
|
2917
2925
|
* @format GUID
|
|
2918
2926
|
*/
|
|
2919
|
-
|
|
2927
|
+
translationId?: string | null;
|
|
2920
2928
|
/**
|
|
2921
|
-
*
|
|
2922
|
-
*
|
|
2929
|
+
* Category language.
|
|
2930
|
+
*
|
|
2931
|
+
* 2-or-4-letter language code in [IETF BCP 47 language tag](https://en.wikipedia.org/wiki/IETF_language_tag) format.
|
|
2932
|
+
* @immutable
|
|
2923
2933
|
*/
|
|
2924
|
-
|
|
2934
|
+
language?: string | null;
|
|
2925
2935
|
/**
|
|
2926
|
-
*
|
|
2927
|
-
* @
|
|
2936
|
+
* 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`.
|
|
2937
|
+
* @maxLength 100
|
|
2928
2938
|
*/
|
|
2929
|
-
|
|
2930
|
-
|
|
2931
|
-
|
|
2932
|
-
|
|
2933
|
-
|
|
2934
|
-
MEMBER = "MEMBER",
|
|
2935
|
-
WIX_USER = "WIX_USER",
|
|
2936
|
-
APP = "APP"
|
|
2937
|
-
}
|
|
2938
|
-
/** @enumType */
|
|
2939
|
-
type WebhookIdentityTypeWithLiterals = WebhookIdentityType | 'UNKNOWN' | 'ANONYMOUS_VISITOR' | 'MEMBER' | 'WIX_USER' | 'APP';
|
|
2940
|
-
interface AccountInfo {
|
|
2939
|
+
slug?: string;
|
|
2940
|
+
/** SEO data. */
|
|
2941
|
+
seoData?: SeoSchema;
|
|
2942
|
+
/** Category cover image. */
|
|
2943
|
+
coverImage?: Image;
|
|
2941
2944
|
/**
|
|
2942
|
-
*
|
|
2943
|
-
* @
|
|
2945
|
+
* Date and time the Category was last updated.
|
|
2946
|
+
* @readonly
|
|
2944
2947
|
*/
|
|
2945
|
-
|
|
2948
|
+
updatedDate?: Date | null;
|
|
2949
|
+
}
|
|
2950
|
+
interface CategoryTranslation {
|
|
2946
2951
|
/**
|
|
2947
|
-
* ID
|
|
2952
|
+
* Category ID.
|
|
2948
2953
|
* @format GUID
|
|
2949
2954
|
*/
|
|
2950
|
-
|
|
2955
|
+
id?: string;
|
|
2951
2956
|
/**
|
|
2952
|
-
*
|
|
2953
|
-
* @
|
|
2957
|
+
* Label displayed in the categories menu on the site.
|
|
2958
|
+
* @maxLength 100
|
|
2954
2959
|
*/
|
|
2955
|
-
|
|
2956
|
-
}
|
|
2957
|
-
/** Get Blog Publications Count Stats request */
|
|
2958
|
-
interface QueryPublicationsCountStatsRequest {
|
|
2959
|
-
/** Start of time range to return, in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date and time format. */
|
|
2960
|
-
rangeStart?: Date | null;
|
|
2961
|
-
/** Non-inclusive end of time range to return, in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date and time format. */
|
|
2962
|
-
rangeEnd?: Date | null;
|
|
2963
|
-
/** Order of the returned results. */
|
|
2964
|
-
order?: QueryPublicationsCountStatsRequestOrderWithLiterals;
|
|
2965
|
-
/** Number of months to include in the response. */
|
|
2966
|
-
months?: number;
|
|
2960
|
+
label?: string | null;
|
|
2967
2961
|
/**
|
|
2968
|
-
* Language
|
|
2969
|
-
*
|
|
2970
|
-
* 2-or-4-letter language code in [IETF BCP 47 language tag](https://en.wikipedia.org/wiki/IETF_language_tag) format.
|
|
2962
|
+
* Language of the category.
|
|
2971
2963
|
* @format LANGUAGE_TAG
|
|
2972
2964
|
*/
|
|
2973
2965
|
language?: string | null;
|
|
2966
|
+
/** URL of this category page. */
|
|
2967
|
+
url?: PageUrl;
|
|
2968
|
+
}
|
|
2969
|
+
interface GetTemplateRequest {
|
|
2974
2970
|
/**
|
|
2975
|
-
*
|
|
2976
|
-
* @
|
|
2977
|
-
* @maxLength 100
|
|
2978
|
-
*/
|
|
2979
|
-
timeZone?: string | null;
|
|
2980
|
-
}
|
|
2981
|
-
declare enum QueryPublicationsCountStatsRequestOrder {
|
|
2982
|
-
UNKNOWN = "UNKNOWN",
|
|
2983
|
-
OLDEST = "OLDEST",
|
|
2984
|
-
NEWEST = "NEWEST"
|
|
2985
|
-
}
|
|
2986
|
-
/** @enumType */
|
|
2987
|
-
type QueryPublicationsCountStatsRequestOrderWithLiterals = QueryPublicationsCountStatsRequestOrder | 'UNKNOWN' | 'OLDEST' | 'NEWEST';
|
|
2988
|
-
/** Get Blog Publications Count Stats response */
|
|
2989
|
-
interface QueryPublicationsCountStatsResponse {
|
|
2990
|
-
/** Chronologically ordered list of publications. */
|
|
2991
|
-
stats?: PeriodPublicationsCount[];
|
|
2992
|
-
}
|
|
2993
|
-
/** Publications count for a specific time period */
|
|
2994
|
-
interface PeriodPublicationsCount {
|
|
2995
|
-
/** Start of time range in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date and time format. */
|
|
2996
|
-
periodStart?: Date | null;
|
|
2997
|
-
/** Number of posts published during this month. */
|
|
2998
|
-
publicationsCount?: number;
|
|
2999
|
-
}
|
|
3000
|
-
/** Get Blog Post Count Stats request */
|
|
3001
|
-
interface QueryPostCountStatsRequest {
|
|
3002
|
-
/** Start of time range to return, in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date and time format. */
|
|
3003
|
-
rangeStart?: Date | null;
|
|
3004
|
-
/**
|
|
3005
|
-
* Order of returned results.
|
|
3006
|
-
*
|
|
3007
|
-
* - `OLDEST`: posts by date in ascending order.
|
|
3008
|
-
* - `NEWEST`: posts by date in descending order.
|
|
3009
|
-
*
|
|
3010
|
-
* Default: `OLDEST`
|
|
3011
|
-
*/
|
|
3012
|
-
order?: OrderWithLiterals;
|
|
3013
|
-
/** Number of months to include in response. */
|
|
3014
|
-
months?: number;
|
|
3015
|
-
/**
|
|
3016
|
-
* Language filter.
|
|
3017
|
-
*
|
|
3018
|
-
* 2-or-4-letter language code in [IETF BCP 47 language tag](https://en.wikipedia.org/wiki/IETF_language_tag) format.
|
|
3019
|
-
* Pass a language to only receive the period post count for that specified language.
|
|
3020
|
-
* @format LANGUAGE_TAG
|
|
3021
|
-
*/
|
|
3022
|
-
language?: string | null;
|
|
3023
|
-
/**
|
|
3024
|
-
* Time zone to use when calculating the start of the month.
|
|
3025
|
-
*
|
|
3026
|
-
* [UTC timezone offset](https://en.wikipedia.org/wiki/List_of_UTC_offsets) format. For example, New York time zone is `-05`.
|
|
3027
|
-
* @minLength 3
|
|
3028
|
-
* @maxLength 100
|
|
3029
|
-
*/
|
|
3030
|
-
timeZone?: string | null;
|
|
3031
|
-
}
|
|
3032
|
-
declare enum Order {
|
|
3033
|
-
UNKNOWN = "UNKNOWN",
|
|
3034
|
-
OLDEST = "OLDEST",
|
|
3035
|
-
NEWEST = "NEWEST"
|
|
3036
|
-
}
|
|
3037
|
-
/** @enumType */
|
|
3038
|
-
type OrderWithLiterals = Order | 'UNKNOWN' | 'OLDEST' | 'NEWEST';
|
|
3039
|
-
/** Get Blog Post Count Stats response */
|
|
3040
|
-
interface QueryPostCountStatsResponse {
|
|
3041
|
-
/** List of published post counts by month. */
|
|
3042
|
-
stats?: PeriodPostCount[];
|
|
3043
|
-
}
|
|
3044
|
-
/** Post count for a specific time period */
|
|
3045
|
-
interface PeriodPostCount {
|
|
3046
|
-
/** Start of time range in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date and time format. */
|
|
3047
|
-
periodStart?: Date | null;
|
|
3048
|
-
/** Number of posts published during this month. */
|
|
3049
|
-
postCount?: number;
|
|
3050
|
-
}
|
|
3051
|
-
interface GetTotalPublicationsRequest {
|
|
3052
|
-
/**
|
|
3053
|
-
* Language filter
|
|
3054
|
-
* @minLength 2
|
|
3055
|
-
* @format LANGUAGE_TAG
|
|
3056
|
-
*/
|
|
3057
|
-
language?: string | null;
|
|
3058
|
-
}
|
|
3059
|
-
interface GetTotalPublicationsResponse {
|
|
3060
|
-
/** Total amount of publications. */
|
|
3061
|
-
total?: number;
|
|
3062
|
-
}
|
|
3063
|
-
interface GetTotalPostsRequest {
|
|
3064
|
-
/**
|
|
3065
|
-
* Language filter.
|
|
3066
|
-
*
|
|
3067
|
-
* 2-or-4-letter language code in [IETF BCP 47 language tag](https://en.wikipedia.org/wiki/IETF_language_tag) format.
|
|
3068
|
-
* Pass a language to receive the total amount of posts in that specified language.
|
|
3069
|
-
* @format LANGUAGE_TAG
|
|
3070
|
-
*/
|
|
3071
|
-
language?: string | null;
|
|
3072
|
-
}
|
|
3073
|
-
interface GetTotalPostsResponse {
|
|
3074
|
-
/** Total amount of published posts. */
|
|
3075
|
-
total?: number;
|
|
3076
|
-
}
|
|
3077
|
-
interface ListTemplatesRequest {
|
|
3078
|
-
/**
|
|
3079
|
-
* Filter post templates by given template category ids
|
|
3080
|
-
* @maxSize 50
|
|
3081
|
-
* @format GUID
|
|
3082
|
-
*/
|
|
3083
|
-
categoryIds?: string[];
|
|
3084
|
-
/**
|
|
3085
|
-
* Filter post templates by provided language
|
|
3086
|
-
* @format LANGUAGE_TAG
|
|
3087
|
-
*/
|
|
3088
|
-
language?: string | null;
|
|
3089
|
-
/** Returns post template categories when set to TRUE */
|
|
3090
|
-
listTemplateCategories?: boolean;
|
|
3091
|
-
/** Sort order by ascending/descending publish date. Default is ascending publish date sort */
|
|
3092
|
-
sort?: GetPostTemplatesSortWithLiterals;
|
|
3093
|
-
/** Pagination options. */
|
|
3094
|
-
paging?: BlogPaging;
|
|
3095
|
-
}
|
|
3096
|
-
declare enum GetPostTemplatesSort {
|
|
3097
|
-
/** Sort by ascending publishing date. */
|
|
3098
|
-
PUBLISHED_DATE_ASC = "PUBLISHED_DATE_ASC",
|
|
3099
|
-
/** Sort by descending publishing date. */
|
|
3100
|
-
PUBLISHED_DATE_DESC = "PUBLISHED_DATE_DESC"
|
|
3101
|
-
}
|
|
3102
|
-
/** @enumType */
|
|
3103
|
-
type GetPostTemplatesSortWithLiterals = GetPostTemplatesSort | 'PUBLISHED_DATE_ASC' | 'PUBLISHED_DATE_DESC';
|
|
3104
|
-
interface BlogPaging {
|
|
3105
|
-
/**
|
|
3106
|
-
* Number of items to skip in the current sort order.
|
|
3107
|
-
*
|
|
3108
|
-
*
|
|
3109
|
-
* Default: `0`
|
|
3110
|
-
*/
|
|
3111
|
-
offset?: number;
|
|
3112
|
-
/**
|
|
3113
|
-
* Number of items to return.
|
|
3114
|
-
*
|
|
3115
|
-
*
|
|
3116
|
-
* Default:`50`
|
|
3117
|
-
* @min 1
|
|
3118
|
-
* @max 100
|
|
3119
|
-
*/
|
|
3120
|
-
limit?: number;
|
|
3121
|
-
/**
|
|
3122
|
-
* Pointer to the next or previous page in the list of results.
|
|
3123
|
-
* @maxLength 2000
|
|
3124
|
-
*/
|
|
3125
|
-
cursor?: string | null;
|
|
3126
|
-
}
|
|
3127
|
-
interface ListTemplatesResponse {
|
|
3128
|
-
/** Available post templates */
|
|
3129
|
-
postTemplates?: Post[];
|
|
3130
|
-
/** Details on the paged set of posts templates returned. */
|
|
3131
|
-
postTemplatesMetaData?: MetaData;
|
|
3132
|
-
/** Post template categories. This value is returned empty unless asked explicitly */
|
|
3133
|
-
templateCategories?: Category[];
|
|
3134
|
-
}
|
|
3135
|
-
interface MetaData {
|
|
3136
|
-
/** Number of items returned in this response. */
|
|
3137
|
-
count?: number;
|
|
3138
|
-
/** Requested offset. */
|
|
3139
|
-
offset?: number;
|
|
3140
|
-
/** Total number of items that match the query. */
|
|
3141
|
-
total?: number;
|
|
3142
|
-
/**
|
|
3143
|
-
* Pointer to the next or previous page in the list of results.
|
|
3144
|
-
* @maxLength 2000
|
|
3145
|
-
*/
|
|
3146
|
-
cursor?: string | null;
|
|
3147
|
-
}
|
|
3148
|
-
interface Category {
|
|
3149
|
-
/**
|
|
3150
|
-
* Category ID.
|
|
3151
|
-
* @immutable
|
|
3152
|
-
* @maxLength 38
|
|
3153
|
-
*/
|
|
3154
|
-
id?: string;
|
|
3155
|
-
/**
|
|
3156
|
-
* Category label. Displayed in the Category Menu.
|
|
3157
|
-
* @maxLength 35
|
|
3158
|
-
*/
|
|
3159
|
-
label?: string;
|
|
3160
|
-
/**
|
|
3161
|
-
* Number of posts in the category.
|
|
3162
|
-
* @readonly
|
|
3163
|
-
*/
|
|
3164
|
-
postCount?: number;
|
|
3165
|
-
/**
|
|
3166
|
-
* The `url` of the page that lists every post with the specified category.
|
|
3167
|
-
* @readonly
|
|
3168
|
-
*/
|
|
3169
|
-
url?: PageUrl;
|
|
3170
|
-
/**
|
|
3171
|
-
* Category description.
|
|
3172
|
-
* @maxLength 500
|
|
3173
|
-
*/
|
|
3174
|
-
description?: string | null;
|
|
3175
|
-
/**
|
|
3176
|
-
* Category title.
|
|
3177
|
-
* @maxLength 200
|
|
3178
|
-
* @deprecated Category title.
|
|
3179
|
-
* @targetRemovalDate 2025-07-16
|
|
3180
|
-
*/
|
|
3181
|
-
title?: string;
|
|
3182
|
-
/**
|
|
3183
|
-
* Position of the category in the [Category Menu](https://support.wix.com/en/article/wix-blog-adding-and-customizing-a-category-menu).
|
|
3184
|
-
* Categories are displayed in ascending order. Categories with a position of `-1` appear at the end of the sequence.
|
|
3185
|
-
*
|
|
3186
|
-
* Default: `-1`
|
|
3187
|
-
*/
|
|
3188
|
-
displayPosition?: number | null;
|
|
3189
|
-
/**
|
|
3190
|
-
* ID of the category's translations. All translations of a single category share the same `translationId`.
|
|
3191
|
-
* @format GUID
|
|
3192
|
-
*/
|
|
3193
|
-
translationId?: string | null;
|
|
3194
|
-
/**
|
|
3195
|
-
* Category language.
|
|
3196
|
-
*
|
|
3197
|
-
* 2-or-4-letter language code in [IETF BCP 47 language tag](https://en.wikipedia.org/wiki/IETF_language_tag) format.
|
|
3198
|
-
* @immutable
|
|
3199
|
-
*/
|
|
3200
|
-
language?: string | null;
|
|
3201
|
-
/**
|
|
3202
|
-
* 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`.
|
|
3203
|
-
* @maxLength 100
|
|
3204
|
-
*/
|
|
3205
|
-
slug?: string;
|
|
3206
|
-
/** SEO data. */
|
|
3207
|
-
seoData?: SeoSchema;
|
|
3208
|
-
/** Category cover image. */
|
|
3209
|
-
coverImage?: Image;
|
|
3210
|
-
/**
|
|
3211
|
-
* Date and time the Category was last updated.
|
|
3212
|
-
* @readonly
|
|
3213
|
-
*/
|
|
3214
|
-
updatedDate?: Date | null;
|
|
3215
|
-
}
|
|
3216
|
-
interface CategoryTranslation {
|
|
3217
|
-
/**
|
|
3218
|
-
* Category ID.
|
|
3219
|
-
* @format GUID
|
|
3220
|
-
*/
|
|
3221
|
-
id?: string;
|
|
3222
|
-
/**
|
|
3223
|
-
* Label displayed in the categories menu on the site.
|
|
3224
|
-
* @maxLength 100
|
|
3225
|
-
*/
|
|
3226
|
-
label?: string | null;
|
|
3227
|
-
/**
|
|
3228
|
-
* Language of the category.
|
|
3229
|
-
* @format LANGUAGE_TAG
|
|
3230
|
-
*/
|
|
3231
|
-
language?: string | null;
|
|
3232
|
-
/** URL of this category page. */
|
|
3233
|
-
url?: PageUrl;
|
|
3234
|
-
}
|
|
3235
|
-
interface GetTemplateRequest {
|
|
3236
|
-
/**
|
|
3237
|
-
* Post template id
|
|
3238
|
-
* @format GUID
|
|
2971
|
+
* Post template id
|
|
2972
|
+
* @format GUID
|
|
3239
2973
|
*/
|
|
3240
2974
|
postTemplateId?: string;
|
|
3241
2975
|
}
|
|
@@ -3502,157 +3236,291 @@ interface DraftPostTranslation {
|
|
|
3502
3236
|
/** Post URL. */
|
|
3503
3237
|
url?: PageUrl;
|
|
3504
3238
|
}
|
|
3505
|
-
interface
|
|
3239
|
+
interface DomainEvent extends DomainEventBodyOneOf {
|
|
3240
|
+
createdEvent?: EntityCreatedEvent;
|
|
3241
|
+
updatedEvent?: EntityUpdatedEvent;
|
|
3242
|
+
deletedEvent?: EntityDeletedEvent;
|
|
3243
|
+
actionEvent?: ActionEvent;
|
|
3244
|
+
/** Event ID. With this ID you can easily spot duplicated events and ignore them. */
|
|
3245
|
+
id?: string;
|
|
3506
3246
|
/**
|
|
3507
|
-
*
|
|
3508
|
-
*
|
|
3509
|
-
* Default: `false`
|
|
3247
|
+
* Fully Qualified Domain Name of an entity. This is a unique identifier assigned to the API main business entities.
|
|
3248
|
+
* For example, `wix.stores.catalog.product`, `wix.bookings.session`, `wix.payments.transaction`.
|
|
3510
3249
|
*/
|
|
3511
|
-
|
|
3250
|
+
entityFqdn?: string;
|
|
3512
3251
|
/**
|
|
3513
|
-
*
|
|
3514
|
-
*
|
|
3515
|
-
* Pass an array of hashtags to return only posts containing any of the provided hashtags.
|
|
3516
|
-
* If omitted, all posts with or without hashtags are returned.
|
|
3517
|
-
* @maxSize 100
|
|
3518
|
-
* @maxLength 100
|
|
3252
|
+
* Event action name, placed at the top level to make it easier for users to dispatch messages.
|
|
3253
|
+
* For example: `created`/`updated`/`deleted`/`started`/`completed`/`email_opened`.
|
|
3519
3254
|
*/
|
|
3520
|
-
|
|
3255
|
+
slug?: string;
|
|
3256
|
+
/** ID of the entity associated with the event. */
|
|
3257
|
+
entityId?: string;
|
|
3258
|
+
/** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example, `2020-04-26T13:57:50.699Z`. */
|
|
3259
|
+
eventTime?: Date | null;
|
|
3521
3260
|
/**
|
|
3522
|
-
*
|
|
3523
|
-
*
|
|
3524
|
-
|
|
3525
|
-
|
|
3526
|
-
|
|
3261
|
+
* Whether the event was triggered as a result of a privacy regulation application
|
|
3262
|
+
* (for example, GDPR).
|
|
3263
|
+
*/
|
|
3264
|
+
triggeredByAnonymizeRequest?: boolean | null;
|
|
3265
|
+
/** If present, indicates the action that triggered the event. */
|
|
3266
|
+
originatedFrom?: string | null;
|
|
3267
|
+
/**
|
|
3268
|
+
* A sequence number that indicates the order of updates to an entity. For example, if an entity was updated at 16:00 and then again at 16:01, the second update will always have a higher sequence number.
|
|
3269
|
+
* You can use this number to make sure you're handling updates in the right order. Just save the latest sequence number on your end and compare it to the one in each new message. If the new message has an older (lower) number, you can safely ignore it.
|
|
3270
|
+
*/
|
|
3271
|
+
entityEventSequence?: string | null;
|
|
3272
|
+
}
|
|
3273
|
+
/** @oneof */
|
|
3274
|
+
interface DomainEventBodyOneOf {
|
|
3275
|
+
createdEvent?: EntityCreatedEvent;
|
|
3276
|
+
updatedEvent?: EntityUpdatedEvent;
|
|
3277
|
+
deletedEvent?: EntityDeletedEvent;
|
|
3278
|
+
actionEvent?: ActionEvent;
|
|
3279
|
+
}
|
|
3280
|
+
interface EntityCreatedEvent {
|
|
3281
|
+
entityAsJson?: string;
|
|
3282
|
+
/** Indicates the event was triggered by a restore-from-trashbin operation for a previously deleted entity */
|
|
3283
|
+
restoreInfo?: RestoreInfo;
|
|
3284
|
+
}
|
|
3285
|
+
interface RestoreInfo {
|
|
3286
|
+
deletedDate?: Date | null;
|
|
3287
|
+
}
|
|
3288
|
+
interface EntityUpdatedEvent {
|
|
3289
|
+
/**
|
|
3290
|
+
* Since platformized APIs only expose PATCH and not PUT we can't assume that the fields sent from the client are the actual diff.
|
|
3291
|
+
* This means that to generate a list of changed fields (as opposed to sent fields) one needs to traverse both objects.
|
|
3292
|
+
* We don't want to impose this on all developers and so we leave this traversal to the notification recipients which need it.
|
|
3293
|
+
*/
|
|
3294
|
+
currentEntityAsJson?: string;
|
|
3295
|
+
}
|
|
3296
|
+
interface EntityDeletedEvent {
|
|
3297
|
+
/** Entity that was deleted. */
|
|
3298
|
+
deletedEntityAsJson?: string | null;
|
|
3299
|
+
}
|
|
3300
|
+
interface ActionEvent {
|
|
3301
|
+
bodyAsJson?: string;
|
|
3302
|
+
}
|
|
3303
|
+
interface MessageEnvelope {
|
|
3304
|
+
/**
|
|
3305
|
+
* App instance ID.
|
|
3527
3306
|
* @format GUID
|
|
3528
3307
|
*/
|
|
3529
|
-
|
|
3308
|
+
instanceId?: string | null;
|
|
3530
3309
|
/**
|
|
3531
|
-
*
|
|
3532
|
-
*
|
|
3533
|
-
|
|
3534
|
-
|
|
3535
|
-
|
|
3310
|
+
* Event type.
|
|
3311
|
+
* @maxLength 150
|
|
3312
|
+
*/
|
|
3313
|
+
eventType?: string;
|
|
3314
|
+
/** The identification type and identity data. */
|
|
3315
|
+
identity?: IdentificationData;
|
|
3316
|
+
/** Stringify payload. */
|
|
3317
|
+
data?: string;
|
|
3318
|
+
/** Details related to the account */
|
|
3319
|
+
accountInfo?: AccountInfo;
|
|
3320
|
+
}
|
|
3321
|
+
interface IdentificationData extends IdentificationDataIdOneOf {
|
|
3322
|
+
/**
|
|
3323
|
+
* ID of a site visitor that has not logged in to the site.
|
|
3536
3324
|
* @format GUID
|
|
3537
3325
|
*/
|
|
3538
|
-
|
|
3326
|
+
anonymousVisitorId?: string;
|
|
3539
3327
|
/**
|
|
3540
|
-
*
|
|
3541
|
-
*
|
|
3542
|
-
|
|
3543
|
-
|
|
3544
|
-
|
|
3545
|
-
*
|
|
3546
|
-
*
|
|
3547
|
-
|
|
3548
|
-
|
|
3549
|
-
|
|
3328
|
+
* ID of a site visitor that has logged in to the site.
|
|
3329
|
+
* @format GUID
|
|
3330
|
+
*/
|
|
3331
|
+
memberId?: string;
|
|
3332
|
+
/**
|
|
3333
|
+
* ID of a Wix user (site owner, contributor, etc.).
|
|
3334
|
+
* @format GUID
|
|
3335
|
+
*/
|
|
3336
|
+
wixUserId?: string;
|
|
3337
|
+
/**
|
|
3338
|
+
* ID of an app.
|
|
3339
|
+
* @format GUID
|
|
3340
|
+
*/
|
|
3341
|
+
appId?: string;
|
|
3342
|
+
/** @readonly */
|
|
3343
|
+
identityType?: WebhookIdentityTypeWithLiterals;
|
|
3344
|
+
}
|
|
3345
|
+
/** @oneof */
|
|
3346
|
+
interface IdentificationDataIdOneOf {
|
|
3347
|
+
/**
|
|
3348
|
+
* ID of a site visitor that has not logged in to the site.
|
|
3349
|
+
* @format GUID
|
|
3350
|
+
*/
|
|
3351
|
+
anonymousVisitorId?: string;
|
|
3352
|
+
/**
|
|
3353
|
+
* ID of a site visitor that has logged in to the site.
|
|
3354
|
+
* @format GUID
|
|
3355
|
+
*/
|
|
3356
|
+
memberId?: string;
|
|
3357
|
+
/**
|
|
3358
|
+
* ID of a Wix user (site owner, contributor, etc.).
|
|
3359
|
+
* @format GUID
|
|
3360
|
+
*/
|
|
3361
|
+
wixUserId?: string;
|
|
3362
|
+
/**
|
|
3363
|
+
* ID of an app.
|
|
3364
|
+
* @format GUID
|
|
3365
|
+
*/
|
|
3366
|
+
appId?: string;
|
|
3367
|
+
}
|
|
3368
|
+
declare enum WebhookIdentityType {
|
|
3369
|
+
UNKNOWN = "UNKNOWN",
|
|
3370
|
+
ANONYMOUS_VISITOR = "ANONYMOUS_VISITOR",
|
|
3371
|
+
MEMBER = "MEMBER",
|
|
3372
|
+
WIX_USER = "WIX_USER",
|
|
3373
|
+
APP = "APP"
|
|
3374
|
+
}
|
|
3375
|
+
/** @enumType */
|
|
3376
|
+
type WebhookIdentityTypeWithLiterals = WebhookIdentityType | 'UNKNOWN' | 'ANONYMOUS_VISITOR' | 'MEMBER' | 'WIX_USER' | 'APP';
|
|
3377
|
+
interface AccountInfo {
|
|
3378
|
+
/**
|
|
3379
|
+
* ID of the Wix account associated with the event.
|
|
3380
|
+
* @format GUID
|
|
3381
|
+
*/
|
|
3382
|
+
accountId?: string | null;
|
|
3383
|
+
/**
|
|
3384
|
+
* ID of the parent Wix account. Only included when accountId belongs to a child account.
|
|
3385
|
+
* @format GUID
|
|
3386
|
+
*/
|
|
3387
|
+
parentAccountId?: string | null;
|
|
3388
|
+
/**
|
|
3389
|
+
* ID of the Wix site associated with the event. Only included when the event is tied to a specific site.
|
|
3390
|
+
* @format GUID
|
|
3391
|
+
*/
|
|
3392
|
+
siteId?: string | null;
|
|
3393
|
+
}
|
|
3394
|
+
/** Get Blog Publications Count Stats request */
|
|
3395
|
+
interface QueryPublicationsCountStatsRequest {
|
|
3396
|
+
/** Start of time range to return, in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date and time format. */
|
|
3397
|
+
rangeStart?: Date | null;
|
|
3398
|
+
/** Non-inclusive end of time range to return, in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date and time format. */
|
|
3399
|
+
rangeEnd?: Date | null;
|
|
3400
|
+
/** Order of the returned results. */
|
|
3401
|
+
order?: QueryPublicationsCountStatsRequestOrderWithLiterals;
|
|
3402
|
+
/** Number of months to include in the response. */
|
|
3403
|
+
months?: number;
|
|
3404
|
+
/**
|
|
3405
|
+
* Language filter
|
|
3550
3406
|
*
|
|
3551
|
-
*
|
|
3407
|
+
* 2-or-4-letter language code in [IETF BCP 47 language tag](https://en.wikipedia.org/wiki/IETF_language_tag) format.
|
|
3408
|
+
* @format LANGUAGE_TAG
|
|
3552
3409
|
*/
|
|
3553
|
-
|
|
3554
|
-
/** Pagination options. */
|
|
3555
|
-
paging?: BlogPaging;
|
|
3410
|
+
language?: string | null;
|
|
3556
3411
|
/**
|
|
3557
|
-
*
|
|
3558
|
-
*
|
|
3412
|
+
* Timezone of the client.
|
|
3413
|
+
* @minLength 3
|
|
3414
|
+
* @maxLength 100
|
|
3415
|
+
*/
|
|
3416
|
+
timeZone?: string | null;
|
|
3417
|
+
}
|
|
3418
|
+
declare enum QueryPublicationsCountStatsRequestOrder {
|
|
3419
|
+
UNKNOWN = "UNKNOWN",
|
|
3420
|
+
OLDEST = "OLDEST",
|
|
3421
|
+
NEWEST = "NEWEST"
|
|
3422
|
+
}
|
|
3423
|
+
/** @enumType */
|
|
3424
|
+
type QueryPublicationsCountStatsRequestOrderWithLiterals = QueryPublicationsCountStatsRequestOrder | 'UNKNOWN' | 'OLDEST' | 'NEWEST';
|
|
3425
|
+
/** Get Blog Publications Count Stats response */
|
|
3426
|
+
interface QueryPublicationsCountStatsResponse {
|
|
3427
|
+
/** Chronologically ordered list of publications. */
|
|
3428
|
+
stats?: PeriodPublicationsCount[];
|
|
3429
|
+
}
|
|
3430
|
+
/** Publications count for a specific time period */
|
|
3431
|
+
interface PeriodPublicationsCount {
|
|
3432
|
+
/** Start of time range in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date and time format. */
|
|
3433
|
+
periodStart?: Date | null;
|
|
3434
|
+
/** Number of posts published during this month. */
|
|
3435
|
+
publicationsCount?: number;
|
|
3436
|
+
}
|
|
3437
|
+
/** Get Blog Post Count Stats request */
|
|
3438
|
+
interface QueryPostCountStatsRequest {
|
|
3439
|
+
/** Start of time range to return, in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date and time format. */
|
|
3440
|
+
rangeStart?: Date | null;
|
|
3441
|
+
/**
|
|
3442
|
+
* Order of returned results.
|
|
3559
3443
|
*
|
|
3560
|
-
*
|
|
3561
|
-
*
|
|
3562
|
-
* @deprecated __Deprecated.__ Use `fieldsets` instead.
|
|
3563
|
-
* This parameter will be removed on June 30, 2023.
|
|
3444
|
+
* - `OLDEST`: posts by date in ascending order.
|
|
3445
|
+
* - `NEWEST`: posts by date in descending order.
|
|
3564
3446
|
*
|
|
3565
|
-
*
|
|
3566
|
-
* @replacedBy fieldsets
|
|
3567
|
-
* @targetRemovalDate 2024-06-30
|
|
3447
|
+
* Default: `OLDEST`
|
|
3568
3448
|
*/
|
|
3569
|
-
|
|
3449
|
+
order?: OrderWithLiterals;
|
|
3450
|
+
/** Number of months to include in response. */
|
|
3451
|
+
months?: number;
|
|
3570
3452
|
/**
|
|
3571
3453
|
* Language filter.
|
|
3572
3454
|
*
|
|
3573
3455
|
* 2-or-4-letter language code in [IETF BCP 47 language tag](https://en.wikipedia.org/wiki/IETF_language_tag) format.
|
|
3574
|
-
* Pass a language to only receive
|
|
3575
|
-
* If omitted, posts in all languages are returned.
|
|
3456
|
+
* Pass a language to only receive the period post count for that specified language.
|
|
3576
3457
|
* @format LANGUAGE_TAG
|
|
3577
3458
|
*/
|
|
3578
3459
|
language?: string | null;
|
|
3579
3460
|
/**
|
|
3580
|
-
*
|
|
3581
|
-
*
|
|
3582
|
-
|
|
3583
|
-
|
|
3584
|
-
|
|
3585
|
-
* List of additional post fields to include in the response. For example, use the `URL` fieldset to retrieve the url field in
|
|
3586
|
-
* the response in addition to the post’s base fields. Base fields don’t include any of the supported fieldset values. By default
|
|
3587
|
-
* only the post’s base fields are returned.
|
|
3588
|
-
* @maxSize 20
|
|
3461
|
+
* Time zone to use when calculating the start of the month.
|
|
3462
|
+
*
|
|
3463
|
+
* [UTC timezone offset](https://en.wikipedia.org/wiki/List_of_UTC_offsets) format. For example, New York time zone is `-05`.
|
|
3464
|
+
* @minLength 3
|
|
3465
|
+
* @maxLength 100
|
|
3589
3466
|
*/
|
|
3590
|
-
|
|
3591
|
-
}
|
|
3592
|
-
declare enum GetPostsSort {
|
|
3593
|
-
/** Ordered by `firstPublishedDate` in descending order with pinned posts first. */
|
|
3594
|
-
FEED = "FEED",
|
|
3595
|
-
/** Ordered by `firstPublishedDate` in ascending order. */
|
|
3596
|
-
PUBLISHED_DATE_ASC = "PUBLISHED_DATE_ASC",
|
|
3597
|
-
/** Ordered by `firstPublishedDate` in descending order. */
|
|
3598
|
-
PUBLISHED_DATE_DESC = "PUBLISHED_DATE_DESC",
|
|
3599
|
-
/** Ordered by total number of views in descending order. */
|
|
3600
|
-
VIEW_COUNT = "VIEW_COUNT",
|
|
3601
|
-
/** Ordered by total number of likes in descending order. */
|
|
3602
|
-
LIKE_COUNT = "LIKE_COUNT",
|
|
3603
|
-
/** Ordered by `title` in ascending order. */
|
|
3604
|
-
TITLE_ASC = "TITLE_ASC",
|
|
3605
|
-
/** Ordered by `title` in descending order. */
|
|
3606
|
-
TITLE_DESC = "TITLE_DESC"
|
|
3467
|
+
timeZone?: string | null;
|
|
3607
3468
|
}
|
|
3608
|
-
|
|
3609
|
-
type GetPostsSortWithLiterals = GetPostsSort | 'FEED' | 'PUBLISHED_DATE_ASC' | 'PUBLISHED_DATE_DESC' | 'VIEW_COUNT' | 'LIKE_COUNT' | 'TITLE_ASC' | 'TITLE_DESC';
|
|
3610
|
-
declare enum PostFieldField {
|
|
3469
|
+
declare enum Order {
|
|
3611
3470
|
UNKNOWN = "UNKNOWN",
|
|
3612
|
-
|
|
3613
|
-
|
|
3614
|
-
/** Includes post content text string when present. */
|
|
3615
|
-
CONTENT_TEXT = "CONTENT_TEXT",
|
|
3616
|
-
/** Includes post metrics when present. */
|
|
3617
|
-
METRICS = "METRICS",
|
|
3618
|
-
/** Includes SEO data. */
|
|
3619
|
-
SEO = "SEO",
|
|
3620
|
-
/** Includes post owner's contact ID. */
|
|
3621
|
-
CONTACT_ID = "CONTACT_ID",
|
|
3622
|
-
/** Includes post rich content. */
|
|
3623
|
-
RICH_CONTENT = "RICH_CONTENT",
|
|
3624
|
-
/** Includes post reference ID field. */
|
|
3625
|
-
REFERENCE_ID = "REFERENCE_ID"
|
|
3471
|
+
OLDEST = "OLDEST",
|
|
3472
|
+
NEWEST = "NEWEST"
|
|
3626
3473
|
}
|
|
3627
3474
|
/** @enumType */
|
|
3628
|
-
type
|
|
3629
|
-
|
|
3630
|
-
|
|
3631
|
-
|
|
3632
|
-
|
|
3633
|
-
metaData?: MetaData;
|
|
3475
|
+
type OrderWithLiterals = Order | 'UNKNOWN' | 'OLDEST' | 'NEWEST';
|
|
3476
|
+
/** Get Blog Post Count Stats response */
|
|
3477
|
+
interface QueryPostCountStatsResponse {
|
|
3478
|
+
/** List of published post counts by month. */
|
|
3479
|
+
stats?: PeriodPostCount[];
|
|
3634
3480
|
}
|
|
3635
|
-
|
|
3636
|
-
|
|
3637
|
-
|
|
3481
|
+
/** Post count for a specific time period */
|
|
3482
|
+
interface PeriodPostCount {
|
|
3483
|
+
/** Start of time range in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date and time format. */
|
|
3484
|
+
periodStart?: Date | null;
|
|
3485
|
+
/** Number of posts published during this month. */
|
|
3486
|
+
postCount?: number;
|
|
3638
3487
|
}
|
|
3639
|
-
interface
|
|
3488
|
+
interface GetTotalPublicationsRequest {
|
|
3640
3489
|
/**
|
|
3641
|
-
*
|
|
3642
|
-
* @
|
|
3490
|
+
* Language filter
|
|
3491
|
+
* @minLength 2
|
|
3492
|
+
* @format LANGUAGE_TAG
|
|
3643
3493
|
*/
|
|
3644
|
-
|
|
3494
|
+
language?: string | null;
|
|
3645
3495
|
}
|
|
3646
|
-
interface
|
|
3496
|
+
interface GetTotalPublicationsResponse {
|
|
3497
|
+
/** Total amount of publications. */
|
|
3498
|
+
total?: number;
|
|
3499
|
+
}
|
|
3500
|
+
interface GetTotalPostsRequest {
|
|
3647
3501
|
/**
|
|
3648
|
-
*
|
|
3649
|
-
*
|
|
3502
|
+
* Language filter.
|
|
3503
|
+
*
|
|
3504
|
+
* 2-or-4-letter language code in [IETF BCP 47 language tag](https://en.wikipedia.org/wiki/IETF_language_tag) format.
|
|
3505
|
+
* Pass a language to receive the total amount of posts in that specified language.
|
|
3506
|
+
* @format LANGUAGE_TAG
|
|
3650
3507
|
*/
|
|
3651
|
-
|
|
3508
|
+
language?: string | null;
|
|
3652
3509
|
}
|
|
3653
|
-
interface
|
|
3654
|
-
/**
|
|
3655
|
-
|
|
3510
|
+
interface GetTotalPostsResponse {
|
|
3511
|
+
/** Total amount of published posts. */
|
|
3512
|
+
total?: number;
|
|
3513
|
+
}
|
|
3514
|
+
interface GetTotalLikesPerMemberRequest {
|
|
3515
|
+
/**
|
|
3516
|
+
* Member ID.
|
|
3517
|
+
* @format GUID
|
|
3518
|
+
*/
|
|
3519
|
+
memberId?: string;
|
|
3520
|
+
}
|
|
3521
|
+
interface GetTotalLikesPerMemberResponse {
|
|
3522
|
+
/** The total number of likes of the member. */
|
|
3523
|
+
total?: number;
|
|
3656
3524
|
}
|
|
3657
3525
|
interface PostCountersUpdated extends PostCountersUpdatedInitiatorOneOf {
|
|
3658
3526
|
/**
|
|
@@ -3723,6 +3591,25 @@ interface GetPostRequest {
|
|
|
3723
3591
|
*/
|
|
3724
3592
|
fieldsets?: PostFieldFieldWithLiterals[];
|
|
3725
3593
|
}
|
|
3594
|
+
declare enum PostFieldField {
|
|
3595
|
+
UNKNOWN = "UNKNOWN",
|
|
3596
|
+
/** Includes post URL when present. */
|
|
3597
|
+
URL = "URL",
|
|
3598
|
+
/** Includes post content text string when present. */
|
|
3599
|
+
CONTENT_TEXT = "CONTENT_TEXT",
|
|
3600
|
+
/** Includes post metrics when present. */
|
|
3601
|
+
METRICS = "METRICS",
|
|
3602
|
+
/** Includes SEO data. */
|
|
3603
|
+
SEO = "SEO",
|
|
3604
|
+
/** Includes post owner's contact ID. */
|
|
3605
|
+
CONTACT_ID = "CONTACT_ID",
|
|
3606
|
+
/** Includes post rich content. */
|
|
3607
|
+
RICH_CONTENT = "RICH_CONTENT",
|
|
3608
|
+
/** Includes post reference ID field. */
|
|
3609
|
+
REFERENCE_ID = "REFERENCE_ID"
|
|
3610
|
+
}
|
|
3611
|
+
/** @enumType */
|
|
3612
|
+
type PostFieldFieldWithLiterals = PostFieldField | 'UNKNOWN' | 'URL' | 'CONTENT_TEXT' | 'METRICS' | 'SEO' | 'CONTACT_ID' | 'RICH_CONTENT' | 'REFERENCE_ID';
|
|
3726
3613
|
interface GetPostResponse {
|
|
3727
3614
|
/** Retrieved post info. */
|
|
3728
3615
|
post?: Post;
|
|
@@ -3815,6 +3702,24 @@ interface ListPostsRequest {
|
|
|
3815
3702
|
*/
|
|
3816
3703
|
fieldsets?: PostFieldFieldWithLiterals[];
|
|
3817
3704
|
}
|
|
3705
|
+
declare enum GetPostsSort {
|
|
3706
|
+
/** Ordered by `firstPublishedDate` in descending order with pinned posts first. */
|
|
3707
|
+
FEED = "FEED",
|
|
3708
|
+
/** Ordered by `firstPublishedDate` in ascending order. */
|
|
3709
|
+
PUBLISHED_DATE_ASC = "PUBLISHED_DATE_ASC",
|
|
3710
|
+
/** Ordered by `firstPublishedDate` in descending order. */
|
|
3711
|
+
PUBLISHED_DATE_DESC = "PUBLISHED_DATE_DESC",
|
|
3712
|
+
/** Ordered by total number of views in descending order. */
|
|
3713
|
+
VIEW_COUNT = "VIEW_COUNT",
|
|
3714
|
+
/** Ordered by total number of likes in descending order. */
|
|
3715
|
+
LIKE_COUNT = "LIKE_COUNT",
|
|
3716
|
+
/** Ordered by `title` in ascending order. */
|
|
3717
|
+
TITLE_ASC = "TITLE_ASC",
|
|
3718
|
+
/** Ordered by `title` in descending order. */
|
|
3719
|
+
TITLE_DESC = "TITLE_DESC"
|
|
3720
|
+
}
|
|
3721
|
+
/** @enumType */
|
|
3722
|
+
type GetPostsSortWithLiterals = GetPostsSort | 'FEED' | 'PUBLISHED_DATE_ASC' | 'PUBLISHED_DATE_DESC' | 'VIEW_COUNT' | 'LIKE_COUNT' | 'TITLE_ASC' | 'TITLE_DESC';
|
|
3818
3723
|
interface ListPostsResponse {
|
|
3819
3724
|
/** List of retrieved posts. */
|
|
3820
3725
|
posts?: Post[];
|
|
@@ -4164,6 +4069,121 @@ interface PostCount {
|
|
|
4164
4069
|
/** Number of posts. */
|
|
4165
4070
|
postCount?: number;
|
|
4166
4071
|
}
|
|
4072
|
+
interface ListDemoPostsRequest {
|
|
4073
|
+
/**
|
|
4074
|
+
* Whether to return only featured posts.
|
|
4075
|
+
*
|
|
4076
|
+
* Default: `false`
|
|
4077
|
+
*/
|
|
4078
|
+
featured?: boolean;
|
|
4079
|
+
/**
|
|
4080
|
+
* Hashtag filter.
|
|
4081
|
+
*
|
|
4082
|
+
* Pass an array of hashtags to return only posts containing any of the provided hashtags.
|
|
4083
|
+
* If omitted, all posts with or without hashtags are returned.
|
|
4084
|
+
* @maxSize 100
|
|
4085
|
+
* @maxLength 100
|
|
4086
|
+
*/
|
|
4087
|
+
hashtags?: string[];
|
|
4088
|
+
/**
|
|
4089
|
+
* Category filter.
|
|
4090
|
+
*
|
|
4091
|
+
* Pass an array of category IDs to return only posts with any of the provided categories.
|
|
4092
|
+
* If omitted, all posts with or without associated categories are returned.
|
|
4093
|
+
* @maxSize 50
|
|
4094
|
+
* @format GUID
|
|
4095
|
+
*/
|
|
4096
|
+
categoryIds?: string[];
|
|
4097
|
+
/**
|
|
4098
|
+
* Tag filter.
|
|
4099
|
+
*
|
|
4100
|
+
* Pass an array of tag IDs to return only posts with any of the provided tags.
|
|
4101
|
+
* If omitted, all posts with or without tags are returned.
|
|
4102
|
+
* @maxSize 50
|
|
4103
|
+
* @format GUID
|
|
4104
|
+
*/
|
|
4105
|
+
tagIds?: string[];
|
|
4106
|
+
/**
|
|
4107
|
+
* Sorting options.
|
|
4108
|
+
*
|
|
4109
|
+
* - `FEED`: Ordered by `firstPublishedDate` in descending order with pinned posts first.
|
|
4110
|
+
* - `VIEW_COUNT`: Ordered by total number of views in descending order.
|
|
4111
|
+
* - `LIKE_COUNT`: Ordered by total number of likes in descending order.
|
|
4112
|
+
* - `PUBLISHED_DATE_ASC`: Ordered by `firstPublishedDate` in ascending order.
|
|
4113
|
+
* - `PUBLISHED_DATE_DESC`: Ordered by `firstPublishedDate` in descending order.
|
|
4114
|
+
* - `TITLE_ASC`: Ordered by `title` in ascending order.
|
|
4115
|
+
* - `TITLE_DESC`: Ordered by `title` in descending order.
|
|
4116
|
+
* - `RATING`: reserved for internal use.
|
|
4117
|
+
*
|
|
4118
|
+
* Default: `FEED`
|
|
4119
|
+
*/
|
|
4120
|
+
sort?: GetPostsSortWithLiterals;
|
|
4121
|
+
/** Pagination options. */
|
|
4122
|
+
paging?: BlogPaging;
|
|
4123
|
+
/**
|
|
4124
|
+
* __Deprecated.__ Use `fieldsets` instead.
|
|
4125
|
+
* This parameter will be removed on June 30, 2023.
|
|
4126
|
+
*
|
|
4127
|
+
* List of post fields to be included in the response.
|
|
4128
|
+
* @maxSize 20
|
|
4129
|
+
* @deprecated __Deprecated.__ Use `fieldsets` instead.
|
|
4130
|
+
* This parameter will be removed on June 30, 2023.
|
|
4131
|
+
*
|
|
4132
|
+
* List of post fields to be included in the response.
|
|
4133
|
+
* @replacedBy fieldsets
|
|
4134
|
+
* @targetRemovalDate 2024-06-30
|
|
4135
|
+
*/
|
|
4136
|
+
fieldsToInclude?: PostFieldFieldWithLiterals[];
|
|
4137
|
+
/**
|
|
4138
|
+
* Language filter.
|
|
4139
|
+
*
|
|
4140
|
+
* 2-or-4-letter language code in [IETF BCP 47 language tag](https://en.wikipedia.org/wiki/IETF_language_tag) format.
|
|
4141
|
+
* Pass a language to only receive posts that are in that language.
|
|
4142
|
+
* If omitted, posts in all languages are returned.
|
|
4143
|
+
* @format LANGUAGE_TAG
|
|
4144
|
+
*/
|
|
4145
|
+
language?: string | null;
|
|
4146
|
+
/**
|
|
4147
|
+
* Post owner's member ID.
|
|
4148
|
+
* @format GUID
|
|
4149
|
+
*/
|
|
4150
|
+
memberId?: string | null;
|
|
4151
|
+
/**
|
|
4152
|
+
* List of additional post fields to include in the response. For example, use the `URL` fieldset to retrieve the url field in
|
|
4153
|
+
* the response in addition to the post’s base fields. Base fields don’t include any of the supported fieldset values. By default
|
|
4154
|
+
* only the post’s base fields are returned.
|
|
4155
|
+
* @maxSize 20
|
|
4156
|
+
*/
|
|
4157
|
+
fieldsets?: PostFieldFieldWithLiterals[];
|
|
4158
|
+
}
|
|
4159
|
+
interface ListDemoPostsResponse {
|
|
4160
|
+
/** List of posts. */
|
|
4161
|
+
posts?: Post[];
|
|
4162
|
+
/** Details on the paged set of results returned. */
|
|
4163
|
+
metaData?: MetaData;
|
|
4164
|
+
}
|
|
4165
|
+
interface ConvertDraftJsToRichContentRequest {
|
|
4166
|
+
/** DraftJs content to convert to Rich content. */
|
|
4167
|
+
content?: Record<string, any> | null;
|
|
4168
|
+
}
|
|
4169
|
+
interface ConvertDraftJsToRichContentResponse {
|
|
4170
|
+
/**
|
|
4171
|
+
* Rich content converted from DraftJs content.
|
|
4172
|
+
* @maxLength 2000000
|
|
4173
|
+
*/
|
|
4174
|
+
richContent?: string;
|
|
4175
|
+
}
|
|
4176
|
+
interface ConvertRichContentToDraftJsRequest {
|
|
4177
|
+
/**
|
|
4178
|
+
* Rich content to convert to DraftJs content.
|
|
4179
|
+
* @maxLength 2000000
|
|
4180
|
+
*/
|
|
4181
|
+
richContent?: string;
|
|
4182
|
+
}
|
|
4183
|
+
interface ConvertRichContentToDraftJsResponse {
|
|
4184
|
+
/** DraftJs content converted from Rich content. */
|
|
4185
|
+
content?: Record<string, any> | null;
|
|
4186
|
+
}
|
|
4167
4187
|
|
|
4168
4188
|
type __PublicMethodMetaInfo<K = string, M = unknown, T = unknown, S = unknown, Q = unknown, R = unknown> = {
|
|
4169
4189
|
getUrl: (context: any) => string;
|
|
@@ -4189,4 +4209,4 @@ declare function getPostMetrics(): __PublicMethodMetaInfo<'GET', {
|
|
|
4189
4209
|
postId: string;
|
|
4190
4210
|
}, GetPostMetricsRequest$1, GetPostMetricsRequest, GetPostMetricsResponse$1, GetPostMetricsResponse>;
|
|
4191
4211
|
|
|
4192
|
-
export { type AccountInfo as AccountInfoOriginal, type ActionEvent as ActionEventOriginal, Alignment as AlignmentOriginal, type AlignmentWithLiterals as AlignmentWithLiteralsOriginal, type AnchorData as AnchorDataOriginal, type AppEmbedDataAppDataOneOf as AppEmbedDataAppDataOneOfOriginal, type AppEmbedData as AppEmbedDataOriginal, AppType as AppTypeOriginal, type AppTypeWithLiterals as AppTypeWithLiteralsOriginal, AspectRatio as AspectRatioOriginal, type AspectRatioWithLiterals as AspectRatioWithLiteralsOriginal, type AudioData as AudioDataOriginal, type Backdrop as BackdropOriginal, BackdropType as BackdropTypeOriginal, type BackdropTypeWithLiterals as BackdropTypeWithLiteralsOriginal, type BackgroundGradient as BackgroundGradientOriginal, type BackgroundImage as BackgroundImageOriginal, type Background as BackgroundOriginal, BackgroundType as BackgroundTypeOriginal, type BackgroundTypeWithLiterals as BackgroundTypeWithLiteralsOriginal, BannerOrigin as BannerOriginOriginal, type BannerOriginWithLiterals as BannerOriginWithLiteralsOriginal, type Banner as BannerOriginal, type BlockquoteData as BlockquoteDataOriginal, type BlogPaging as BlogPagingOriginal, type BookingData as BookingDataOriginal, type BorderColors as BorderColorsOriginal, type Border as BorderOriginal, type BorderWidths as BorderWidthsOriginal, type BulkDeletePostsRequest as BulkDeletePostsRequestOriginal, type BulkDeletePostsResponse as BulkDeletePostsResponseOriginal, type BulkGetPostReactionsRequest as BulkGetPostReactionsRequestOriginal, type BulkGetPostReactionsResponse as BulkGetPostReactionsResponseOriginal, type BulletedListData as BulletedListDataOriginal, type ButtonData as ButtonDataOriginal, ButtonDataType as ButtonDataTypeOriginal, type ButtonDataTypeWithLiterals as ButtonDataTypeWithLiteralsOriginal, type ButtonStyles as ButtonStylesOriginal, type CaptionData as CaptionDataOriginal, type CardDataBackground as CardDataBackgroundOriginal, CardDataBackgroundType as CardDataBackgroundTypeOriginal, type CardDataBackgroundTypeWithLiterals as CardDataBackgroundTypeWithLiteralsOriginal, type CardData as CardDataOriginal, type CardStyles as CardStylesOriginal, type Category as CategoryOriginal, type CategoryTranslation as CategoryTranslationOriginal, type CellStyle as CellStyleOriginal, type CodeBlockData as CodeBlockDataOriginal, type CollapsibleListData as CollapsibleListDataOriginal, type ColorData as ColorDataOriginal, type Colors as ColorsOriginal, 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 ListPostsArchiveRequest as ListPostsArchiveRequestOriginal, type ListPostsArchiveResponse as ListPostsArchiveResponseOriginal, type ListPostsRequest as ListPostsRequestOriginal, type ListPostsResponse as ListPostsResponseOriginal, ListStyle as ListStyleOriginal, type ListStyleWithLiterals as ListStyleWithLiteralsOriginal, type ListTemplatesRequest as ListTemplatesRequestOriginal, type ListTemplatesResponse as ListTemplatesResponseOriginal, type ListValue as ListValueOriginal, type MapData as MapDataOriginal, type MapSettings as MapSettingsOriginal, MapType as MapTypeOriginal, type MapTypeWithLiterals as MapTypeWithLiteralsOriginal, type MediaMediaOneOf as MediaMediaOneOfOriginal, type Media as MediaOriginal, type MentionData as MentionDataOriginal, type MessageEnvelope as MessageEnvelopeOriginal, type MetaData as MetaDataOriginal, type Metadata as MetadataOriginal, type Metrics as MetricsOriginal, type ModerationDetails as ModerationDetailsOriginal, ModerationStatusStatus as ModerationStatusStatusOriginal, type ModerationStatusStatusWithLiterals as ModerationStatusStatusWithLiteralsOriginal, type NodeDataOneOf as NodeDataOneOfOriginal, type Node as NodeOriginal, type NodeStyle as NodeStyleOriginal, NodeType as NodeTypeOriginal, type NodeTypeWithLiterals as NodeTypeWithLiteralsOriginal, NullValue as NullValueOriginal, type NullValueWithLiterals as NullValueWithLiteralsOriginal, type Oembed as OembedOriginal, type OptionDesign as OptionDesignOriginal, type OptionLayout as OptionLayoutOriginal, type Option as OptionOriginal, Order as OrderOriginal, type OrderWithLiterals as OrderWithLiteralsOriginal, type OrderedListData as OrderedListDataOriginal, Orientation as OrientationOriginal, type OrientationWithLiterals as OrientationWithLiteralsOriginal, Origin as OriginOriginal, type OriginWithLiterals as OriginWithLiteralsOriginal, type PDFSettings as PDFSettingsOriginal, type PageUrl as PageUrlOriginal, type PagingMetadataV2 as PagingMetadataV2Original, type Paging as PagingOriginal, type ParagraphData as ParagraphDataOriginal, type PeriodPostCount as PeriodPostCountOriginal, type PeriodPublicationsCount as PeriodPublicationsCountOriginal, type Permissions as PermissionsOriginal, type PinPostRequest as PinPostRequestOriginal, type PinPostResponse as PinPostResponseOriginal, Placement as PlacementOriginal, type PlacementWithLiterals as PlacementWithLiteralsOriginal, type PlatformQuery as PlatformQueryOriginal, type PlatformQueryPagingMethodOneOf as PlatformQueryPagingMethodOneOfOriginal, type PlaybackOptions as PlaybackOptionsOriginal, PluginContainerDataAlignment as PluginContainerDataAlignmentOriginal, type PluginContainerDataAlignmentWithLiterals as PluginContainerDataAlignmentWithLiteralsOriginal, type PluginContainerData as PluginContainerDataOriginal, type PluginContainerDataWidthDataOneOf as PluginContainerDataWidthDataOneOfOriginal, type PluginContainerDataWidth as PluginContainerDataWidthOriginal, type PollDataLayout as PollDataLayoutOriginal, type PollData as PollDataOriginal, type PollDesignBackgroundBackgroundOneOf as PollDesignBackgroundBackgroundOneOfOriginal, type PollDesignBackground as PollDesignBackgroundOriginal, PollDesignBackgroundType as PollDesignBackgroundTypeOriginal, type PollDesignBackgroundTypeWithLiterals as PollDesignBackgroundTypeWithLiteralsOriginal, type PollDesign as PollDesignOriginal, PollLayoutDirection as PollLayoutDirectionOriginal, type PollLayoutDirectionWithLiterals as PollLayoutDirectionWithLiteralsOriginal, type PollLayout as PollLayoutOriginal, PollLayoutType as PollLayoutTypeOriginal, type PollLayoutTypeWithLiterals as PollLayoutTypeWithLiteralsOriginal, type Poll as PollOriginal, type PollSettings as PollSettingsOriginal, Position as PositionOriginal, type PositionWithLiterals as PositionWithLiteralsOriginal, type PostCategoriesUpdated as PostCategoriesUpdatedOriginal, type PostCountInfo as PostCountInfoOriginal, type PostCount as PostCountOriginal, type PostCountPerMonth as PostCountPerMonthOriginal, type PostCountersUpdatedInitiatorOneOf as PostCountersUpdatedInitiatorOneOfOriginal, type PostCountersUpdated as PostCountersUpdatedOriginal, PostFieldField as PostFieldFieldOriginal, type PostFieldFieldWithLiterals as PostFieldFieldWithLiteralsOriginal, type PostLikedInitiatorOneOf as PostLikedInitiatorOneOfOriginal, type PostLiked as PostLikedOriginal, type Post as PostOriginal, type PostOwnerChanged as PostOwnerChangedOriginal, type PostTagsUpdated as PostTagsUpdatedOriginal, type PostTranslation as PostTranslationOriginal, type PostUnlikedInitiatorOneOf as PostUnlikedInitiatorOneOfOriginal, type PostUnliked as PostUnlikedOriginal, type PricingData as PricingDataOriginal, type QueryPostCountStatsRequest as QueryPostCountStatsRequestOriginal, type QueryPostCountStatsResponse as QueryPostCountStatsResponseOriginal, type QueryPostsRequest as QueryPostsRequestOriginal, type QueryPostsResponse as QueryPostsResponseOriginal, QueryPublicationsCountStatsRequestOrder as QueryPublicationsCountStatsRequestOrderOriginal, type QueryPublicationsCountStatsRequestOrderWithLiterals as QueryPublicationsCountStatsRequestOrderWithLiteralsOriginal, type QueryPublicationsCountStatsRequest as QueryPublicationsCountStatsRequestOriginal, type QueryPublicationsCountStatsResponse as QueryPublicationsCountStatsResponseOriginal, type Reactions as ReactionsOriginal, type Rel as RelOriginal, Resizing as ResizingOriginal, type ResizingWithLiterals as ResizingWithLiteralsOriginal, ResponsivenessBehaviour as ResponsivenessBehaviourOriginal, type ResponsivenessBehaviourWithLiterals as ResponsivenessBehaviourWithLiteralsOriginal, type RestoreInfo as RestoreInfoOriginal, type RibbonStyles as RibbonStylesOriginal, type RichContent as RichContentOriginal, Scaling as ScalingOriginal, type ScalingWithLiterals as ScalingWithLiteralsOriginal, type ScheduledPostPublished as ScheduledPostPublishedOriginal, type SeoSchema as SeoSchemaOriginal, type Settings as SettingsOriginal, type ShapeData as ShapeDataOriginal, type ShapeDataStyles as ShapeDataStylesOriginal, type SmartBlockCellData as SmartBlockCellDataOriginal, type SmartBlockData as SmartBlockDataOriginal, SmartBlockDataType as SmartBlockDataTypeOriginal, type SmartBlockDataTypeWithLiterals as SmartBlockDataTypeWithLiteralsOriginal, SortOrder as SortOrderOriginal, type SortOrderWithLiterals as SortOrderWithLiteralsOriginal, type Sorting as SortingOriginal, Source as SourceOriginal, type SourceWithLiterals as SourceWithLiteralsOriginal, type SpoilerData as SpoilerDataOriginal, type Spoiler as SpoilerOriginal, Status as StatusOriginal, type StatusWithLiterals as StatusWithLiteralsOriginal, type Stop as StopOriginal, type StylesBorder as StylesBorderOriginal, type Styles as StylesOriginal, StylesPosition as StylesPositionOriginal, type StylesPositionWithLiterals as StylesPositionWithLiteralsOriginal, type TableCellData as TableCellDataOriginal, type TableData as TableDataOriginal, type Tag as TagOriginal, Target as TargetOriginal, type TargetWithLiterals as TargetWithLiteralsOriginal, TextAlignment as TextAlignmentOriginal, type TextAlignmentWithLiterals as TextAlignmentWithLiteralsOriginal, type TextData as TextDataOriginal, type TextNodeStyle as TextNodeStyleOriginal, type TextStyle as TextStyleOriginal, ThumbnailsAlignment as ThumbnailsAlignmentOriginal, type ThumbnailsAlignmentWithLiterals as ThumbnailsAlignmentWithLiteralsOriginal, type Thumbnails as ThumbnailsOriginal, type TocData as TocDataOriginal, Type as TypeOriginal, type TypeWithLiterals as TypeWithLiteralsOriginal, type UnlikePostRequest as UnlikePostRequestOriginal, type UnlikePostResponse as UnlikePostResponseOriginal, type UnpinPostRequest as UnpinPostRequestOriginal, type UnpinPostResponse as UnpinPostResponseOriginal, type V1Media as V1MediaOriginal, VerticalAlignmentAlignment as VerticalAlignmentAlignmentOriginal, type VerticalAlignmentAlignmentWithLiterals as VerticalAlignmentAlignmentWithLiteralsOriginal, VerticalAlignment as VerticalAlignmentOriginal, type VerticalAlignmentWithLiterals as VerticalAlignmentWithLiteralsOriginal, type VideoData as VideoDataOriginal, type Video as VideoOriginal, type VideoResolution as VideoResolutionOriginal, type VideoV2 as VideoV2Original, ViewMode as ViewModeOriginal, type ViewModeWithLiterals as ViewModeWithLiteralsOriginal, type ViewPostRequest as ViewPostRequestOriginal, type ViewPostResponse as ViewPostResponseOriginal, ViewRole as ViewRoleOriginal, type ViewRoleWithLiterals as ViewRoleWithLiteralsOriginal, VoteRole as VoteRoleOriginal, type VoteRoleWithLiterals as VoteRoleWithLiteralsOriginal, WebhookIdentityType as WebhookIdentityTypeOriginal, type WebhookIdentityTypeWithLiterals as WebhookIdentityTypeWithLiteralsOriginal, Width as WidthOriginal, WidthType as WidthTypeOriginal, type WidthTypeWithLiterals as WidthTypeWithLiteralsOriginal, type WidthWithLiterals as WidthWithLiteralsOriginal, type WixMedia as WixMediaOriginal, type __PublicMethodMetaInfo, getPost, getPostBySlug, getPostMetrics, getTotalPosts, listPosts, queryPostCountStats, queryPosts };
|
|
4212
|
+
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 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 ListPostsArchiveRequest as ListPostsArchiveRequestOriginal, type ListPostsArchiveResponse as ListPostsArchiveResponseOriginal, type ListPostsRequest as ListPostsRequestOriginal, type ListPostsResponse as ListPostsResponseOriginal, ListStyle as ListStyleOriginal, type ListStyleWithLiterals as ListStyleWithLiteralsOriginal, type ListTemplatesRequest as ListTemplatesRequestOriginal, type ListTemplatesResponse as ListTemplatesResponseOriginal, type ListValue as ListValueOriginal, type MapData as MapDataOriginal, type MapSettings as MapSettingsOriginal, MapType as MapTypeOriginal, type MapTypeWithLiterals as MapTypeWithLiteralsOriginal, type MediaMediaOneOf as MediaMediaOneOfOriginal, type Media as MediaOriginal, type MentionData as MentionDataOriginal, type MessageEnvelope as MessageEnvelopeOriginal, type MetaData as MetaDataOriginal, type Metadata as MetadataOriginal, type Metrics as MetricsOriginal, type ModerationDetails as ModerationDetailsOriginal, ModerationStatusStatus as ModerationStatusStatusOriginal, type ModerationStatusStatusWithLiterals as ModerationStatusStatusWithLiteralsOriginal, type NodeDataOneOf as NodeDataOneOfOriginal, type Node as NodeOriginal, type NodeStyle as NodeStyleOriginal, NodeType as NodeTypeOriginal, type NodeTypeWithLiterals as NodeTypeWithLiteralsOriginal, NullValue as NullValueOriginal, type NullValueWithLiterals as NullValueWithLiteralsOriginal, type Oembed as OembedOriginal, type OptionDesign as OptionDesignOriginal, type OptionLayout as OptionLayoutOriginal, type Option as OptionOriginal, Order as OrderOriginal, type OrderWithLiterals as OrderWithLiteralsOriginal, type OrderedListData as OrderedListDataOriginal, Orientation as OrientationOriginal, type OrientationWithLiterals as OrientationWithLiteralsOriginal, Origin as OriginOriginal, type OriginWithLiterals as OriginWithLiteralsOriginal, type PDFSettings as PDFSettingsOriginal, type PageUrl as PageUrlOriginal, type PagingMetadataV2 as PagingMetadataV2Original, type Paging as PagingOriginal, type ParagraphData as ParagraphDataOriginal, type PeriodPostCount as PeriodPostCountOriginal, type PeriodPublicationsCount as PeriodPublicationsCountOriginal, type Permissions as PermissionsOriginal, type PinPostRequest as PinPostRequestOriginal, type PinPostResponse as PinPostResponseOriginal, Placement as PlacementOriginal, type PlacementWithLiterals as PlacementWithLiteralsOriginal, type PlatformQuery as PlatformQueryOriginal, type PlatformQueryPagingMethodOneOf as PlatformQueryPagingMethodOneOfOriginal, type PlaybackOptions as PlaybackOptionsOriginal, PluginContainerDataAlignment as PluginContainerDataAlignmentOriginal, type PluginContainerDataAlignmentWithLiterals as PluginContainerDataAlignmentWithLiteralsOriginal, type PluginContainerData as PluginContainerDataOriginal, type PluginContainerDataWidthDataOneOf as PluginContainerDataWidthDataOneOfOriginal, type PluginContainerDataWidth as PluginContainerDataWidthOriginal, type PollDataLayout as PollDataLayoutOriginal, type PollData as PollDataOriginal, type PollDesignBackgroundBackgroundOneOf as PollDesignBackgroundBackgroundOneOfOriginal, type PollDesignBackground as PollDesignBackgroundOriginal, PollDesignBackgroundType as PollDesignBackgroundTypeOriginal, type PollDesignBackgroundTypeWithLiterals as PollDesignBackgroundTypeWithLiteralsOriginal, type PollDesign as PollDesignOriginal, PollLayoutDirection as PollLayoutDirectionOriginal, type PollLayoutDirectionWithLiterals as PollLayoutDirectionWithLiteralsOriginal, type PollLayout as PollLayoutOriginal, PollLayoutType as PollLayoutTypeOriginal, type PollLayoutTypeWithLiterals as PollLayoutTypeWithLiteralsOriginal, type Poll as PollOriginal, type PollSettings as PollSettingsOriginal, Position as PositionOriginal, type PositionWithLiterals as PositionWithLiteralsOriginal, type PostCategoriesUpdated as PostCategoriesUpdatedOriginal, type PostCountInfo as PostCountInfoOriginal, type PostCount as PostCountOriginal, type PostCountPerMonth as PostCountPerMonthOriginal, type PostCountersUpdatedInitiatorOneOf as PostCountersUpdatedInitiatorOneOfOriginal, type PostCountersUpdated as PostCountersUpdatedOriginal, PostFieldField as PostFieldFieldOriginal, type PostFieldFieldWithLiterals as PostFieldFieldWithLiteralsOriginal, type PostLikedInitiatorOneOf as PostLikedInitiatorOneOfOriginal, type PostLiked as PostLikedOriginal, type Post as PostOriginal, type PostOwnerChanged as PostOwnerChangedOriginal, type PostTagsUpdated as PostTagsUpdatedOriginal, type PostTranslation as PostTranslationOriginal, type PostUnlikedInitiatorOneOf as PostUnlikedInitiatorOneOfOriginal, type PostUnliked as PostUnlikedOriginal, type PricingData as PricingDataOriginal, type QueryPostCountStatsRequest as QueryPostCountStatsRequestOriginal, type QueryPostCountStatsResponse as QueryPostCountStatsResponseOriginal, type QueryPostsRequest as QueryPostsRequestOriginal, type QueryPostsResponse as QueryPostsResponseOriginal, QueryPublicationsCountStatsRequestOrder as QueryPublicationsCountStatsRequestOrderOriginal, type QueryPublicationsCountStatsRequestOrderWithLiterals as QueryPublicationsCountStatsRequestOrderWithLiteralsOriginal, type QueryPublicationsCountStatsRequest as QueryPublicationsCountStatsRequestOriginal, type QueryPublicationsCountStatsResponse as QueryPublicationsCountStatsResponseOriginal, type Reactions as ReactionsOriginal, type Rel as RelOriginal, Resizing as ResizingOriginal, type ResizingWithLiterals as ResizingWithLiteralsOriginal, ResponsivenessBehaviour as ResponsivenessBehaviourOriginal, type ResponsivenessBehaviourWithLiterals as ResponsivenessBehaviourWithLiteralsOriginal, type RestoreInfo as RestoreInfoOriginal, type RibbonStyles as RibbonStylesOriginal, type RichContent as RichContentOriginal, Scaling as ScalingOriginal, type ScalingWithLiterals as ScalingWithLiteralsOriginal, type ScheduledPostPublished as ScheduledPostPublishedOriginal, type SeoSchema as SeoSchemaOriginal, type Settings as SettingsOriginal, type ShapeData as ShapeDataOriginal, type ShapeDataStyles as ShapeDataStylesOriginal, type SmartBlockCellData as SmartBlockCellDataOriginal, type SmartBlockData as SmartBlockDataOriginal, SmartBlockDataType as SmartBlockDataTypeOriginal, type SmartBlockDataTypeWithLiterals as SmartBlockDataTypeWithLiteralsOriginal, SortOrder as SortOrderOriginal, type SortOrderWithLiterals as SortOrderWithLiteralsOriginal, type Sorting as SortingOriginal, Source as SourceOriginal, type SourceWithLiterals as SourceWithLiteralsOriginal, type SpoilerData as SpoilerDataOriginal, type Spoiler as SpoilerOriginal, Status as StatusOriginal, type StatusWithLiterals as StatusWithLiteralsOriginal, type Stop as StopOriginal, type StylesBorder as StylesBorderOriginal, type Styles as StylesOriginal, StylesPosition as StylesPositionOriginal, type StylesPositionWithLiterals as StylesPositionWithLiteralsOriginal, type TableCellData as TableCellDataOriginal, type TableData as TableDataOriginal, type Tag as TagOriginal, Target as TargetOriginal, type TargetWithLiterals as TargetWithLiteralsOriginal, TextAlignment as TextAlignmentOriginal, type TextAlignmentWithLiterals as TextAlignmentWithLiteralsOriginal, type TextData as TextDataOriginal, type TextNodeStyle as TextNodeStyleOriginal, type TextStyle as TextStyleOriginal, ThumbnailsAlignment as ThumbnailsAlignmentOriginal, type ThumbnailsAlignmentWithLiterals as ThumbnailsAlignmentWithLiteralsOriginal, type Thumbnails as ThumbnailsOriginal, type TocData as TocDataOriginal, Type as TypeOriginal, type TypeWithLiterals as TypeWithLiteralsOriginal, type UnlikePostRequest as UnlikePostRequestOriginal, type UnlikePostResponse as UnlikePostResponseOriginal, type UnpinPostRequest as UnpinPostRequestOriginal, type UnpinPostResponse as UnpinPostResponseOriginal, type V1Media as V1MediaOriginal, VerticalAlignmentAlignment as VerticalAlignmentAlignmentOriginal, type VerticalAlignmentAlignmentWithLiterals as VerticalAlignmentAlignmentWithLiteralsOriginal, VerticalAlignment as VerticalAlignmentOriginal, type VerticalAlignmentWithLiterals as VerticalAlignmentWithLiteralsOriginal, type VideoData as VideoDataOriginal, type Video as VideoOriginal, type VideoResolution as VideoResolutionOriginal, type VideoV2 as VideoV2Original, ViewMode as ViewModeOriginal, type ViewModeWithLiterals as ViewModeWithLiteralsOriginal, type ViewPostRequest as ViewPostRequestOriginal, type ViewPostResponse as ViewPostResponseOriginal, ViewRole as ViewRoleOriginal, type ViewRoleWithLiterals as ViewRoleWithLiteralsOriginal, VoteRole as VoteRoleOriginal, type VoteRoleWithLiterals as VoteRoleWithLiteralsOriginal, WebhookIdentityType as WebhookIdentityTypeOriginal, type WebhookIdentityTypeWithLiterals as WebhookIdentityTypeWithLiteralsOriginal, Width as WidthOriginal, WidthType as WidthTypeOriginal, type WidthTypeWithLiterals as WidthTypeWithLiteralsOriginal, type WidthWithLiterals as WidthWithLiteralsOriginal, type WixMedia as WixMediaOriginal, type __PublicMethodMetaInfo, getPost, getPostBySlug, getPostMetrics, getTotalPosts, listPosts, queryPostCountStats, queryPosts };
|