@wix/auto_sdk_blog_posts 1.0.121 → 1.0.122
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 +4 -4
- package/build/cjs/index.js +71 -74
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +230 -143
- package/build/cjs/index.typings.js +47 -55
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +215 -145
- package/build/cjs/meta.js +39 -29
- package/build/cjs/meta.js.map +1 -1
- package/build/es/index.d.mts +4 -4
- package/build/es/index.mjs +68 -74
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +230 -143
- package/build/es/index.typings.mjs +44 -55
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +215 -145
- package/build/es/meta.mjs +39 -29
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/index.d.ts +4 -4
- package/build/internal/cjs/index.js +71 -74
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +231 -144
- package/build/internal/cjs/index.typings.js +47 -55
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +215 -145
- package/build/internal/cjs/meta.js +39 -29
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/index.d.mts +4 -4
- package/build/internal/es/index.mjs +68 -74
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +231 -144
- package/build/internal/es/index.typings.mjs +44 -55
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +215 -145
- package/build/internal/es/meta.mjs +39 -29
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +4 -4
|
@@ -10,7 +10,7 @@ interface Post {
|
|
|
10
10
|
id?: string;
|
|
11
11
|
/**
|
|
12
12
|
* Post title.
|
|
13
|
-
* @maxLength
|
|
13
|
+
* @maxLength 200
|
|
14
14
|
*/
|
|
15
15
|
title?: string;
|
|
16
16
|
/**
|
|
@@ -46,23 +46,13 @@ interface Post {
|
|
|
46
46
|
/** Whether the post is pinned. If `true`, the post is placed at the top of the post list. */
|
|
47
47
|
pinned?: boolean;
|
|
48
48
|
/**
|
|
49
|
-
*
|
|
49
|
+
* Category IDs of the post. See Blog Category API for more info.
|
|
50
50
|
* @maxSize 10
|
|
51
51
|
* @format GUID
|
|
52
52
|
*/
|
|
53
53
|
categoryIds?: string[];
|
|
54
54
|
/**
|
|
55
|
-
*
|
|
56
|
-
* This property will be removed on June 30, 2023.
|
|
57
|
-
*
|
|
58
|
-
* Post cover media.
|
|
59
|
-
* @deprecated
|
|
60
|
-
* @replacedBy media
|
|
61
|
-
* @targetRemovalDate 2024-06-30
|
|
62
|
-
*/
|
|
63
|
-
coverMedia?: CoverMedia;
|
|
64
|
-
/**
|
|
65
|
-
* Post owner's [member ID](https://dev.wix.com/api/rest/members).
|
|
55
|
+
* Member ID of the post's owner.
|
|
66
56
|
* @format GUID
|
|
67
57
|
*/
|
|
68
58
|
memberId?: string;
|
|
@@ -77,10 +67,10 @@ interface Post {
|
|
|
77
67
|
commentingEnabled?: boolean;
|
|
78
68
|
/** Estimated reading time (calculated automatically). */
|
|
79
69
|
minutesToRead?: number;
|
|
80
|
-
/** Image placed at the top of the blog page. */
|
|
70
|
+
/** Image placed at the top of the blog page. Only displays on mobile devices. */
|
|
81
71
|
heroImage?: Image;
|
|
82
72
|
/**
|
|
83
|
-
* IDs of
|
|
73
|
+
* IDs of tags the post is tagged with. See Blog Tags API for more info.
|
|
84
74
|
* @readonly
|
|
85
75
|
* @maxSize 30
|
|
86
76
|
* @format GUID
|
|
@@ -94,7 +84,9 @@ interface Post {
|
|
|
94
84
|
*/
|
|
95
85
|
relatedPostIds?: string[];
|
|
96
86
|
/**
|
|
97
|
-
*
|
|
87
|
+
* Pricing plan IDs. See the Pricing Plans API for more info.
|
|
88
|
+
*
|
|
89
|
+
* Only relevant if a post is assigned to a specific pricing plan.
|
|
98
90
|
* @readonly
|
|
99
91
|
* @maxSize 100
|
|
100
92
|
* @format GUID
|
|
@@ -115,13 +107,7 @@ interface Post {
|
|
|
115
107
|
/** SEO data. */
|
|
116
108
|
seoData?: SeoSchema;
|
|
117
109
|
/**
|
|
118
|
-
*
|
|
119
|
-
* @readonly
|
|
120
|
-
* @maxLength 400000
|
|
121
|
-
*/
|
|
122
|
-
content?: string | null;
|
|
123
|
-
/**
|
|
124
|
-
* Post owner's [contact ID](https://dev.wix.com/api/rest/contacts).
|
|
110
|
+
* Contact ID of the post's owner. See the Contacts API for more info.
|
|
125
111
|
* @format GUID
|
|
126
112
|
*/
|
|
127
113
|
contactId?: string | null;
|
|
@@ -140,19 +126,10 @@ interface Post {
|
|
|
140
126
|
* @readonly
|
|
141
127
|
*/
|
|
142
128
|
preview?: boolean;
|
|
143
|
-
/**
|
|
144
|
-
* Reserved for internal use.
|
|
145
|
-
* @maxLength 24
|
|
146
|
-
*/
|
|
147
|
-
contentId?: string | null;
|
|
148
|
-
/**
|
|
149
|
-
* Reserved for internal use.
|
|
150
|
-
* @readonly
|
|
151
|
-
* @format GUID
|
|
152
|
-
*/
|
|
153
|
-
mostRecentContributorId?: string | null;
|
|
154
129
|
/**
|
|
155
130
|
* Post moderation details. Only relevant to posts submitted by [guest writers](https://support.wix.com/en/article/wix-blog-moderating-blog-posts-from-your-guest-writers).
|
|
131
|
+
*
|
|
132
|
+
* Guest writers have the ability to write posts but not publish them. These posts can be rejected or approved for publishing by a blog editor or Wix user.
|
|
156
133
|
* @readonly
|
|
157
134
|
*/
|
|
158
135
|
moderationDetails?: ModerationDetails;
|
|
@@ -178,17 +155,17 @@ interface PageUrl {
|
|
|
178
155
|
}
|
|
179
156
|
interface PostCountInfo {
|
|
180
157
|
/**
|
|
181
|
-
* Total number of post comments
|
|
158
|
+
* Total number of post comments.
|
|
182
159
|
* @readonly
|
|
183
160
|
*/
|
|
184
161
|
comments?: number;
|
|
185
162
|
/**
|
|
186
|
-
* Total number of post likes
|
|
163
|
+
* Total number of post likes.
|
|
187
164
|
* @readonly
|
|
188
165
|
*/
|
|
189
166
|
likes?: number;
|
|
190
167
|
/**
|
|
191
|
-
* Total number of post views
|
|
168
|
+
* Total number of post views.
|
|
192
169
|
* @readonly
|
|
193
170
|
*/
|
|
194
171
|
views?: number;
|
|
@@ -278,21 +255,21 @@ interface Tag {
|
|
|
278
255
|
* For example: `{"name": "description", "content": "the description itself"}`.
|
|
279
256
|
*/
|
|
280
257
|
props?: Record<string, any> | null;
|
|
281
|
-
/** SEO tag
|
|
258
|
+
/** SEO tag metadata. For example, `{"height": 300, "width": 240}`. */
|
|
282
259
|
meta?: Record<string, any> | null;
|
|
283
260
|
/** SEO tag inner content. For example, `<title> inner content </title>`. */
|
|
284
261
|
children?: string;
|
|
285
|
-
/** Whether the tag is a custom tag. */
|
|
262
|
+
/** Whether the tag is a [custom tag](https://support.wix.com/en/article/adding-additional-meta-tags-to-your-sites-pages). */
|
|
286
263
|
custom?: boolean;
|
|
287
|
-
/** Whether the tag is disabled. */
|
|
264
|
+
/** Whether the tag is disabled. If the tag is disabled, people can't find your page when searching for this phrase in search engines. */
|
|
288
265
|
disabled?: boolean;
|
|
289
266
|
}
|
|
290
267
|
interface Settings {
|
|
291
268
|
/**
|
|
292
|
-
* Whether the
|
|
269
|
+
* Whether the [automatical redirect visits](https://support.wix.com/en/article/customizing-your-pages-seo-settings-in-the-seo-panel) from the old URL to the new one is enabled.
|
|
293
270
|
*
|
|
294
271
|
*
|
|
295
|
-
* Default: `false` (
|
|
272
|
+
* Default: `false` (automatical redirect is enabled).
|
|
296
273
|
*/
|
|
297
274
|
preventAutoRedirect?: boolean;
|
|
298
275
|
/**
|
|
@@ -362,8 +339,12 @@ interface Node extends NodeDataOneOf {
|
|
|
362
339
|
blockquoteData?: BlockquoteData;
|
|
363
340
|
/** Data for a caption node. */
|
|
364
341
|
captionData?: CaptionData;
|
|
365
|
-
/**
|
|
342
|
+
/** Data for a layout node. Reserved for future use. */
|
|
343
|
+
layoutData?: LayoutData;
|
|
344
|
+
/** Data for a cell node. */
|
|
366
345
|
layoutCellData?: LayoutCellData;
|
|
346
|
+
/** Data for a shape node. */
|
|
347
|
+
shapeData?: ShapeData;
|
|
367
348
|
/** Node type. Use `APP_EMBED` for nodes that embed content from other Wix apps. Use `EMBED` to embed content in [oEmbed](https://oembed.com/) format. */
|
|
368
349
|
type?: NodeTypeWithLiterals;
|
|
369
350
|
/** Node ID. */
|
|
@@ -427,8 +408,12 @@ interface NodeDataOneOf {
|
|
|
427
408
|
blockquoteData?: BlockquoteData;
|
|
428
409
|
/** Data for a caption node. */
|
|
429
410
|
captionData?: CaptionData;
|
|
430
|
-
/**
|
|
411
|
+
/** Data for a layout node. Reserved for future use. */
|
|
412
|
+
layoutData?: LayoutData;
|
|
413
|
+
/** Data for a cell node. */
|
|
431
414
|
layoutCellData?: LayoutCellData;
|
|
415
|
+
/** Data for a shape node. */
|
|
416
|
+
shapeData?: ShapeData;
|
|
432
417
|
}
|
|
433
418
|
declare enum NodeType {
|
|
434
419
|
PARAGRAPH = "PARAGRAPH",
|
|
@@ -464,10 +449,11 @@ declare enum NodeType {
|
|
|
464
449
|
AUDIO = "AUDIO",
|
|
465
450
|
CAPTION = "CAPTION",
|
|
466
451
|
LAYOUT = "LAYOUT",
|
|
467
|
-
LAYOUT_CELL = "LAYOUT_CELL"
|
|
452
|
+
LAYOUT_CELL = "LAYOUT_CELL",
|
|
453
|
+
SHAPE = "SHAPE"
|
|
468
454
|
}
|
|
469
455
|
/** @enumType */
|
|
470
|
-
type NodeTypeWithLiterals = NodeType | 'PARAGRAPH' | 'TEXT' | 'HEADING' | 'BULLETED_LIST' | 'ORDERED_LIST' | 'LIST_ITEM' | 'BLOCKQUOTE' | 'CODE_BLOCK' | 'VIDEO' | 'DIVIDER' | 'FILE' | 'GALLERY' | 'GIF' | 'HTML' | 'IMAGE' | 'LINK_PREVIEW' | 'MAP' | 'POLL' | 'APP_EMBED' | 'BUTTON' | 'COLLAPSIBLE_LIST' | 'TABLE' | 'EMBED' | 'COLLAPSIBLE_ITEM' | 'COLLAPSIBLE_ITEM_TITLE' | 'COLLAPSIBLE_ITEM_BODY' | 'TABLE_CELL' | 'TABLE_ROW' | 'EXTERNAL' | 'AUDIO' | 'CAPTION' | 'LAYOUT' | 'LAYOUT_CELL';
|
|
456
|
+
type NodeTypeWithLiterals = NodeType | 'PARAGRAPH' | 'TEXT' | 'HEADING' | 'BULLETED_LIST' | 'ORDERED_LIST' | 'LIST_ITEM' | 'BLOCKQUOTE' | 'CODE_BLOCK' | 'VIDEO' | 'DIVIDER' | 'FILE' | 'GALLERY' | 'GIF' | 'HTML' | 'IMAGE' | 'LINK_PREVIEW' | 'MAP' | 'POLL' | 'APP_EMBED' | 'BUTTON' | 'COLLAPSIBLE_LIST' | 'TABLE' | 'EMBED' | 'COLLAPSIBLE_ITEM' | 'COLLAPSIBLE_ITEM_TITLE' | 'COLLAPSIBLE_ITEM_BODY' | 'TABLE_CELL' | 'TABLE_ROW' | 'EXTERNAL' | 'AUDIO' | 'CAPTION' | 'LAYOUT' | 'LAYOUT_CELL' | 'SHAPE';
|
|
471
457
|
interface NodeStyle {
|
|
472
458
|
/** The top padding value in pixels. */
|
|
473
459
|
paddingTop?: string | null;
|
|
@@ -489,17 +475,32 @@ interface ButtonData {
|
|
|
489
475
|
link?: Link;
|
|
490
476
|
}
|
|
491
477
|
interface Border {
|
|
492
|
-
/**
|
|
478
|
+
/**
|
|
479
|
+
* Deprecated: Use `borderWidth` in `styles` instead.
|
|
480
|
+
* @deprecated
|
|
481
|
+
*/
|
|
493
482
|
width?: number | null;
|
|
494
|
-
/**
|
|
483
|
+
/**
|
|
484
|
+
* Deprecated: Use `borderRadius` in `styles` instead.
|
|
485
|
+
* @deprecated
|
|
486
|
+
*/
|
|
495
487
|
radius?: number | null;
|
|
496
488
|
}
|
|
497
489
|
interface Colors {
|
|
498
|
-
/**
|
|
490
|
+
/**
|
|
491
|
+
* Deprecated: Use `textColor` in `styles` instead.
|
|
492
|
+
* @deprecated
|
|
493
|
+
*/
|
|
499
494
|
text?: string | null;
|
|
500
|
-
/**
|
|
495
|
+
/**
|
|
496
|
+
* Deprecated: Use `borderColor` in `styles` instead.
|
|
497
|
+
* @deprecated
|
|
498
|
+
*/
|
|
501
499
|
border?: string | null;
|
|
502
|
-
/**
|
|
500
|
+
/**
|
|
501
|
+
* Deprecated: Use `backgroundColor` in `styles` instead.
|
|
502
|
+
* @deprecated
|
|
503
|
+
*/
|
|
503
504
|
background?: string | null;
|
|
504
505
|
}
|
|
505
506
|
interface PluginContainerData {
|
|
@@ -582,10 +583,57 @@ declare enum ButtonDataType {
|
|
|
582
583
|
/** @enumType */
|
|
583
584
|
type ButtonDataTypeWithLiterals = ButtonDataType | 'LINK' | 'ACTION';
|
|
584
585
|
interface Styles {
|
|
585
|
-
/**
|
|
586
|
+
/**
|
|
587
|
+
* Deprecated: Use `borderWidth` and `borderRadius` instead.
|
|
588
|
+
* @deprecated
|
|
589
|
+
*/
|
|
586
590
|
border?: Border;
|
|
587
|
-
/**
|
|
591
|
+
/**
|
|
592
|
+
* Deprecated: Use `textColor`, `borderColor` and `backgroundColor` instead.
|
|
593
|
+
* @deprecated
|
|
594
|
+
*/
|
|
588
595
|
colors?: Colors;
|
|
596
|
+
/** Border width in pixels. */
|
|
597
|
+
borderWidth?: number | null;
|
|
598
|
+
/**
|
|
599
|
+
* Deprecated: Use `borderWidth` for normal/hover states instead.
|
|
600
|
+
* @deprecated
|
|
601
|
+
*/
|
|
602
|
+
borderWidthHover?: number | null;
|
|
603
|
+
/** Border radius in pixels. */
|
|
604
|
+
borderRadius?: number | null;
|
|
605
|
+
/**
|
|
606
|
+
* Border color as a hexadecimal value.
|
|
607
|
+
* @format COLOR_HEX
|
|
608
|
+
*/
|
|
609
|
+
borderColor?: string | null;
|
|
610
|
+
/**
|
|
611
|
+
* Border color as a hexadecimal value (hover state).
|
|
612
|
+
* @format COLOR_HEX
|
|
613
|
+
*/
|
|
614
|
+
borderColorHover?: string | null;
|
|
615
|
+
/**
|
|
616
|
+
* Text color as a hexadecimal value.
|
|
617
|
+
* @format COLOR_HEX
|
|
618
|
+
*/
|
|
619
|
+
textColor?: string | null;
|
|
620
|
+
/**
|
|
621
|
+
* Text color as a hexadecimal value (hover state).
|
|
622
|
+
* @format COLOR_HEX
|
|
623
|
+
*/
|
|
624
|
+
textColorHover?: string | null;
|
|
625
|
+
/**
|
|
626
|
+
* Background color as a hexadecimal value.
|
|
627
|
+
* @format COLOR_HEX
|
|
628
|
+
*/
|
|
629
|
+
backgroundColor?: string | null;
|
|
630
|
+
/**
|
|
631
|
+
* Background color as a hexadecimal value (hover state).
|
|
632
|
+
* @format COLOR_HEX
|
|
633
|
+
*/
|
|
634
|
+
backgroundColorHover?: string | null;
|
|
635
|
+
/** Button size option, one of `SMALL`, `MEDIUM` or `LARGE`. Defaults to `MEDIUM`. */
|
|
636
|
+
buttonSize?: string | null;
|
|
589
637
|
}
|
|
590
638
|
interface Link extends LinkDataOneOf {
|
|
591
639
|
/** The absolute URL for the linked document. */
|
|
@@ -799,7 +847,7 @@ interface ItemImage {
|
|
|
799
847
|
/** Link details for images that are links. */
|
|
800
848
|
link?: Link;
|
|
801
849
|
}
|
|
802
|
-
interface
|
|
850
|
+
interface Video {
|
|
803
851
|
/** Video file details. */
|
|
804
852
|
media?: V1Media;
|
|
805
853
|
/** Video thumbnail file details. */
|
|
@@ -809,7 +857,7 @@ interface Item extends ItemDataOneOf {
|
|
|
809
857
|
/** An image item. */
|
|
810
858
|
image?: ItemImage;
|
|
811
859
|
/** A video item. */
|
|
812
|
-
video?:
|
|
860
|
+
video?: Video;
|
|
813
861
|
/** Item title. */
|
|
814
862
|
title?: string | null;
|
|
815
863
|
/** Item's alternative text. */
|
|
@@ -820,7 +868,7 @@ interface ItemDataOneOf {
|
|
|
820
868
|
/** An image item. */
|
|
821
869
|
image?: ItemImage;
|
|
822
870
|
/** A video item. */
|
|
823
|
-
video?:
|
|
871
|
+
video?: Video;
|
|
824
872
|
}
|
|
825
873
|
interface GalleryOptions {
|
|
826
874
|
/** Gallery layout. */
|
|
@@ -923,7 +971,7 @@ interface GIFData {
|
|
|
923
971
|
height?: number;
|
|
924
972
|
/** Width in pixels. */
|
|
925
973
|
width?: number;
|
|
926
|
-
/** Type of GIF (Sticker or
|
|
974
|
+
/** Type of GIF (Sticker or NORMAL). Defaults to `NORMAL`. */
|
|
927
975
|
gifType?: GIFTypeWithLiterals;
|
|
928
976
|
}
|
|
929
977
|
interface GIF {
|
|
@@ -944,11 +992,11 @@ interface GIF {
|
|
|
944
992
|
still?: string | null;
|
|
945
993
|
}
|
|
946
994
|
declare enum GIFType {
|
|
947
|
-
|
|
995
|
+
NORMAL = "NORMAL",
|
|
948
996
|
STICKER = "STICKER"
|
|
949
997
|
}
|
|
950
998
|
/** @enumType */
|
|
951
|
-
type GIFTypeWithLiterals = GIFType | '
|
|
999
|
+
type GIFTypeWithLiterals = GIFType | 'NORMAL' | 'STICKER';
|
|
952
1000
|
interface HeadingData {
|
|
953
1001
|
/** Heading level from 1-6. */
|
|
954
1002
|
level?: number;
|
|
@@ -988,10 +1036,11 @@ interface HTMLDataDataOneOf {
|
|
|
988
1036
|
}
|
|
989
1037
|
declare enum Source {
|
|
990
1038
|
HTML = "HTML",
|
|
991
|
-
ADSENSE = "ADSENSE"
|
|
1039
|
+
ADSENSE = "ADSENSE",
|
|
1040
|
+
AI = "AI"
|
|
992
1041
|
}
|
|
993
1042
|
/** @enumType */
|
|
994
|
-
type SourceWithLiterals = Source | 'HTML' | 'ADSENSE';
|
|
1043
|
+
type SourceWithLiterals = Source | 'HTML' | 'ADSENSE' | 'AI';
|
|
995
1044
|
interface ImageData {
|
|
996
1045
|
/** Styling for the image's container. */
|
|
997
1046
|
containerData?: PluginContainerData;
|
|
@@ -1010,6 +1059,10 @@ interface ImageData {
|
|
|
1010
1059
|
caption?: string | null;
|
|
1011
1060
|
/** Sets whether the image's download button is disabled. Defaults to `false`. */
|
|
1012
1061
|
disableDownload?: boolean | null;
|
|
1062
|
+
/** Sets whether the image is decorative and does not need an explanation. Defaults to `false`. */
|
|
1063
|
+
decorative?: boolean | null;
|
|
1064
|
+
/** Styling for the image. */
|
|
1065
|
+
styles?: ImageDataStyles;
|
|
1013
1066
|
}
|
|
1014
1067
|
interface StylesBorder {
|
|
1015
1068
|
/** Border width in pixels. */
|
|
@@ -1039,6 +1092,8 @@ interface LinkPreviewData {
|
|
|
1039
1092
|
description?: string | null;
|
|
1040
1093
|
/** The preview content as HTML. */
|
|
1041
1094
|
html?: string | null;
|
|
1095
|
+
/** Styling for the link preview. */
|
|
1096
|
+
styles?: LinkPreviewDataStyles;
|
|
1042
1097
|
}
|
|
1043
1098
|
declare enum StylesPosition {
|
|
1044
1099
|
/** Thumbnail positioned at the start (left in LTR layouts, right in RTL layouts) */
|
|
@@ -1326,6 +1381,14 @@ interface Decoration extends DecorationDataOneOf {
|
|
|
1326
1381
|
underlineData?: boolean | null;
|
|
1327
1382
|
/** Data for a spoiler decoration. */
|
|
1328
1383
|
spoilerData?: SpoilerData;
|
|
1384
|
+
/** Data for a strikethrough decoration. Defaults to `true`. */
|
|
1385
|
+
strikethroughData?: boolean | null;
|
|
1386
|
+
/** Data for a superscript decoration. Defaults to `true`. */
|
|
1387
|
+
superscriptData?: boolean | null;
|
|
1388
|
+
/** Data for a subscript decoration. Defaults to `true`. */
|
|
1389
|
+
subscriptData?: boolean | null;
|
|
1390
|
+
/** Data for a font family decoration. */
|
|
1391
|
+
fontFamilyData?: FontFamilyData;
|
|
1329
1392
|
/** The type of decoration to apply. */
|
|
1330
1393
|
type?: DecorationTypeWithLiterals;
|
|
1331
1394
|
}
|
|
@@ -1349,6 +1412,14 @@ interface DecorationDataOneOf {
|
|
|
1349
1412
|
underlineData?: boolean | null;
|
|
1350
1413
|
/** Data for a spoiler decoration. */
|
|
1351
1414
|
spoilerData?: SpoilerData;
|
|
1415
|
+
/** Data for a strikethrough decoration. Defaults to `true`. */
|
|
1416
|
+
strikethroughData?: boolean | null;
|
|
1417
|
+
/** Data for a superscript decoration. Defaults to `true`. */
|
|
1418
|
+
superscriptData?: boolean | null;
|
|
1419
|
+
/** Data for a subscript decoration. Defaults to `true`. */
|
|
1420
|
+
subscriptData?: boolean | null;
|
|
1421
|
+
/** Data for a font family decoration. */
|
|
1422
|
+
fontFamilyData?: FontFamilyData;
|
|
1352
1423
|
}
|
|
1353
1424
|
declare enum DecorationType {
|
|
1354
1425
|
BOLD = "BOLD",
|
|
@@ -1360,10 +1431,14 @@ declare enum DecorationType {
|
|
|
1360
1431
|
LINK = "LINK",
|
|
1361
1432
|
COLOR = "COLOR",
|
|
1362
1433
|
FONT_SIZE = "FONT_SIZE",
|
|
1363
|
-
EXTERNAL = "EXTERNAL"
|
|
1434
|
+
EXTERNAL = "EXTERNAL",
|
|
1435
|
+
STRIKETHROUGH = "STRIKETHROUGH",
|
|
1436
|
+
SUPERSCRIPT = "SUPERSCRIPT",
|
|
1437
|
+
SUBSCRIPT = "SUBSCRIPT",
|
|
1438
|
+
FONT_FAMILY = "FONT_FAMILY"
|
|
1364
1439
|
}
|
|
1365
1440
|
/** @enumType */
|
|
1366
|
-
type DecorationTypeWithLiterals = DecorationType | 'BOLD' | 'ITALIC' | 'UNDERLINE' | 'SPOILER' | 'ANCHOR' | 'MENTION' | 'LINK' | 'COLOR' | 'FONT_SIZE' | 'EXTERNAL';
|
|
1441
|
+
type DecorationTypeWithLiterals = DecorationType | 'BOLD' | 'ITALIC' | 'UNDERLINE' | 'SPOILER' | 'ANCHOR' | 'MENTION' | 'LINK' | 'COLOR' | 'FONT_SIZE' | 'EXTERNAL' | 'STRIKETHROUGH' | 'SUPERSCRIPT' | 'SUBSCRIPT' | 'FONT_FAMILY';
|
|
1367
1442
|
interface AnchorData {
|
|
1368
1443
|
/** The target node's ID. */
|
|
1369
1444
|
anchor?: string;
|
|
@@ -1426,6 +1501,36 @@ interface AppEmbedData extends AppEmbedDataAppDataOneOf {
|
|
|
1426
1501
|
url?: string | null;
|
|
1427
1502
|
/** An image for the embedded content. */
|
|
1428
1503
|
image?: V1Media;
|
|
1504
|
+
/** Whether to hide the image. */
|
|
1505
|
+
hideImage?: boolean | null;
|
|
1506
|
+
/** Whether to hide the title. */
|
|
1507
|
+
hideTitle?: boolean | null;
|
|
1508
|
+
/** Whether to hide the price. */
|
|
1509
|
+
hidePrice?: boolean | null;
|
|
1510
|
+
/** Whether to hide the description (Event and Booking). */
|
|
1511
|
+
hideDescription?: boolean | null;
|
|
1512
|
+
/** Whether to hide the date and time (Event). */
|
|
1513
|
+
hideDateTime?: boolean | null;
|
|
1514
|
+
/** Whether to hide the location (Event). */
|
|
1515
|
+
hideLocation?: boolean | null;
|
|
1516
|
+
/** Whether to hide the duration (Booking). */
|
|
1517
|
+
hideDuration?: boolean | null;
|
|
1518
|
+
/** Whether to hide the button. */
|
|
1519
|
+
hideButton?: boolean | null;
|
|
1520
|
+
/** Whether to hide the ribbon. */
|
|
1521
|
+
hideRibbon?: boolean | null;
|
|
1522
|
+
/** Button styling options. */
|
|
1523
|
+
buttonStyles?: ButtonStyles;
|
|
1524
|
+
/** Image styling options. */
|
|
1525
|
+
imageStyles?: ImageStyles;
|
|
1526
|
+
/** Ribbon styling options. */
|
|
1527
|
+
ribbonStyles?: RibbonStyles;
|
|
1528
|
+
/** Card styling options. */
|
|
1529
|
+
cardStyles?: CardStyles;
|
|
1530
|
+
/** Styling for the app embed's container. */
|
|
1531
|
+
containerData?: PluginContainerData;
|
|
1532
|
+
/** Pricing data for embedded Wix App content. */
|
|
1533
|
+
pricingData?: PricingData;
|
|
1429
1534
|
}
|
|
1430
1535
|
/** @oneof */
|
|
1431
1536
|
interface AppEmbedDataAppDataOneOf {
|
|
@@ -1760,6 +1865,13 @@ interface TableData {
|
|
|
1760
1865
|
rowHeader?: boolean | null;
|
|
1761
1866
|
/** Sets whether the table's first column is a header. Defaults to `false`. */
|
|
1762
1867
|
columnHeader?: boolean | null;
|
|
1868
|
+
/** The spacing between cells in pixels. Defaults to `0`. */
|
|
1869
|
+
cellSpacing?: number | null;
|
|
1870
|
+
/**
|
|
1871
|
+
* Padding in pixels for cells. Follows CSS order: top, right, bottom, left.
|
|
1872
|
+
* @maxSize 4
|
|
1873
|
+
*/
|
|
1874
|
+
cellPadding?: number[];
|
|
1763
1875
|
}
|
|
1764
1876
|
interface Dimensions {
|
|
1765
1877
|
/** An array representing relative width of each column in relation to the other columns. */
|
|
@@ -1774,6 +1886,12 @@ interface TableCellData {
|
|
|
1774
1886
|
cellStyle?: CellStyle;
|
|
1775
1887
|
/** The cell's border colors. */
|
|
1776
1888
|
borderColors?: BorderColors;
|
|
1889
|
+
/** Defines how many columns the cell spans. Default: 1. */
|
|
1890
|
+
colspan?: number | null;
|
|
1891
|
+
/** Defines how many rows the cell spans. Default: 1. */
|
|
1892
|
+
rowspan?: number | null;
|
|
1893
|
+
/** The cell's border widths. */
|
|
1894
|
+
borderWidths?: BorderWidths;
|
|
1777
1895
|
}
|
|
1778
1896
|
declare enum VerticalAlignment {
|
|
1779
1897
|
/** Top alignment */
|
|
@@ -2002,6 +2120,23 @@ interface LayoutCellData {
|
|
|
2002
2120
|
/** Size of the cell in 12 columns grid. */
|
|
2003
2121
|
colSpan?: number | null;
|
|
2004
2122
|
}
|
|
2123
|
+
interface ShapeData {
|
|
2124
|
+
/** Styling for the shape's container. */
|
|
2125
|
+
containerData?: PluginContainerData;
|
|
2126
|
+
/** Shape file details. */
|
|
2127
|
+
shape?: V1Media;
|
|
2128
|
+
/** Styling for the shape. */
|
|
2129
|
+
styles?: ShapeDataStyles;
|
|
2130
|
+
}
|
|
2131
|
+
interface ShapeDataStyles {
|
|
2132
|
+
/**
|
|
2133
|
+
* Shape fill color as a hexadecimal value.
|
|
2134
|
+
* @format COLOR_HEX
|
|
2135
|
+
*/
|
|
2136
|
+
color?: string | null;
|
|
2137
|
+
/** Map of original color keys to their new color values. */
|
|
2138
|
+
colors?: Record<string, string>;
|
|
2139
|
+
}
|
|
2005
2140
|
interface Metadata {
|
|
2006
2141
|
/** Schema version. */
|
|
2007
2142
|
version?: number;
|
|
@@ -2166,7 +2301,11 @@ interface PostTranslation {
|
|
|
2166
2301
|
*/
|
|
2167
2302
|
language?: string | null;
|
|
2168
2303
|
/**
|
|
2169
|
-
* Post slug.
|
|
2304
|
+
* Post slug.
|
|
2305
|
+
*
|
|
2306
|
+
* The slug is the end of a post's URL that refers to a specific post.
|
|
2307
|
+
* For example, if a post's URL is `https:/example.com/blog/post/my-post-slug`,
|
|
2308
|
+
* the slug is `my-post-slug`. The slug is case-sensitive.
|
|
2170
2309
|
* @maxLength 100
|
|
2171
2310
|
*/
|
|
2172
2311
|
slug?: string | null;
|
|
@@ -2713,25 +2852,21 @@ interface DomainEvent extends DomainEventBodyOneOf {
|
|
|
2713
2852
|
updatedEvent?: EntityUpdatedEvent;
|
|
2714
2853
|
deletedEvent?: EntityDeletedEvent;
|
|
2715
2854
|
actionEvent?: ActionEvent;
|
|
2716
|
-
/**
|
|
2717
|
-
* Unique event ID.
|
|
2718
|
-
* Allows clients to ignore duplicate webhooks.
|
|
2719
|
-
*/
|
|
2855
|
+
/** Event ID. With this ID you can easily spot duplicated events and ignore them. */
|
|
2720
2856
|
id?: string;
|
|
2721
2857
|
/**
|
|
2722
|
-
*
|
|
2723
|
-
*
|
|
2858
|
+
* Fully Qualified Domain Name of an entity. This is a unique identifier assigned to the API main business entities.
|
|
2859
|
+
* For example, `wix.stores.catalog.product`, `wix.bookings.session`, `wix.payments.transaction`.
|
|
2724
2860
|
*/
|
|
2725
2861
|
entityFqdn?: string;
|
|
2726
2862
|
/**
|
|
2727
|
-
*
|
|
2728
|
-
*
|
|
2729
|
-
* Example: created/updated/deleted/started/completed/email_opened
|
|
2863
|
+
* Event action name, placed at the top level to make it easier for users to dispatch messages.
|
|
2864
|
+
* For example: `created`/`updated`/`deleted`/`started`/`completed`/`email_opened`.
|
|
2730
2865
|
*/
|
|
2731
2866
|
slug?: string;
|
|
2732
2867
|
/** ID of the entity associated with the event. */
|
|
2733
2868
|
entityId?: string;
|
|
2734
|
-
/** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example
|
|
2869
|
+
/** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example, `2020-04-26T13:57:50.699Z`. */
|
|
2735
2870
|
eventTime?: Date | null;
|
|
2736
2871
|
/**
|
|
2737
2872
|
* Whether the event was triggered as a result of a privacy regulation application
|
|
@@ -2741,12 +2876,8 @@ interface DomainEvent extends DomainEventBodyOneOf {
|
|
|
2741
2876
|
/** If present, indicates the action that triggered the event. */
|
|
2742
2877
|
originatedFrom?: string | null;
|
|
2743
2878
|
/**
|
|
2744
|
-
* A sequence number
|
|
2745
|
-
*
|
|
2746
|
-
* it is guaranteed that the sequence number of the second update is strictly higher than the first.
|
|
2747
|
-
* As the consumer, you can use this value to ensure that you handle messages in the correct order.
|
|
2748
|
-
* To do so, you will need to persist this number on your end, and compare the sequence number from the
|
|
2749
|
-
* message against the one you have stored. Given that the stored number is higher, you should ignore the message.
|
|
2879
|
+
* 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.
|
|
2880
|
+
* 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.
|
|
2750
2881
|
*/
|
|
2751
2882
|
entityEventSequence?: string | null;
|
|
2752
2883
|
}
|
|
@@ -2774,7 +2905,7 @@ interface EntityUpdatedEvent {
|
|
|
2774
2905
|
currentEntityAsJson?: string;
|
|
2775
2906
|
}
|
|
2776
2907
|
interface EntityDeletedEvent {
|
|
2777
|
-
/** Entity that was deleted */
|
|
2908
|
+
/** Entity that was deleted. */
|
|
2778
2909
|
deletedEntityAsJson?: string | null;
|
|
2779
2910
|
}
|
|
2780
2911
|
interface ActionEvent {
|
|
@@ -2795,6 +2926,8 @@ interface MessageEnvelope {
|
|
|
2795
2926
|
identity?: IdentificationData;
|
|
2796
2927
|
/** Stringify payload. */
|
|
2797
2928
|
data?: string;
|
|
2929
|
+
/** Details related to the account */
|
|
2930
|
+
accountInfo?: AccountInfo;
|
|
2798
2931
|
}
|
|
2799
2932
|
interface IdentificationData extends IdentificationDataIdOneOf {
|
|
2800
2933
|
/**
|
|
@@ -3633,69 +3766,6 @@ interface ConvertRichContentToDraftJsResponse {
|
|
|
3633
3766
|
/** DraftJs content converted from Rich content. */
|
|
3634
3767
|
content?: Record<string, any> | null;
|
|
3635
3768
|
}
|
|
3636
|
-
interface CoverMedia extends CoverMediaMediaOneOf {
|
|
3637
|
-
/** Image url. */
|
|
3638
|
-
image?: Image;
|
|
3639
|
-
/** Video url. */
|
|
3640
|
-
video?: Video;
|
|
3641
|
-
/**
|
|
3642
|
-
* Is cover media enabled.
|
|
3643
|
-
* Selected by user whether to display cover media on the feed
|
|
3644
|
-
* @deprecated Is cover media enabled.
|
|
3645
|
-
* Selected by user whether to display cover media on the feed
|
|
3646
|
-
* @replacedBy displayed
|
|
3647
|
-
* @targetRemovalDate 2024-06-30
|
|
3648
|
-
*/
|
|
3649
|
-
enabled?: boolean;
|
|
3650
|
-
/** Whether cover media is displayed. */
|
|
3651
|
-
displayed?: boolean;
|
|
3652
|
-
/** Whether cover media is custom. If `false` the cover image is set to the first media item that appears in the content. */
|
|
3653
|
-
custom?: boolean;
|
|
3654
|
-
/**
|
|
3655
|
-
* Media alternative text.
|
|
3656
|
-
* @minLength 1
|
|
3657
|
-
* @maxLength 1000
|
|
3658
|
-
*/
|
|
3659
|
-
altText?: string | null;
|
|
3660
|
-
}
|
|
3661
|
-
/** @oneof */
|
|
3662
|
-
interface CoverMediaMediaOneOf {
|
|
3663
|
-
/** Image url. */
|
|
3664
|
-
image?: Image;
|
|
3665
|
-
/** Video url. */
|
|
3666
|
-
video?: Video;
|
|
3667
|
-
}
|
|
3668
|
-
/** Deprecated - use VideoV2 */
|
|
3669
|
-
interface Video {
|
|
3670
|
-
/** WixMedia ID */
|
|
3671
|
-
id?: string;
|
|
3672
|
-
/** URL of video */
|
|
3673
|
-
url?: string;
|
|
3674
|
-
/**
|
|
3675
|
-
* Original image height
|
|
3676
|
-
* @readonly
|
|
3677
|
-
*/
|
|
3678
|
-
height?: number;
|
|
3679
|
-
/**
|
|
3680
|
-
* Original image width
|
|
3681
|
-
* @readonly
|
|
3682
|
-
*/
|
|
3683
|
-
width?: number;
|
|
3684
|
-
/** Video poster */
|
|
3685
|
-
thumbnail?: Image;
|
|
3686
|
-
}
|
|
3687
|
-
interface OldBlogMigratedEvent {
|
|
3688
|
-
/**
|
|
3689
|
-
* Instance id of new version of blog
|
|
3690
|
-
* @format GUID
|
|
3691
|
-
*/
|
|
3692
|
-
newBlogInstanceId?: string;
|
|
3693
|
-
/**
|
|
3694
|
-
* Instance id of old version of blog
|
|
3695
|
-
* @format GUID
|
|
3696
|
-
*/
|
|
3697
|
-
oldBlogInstanceId?: string;
|
|
3698
|
-
}
|
|
3699
3769
|
|
|
3700
3770
|
type __PublicMethodMetaInfo<K = string, M = unknown, T = unknown, S = unknown, Q = unknown, R = unknown> = {
|
|
3701
3771
|
getUrl: (context: any) => string;
|
|
@@ -3721,4 +3791,4 @@ declare function getPostMetrics(): __PublicMethodMetaInfo<'GET', {
|
|
|
3721
3791
|
postId: string;
|
|
3722
3792
|
}, GetPostMetricsRequest$1, GetPostMetricsRequest, GetPostMetricsResponse$1, GetPostMetricsResponse>;
|
|
3723
3793
|
|
|
3724
|
-
export { type AccountInfo as AccountInfoOriginal, type ActionEvent as ActionEventOriginal, Alignment as AlignmentOriginal, type AlignmentWithLiterals as AlignmentWithLiteralsOriginal, type AnchorData as AnchorDataOriginal, type AppEmbedDataAppDataOneOf as AppEmbedDataAppDataOneOfOriginal, type AppEmbedData as AppEmbedDataOriginal, AppType as AppTypeOriginal, type AppTypeWithLiterals as AppTypeWithLiteralsOriginal, AspectRatio as AspectRatioOriginal, type AspectRatioWithLiterals as AspectRatioWithLiteralsOriginal, type AudioData as AudioDataOriginal, type BackgroundBackgroundOneOf as BackgroundBackgroundOneOfOriginal, type BackgroundImage as BackgroundImageOriginal, type Background as BackgroundOriginal, BackgroundType as BackgroundTypeOriginal, type BackgroundTypeWithLiterals as BackgroundTypeWithLiteralsOriginal, type BlockquoteData as BlockquoteDataOriginal, type BlogPaging as BlogPagingOriginal, type BookingData as BookingDataOriginal, type BorderColors as BorderColorsOriginal, type Border as BorderOriginal, type BorderWidths as BorderWidthsOriginal, type BulkDeletePostsRequest as BulkDeletePostsRequestOriginal, type BulkDeletePostsResponse as BulkDeletePostsResponseOriginal, type BulkGetPostReactionsRequest as BulkGetPostReactionsRequestOriginal, type BulkGetPostReactionsResponse as BulkGetPostReactionsResponseOriginal, type BulletedListData as BulletedListDataOriginal, type ButtonData as ButtonDataOriginal, ButtonDataType as ButtonDataTypeOriginal, type ButtonDataTypeWithLiterals as ButtonDataTypeWithLiteralsOriginal, type ButtonStyles as ButtonStylesOriginal, type CaptionData as CaptionDataOriginal, type CardStyles as CardStylesOriginal, type Category as CategoryOriginal, type CategoryTranslation as CategoryTranslationOriginal, type CellStyle as CellStyleOriginal, type CodeBlockData as CodeBlockDataOriginal, type CollapsibleListData as CollapsibleListDataOriginal, type ColorData as ColorDataOriginal, type Colors as ColorsOriginal, type ConvertDraftJsToRichContentRequest as ConvertDraftJsToRichContentRequestOriginal, type ConvertDraftJsToRichContentResponse as ConvertDraftJsToRichContentResponseOriginal, type ConvertRichContentToDraftJsRequest as ConvertRichContentToDraftJsRequestOriginal, type ConvertRichContentToDraftJsResponse as ConvertRichContentToDraftJsResponseOriginal, type CoverMediaMediaOneOf as CoverMediaMediaOneOfOriginal, type CoverMedia as CoverMediaOriginal, 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 GetPostMetricsRequest as GetPostMetricsRequestOriginal, type GetPostMetricsResponse as GetPostMetricsResponseOriginal, type GetPostRequest as GetPostRequestOriginal, type GetPostResponse as GetPostResponseOriginal, GetPostTemplatesSort as GetPostTemplatesSortOriginal, type GetPostTemplatesSortWithLiterals as GetPostTemplatesSortWithLiteralsOriginal, GetPostsSort as GetPostsSortOriginal, type GetPostsSortWithLiterals as GetPostsSortWithLiteralsOriginal, type GetTemplateRequest as GetTemplateRequestOriginal, type GetTemplateResponse as GetTemplateResponseOriginal, type GetTotalLikesPerMemberRequest as GetTotalLikesPerMemberRequestOriginal, type GetTotalLikesPerMemberResponse as GetTotalLikesPerMemberResponseOriginal, type GetTotalPostsRequest as GetTotalPostsRequestOriginal, type GetTotalPostsResponse as GetTotalPostsResponseOriginal, type GetTotalPublicationsRequest as GetTotalPublicationsRequestOriginal, type GetTotalPublicationsResponse as GetTotalPublicationsResponseOriginal, type Gradient as GradientOriginal, type HTMLDataDataOneOf as HTMLDataDataOneOfOriginal, type HTMLData as HTMLDataOriginal, type HeadingData as HeadingDataOriginal, type Height as HeightOriginal, type IdentificationDataIdOneOf as IdentificationDataIdOneOfOriginal, type IdentificationData as IdentificationDataOriginal, type ImageData as ImageDataOriginal, type ImageDataStyles as ImageDataStylesOriginal, type Image as ImageOriginal, ImagePosition as ImagePositionOriginal, type ImagePositionWithLiterals as ImagePositionWithLiteralsOriginal, type ImageStyles as ImageStylesOriginal, InitialExpandedItems as InitialExpandedItemsOriginal, type InitialExpandedItemsWithLiterals as InitialExpandedItemsWithLiteralsOriginal, type InitialPostsCopied as InitialPostsCopiedOriginal, type ItemDataOneOf as ItemDataOneOfOriginal, type ItemImage as ItemImageOriginal, type Item as ItemOriginal, type ItemStyle as ItemStyleOriginal, type ItemVideo as ItemVideoOriginal, type Keyword as KeywordOriginal, type LayoutCellData as LayoutCellDataOriginal, type LayoutData as LayoutDataOriginal, Layout as LayoutOriginal, LayoutType as LayoutTypeOriginal, type LayoutTypeWithLiterals as LayoutTypeWithLiteralsOriginal, type LayoutWithLiterals as LayoutWithLiteralsOriginal, type LikePostRequest as LikePostRequestOriginal, type LikePostResponse as LikePostResponseOriginal, LineStyle as LineStyleOriginal, type LineStyleWithLiterals as LineStyleWithLiteralsOriginal, type LinkDataOneOf as LinkDataOneOfOriginal, type LinkData as LinkDataOriginal, type Link as LinkOriginal, type LinkPreviewData as LinkPreviewDataOriginal, type LinkPreviewDataStyles as LinkPreviewDataStylesOriginal, type ListDemoPostsRequest as ListDemoPostsRequestOriginal, type ListDemoPostsResponse as ListDemoPostsResponseOriginal, type ListPostsArchiveRequest as ListPostsArchiveRequestOriginal, type ListPostsArchiveResponse as ListPostsArchiveResponseOriginal, type ListPostsRequest as ListPostsRequestOriginal, type ListPostsResponse as ListPostsResponseOriginal, type ListTemplatesRequest as ListTemplatesRequestOriginal, type ListTemplatesResponse as ListTemplatesResponseOriginal, type ListValue as ListValueOriginal, type MapData as MapDataOriginal, type MapSettings as MapSettingsOriginal, MapType as MapTypeOriginal, type MapTypeWithLiterals as MapTypeWithLiteralsOriginal, type MediaMediaOneOf as MediaMediaOneOfOriginal, type Media as MediaOriginal, type MentionData as MentionDataOriginal, type MessageEnvelope as MessageEnvelopeOriginal, type MetaData as MetaDataOriginal, type Metadata as MetadataOriginal, type Metrics as MetricsOriginal, type ModerationDetails as ModerationDetailsOriginal, ModerationStatusStatus as ModerationStatusStatusOriginal, type ModerationStatusStatusWithLiterals as ModerationStatusStatusWithLiteralsOriginal, type NodeDataOneOf as NodeDataOneOfOriginal, type Node as NodeOriginal, type NodeStyle as NodeStyleOriginal, NodeType as NodeTypeOriginal, type NodeTypeWithLiterals as NodeTypeWithLiteralsOriginal, NullValue as NullValueOriginal, type NullValueWithLiterals as NullValueWithLiteralsOriginal, type Oembed as OembedOriginal, type OldBlogMigratedEvent as OldBlogMigratedEventOriginal, type OptionDesign as OptionDesignOriginal, type OptionLayout as OptionLayoutOriginal, type Option as OptionOriginal, Order as OrderOriginal, type OrderWithLiterals as OrderWithLiteralsOriginal, type OrderedListData as OrderedListDataOriginal, Orientation as OrientationOriginal, type OrientationWithLiterals as OrientationWithLiteralsOriginal, Origin as OriginOriginal, type OriginWithLiterals as OriginWithLiteralsOriginal, type PDFSettings as PDFSettingsOriginal, type PageUrl as PageUrlOriginal, type PagingMetadataV2 as PagingMetadataV2Original, type Paging as PagingOriginal, type ParagraphData as ParagraphDataOriginal, type PeriodPostCount as PeriodPostCountOriginal, type PeriodPublicationsCount as PeriodPublicationsCountOriginal, type Permissions as PermissionsOriginal, type PinPostRequest as PinPostRequestOriginal, type PinPostResponse as PinPostResponseOriginal, Placement as PlacementOriginal, type PlacementWithLiterals as PlacementWithLiteralsOriginal, type PlatformQuery as PlatformQueryOriginal, type PlatformQueryPagingMethodOneOf as PlatformQueryPagingMethodOneOfOriginal, type PlaybackOptions as PlaybackOptionsOriginal, PluginContainerDataAlignment as PluginContainerDataAlignmentOriginal, type PluginContainerDataAlignmentWithLiterals as PluginContainerDataAlignmentWithLiteralsOriginal, type PluginContainerData as PluginContainerDataOriginal, type PluginContainerDataWidthDataOneOf as PluginContainerDataWidthDataOneOfOriginal, type PluginContainerDataWidth as PluginContainerDataWidthOriginal, type PollDataLayout as PollDataLayoutOriginal, type PollData as PollDataOriginal, type PollDesign as PollDesignOriginal, PollLayoutDirection as PollLayoutDirectionOriginal, type PollLayoutDirectionWithLiterals as PollLayoutDirectionWithLiteralsOriginal, type PollLayout as PollLayoutOriginal, PollLayoutType as PollLayoutTypeOriginal, type PollLayoutTypeWithLiterals as PollLayoutTypeWithLiteralsOriginal, type Poll as PollOriginal, type PollSettings as PollSettingsOriginal, Position as PositionOriginal, type PositionWithLiterals as PositionWithLiteralsOriginal, type PostCategoriesUpdated as PostCategoriesUpdatedOriginal, type PostCountInfo as PostCountInfoOriginal, type 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, SortOrder as SortOrderOriginal, type SortOrderWithLiterals as SortOrderWithLiteralsOriginal, type Sorting as SortingOriginal, Source as SourceOriginal, type SourceWithLiterals as SourceWithLiteralsOriginal, type SpoilerData as SpoilerDataOriginal, type Spoiler as SpoilerOriginal, Status as StatusOriginal, type StatusWithLiterals as StatusWithLiteralsOriginal, type StylesBorder as StylesBorderOriginal, type Styles as StylesOriginal, StylesPosition as StylesPositionOriginal, type StylesPositionWithLiterals as StylesPositionWithLiteralsOriginal, type TableCellData as TableCellDataOriginal, type TableData as TableDataOriginal, type Tag as TagOriginal, Target as TargetOriginal, type TargetWithLiterals as TargetWithLiteralsOriginal, TextAlignment as TextAlignmentOriginal, type TextAlignmentWithLiterals as TextAlignmentWithLiteralsOriginal, type TextData as TextDataOriginal, type TextNodeStyle as TextNodeStyleOriginal, type TextStyle as TextStyleOriginal, ThumbnailsAlignment as ThumbnailsAlignmentOriginal, type ThumbnailsAlignmentWithLiterals as ThumbnailsAlignmentWithLiteralsOriginal, type Thumbnails as ThumbnailsOriginal, Type as TypeOriginal, type TypeWithLiterals as TypeWithLiteralsOriginal, type UnlikePostRequest as UnlikePostRequestOriginal, type UnlikePostResponse as UnlikePostResponseOriginal, type UnpinPostRequest as UnpinPostRequestOriginal, type UnpinPostResponse as UnpinPostResponseOriginal, type V1Media as V1MediaOriginal, VerticalAlignmentAlignment as VerticalAlignmentAlignmentOriginal, type VerticalAlignmentAlignmentWithLiterals as VerticalAlignmentAlignmentWithLiteralsOriginal, VerticalAlignment as VerticalAlignmentOriginal, type VerticalAlignmentWithLiterals as VerticalAlignmentWithLiteralsOriginal, type VideoData as VideoDataOriginal, type Video as VideoOriginal, type VideoResolution as VideoResolutionOriginal, type VideoV2 as VideoV2Original, ViewMode as ViewModeOriginal, type ViewModeWithLiterals as ViewModeWithLiteralsOriginal, type ViewPostRequest as ViewPostRequestOriginal, type ViewPostResponse as ViewPostResponseOriginal, ViewRole as ViewRoleOriginal, type ViewRoleWithLiterals as ViewRoleWithLiteralsOriginal, VoteRole as VoteRoleOriginal, type VoteRoleWithLiterals as VoteRoleWithLiteralsOriginal, WebhookIdentityType as WebhookIdentityTypeOriginal, type WebhookIdentityTypeWithLiterals as WebhookIdentityTypeWithLiteralsOriginal, Width as WidthOriginal, WidthType as WidthTypeOriginal, type WidthTypeWithLiterals as WidthTypeWithLiteralsOriginal, type WidthWithLiterals as WidthWithLiteralsOriginal, type WixMedia as WixMediaOriginal, type __PublicMethodMetaInfo, getPost, getPostBySlug, getPostMetrics, getTotalPosts, listPosts, queryPostCountStats, queryPosts };
|
|
3794
|
+
export { type AccountInfo as AccountInfoOriginal, type ActionEvent as ActionEventOriginal, Alignment as AlignmentOriginal, type AlignmentWithLiterals as AlignmentWithLiteralsOriginal, type AnchorData as AnchorDataOriginal, type AppEmbedDataAppDataOneOf as AppEmbedDataAppDataOneOfOriginal, type AppEmbedData as AppEmbedDataOriginal, AppType as AppTypeOriginal, type AppTypeWithLiterals as AppTypeWithLiteralsOriginal, AspectRatio as AspectRatioOriginal, type AspectRatioWithLiterals as AspectRatioWithLiteralsOriginal, type AudioData as AudioDataOriginal, type BackgroundBackgroundOneOf as BackgroundBackgroundOneOfOriginal, type BackgroundImage as BackgroundImageOriginal, type Background as BackgroundOriginal, BackgroundType as BackgroundTypeOriginal, type BackgroundTypeWithLiterals as BackgroundTypeWithLiteralsOriginal, type BlockquoteData as BlockquoteDataOriginal, type BlogPaging as BlogPagingOriginal, type BookingData as BookingDataOriginal, type BorderColors as BorderColorsOriginal, type Border as BorderOriginal, type BorderWidths as BorderWidthsOriginal, type BulkDeletePostsRequest as BulkDeletePostsRequestOriginal, type BulkDeletePostsResponse as BulkDeletePostsResponseOriginal, type BulkGetPostReactionsRequest as BulkGetPostReactionsRequestOriginal, type BulkGetPostReactionsResponse as BulkGetPostReactionsResponseOriginal, type BulletedListData as BulletedListDataOriginal, type ButtonData as ButtonDataOriginal, ButtonDataType as ButtonDataTypeOriginal, type ButtonDataTypeWithLiterals as ButtonDataTypeWithLiteralsOriginal, type ButtonStyles as ButtonStylesOriginal, type CaptionData as CaptionDataOriginal, type CardStyles as CardStylesOriginal, type Category as CategoryOriginal, type CategoryTranslation as CategoryTranslationOriginal, type CellStyle as CellStyleOriginal, type CodeBlockData as CodeBlockDataOriginal, type CollapsibleListData as CollapsibleListDataOriginal, type ColorData as ColorDataOriginal, type Colors as ColorsOriginal, type ConvertDraftJsToRichContentRequest as ConvertDraftJsToRichContentRequestOriginal, type ConvertDraftJsToRichContentResponse as ConvertDraftJsToRichContentResponseOriginal, type ConvertRichContentToDraftJsRequest as ConvertRichContentToDraftJsRequestOriginal, type ConvertRichContentToDraftJsResponse as ConvertRichContentToDraftJsResponseOriginal, type CreateDraftPostFromTemplateRequest as CreateDraftPostFromTemplateRequestOriginal, type CreateDraftPostFromTemplateResponse as CreateDraftPostFromTemplateResponseOriginal, Crop as CropOriginal, type CropWithLiterals as CropWithLiteralsOriginal, type CursorPaging as CursorPagingOriginal, type Cursors as CursorsOriginal, type DecorationDataOneOf as DecorationDataOneOfOriginal, type Decoration as DecorationOriginal, DecorationType as DecorationTypeOriginal, type DecorationTypeWithLiterals as DecorationTypeWithLiteralsOriginal, type DeletePostRequest as DeletePostRequestOriginal, type DeletePostResponse as DeletePostResponseOriginal, type Design as DesignOriginal, DesignTarget as DesignTargetOriginal, type DesignTargetWithLiterals as DesignTargetWithLiteralsOriginal, type Dimensions as DimensionsOriginal, Direction as DirectionOriginal, type DirectionWithLiterals as DirectionWithLiteralsOriginal, DividerDataAlignment as DividerDataAlignmentOriginal, type DividerDataAlignmentWithLiterals as DividerDataAlignmentWithLiteralsOriginal, type DividerData as DividerDataOriginal, type DocumentStyle as DocumentStyleOriginal, type DomainEventBodyOneOf as DomainEventBodyOneOfOriginal, type DomainEvent as DomainEventOriginal, type DraftPost as DraftPostOriginal, type DraftPostTranslation as DraftPostTranslationOriginal, type EmbedData as EmbedDataOriginal, type EmbedMedia as EmbedMediaOriginal, type EmbedThumbnail as EmbedThumbnailOriginal, type EmbedVideo as EmbedVideoOriginal, type EntityCreatedEvent as EntityCreatedEventOriginal, type EntityDeletedEvent as EntityDeletedEventOriginal, type EntityUpdatedEvent as EntityUpdatedEventOriginal, type EventData as EventDataOriginal, Field as FieldOriginal, type FieldWithLiterals as FieldWithLiteralsOriginal, type FileData as FileDataOriginal, type FileSourceDataOneOf as FileSourceDataOneOfOriginal, type FileSource as FileSourceOriginal, type FocalPoint as FocalPointOriginal, type FontFamilyData as FontFamilyDataOriginal, type FontSizeData as FontSizeDataOriginal, FontType as FontTypeOriginal, type FontTypeWithLiterals as FontTypeWithLiteralsOriginal, type GIFData as GIFDataOriginal, type GIF as GIFOriginal, GIFType as GIFTypeOriginal, type GIFTypeWithLiterals as GIFTypeWithLiteralsOriginal, type GalleryData as GalleryDataOriginal, type GalleryOptionsLayout as GalleryOptionsLayoutOriginal, type GalleryOptions as GalleryOptionsOriginal, type GetPostBySlugRequest as GetPostBySlugRequestOriginal, type GetPostBySlugResponse as GetPostBySlugResponseOriginal, type GetPostCountPerMonthRequest as GetPostCountPerMonthRequestOriginal, type GetPostCountPerMonthResponse as GetPostCountPerMonthResponseOriginal, type GetPostMetricsRequest as GetPostMetricsRequestOriginal, type GetPostMetricsResponse as GetPostMetricsResponseOriginal, type GetPostRequest as GetPostRequestOriginal, type GetPostResponse as GetPostResponseOriginal, GetPostTemplatesSort as GetPostTemplatesSortOriginal, type GetPostTemplatesSortWithLiterals as GetPostTemplatesSortWithLiteralsOriginal, GetPostsSort as GetPostsSortOriginal, type GetPostsSortWithLiterals as GetPostsSortWithLiteralsOriginal, type GetTemplateRequest as GetTemplateRequestOriginal, type GetTemplateResponse as GetTemplateResponseOriginal, type GetTotalLikesPerMemberRequest as GetTotalLikesPerMemberRequestOriginal, type GetTotalLikesPerMemberResponse as GetTotalLikesPerMemberResponseOriginal, type GetTotalPostsRequest as GetTotalPostsRequestOriginal, type GetTotalPostsResponse as GetTotalPostsResponseOriginal, type GetTotalPublicationsRequest as GetTotalPublicationsRequestOriginal, type GetTotalPublicationsResponse as GetTotalPublicationsResponseOriginal, type Gradient as GradientOriginal, type HTMLDataDataOneOf as HTMLDataDataOneOfOriginal, type HTMLData as HTMLDataOriginal, type HeadingData as HeadingDataOriginal, type Height as HeightOriginal, type IdentificationDataIdOneOf as IdentificationDataIdOneOfOriginal, type IdentificationData as IdentificationDataOriginal, type ImageData as ImageDataOriginal, type ImageDataStyles as ImageDataStylesOriginal, type Image as ImageOriginal, ImagePosition as ImagePositionOriginal, type ImagePositionWithLiterals as ImagePositionWithLiteralsOriginal, type ImageStyles as ImageStylesOriginal, InitialExpandedItems as InitialExpandedItemsOriginal, type InitialExpandedItemsWithLiterals as InitialExpandedItemsWithLiteralsOriginal, type InitialPostsCopied as InitialPostsCopiedOriginal, type ItemDataOneOf as ItemDataOneOfOriginal, type ItemImage as ItemImageOriginal, type Item as ItemOriginal, type ItemStyle as ItemStyleOriginal, type Keyword as KeywordOriginal, type LayoutCellData as LayoutCellDataOriginal, type LayoutData as LayoutDataOriginal, Layout as LayoutOriginal, LayoutType as LayoutTypeOriginal, type LayoutTypeWithLiterals as LayoutTypeWithLiteralsOriginal, type LayoutWithLiterals as LayoutWithLiteralsOriginal, type LikePostRequest as LikePostRequestOriginal, type LikePostResponse as LikePostResponseOriginal, LineStyle as LineStyleOriginal, type LineStyleWithLiterals as LineStyleWithLiteralsOriginal, type LinkDataOneOf as LinkDataOneOfOriginal, type LinkData as LinkDataOriginal, type Link as LinkOriginal, type LinkPreviewData as LinkPreviewDataOriginal, type LinkPreviewDataStyles as LinkPreviewDataStylesOriginal, type ListDemoPostsRequest as ListDemoPostsRequestOriginal, type ListDemoPostsResponse as ListDemoPostsResponseOriginal, type ListPostsArchiveRequest as ListPostsArchiveRequestOriginal, type ListPostsArchiveResponse as ListPostsArchiveResponseOriginal, type ListPostsRequest as ListPostsRequestOriginal, type ListPostsResponse as ListPostsResponseOriginal, type ListTemplatesRequest as ListTemplatesRequestOriginal, type ListTemplatesResponse as ListTemplatesResponseOriginal, type ListValue as ListValueOriginal, type MapData as MapDataOriginal, type MapSettings as MapSettingsOriginal, MapType as MapTypeOriginal, type MapTypeWithLiterals as MapTypeWithLiteralsOriginal, type MediaMediaOneOf as MediaMediaOneOfOriginal, type Media as MediaOriginal, type MentionData as MentionDataOriginal, type MessageEnvelope as MessageEnvelopeOriginal, type MetaData as MetaDataOriginal, type Metadata as MetadataOriginal, type Metrics as MetricsOriginal, type ModerationDetails as ModerationDetailsOriginal, ModerationStatusStatus as ModerationStatusStatusOriginal, type ModerationStatusStatusWithLiterals as ModerationStatusStatusWithLiteralsOriginal, type NodeDataOneOf as NodeDataOneOfOriginal, type Node as NodeOriginal, type NodeStyle as NodeStyleOriginal, NodeType as NodeTypeOriginal, type NodeTypeWithLiterals as NodeTypeWithLiteralsOriginal, NullValue as NullValueOriginal, type NullValueWithLiterals as NullValueWithLiteralsOriginal, type Oembed as OembedOriginal, type OptionDesign as OptionDesignOriginal, type OptionLayout as OptionLayoutOriginal, type Option as OptionOriginal, Order as OrderOriginal, type OrderWithLiterals as OrderWithLiteralsOriginal, type OrderedListData as OrderedListDataOriginal, Orientation as OrientationOriginal, type OrientationWithLiterals as OrientationWithLiteralsOriginal, Origin as OriginOriginal, type OriginWithLiterals as OriginWithLiteralsOriginal, type PDFSettings as PDFSettingsOriginal, type PageUrl as PageUrlOriginal, type PagingMetadataV2 as PagingMetadataV2Original, type Paging as PagingOriginal, type ParagraphData as ParagraphDataOriginal, type PeriodPostCount as PeriodPostCountOriginal, type PeriodPublicationsCount as PeriodPublicationsCountOriginal, type Permissions as PermissionsOriginal, type PinPostRequest as PinPostRequestOriginal, type PinPostResponse as PinPostResponseOriginal, Placement as PlacementOriginal, type PlacementWithLiterals as PlacementWithLiteralsOriginal, type PlatformQuery as PlatformQueryOriginal, type PlatformQueryPagingMethodOneOf as PlatformQueryPagingMethodOneOfOriginal, type PlaybackOptions as PlaybackOptionsOriginal, PluginContainerDataAlignment as PluginContainerDataAlignmentOriginal, type PluginContainerDataAlignmentWithLiterals as PluginContainerDataAlignmentWithLiteralsOriginal, type PluginContainerData as PluginContainerDataOriginal, type PluginContainerDataWidthDataOneOf as PluginContainerDataWidthDataOneOfOriginal, type PluginContainerDataWidth as PluginContainerDataWidthOriginal, type PollDataLayout as PollDataLayoutOriginal, type PollData as PollDataOriginal, type PollDesign as PollDesignOriginal, PollLayoutDirection as PollLayoutDirectionOriginal, type PollLayoutDirectionWithLiterals as PollLayoutDirectionWithLiteralsOriginal, type PollLayout as PollLayoutOriginal, PollLayoutType as PollLayoutTypeOriginal, type PollLayoutTypeWithLiterals as PollLayoutTypeWithLiteralsOriginal, type Poll as PollOriginal, type PollSettings as PollSettingsOriginal, Position as PositionOriginal, type PositionWithLiterals as PositionWithLiteralsOriginal, type PostCategoriesUpdated as PostCategoriesUpdatedOriginal, type PostCountInfo as PostCountInfoOriginal, type PostCountPerMonth as PostCountPerMonthOriginal, type PostCountersUpdatedInitiatorOneOf as PostCountersUpdatedInitiatorOneOfOriginal, type PostCountersUpdated as PostCountersUpdatedOriginal, PostFieldField as PostFieldFieldOriginal, type PostFieldFieldWithLiterals as PostFieldFieldWithLiteralsOriginal, type PostLikedInitiatorOneOf as PostLikedInitiatorOneOfOriginal, type PostLiked as PostLikedOriginal, type Post as PostOriginal, type PostOwnerChanged as PostOwnerChangedOriginal, type PostTagsUpdated as PostTagsUpdatedOriginal, type PostTranslation as PostTranslationOriginal, type PostUnlikedInitiatorOneOf as PostUnlikedInitiatorOneOfOriginal, type PostUnliked as PostUnlikedOriginal, type PricingData as PricingDataOriginal, type QueryPostCountStatsRequest as QueryPostCountStatsRequestOriginal, type QueryPostCountStatsResponse as QueryPostCountStatsResponseOriginal, type QueryPostsRequest as QueryPostsRequestOriginal, type QueryPostsResponse as QueryPostsResponseOriginal, QueryPublicationsCountStatsRequestOrder as QueryPublicationsCountStatsRequestOrderOriginal, type QueryPublicationsCountStatsRequestOrderWithLiterals as QueryPublicationsCountStatsRequestOrderWithLiteralsOriginal, type QueryPublicationsCountStatsRequest as QueryPublicationsCountStatsRequestOriginal, type QueryPublicationsCountStatsResponse as QueryPublicationsCountStatsResponseOriginal, type Reactions as ReactionsOriginal, type Rel as RelOriginal, Resizing as ResizingOriginal, type ResizingWithLiterals as ResizingWithLiteralsOriginal, ResponsivenessBehaviour as ResponsivenessBehaviourOriginal, type ResponsivenessBehaviourWithLiterals as ResponsivenessBehaviourWithLiteralsOriginal, type RestoreInfo as RestoreInfoOriginal, type RibbonStyles as RibbonStylesOriginal, type RichContent as RichContentOriginal, Scaling as ScalingOriginal, type ScalingWithLiterals as ScalingWithLiteralsOriginal, type ScheduledPostPublished as ScheduledPostPublishedOriginal, type SeoSchema as SeoSchemaOriginal, type Settings as SettingsOriginal, type ShapeData as ShapeDataOriginal, type ShapeDataStyles as ShapeDataStylesOriginal, SortOrder as SortOrderOriginal, type SortOrderWithLiterals as SortOrderWithLiteralsOriginal, type Sorting as SortingOriginal, Source as SourceOriginal, type SourceWithLiterals as SourceWithLiteralsOriginal, type SpoilerData as SpoilerDataOriginal, type Spoiler as SpoilerOriginal, Status as StatusOriginal, type StatusWithLiterals as StatusWithLiteralsOriginal, type StylesBorder as StylesBorderOriginal, type Styles as StylesOriginal, StylesPosition as StylesPositionOriginal, type StylesPositionWithLiterals as StylesPositionWithLiteralsOriginal, type TableCellData as TableCellDataOriginal, type TableData as TableDataOriginal, type Tag as TagOriginal, Target as TargetOriginal, type TargetWithLiterals as TargetWithLiteralsOriginal, TextAlignment as TextAlignmentOriginal, type TextAlignmentWithLiterals as TextAlignmentWithLiteralsOriginal, type TextData as TextDataOriginal, type TextNodeStyle as TextNodeStyleOriginal, type TextStyle as TextStyleOriginal, ThumbnailsAlignment as ThumbnailsAlignmentOriginal, type ThumbnailsAlignmentWithLiterals as ThumbnailsAlignmentWithLiteralsOriginal, type Thumbnails as ThumbnailsOriginal, Type as TypeOriginal, type TypeWithLiterals as TypeWithLiteralsOriginal, type UnlikePostRequest as UnlikePostRequestOriginal, type UnlikePostResponse as UnlikePostResponseOriginal, type UnpinPostRequest as UnpinPostRequestOriginal, type UnpinPostResponse as UnpinPostResponseOriginal, type V1Media as V1MediaOriginal, VerticalAlignmentAlignment as VerticalAlignmentAlignmentOriginal, type VerticalAlignmentAlignmentWithLiterals as VerticalAlignmentAlignmentWithLiteralsOriginal, VerticalAlignment as VerticalAlignmentOriginal, type VerticalAlignmentWithLiterals as VerticalAlignmentWithLiteralsOriginal, type VideoData as VideoDataOriginal, type Video as VideoOriginal, type VideoResolution as VideoResolutionOriginal, type VideoV2 as VideoV2Original, ViewMode as ViewModeOriginal, type ViewModeWithLiterals as ViewModeWithLiteralsOriginal, type ViewPostRequest as ViewPostRequestOriginal, type ViewPostResponse as ViewPostResponseOriginal, ViewRole as ViewRoleOriginal, type ViewRoleWithLiterals as ViewRoleWithLiteralsOriginal, VoteRole as VoteRoleOriginal, type VoteRoleWithLiterals as VoteRoleWithLiteralsOriginal, WebhookIdentityType as WebhookIdentityTypeOriginal, type WebhookIdentityTypeWithLiterals as WebhookIdentityTypeWithLiteralsOriginal, Width as WidthOriginal, WidthType as WidthTypeOriginal, type WidthTypeWithLiterals as WidthTypeWithLiteralsOriginal, type WidthWithLiterals as WidthWithLiteralsOriginal, type WixMedia as WixMediaOriginal, type __PublicMethodMetaInfo, getPost, getPostBySlug, getPostMetrics, getTotalPosts, listPosts, queryPostCountStats, queryPosts };
|