@wix/auto_sdk_blog_draft-posts 1.0.90 → 1.0.92
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 +1 -1
- package/build/cjs/index.js +18 -0
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +58 -5
- package/build/cjs/index.typings.js +18 -0
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +58 -5
- package/build/cjs/meta.js +18 -0
- package/build/cjs/meta.js.map +1 -1
- package/build/es/index.d.mts +1 -1
- package/build/es/index.mjs +17 -0
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +58 -5
- package/build/es/index.typings.mjs +17 -0
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +58 -5
- package/build/es/meta.mjs +17 -0
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/index.d.ts +1 -1
- package/build/internal/cjs/index.js +18 -0
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +379 -5
- package/build/internal/cjs/index.typings.js +18 -0
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +414 -5
- package/build/internal/cjs/meta.js +18 -0
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/index.d.mts +1 -1
- package/build/internal/es/index.mjs +17 -0
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +379 -5
- package/build/internal/es/index.typings.mjs +17 -0
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +414 -5
- package/build/internal/es/meta.mjs +17 -0
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +4 -4
|
@@ -82,6 +82,25 @@ interface DraftPost {
|
|
|
82
82
|
* @format LANGUAGE_TAG
|
|
83
83
|
*/
|
|
84
84
|
language?: string | null;
|
|
85
|
+
/**
|
|
86
|
+
* Reserved for internal use.
|
|
87
|
+
* @internal
|
|
88
|
+
* @readonly
|
|
89
|
+
*/
|
|
90
|
+
changeOrigin?: OriginWithLiterals;
|
|
91
|
+
/**
|
|
92
|
+
* Reserved for internal use.
|
|
93
|
+
* @internal
|
|
94
|
+
* @readonly
|
|
95
|
+
* @maxLength 24
|
|
96
|
+
*/
|
|
97
|
+
contentId?: string | null;
|
|
98
|
+
/**
|
|
99
|
+
* Reserved for internal use.
|
|
100
|
+
* @internal
|
|
101
|
+
* @format GUID
|
|
102
|
+
*/
|
|
103
|
+
editingSessionId?: string | null;
|
|
85
104
|
/**
|
|
86
105
|
* Draft Post rich content.
|
|
87
106
|
*
|
|
@@ -97,6 +116,13 @@ interface DraftPost {
|
|
|
97
116
|
status?: StatusWithLiterals;
|
|
98
117
|
/** Details of the draft post in review. Only relevant to posts submitted by guest writers. */
|
|
99
118
|
moderationDetails?: ModerationDetails;
|
|
119
|
+
/**
|
|
120
|
+
* Reserved for internal use.
|
|
121
|
+
* @internal
|
|
122
|
+
* @readonly
|
|
123
|
+
* @format GUID
|
|
124
|
+
*/
|
|
125
|
+
mostRecentContributorId?: string | null;
|
|
100
126
|
/**
|
|
101
127
|
* Indicates if there are changes made to the draft post that have not yet been published.
|
|
102
128
|
* @readonly
|
|
@@ -112,10 +138,23 @@ interface DraftPost {
|
|
|
112
138
|
* @readonly
|
|
113
139
|
*/
|
|
114
140
|
scheduledPublishDate?: Date | null;
|
|
141
|
+
/**
|
|
142
|
+
* Reserved for internal use.
|
|
143
|
+
* @internal
|
|
144
|
+
*/
|
|
145
|
+
content?: Record<string, any> | null;
|
|
115
146
|
/** Date the post was first published. */
|
|
116
147
|
firstPublishedDate?: Date | null;
|
|
117
148
|
/** SEO data. */
|
|
118
149
|
seoData?: SeoSchema;
|
|
150
|
+
/**
|
|
151
|
+
* Reserved for internal use.
|
|
152
|
+
* @internal
|
|
153
|
+
* @readonly
|
|
154
|
+
* @maxSize 5000
|
|
155
|
+
* @maxLength 100
|
|
156
|
+
*/
|
|
157
|
+
slugs?: string[];
|
|
119
158
|
/**
|
|
120
159
|
* Draft post URL preview. What the URL will look like once the post is published.
|
|
121
160
|
* @readonly
|
|
@@ -135,6 +174,32 @@ interface DraftPost {
|
|
|
135
174
|
media?: Media;
|
|
136
175
|
/** Number of paragraphs to display in a paid content preview for non-paying users. */
|
|
137
176
|
previewTextParagraph?: number | null;
|
|
177
|
+
/**
|
|
178
|
+
* List of the post's translated posts.
|
|
179
|
+
* @internal
|
|
180
|
+
* @readonly
|
|
181
|
+
* @maxSize 1000
|
|
182
|
+
*/
|
|
183
|
+
translations?: DraftPostTranslation[];
|
|
184
|
+
/**
|
|
185
|
+
* Reserved for internal use, not included in base response.
|
|
186
|
+
* @internal
|
|
187
|
+
* @format GUID
|
|
188
|
+
*/
|
|
189
|
+
originPostId?: string | null;
|
|
190
|
+
/**
|
|
191
|
+
* Reserved for internal use, not included in base response.
|
|
192
|
+
* @internal
|
|
193
|
+
* @format GUID
|
|
194
|
+
*/
|
|
195
|
+
originPostInstanceId?: string | null;
|
|
196
|
+
/**
|
|
197
|
+
* Reserved for internal use.
|
|
198
|
+
* @internal
|
|
199
|
+
* @readonly
|
|
200
|
+
* @maxLength 24
|
|
201
|
+
*/
|
|
202
|
+
internalId?: string | null;
|
|
138
203
|
}
|
|
139
204
|
interface Image {
|
|
140
205
|
/** WixMedia image ID. */
|
|
@@ -153,11 +218,29 @@ interface Image {
|
|
|
153
218
|
width?: number;
|
|
154
219
|
/** Image alt text. */
|
|
155
220
|
altText?: string | null;
|
|
221
|
+
/**
|
|
222
|
+
* Image URL expiration date (when relevant).
|
|
223
|
+
* @internal
|
|
224
|
+
* @readonly
|
|
225
|
+
*/
|
|
226
|
+
urlExpirationDate?: Date | null;
|
|
156
227
|
/**
|
|
157
228
|
* Image filename.
|
|
158
229
|
* @readonly
|
|
159
230
|
*/
|
|
160
231
|
filename?: string | null;
|
|
232
|
+
/**
|
|
233
|
+
* Image size in bytes.
|
|
234
|
+
* @internal
|
|
235
|
+
* @readonly
|
|
236
|
+
* @format DECIMAL_VALUE
|
|
237
|
+
*/
|
|
238
|
+
sizeInBytes?: string | null;
|
|
239
|
+
/**
|
|
240
|
+
* Focal point of the image.
|
|
241
|
+
* @internal
|
|
242
|
+
*/
|
|
243
|
+
focalPoint?: FocalPoint;
|
|
161
244
|
}
|
|
162
245
|
interface FocalPoint {
|
|
163
246
|
/** X-coordinate of the focal point. */
|
|
@@ -749,17 +832,27 @@ interface Rel {
|
|
|
749
832
|
interface Animation {
|
|
750
833
|
/** Animation kind. */
|
|
751
834
|
type?: AnimationTypeWithLiterals;
|
|
752
|
-
/** Entrance animation, played once when the node first enters the viewport. */
|
|
835
|
+
/** Entrance animation, played once when the node first enters the viewport (VIEW). */
|
|
753
836
|
entrance?: EntranceAnimation;
|
|
754
|
-
/** Looping animation, repeated indefinitely while the node is on the page. When combined with entrance, the loop starts after the entrance finishes. */
|
|
837
|
+
/** Looping animation, repeated indefinitely while the node is on the page. When combined with entrance, the loop starts after the entrance finishes (VIEW). */
|
|
755
838
|
loop?: LoopAnimation;
|
|
839
|
+
/**
|
|
840
|
+
* POINTER carries its fields directly on the union member in the JTD wall, hence
|
|
841
|
+
* flat fields here (ts-proto camelCase must equal the JTD property names). A future
|
|
842
|
+
* SCROLL variant will contend for the `effect` JSON name — resolve when it lands.
|
|
843
|
+
*/
|
|
844
|
+
effect?: PointerEffect;
|
|
845
|
+
/** How quickly the node settles toward the pointer, in milliseconds (POINTER). */
|
|
846
|
+
transitionDuration?: number | null;
|
|
756
847
|
}
|
|
757
848
|
declare enum AnimationType {
|
|
758
849
|
/** Animations that play while the node is in view. */
|
|
759
|
-
VIEW = "VIEW"
|
|
850
|
+
VIEW = "VIEW",
|
|
851
|
+
/** Animations driven by the visitor's mouse position. */
|
|
852
|
+
POINTER = "POINTER"
|
|
760
853
|
}
|
|
761
854
|
/** @enumType */
|
|
762
|
-
type AnimationTypeWithLiterals = AnimationType | 'VIEW';
|
|
855
|
+
type AnimationTypeWithLiterals = AnimationType | 'VIEW' | 'POINTER';
|
|
763
856
|
interface EntranceAnimation {
|
|
764
857
|
/** The entrance effect to play. */
|
|
765
858
|
effect?: EntranceEffect;
|
|
@@ -879,6 +972,49 @@ declare enum LoopEffectType {
|
|
|
879
972
|
}
|
|
880
973
|
/** @enumType */
|
|
881
974
|
type LoopEffectTypeWithLiterals = LoopEffectType | 'BOUNCE' | 'BREATHE' | 'CROSS' | 'FLASH' | 'FLIP' | 'FOLD' | 'JELLO' | 'POKE' | 'PULSE' | 'RUBBER' | 'SPIN' | 'SWING' | 'WIGGLE';
|
|
975
|
+
interface PointerEffect {
|
|
976
|
+
/** The mouse effect type. */
|
|
977
|
+
type?: PointerEffectTypeWithLiterals;
|
|
978
|
+
/** Reacts away from the pointer instead of toward it. */
|
|
979
|
+
inverted?: boolean | null;
|
|
980
|
+
/**
|
|
981
|
+
* One field, two value spaces (the effect type says which): the axis the movement is constrained to — HORIZONTAL, VERTICAL, or BOTH (AIRY, SCALE, SKEW, TRACK, TRACK_3D) — or the edge/center axis the node swivels around — TOP, BOTTOM, LEFT, RIGHT, CENTER_HORIZONTAL, or CENTER_VERTICAL (SWIVEL). Only the effects that expose one accept it.
|
|
982
|
+
* @maxLength 20
|
|
983
|
+
*/
|
|
984
|
+
axis?: string | null;
|
|
985
|
+
/**
|
|
986
|
+
* Whether the node grows or shrinks as the pointer nears: UP or DOWN (SCALE).
|
|
987
|
+
* @maxLength 8
|
|
988
|
+
*/
|
|
989
|
+
direction?: string | null;
|
|
990
|
+
/**
|
|
991
|
+
* Motion style: GENTLE, MODERATE, or INTENSE.
|
|
992
|
+
* @maxLength 100
|
|
993
|
+
*/
|
|
994
|
+
easing?: string | null;
|
|
995
|
+
}
|
|
996
|
+
declare enum PointerEffectType {
|
|
997
|
+
/** Drifts loosely after the pointer with a light rotation. */
|
|
998
|
+
AIRY = "AIRY",
|
|
999
|
+
/** Squashes and stretches toward the pointer. */
|
|
1000
|
+
BLOB = "BLOB",
|
|
1001
|
+
/** Shifts after the pointer while blurring. */
|
|
1002
|
+
BLUR = "BLUR",
|
|
1003
|
+
/** Scales as the pointer approaches. */
|
|
1004
|
+
SCALE = "SCALE",
|
|
1005
|
+
/** Skews toward the pointer. */
|
|
1006
|
+
SKEW = "SKEW",
|
|
1007
|
+
/** Rotates around a pivot edge or axis, following the pointer. */
|
|
1008
|
+
SWIVEL = "SWIVEL",
|
|
1009
|
+
/** Tilts in 3D perspective toward the pointer. */
|
|
1010
|
+
TILT_3D = "TILT_3D",
|
|
1011
|
+
/** Follows the pointer's position. */
|
|
1012
|
+
TRACK = "TRACK",
|
|
1013
|
+
/** Follows the pointer with a 3D depth motion. */
|
|
1014
|
+
TRACK_3D = "TRACK_3D"
|
|
1015
|
+
}
|
|
1016
|
+
/** @enumType */
|
|
1017
|
+
type PointerEffectTypeWithLiterals = PointerEffectType | 'AIRY' | 'BLOB' | 'BLUR' | 'SCALE' | 'SKEW' | 'SWIVEL' | 'TILT_3D' | 'TRACK' | 'TRACK_3D';
|
|
882
1018
|
interface CodeBlockData {
|
|
883
1019
|
/** Styling for the code block's text. */
|
|
884
1020
|
textStyle?: TextStyle;
|
|
@@ -2847,6 +2983,13 @@ declare enum Status {
|
|
|
2847
2983
|
SCHEDULED = "SCHEDULED",
|
|
2848
2984
|
/** Status indicating the draft post is deleted. */
|
|
2849
2985
|
DELETED = "DELETED",
|
|
2986
|
+
/**
|
|
2987
|
+
* Deprecated. Use `IN_REVIEW` instead. Status indicating the draft post is in review.
|
|
2988
|
+
* Target removal date 2024-06-30
|
|
2989
|
+
* Reserved for internal use.
|
|
2990
|
+
* @internal
|
|
2991
|
+
*/
|
|
2992
|
+
IN_MODERATION = "IN_MODERATION",
|
|
2850
2993
|
/** Status indicating the draft post is in review. */
|
|
2851
2994
|
IN_REVIEW = "IN_REVIEW"
|
|
2852
2995
|
}
|
|
@@ -2973,6 +3116,11 @@ interface WixMedia {
|
|
|
2973
3116
|
interface VideoV2 {
|
|
2974
3117
|
/** WixMedia ID. */
|
|
2975
3118
|
id?: string;
|
|
3119
|
+
/**
|
|
3120
|
+
* Original video URL.
|
|
3121
|
+
* @internal
|
|
3122
|
+
*/
|
|
3123
|
+
url?: string;
|
|
2976
3124
|
/**
|
|
2977
3125
|
* Available resolutions for the video, starting with the optimal resolution.
|
|
2978
3126
|
* @readonly
|
|
@@ -2984,6 +3132,55 @@ interface VideoV2 {
|
|
|
2984
3132
|
* @readonly
|
|
2985
3133
|
*/
|
|
2986
3134
|
filename?: string | null;
|
|
3135
|
+
/**
|
|
3136
|
+
* Video posters.
|
|
3137
|
+
* @internal
|
|
3138
|
+
* @readonly
|
|
3139
|
+
*/
|
|
3140
|
+
posters?: Image[];
|
|
3141
|
+
/**
|
|
3142
|
+
* Original video size in bytes.
|
|
3143
|
+
* @internal
|
|
3144
|
+
* @readonly
|
|
3145
|
+
* @format DECIMAL_VALUE
|
|
3146
|
+
*/
|
|
3147
|
+
sizeInBytes?: string | null;
|
|
3148
|
+
/**
|
|
3149
|
+
* Video URL expiration date (when relevant).
|
|
3150
|
+
* @internal
|
|
3151
|
+
* @readonly
|
|
3152
|
+
*/
|
|
3153
|
+
urlExpirationDate?: Date | null;
|
|
3154
|
+
/**
|
|
3155
|
+
* Original video duration in milliseconds.
|
|
3156
|
+
* @internal
|
|
3157
|
+
* @readonly
|
|
3158
|
+
*/
|
|
3159
|
+
durationInMilliseconds?: number | null;
|
|
3160
|
+
/**
|
|
3161
|
+
* A short title for the video. will be used for SEO purposes.
|
|
3162
|
+
* @internal
|
|
3163
|
+
* @maxLength 300
|
|
3164
|
+
*/
|
|
3165
|
+
title?: string | null;
|
|
3166
|
+
/**
|
|
3167
|
+
* A long description for the video. will be used for SEO purposes.
|
|
3168
|
+
* @internal
|
|
3169
|
+
* @maxLength 2000
|
|
3170
|
+
*/
|
|
3171
|
+
description?: string | null;
|
|
3172
|
+
/**
|
|
3173
|
+
* Original video height.
|
|
3174
|
+
* @internal
|
|
3175
|
+
* @readonly
|
|
3176
|
+
*/
|
|
3177
|
+
height?: number | null;
|
|
3178
|
+
/**
|
|
3179
|
+
* Original video width.
|
|
3180
|
+
* @internal
|
|
3181
|
+
* @readonly
|
|
3182
|
+
*/
|
|
3183
|
+
width?: number | null;
|
|
2987
3184
|
}
|
|
2988
3185
|
interface VideoResolution {
|
|
2989
3186
|
/** Video URL. */
|
|
@@ -2992,8 +3189,68 @@ interface VideoResolution {
|
|
|
2992
3189
|
height?: number;
|
|
2993
3190
|
/** Video width. */
|
|
2994
3191
|
width?: number;
|
|
3192
|
+
/**
|
|
3193
|
+
* Deprecated. Use the `posters` property in the parent entity instead.
|
|
3194
|
+
* @internal
|
|
3195
|
+
* @deprecated
|
|
3196
|
+
*/
|
|
3197
|
+
poster?: Image;
|
|
2995
3198
|
/** Video format for example, mp4, hls. */
|
|
2996
3199
|
format?: string;
|
|
3200
|
+
/**
|
|
3201
|
+
* Deprecated. Use the `urlExpirationDate` property in the parent entity instead.
|
|
3202
|
+
* @internal
|
|
3203
|
+
* @deprecated
|
|
3204
|
+
*/
|
|
3205
|
+
urlExpirationDate?: Date | null;
|
|
3206
|
+
/**
|
|
3207
|
+
* Deprecated. Use the `sizeInBytes` property in the parent entity instead. Size cannot be provided per resolution.
|
|
3208
|
+
* @internal
|
|
3209
|
+
* @format DECIMAL_VALUE
|
|
3210
|
+
* @deprecated
|
|
3211
|
+
*/
|
|
3212
|
+
sizeInBytes?: string | null;
|
|
3213
|
+
/**
|
|
3214
|
+
* Video quality. For example: 480p, 720p.
|
|
3215
|
+
* @internal
|
|
3216
|
+
*/
|
|
3217
|
+
quality?: string | null;
|
|
3218
|
+
/**
|
|
3219
|
+
* Video filename.
|
|
3220
|
+
* @internal
|
|
3221
|
+
*/
|
|
3222
|
+
filename?: string | null;
|
|
3223
|
+
/**
|
|
3224
|
+
* Video duration in seconds.
|
|
3225
|
+
* @internal
|
|
3226
|
+
* @readonly
|
|
3227
|
+
* @deprecated Video duration in seconds.
|
|
3228
|
+
* @replacedBy duration_in_milliseconds
|
|
3229
|
+
* @targetRemovalDate 2024-08-01
|
|
3230
|
+
*/
|
|
3231
|
+
durationInSeconds?: number | null;
|
|
3232
|
+
/**
|
|
3233
|
+
* Video duration in milliseconds.
|
|
3234
|
+
* @internal
|
|
3235
|
+
* @readonly
|
|
3236
|
+
*/
|
|
3237
|
+
durationInMilliseconds?: number | null;
|
|
3238
|
+
/**
|
|
3239
|
+
* When true, this is a protected asset, and calling the URL will return a 403 error.
|
|
3240
|
+
* In order to access private assets, make a request to:
|
|
3241
|
+
* `GenerateFileDownloadUrl` with the WixMedia id and specify the asset_key in the request
|
|
3242
|
+
* @internal
|
|
3243
|
+
* @readonly
|
|
3244
|
+
*/
|
|
3245
|
+
private?: boolean | null;
|
|
3246
|
+
/**
|
|
3247
|
+
* Key to identify the video resolution's relationship to the original media in WixMedia.
|
|
3248
|
+
* Can be used to request a download for the specific video resolution.
|
|
3249
|
+
* For example: 480p.mp4, 720p.mp4, 1080p.mp4, trailer-720p.mp4, clip-720p.mp4
|
|
3250
|
+
* @internal
|
|
3251
|
+
* @readonly
|
|
3252
|
+
*/
|
|
3253
|
+
assetKey?: string | null;
|
|
2997
3254
|
}
|
|
2998
3255
|
interface EmbedMedia {
|
|
2999
3256
|
/** Thumbnail details. */
|
|
@@ -3097,6 +3354,11 @@ interface CreateDraftPostRequest {
|
|
|
3097
3354
|
* Default: `false`
|
|
3098
3355
|
*/
|
|
3099
3356
|
publish?: boolean;
|
|
3357
|
+
/**
|
|
3358
|
+
* Save type.
|
|
3359
|
+
* @internal
|
|
3360
|
+
*/
|
|
3361
|
+
saveType?: TypeWithLiterals;
|
|
3100
3362
|
/**
|
|
3101
3363
|
* List of additional draft post fields to include in the response. For example, use the `URL` fieldset to retrieve the url field in
|
|
3102
3364
|
* the response in addition to the draft post's base fields. Base fields don’t include any of the supported fieldset values. By default
|
|
@@ -3125,10 +3387,21 @@ declare enum Field {
|
|
|
3125
3387
|
UNKNOWN = "UNKNOWN",
|
|
3126
3388
|
/** Includes draft post preview URL. */
|
|
3127
3389
|
URL = "URL",
|
|
3390
|
+
/**
|
|
3391
|
+
* Includes internal id field.
|
|
3392
|
+
* Reserved for internal use.
|
|
3393
|
+
* @internal
|
|
3394
|
+
*/
|
|
3395
|
+
INTERNAL_ID = "INTERNAL_ID",
|
|
3128
3396
|
/** Includes content field. */
|
|
3129
3397
|
CONTENT = "CONTENT",
|
|
3130
3398
|
/** Includes rich content field. */
|
|
3131
3399
|
RICH_CONTENT = "RICH_CONTENT",
|
|
3400
|
+
/**
|
|
3401
|
+
* Includes draft post translations when present.
|
|
3402
|
+
* @internal
|
|
3403
|
+
*/
|
|
3404
|
+
TRANSLATIONS = "TRANSLATIONS",
|
|
3132
3405
|
/** If the user has not set excerpt, returns the one autogenerated from content. */
|
|
3133
3406
|
GENERATED_EXCERPT = "GENERATED_EXCERPT"
|
|
3134
3407
|
}
|
|
@@ -3147,6 +3420,11 @@ interface BulkCreateDraftPostsRequest {
|
|
|
3147
3420
|
draftPosts: DraftPost[];
|
|
3148
3421
|
/** Whether the draft post should be published after creation. */
|
|
3149
3422
|
publish?: boolean;
|
|
3423
|
+
/**
|
|
3424
|
+
* Save type.
|
|
3425
|
+
* @internal
|
|
3426
|
+
*/
|
|
3427
|
+
saveType?: TypeWithLiterals;
|
|
3150
3428
|
/** Whether to return the full created draft post entities in the response. */
|
|
3151
3429
|
returnFullEntity?: boolean;
|
|
3152
3430
|
/**
|
|
@@ -3210,6 +3488,11 @@ interface BulkUpdateDraftPostsRequest {
|
|
|
3210
3488
|
action?: ActionWithLiterals;
|
|
3211
3489
|
/** Posts' scheduled publish date when `action` is set to `UPDATE_SCHEDULE`. */
|
|
3212
3490
|
scheduledPublishDate?: Date | null;
|
|
3491
|
+
/**
|
|
3492
|
+
* Save type.
|
|
3493
|
+
* @internal
|
|
3494
|
+
*/
|
|
3495
|
+
saveType?: TypeWithLiterals;
|
|
3213
3496
|
/** Whether to return the full updated draft post entities in the response. */
|
|
3214
3497
|
returnFullEntity?: boolean;
|
|
3215
3498
|
/**
|
|
@@ -3251,6 +3534,18 @@ interface BulkUpdateDraftPostsResponse {
|
|
|
3251
3534
|
bulkActionMetadata?: BulkActionMetadata;
|
|
3252
3535
|
}
|
|
3253
3536
|
interface DraftPostOwnerChanged {
|
|
3537
|
+
/**
|
|
3538
|
+
* Member ID of the draft post's owner before the change.
|
|
3539
|
+
* @internal
|
|
3540
|
+
* @format GUID
|
|
3541
|
+
*/
|
|
3542
|
+
oldMemberId?: string;
|
|
3543
|
+
/**
|
|
3544
|
+
* Member ID of the draft post's owner after the change.
|
|
3545
|
+
* @internal
|
|
3546
|
+
* @format GUID
|
|
3547
|
+
*/
|
|
3548
|
+
newMemberId?: string;
|
|
3254
3549
|
}
|
|
3255
3550
|
interface ListDeletedDraftPostsRequest {
|
|
3256
3551
|
/**
|
|
@@ -3331,6 +3626,13 @@ interface PagingMetadataV2 {
|
|
|
3331
3626
|
tooManyToCount?: boolean | null;
|
|
3332
3627
|
/** Cursors to navigate through the result pages using `next` and `prev`. Returned if cursor paging is used. */
|
|
3333
3628
|
cursors?: Cursors;
|
|
3629
|
+
/**
|
|
3630
|
+
* Indicates if there are more results after the current page.
|
|
3631
|
+
* If `true`, another page of results can be retrieved.
|
|
3632
|
+
* If `false`, this is the last page.
|
|
3633
|
+
* @internal
|
|
3634
|
+
*/
|
|
3635
|
+
hasNext?: boolean | null;
|
|
3334
3636
|
}
|
|
3335
3637
|
interface Cursors {
|
|
3336
3638
|
/**
|
|
@@ -3387,6 +3689,16 @@ interface UpdateDraftPostContentResponse {
|
|
|
3387
3689
|
interface UpdateDraftPostRequest {
|
|
3388
3690
|
/** Draft post to update. */
|
|
3389
3691
|
draftPost: DraftPost;
|
|
3692
|
+
/**
|
|
3693
|
+
* Field mask of fields to update.
|
|
3694
|
+
* @internal
|
|
3695
|
+
*/
|
|
3696
|
+
fieldMask?: string[];
|
|
3697
|
+
/**
|
|
3698
|
+
* Save type.
|
|
3699
|
+
* @internal
|
|
3700
|
+
*/
|
|
3701
|
+
saveType?: TypeWithLiterals;
|
|
3390
3702
|
/**
|
|
3391
3703
|
* Action to perform on the post.
|
|
3392
3704
|
*
|
|
@@ -3567,6 +3879,20 @@ interface Sorting {
|
|
|
3567
3879
|
fieldName?: string;
|
|
3568
3880
|
/** Sort order. */
|
|
3569
3881
|
order?: SortOrderWithLiterals;
|
|
3882
|
+
/**
|
|
3883
|
+
* When `field_name` is a property of repeated field that is marked as `MATCH_ITEMS` and sort should be done by
|
|
3884
|
+
* a specific element from a collection, filter can/should be provided to ensure correct sort value is picked.
|
|
3885
|
+
*
|
|
3886
|
+
* If multiple filters are provided, they are combined with AND operator.
|
|
3887
|
+
*
|
|
3888
|
+
* Example:
|
|
3889
|
+
* Given we have document like {"id": "1", "nestedField": [{"price": 10, "region": "EU"}, {"price": 20, "region": "US"}]}
|
|
3890
|
+
* and `nestedField` is marked as `MATCH_ITEMS`, to ensure that sorting is done by correct region, filter should be
|
|
3891
|
+
* { fieldName: "nestedField.price", "select_items_by": [{"nestedField.region": "US"}] }
|
|
3892
|
+
* @internal
|
|
3893
|
+
* @maxSize 10
|
|
3894
|
+
*/
|
|
3895
|
+
selectItemsBy?: Record<string, any>[] | null;
|
|
3570
3896
|
/**
|
|
3571
3897
|
* Origin point for geo-distance sorting on a GEO field
|
|
3572
3898
|
* results are ordered by distance from this point (ASC = nearest first, DESC = farthest first).
|
|
@@ -3711,8 +4037,18 @@ interface DomainEventBodyOneOf {
|
|
|
3711
4037
|
}
|
|
3712
4038
|
interface EntityCreatedEvent {
|
|
3713
4039
|
entityAsJson?: string;
|
|
4040
|
+
/**
|
|
4041
|
+
* Indicates the event was triggered by a restore-from-trashbin operation for a previously deleted entity
|
|
4042
|
+
* @internal
|
|
4043
|
+
*/
|
|
4044
|
+
triggeredByUndelete?: boolean | null;
|
|
3714
4045
|
/** Indicates the event was triggered by a restore-from-trashbin operation for a previously deleted entity */
|
|
3715
4046
|
restoreInfo?: RestoreInfo;
|
|
4047
|
+
/**
|
|
4048
|
+
* Optional domain-specific metadata defined by the API owner, encoded as JSON.
|
|
4049
|
+
* @internal
|
|
4050
|
+
*/
|
|
4051
|
+
additionalMetadataAsJson?: string | null;
|
|
3716
4052
|
}
|
|
3717
4053
|
interface RestoreInfo {
|
|
3718
4054
|
deletedDate?: Date | null;
|
|
@@ -3724,10 +4060,42 @@ interface EntityUpdatedEvent {
|
|
|
3724
4060
|
* We don't want to impose this on all developers and so we leave this traversal to the notification recipients which need it.
|
|
3725
4061
|
*/
|
|
3726
4062
|
currentEntityAsJson?: string;
|
|
4063
|
+
/**
|
|
4064
|
+
* This field is currently part of the of the EntityUpdatedEvent msg, but scala/node libraries which implements the domain events standard
|
|
4065
|
+
* wont populate it / have any reference to it in the API.
|
|
4066
|
+
* The main reason for it is that fetching the old entity from the DB will have a performance hit on an update operation so unless truly needed,
|
|
4067
|
+
* the developer should send only the new (current) entity.
|
|
4068
|
+
* An additional reason is not wanting to send this additional entity over the wire (kafka) since in some cases it can be really big
|
|
4069
|
+
* Developers that must reflect the old entity will have to implement their own domain event sender mechanism which will follow the DomainEvent proto message.
|
|
4070
|
+
* @internal
|
|
4071
|
+
* @deprecated
|
|
4072
|
+
*/
|
|
4073
|
+
previousEntityAsJson?: string | null;
|
|
4074
|
+
/**
|
|
4075
|
+
* Map of fully qualified field paths to their previous values for fields that changed.
|
|
4076
|
+
* For more details please see [AIP](https://dev.wix.com/docs/rnd-general/articles/p13n-guidelines-aips/guidance-aips/design-patterns/7016-events#modified-fields-format)
|
|
4077
|
+
* @internal
|
|
4078
|
+
*/
|
|
4079
|
+
modifiedFields?: Record<string, any>;
|
|
4080
|
+
/**
|
|
4081
|
+
* Optional domain-specific metadata defined by the API owner, encoded as JSON.
|
|
4082
|
+
* @internal
|
|
4083
|
+
*/
|
|
4084
|
+
additionalMetadataAsJson?: string | null;
|
|
3727
4085
|
}
|
|
3728
4086
|
interface EntityDeletedEvent {
|
|
4087
|
+
/**
|
|
4088
|
+
* Indicates if the entity is sent to trash-bin. only available when trash-bin is enabled
|
|
4089
|
+
* @internal
|
|
4090
|
+
*/
|
|
4091
|
+
movedToTrash?: boolean | null;
|
|
3729
4092
|
/** Entity that was deleted. */
|
|
3730
4093
|
deletedEntityAsJson?: string | null;
|
|
4094
|
+
/**
|
|
4095
|
+
* Optional domain-specific metadata defined by the API owner, encoded as JSON.
|
|
4096
|
+
* @internal
|
|
4097
|
+
*/
|
|
4098
|
+
additionalMetadataAsJson?: string | null;
|
|
3731
4099
|
}
|
|
3732
4100
|
interface ActionEvent {
|
|
3733
4101
|
bodyAsJson?: string;
|
|
@@ -3878,6 +4246,11 @@ interface TranslateDraftRequest {
|
|
|
3878
4246
|
* @maxSize 10
|
|
3879
4247
|
*/
|
|
3880
4248
|
fieldsets?: FieldWithLiterals[];
|
|
4249
|
+
/**
|
|
4250
|
+
* Performs automatic translation of the title and the content of the draft post to the target language.
|
|
4251
|
+
* @internal
|
|
4252
|
+
*/
|
|
4253
|
+
useAutoTranslation?: boolean;
|
|
3881
4254
|
}
|
|
3882
4255
|
interface TranslateDraftResponse {
|
|
3883
4256
|
/** Draft post. */
|
|
@@ -3973,6 +4346,15 @@ interface RevertToUnpublishedRequest {
|
|
|
3973
4346
|
* @format GUID
|
|
3974
4347
|
*/
|
|
3975
4348
|
postId?: string;
|
|
4349
|
+
/**
|
|
4350
|
+
* List of draft post fields to be included in the response.
|
|
4351
|
+
* @internal
|
|
4352
|
+
* @maxSize 10
|
|
4353
|
+
* @deprecated List of draft post fields to be included in the response.
|
|
4354
|
+
* @replacedBy fieldsets
|
|
4355
|
+
* @targetRemovalDate 2024-06-30
|
|
4356
|
+
*/
|
|
4357
|
+
fieldsToInclude?: FieldWithLiterals[];
|
|
3976
4358
|
/**
|
|
3977
4359
|
* List of draft post fields to be included if entities are present in the response.
|
|
3978
4360
|
* Base fieldset, which is default, will return all core draft post properties.
|
|
@@ -3991,6 +4373,15 @@ interface RejectDraftPostRequest {
|
|
|
3991
4373
|
* @format GUID
|
|
3992
4374
|
*/
|
|
3993
4375
|
postId?: string;
|
|
4376
|
+
/**
|
|
4377
|
+
* List of draft post fields to be included in the response.
|
|
4378
|
+
* @internal
|
|
4379
|
+
* @maxSize 10
|
|
4380
|
+
* @deprecated List of draft post fields to be included in the response.
|
|
4381
|
+
* @replacedBy fieldsets
|
|
4382
|
+
* @targetRemovalDate 2024-06-30
|
|
4383
|
+
*/
|
|
4384
|
+
fieldsToInclude?: FieldWithLiterals[];
|
|
3994
4385
|
/**
|
|
3995
4386
|
* List of draft post fields to be included if entities are present in the response.
|
|
3996
4387
|
* Base fieldset, which is default, will return all core draft post properties.
|
|
@@ -4014,6 +4405,15 @@ interface ApproveDraftPostRequest {
|
|
|
4014
4405
|
* @maxLength 24
|
|
4015
4406
|
*/
|
|
4016
4407
|
scheduledPublishDate?: string | null;
|
|
4408
|
+
/**
|
|
4409
|
+
* List of draft post fields to be included in the response.
|
|
4410
|
+
* @internal
|
|
4411
|
+
* @maxSize 10
|
|
4412
|
+
* @deprecated List of draft post fields to be included in the response.
|
|
4413
|
+
* @replacedBy fieldsets
|
|
4414
|
+
* @targetRemovalDate 2024-06-30
|
|
4415
|
+
*/
|
|
4416
|
+
fieldsToInclude?: FieldWithLiterals[];
|
|
4017
4417
|
/**
|
|
4018
4418
|
* List of draft post fields to be included if entities are present in the response.
|
|
4019
4419
|
* Base fieldset, which is default, will return all core draft post properties.
|
|
@@ -4032,6 +4432,15 @@ interface MarkPostAsInModerationRequest {
|
|
|
4032
4432
|
* @maxLength 38
|
|
4033
4433
|
*/
|
|
4034
4434
|
postId?: string;
|
|
4435
|
+
/**
|
|
4436
|
+
* List of draft post fields to be included in the response.
|
|
4437
|
+
* @internal
|
|
4438
|
+
* @maxSize 10
|
|
4439
|
+
* @deprecated List of draft post fields to be included in the response.
|
|
4440
|
+
* @replacedBy fieldsets
|
|
4441
|
+
* @targetRemovalDate 2024-06-30
|
|
4442
|
+
*/
|
|
4443
|
+
fieldsToInclude?: FieldWithLiterals[];
|
|
4035
4444
|
/**
|
|
4036
4445
|
* List of draft post fields to be included if entities are present in the response.
|
|
4037
4446
|
* Base fieldset, which is default, will return all core draft post properties.
|
|
@@ -4084,4 +4493,4 @@ declare function publishDraftPost(): __PublicMethodMetaInfo<'POST', {
|
|
|
4084
4493
|
draftPostId: string;
|
|
4085
4494
|
}, PublishDraftPostRequest$1, PublishDraftPostRequest, PublishDraftPostResponse$1, PublishDraftPostResponse>;
|
|
4086
4495
|
|
|
4087
|
-
export { type AccountInfo as AccountInfoOriginal, type ActionEvent as ActionEventOriginal, Action as ActionOriginal, type ActionWithLiterals as ActionWithLiteralsOriginal, type AddressLocation as AddressLocationOriginal, Alignment as AlignmentOriginal, type AlignmentWithLiterals as AlignmentWithLiteralsOriginal, type AnchorData as AnchorDataOriginal, type Animation as AnimationOriginal, AnimationType as AnimationTypeOriginal, type AnimationTypeWithLiterals as AnimationTypeWithLiteralsOriginal, type AppEmbedDataAppDataOneOf as AppEmbedDataAppDataOneOfOriginal, type AppEmbedData as AppEmbedDataOriginal, AppType as AppTypeOriginal, type AppTypeWithLiterals as AppTypeWithLiteralsOriginal, type ApplicationError as ApplicationErrorOriginal, type ApproveDraftPostRequest as ApproveDraftPostRequestOriginal, type ApproveDraftPostResponse as ApproveDraftPostResponseOriginal, 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 BulkActionMetadata as BulkActionMetadataOriginal, type BulkCreateDraftPostsRequest as BulkCreateDraftPostsRequestOriginal, type BulkCreateDraftPostsResponse as BulkCreateDraftPostsResponseOriginal, type BulkDeleteDraftPostsRequest as BulkDeleteDraftPostsRequestOriginal, type BulkDeleteDraftPostsResponse as BulkDeleteDraftPostsResponseOriginal, type BulkDraftPostResult as BulkDraftPostResultOriginal, type BulkRejectDraftPostRequest as BulkRejectDraftPostRequestOriginal, type BulkRejectDraftPostResponse as BulkRejectDraftPostResponseOriginal, type BulkRevertToUnpublishedRequest as BulkRevertToUnpublishedRequestOriginal, type BulkRevertToUnpublishedResponse as BulkRevertToUnpublishedResponseOriginal, type BulkUpdateDraftPostsRequest as BulkUpdateDraftPostsRequestOriginal, type BulkUpdateDraftPostsResponse as BulkUpdateDraftPostsResponseOriginal, 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, CardStylesType as CardStylesTypeOriginal, type CardStylesTypeWithLiterals as CardStylesTypeWithLiteralsOriginal, type CellStyle as CellStyleOriginal, type CheckboxListData as CheckboxListDataOriginal, type CodeBlockData as CodeBlockDataOriginal, type CollapsibleListData as CollapsibleListDataOriginal, type ColorData as ColorDataOriginal, type Colors as ColorsOriginal, ColumnSize as ColumnSizeOriginal, type ColumnSizeWithLiterals as ColumnSizeWithLiteralsOriginal, type CreateDraftPostRequest as CreateDraftPostRequestOriginal, type CreateDraftPostResponse as CreateDraftPostResponseOriginal, 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 DeleteDraftPostRequest as DeleteDraftPostRequestOriginal, type DeleteDraftPostResponse as DeleteDraftPostResponseOriginal, 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 DividerDataStyles as DividerDataStylesOriginal, type DocumentStyle as DocumentStyleOriginal, type DomainEventBodyOneOf as DomainEventBodyOneOfOriginal, type DomainEvent as DomainEventOriginal, type DraftCategoriesUpdated as DraftCategoriesUpdatedOriginal, type DraftPostCount as DraftPostCountOriginal, type DraftPost as DraftPostOriginal, type DraftPostOwnerChanged as DraftPostOwnerChangedOriginal, type DraftPostTranslation as DraftPostTranslationOriginal, type DraftTagsUpdated as DraftTagsUpdatedOriginal, 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 EntranceAnimation as EntranceAnimationOriginal, type EntranceEffect as EntranceEffectOriginal, EntranceEffectType as EntranceEffectTypeOriginal, type EntranceEffectTypeWithLiterals as EntranceEffectTypeWithLiteralsOriginal, 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 GetDeletedDraftPostRequest as GetDeletedDraftPostRequestOriginal, type GetDeletedDraftPostResponse as GetDeletedDraftPostResponseOriginal, type GetDraftPostCountsRequest as GetDraftPostCountsRequestOriginal, type GetDraftPostCountsResponse as GetDraftPostCountsResponseOriginal, type GetDraftPostRequest as GetDraftPostRequestOriginal, type GetDraftPostResponse as GetDraftPostResponseOriginal, type GetDraftPostTotalsRequest as GetDraftPostTotalsRequestOriginal, type GetDraftPostTotalsResponse as GetDraftPostTotalsResponseOriginal, GetDraftPostsSort as GetDraftPostsSortOriginal, type GetDraftPostsSortWithLiterals as GetDraftPostsSortWithLiteralsOriginal, type Gradient as GradientOriginal, GradientType as GradientTypeOriginal, type GradientTypeWithLiterals as GradientTypeWithLiteralsOriginal, type HTMLDataDataOneOf as HTMLDataDataOneOfOriginal, type HTMLData as HTMLDataOriginal, type HeadingData as HeadingDataOriginal, type Height as HeightOriginal, type IdentificationDataIdOneOf as IdentificationDataIdOneOfOriginal, type IdentificationData as IdentificationDataOriginal, type ImageDataCrop as ImageDataCropOriginal, type ImageData as ImageDataOriginal, type ImageDataStyles as ImageDataStylesOriginal, type Image as ImageOriginal, ImagePosition as ImagePositionOriginal, ImagePositionPosition as ImagePositionPositionOriginal, type ImagePositionPositionWithLiterals as ImagePositionPositionWithLiteralsOriginal, type ImagePositionWithLiterals as ImagePositionWithLiteralsOriginal, ImageScalingScaling as ImageScalingScalingOriginal, type ImageScalingScalingWithLiterals as ImageScalingScalingWithLiteralsOriginal, type ImageStyles as ImageStylesOriginal, Indentation as IndentationOriginal, type IndentationWithLiterals as IndentationWithLiteralsOriginal, type InitialDraftPostsCopied as InitialDraftPostsCopiedOriginal, InitialExpandedItems as InitialExpandedItemsOriginal, type InitialExpandedItemsWithLiterals as InitialExpandedItemsWithLiteralsOriginal, type IsDraftPostAutoTranslatableRequest as IsDraftPostAutoTranslatableRequestOriginal, type IsDraftPostAutoTranslatableResponse as IsDraftPostAutoTranslatableResponseOriginal, type ItemDataOneOf as ItemDataOneOfOriginal, type ItemImage as ItemImageOriginal, type ItemMetadata as ItemMetadataOriginal, 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, LineCap as LineCapOriginal, type LineCapWithLiterals as LineCapWithLiteralsOriginal, 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 ListDeletedDraftPostsRequest as ListDeletedDraftPostsRequestOriginal, type ListDeletedDraftPostsResponse as ListDeletedDraftPostsResponseOriginal, type ListDraftPostsRequest as ListDraftPostsRequestOriginal, type ListDraftPostsResponse as ListDraftPostsResponseOriginal, type ListItemNodeData as ListItemNodeDataOriginal, ListStyle as ListStyleOriginal, type ListStyleWithLiterals as ListStyleWithLiteralsOriginal, type ListValue as ListValueOriginal, type LoopAnimation as LoopAnimationOriginal, type LoopEffect as LoopEffectOriginal, LoopEffectType as LoopEffectTypeOriginal, type LoopEffectTypeWithLiterals as LoopEffectTypeWithLiteralsOriginal, type MapData as MapDataOriginal, type MapSettings as MapSettingsOriginal, MapType as MapTypeOriginal, type MapTypeWithLiterals as MapTypeWithLiteralsOriginal, type MarkPostAsInModerationRequest as MarkPostAsInModerationRequestOriginal, type MarkPostAsInModerationResponse as MarkPostAsInModerationResponseOriginal, type MaskedDraftPosts as MaskedDraftPostsOriginal, 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 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, 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 Permissions as PermissionsOriginal, 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 PricingData as PricingDataOriginal, type PublishDraftPostRequest as PublishDraftPostRequestOriginal, type PublishDraftPostResponse as PublishDraftPostResponseOriginal, type QueryDraftPostsRequest as QueryDraftPostsRequestOriginal, type QueryDraftPostsResponse as QueryDraftPostsResponseOriginal, type RejectDraftPostRequest as RejectDraftPostRequestOriginal, type RejectDraftPostResponse as RejectDraftPostResponseOriginal, type Rel as RelOriginal, type RemoveFromTrashBinRequest as RemoveFromTrashBinRequestOriginal, type RemoveFromTrashBinResponse as RemoveFromTrashBinResponseOriginal, Resizing as ResizingOriginal, type ResizingWithLiterals as ResizingWithLiteralsOriginal, ResponsivenessBehaviour as ResponsivenessBehaviourOriginal, type ResponsivenessBehaviourWithLiterals as ResponsivenessBehaviourWithLiteralsOriginal, type RestoreFromTrashBinRequest as RestoreFromTrashBinRequestOriginal, type RestoreFromTrashBinResponse as RestoreFromTrashBinResponseOriginal, type RestoreInfo as RestoreInfoOriginal, type RevertToUnpublishedRequest as RevertToUnpublishedRequestOriginal, type RevertToUnpublishedResponse as RevertToUnpublishedResponseOriginal, type RibbonStyles as RibbonStylesOriginal, type RichContent as RichContentOriginal, Scaling as ScalingOriginal, type ScalingWithLiterals as ScalingWithLiteralsOriginal, type SeoSchema as SeoSchemaOriginal, type Settings as SettingsOriginal, type ShapeData as ShapeDataOriginal, type ShapeDataStyles as ShapeDataStylesOriginal, type SketchData as SketchDataOriginal, type SmartBlockCellData as SmartBlockCellDataOriginal, type SmartBlockData as SmartBlockDataOriginal, SmartBlockDataType as SmartBlockDataTypeOriginal, type SmartBlockDataTypeWithLiterals as SmartBlockDataTypeWithLiteralsOriginal, SortOrder as SortOrderOriginal, type SortOrderWithLiterals as SortOrderWithLiteralsOriginal, type Sorting as SortingOriginal, Source as SourceOriginal, type SourceWithLiterals as SourceWithLiteralsOriginal, type SpoilerData as SpoilerDataOriginal, type Spoiler as SpoilerOriginal, Status as StatusOriginal, type StatusWithLiterals as StatusWithLiteralsOriginal, type Stop as StopOriginal, type StylesBorder as StylesBorderOriginal, type Styles as StylesOriginal, StylesPosition as StylesPositionOriginal, type StylesPositionWithLiterals as StylesPositionWithLiteralsOriginal, type TableCellData as TableCellDataOriginal, type TableData as TableDataOriginal, type Tag as TagOriginal, Target as TargetOriginal, type TargetWithLiterals as TargetWithLiteralsOriginal, TextAlignment as TextAlignmentOriginal, type TextAlignmentWithLiterals as TextAlignmentWithLiteralsOriginal, type TextData as TextDataOriginal, type TextNodeStyle as TextNodeStyleOriginal, type TextStyle as TextStyleOriginal, ThumbnailsAlignment as ThumbnailsAlignmentOriginal, type ThumbnailsAlignmentWithLiterals as ThumbnailsAlignmentWithLiteralsOriginal, type Thumbnails as ThumbnailsOriginal, type TocData as TocDataOriginal, TotalDraftPostsGroupingField as TotalDraftPostsGroupingFieldOriginal, type TotalDraftPostsGroupingFieldWithLiterals as TotalDraftPostsGroupingFieldWithLiteralsOriginal, type TotalDraftPosts as TotalDraftPostsOriginal, type TranslateDraftRequest as TranslateDraftRequestOriginal, type TranslateDraftResponse as TranslateDraftResponseOriginal, Type as TypeOriginal, type TypeWithLiterals as TypeWithLiteralsOriginal, type UnpublishPostRequest as UnpublishPostRequestOriginal, type UnpublishPostResponse as UnpublishPostResponseOriginal, type UpdateDraftPostContentRequest as UpdateDraftPostContentRequestOriginal, type UpdateDraftPostContentResponse as UpdateDraftPostContentResponseOriginal, type UpdateDraftPostLanguageRequest as UpdateDraftPostLanguageRequestOriginal, type UpdateDraftPostLanguageResponse as UpdateDraftPostLanguageResponseOriginal, type UpdateDraftPostRequest as UpdateDraftPostRequestOriginal, type UpdateDraftPostResponse as UpdateDraftPostResponseOriginal, type V1Media as V1MediaOriginal, Variant as VariantOriginal, type VariantWithLiterals as VariantWithLiteralsOriginal, VerticalAlignmentAlignment as VerticalAlignmentAlignmentOriginal, type VerticalAlignmentAlignmentWithLiterals as VerticalAlignmentAlignmentWithLiteralsOriginal, VerticalAlignment as VerticalAlignmentOriginal, type VerticalAlignmentWithLiterals as VerticalAlignmentWithLiteralsOriginal, type VideoData as VideoDataOriginal, type Video as VideoOriginal, type VideoResolution as VideoResolutionOriginal, type VideoV2 as VideoV2Original, ViewMode as ViewModeOriginal, type ViewModeWithLiterals as ViewModeWithLiteralsOriginal, 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, bulkCreateDraftPosts, bulkDeleteDraftPosts, bulkUpdateDraftPosts, createDraftPost, deleteDraftPost, getDeletedDraftPost, getDraftPost, listDeletedDraftPosts, listDraftPosts, publishDraftPost, queryDraftPosts, removeFromTrashBin, restoreFromTrashBin, updateDraftPost };
|
|
4496
|
+
export { type AccountInfo as AccountInfoOriginal, type ActionEvent as ActionEventOriginal, Action as ActionOriginal, type ActionWithLiterals as ActionWithLiteralsOriginal, type AddressLocation as AddressLocationOriginal, Alignment as AlignmentOriginal, type AlignmentWithLiterals as AlignmentWithLiteralsOriginal, type AnchorData as AnchorDataOriginal, type Animation as AnimationOriginal, AnimationType as AnimationTypeOriginal, type AnimationTypeWithLiterals as AnimationTypeWithLiteralsOriginal, type AppEmbedDataAppDataOneOf as AppEmbedDataAppDataOneOfOriginal, type AppEmbedData as AppEmbedDataOriginal, AppType as AppTypeOriginal, type AppTypeWithLiterals as AppTypeWithLiteralsOriginal, type ApplicationError as ApplicationErrorOriginal, type ApproveDraftPostRequest as ApproveDraftPostRequestOriginal, type ApproveDraftPostResponse as ApproveDraftPostResponseOriginal, 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 BulkActionMetadata as BulkActionMetadataOriginal, type BulkCreateDraftPostsRequest as BulkCreateDraftPostsRequestOriginal, type BulkCreateDraftPostsResponse as BulkCreateDraftPostsResponseOriginal, type BulkDeleteDraftPostsRequest as BulkDeleteDraftPostsRequestOriginal, type BulkDeleteDraftPostsResponse as BulkDeleteDraftPostsResponseOriginal, type BulkDraftPostResult as BulkDraftPostResultOriginal, type BulkRejectDraftPostRequest as BulkRejectDraftPostRequestOriginal, type BulkRejectDraftPostResponse as BulkRejectDraftPostResponseOriginal, type BulkRevertToUnpublishedRequest as BulkRevertToUnpublishedRequestOriginal, type BulkRevertToUnpublishedResponse as BulkRevertToUnpublishedResponseOriginal, type BulkUpdateDraftPostsRequest as BulkUpdateDraftPostsRequestOriginal, type BulkUpdateDraftPostsResponse as BulkUpdateDraftPostsResponseOriginal, 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, CardStylesType as CardStylesTypeOriginal, type CardStylesTypeWithLiterals as CardStylesTypeWithLiteralsOriginal, type CellStyle as CellStyleOriginal, type CheckboxListData as CheckboxListDataOriginal, type CodeBlockData as CodeBlockDataOriginal, type CollapsibleListData as CollapsibleListDataOriginal, type ColorData as ColorDataOriginal, type Colors as ColorsOriginal, ColumnSize as ColumnSizeOriginal, type ColumnSizeWithLiterals as ColumnSizeWithLiteralsOriginal, type CreateDraftPostRequest as CreateDraftPostRequestOriginal, type CreateDraftPostResponse as CreateDraftPostResponseOriginal, 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 DeleteDraftPostRequest as DeleteDraftPostRequestOriginal, type DeleteDraftPostResponse as DeleteDraftPostResponseOriginal, 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 DividerDataStyles as DividerDataStylesOriginal, type DocumentStyle as DocumentStyleOriginal, type DomainEventBodyOneOf as DomainEventBodyOneOfOriginal, type DomainEvent as DomainEventOriginal, type DraftCategoriesUpdated as DraftCategoriesUpdatedOriginal, type DraftPostCount as DraftPostCountOriginal, type DraftPost as DraftPostOriginal, type DraftPostOwnerChanged as DraftPostOwnerChangedOriginal, type DraftPostTranslation as DraftPostTranslationOriginal, type DraftTagsUpdated as DraftTagsUpdatedOriginal, 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 EntranceAnimation as EntranceAnimationOriginal, type EntranceEffect as EntranceEffectOriginal, EntranceEffectType as EntranceEffectTypeOriginal, type EntranceEffectTypeWithLiterals as EntranceEffectTypeWithLiteralsOriginal, 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 GetDeletedDraftPostRequest as GetDeletedDraftPostRequestOriginal, type GetDeletedDraftPostResponse as GetDeletedDraftPostResponseOriginal, type GetDraftPostCountsRequest as GetDraftPostCountsRequestOriginal, type GetDraftPostCountsResponse as GetDraftPostCountsResponseOriginal, type GetDraftPostRequest as GetDraftPostRequestOriginal, type GetDraftPostResponse as GetDraftPostResponseOriginal, type GetDraftPostTotalsRequest as GetDraftPostTotalsRequestOriginal, type GetDraftPostTotalsResponse as GetDraftPostTotalsResponseOriginal, GetDraftPostsSort as GetDraftPostsSortOriginal, type GetDraftPostsSortWithLiterals as GetDraftPostsSortWithLiteralsOriginal, type Gradient as GradientOriginal, GradientType as GradientTypeOriginal, type GradientTypeWithLiterals as GradientTypeWithLiteralsOriginal, type HTMLDataDataOneOf as HTMLDataDataOneOfOriginal, type HTMLData as HTMLDataOriginal, type HeadingData as HeadingDataOriginal, type Height as HeightOriginal, type IdentificationDataIdOneOf as IdentificationDataIdOneOfOriginal, type IdentificationData as IdentificationDataOriginal, type ImageDataCrop as ImageDataCropOriginal, type ImageData as ImageDataOriginal, type ImageDataStyles as ImageDataStylesOriginal, type Image as ImageOriginal, ImagePosition as ImagePositionOriginal, ImagePositionPosition as ImagePositionPositionOriginal, type ImagePositionPositionWithLiterals as ImagePositionPositionWithLiteralsOriginal, type ImagePositionWithLiterals as ImagePositionWithLiteralsOriginal, ImageScalingScaling as ImageScalingScalingOriginal, type ImageScalingScalingWithLiterals as ImageScalingScalingWithLiteralsOriginal, type ImageStyles as ImageStylesOriginal, Indentation as IndentationOriginal, type IndentationWithLiterals as IndentationWithLiteralsOriginal, type InitialDraftPostsCopied as InitialDraftPostsCopiedOriginal, InitialExpandedItems as InitialExpandedItemsOriginal, type InitialExpandedItemsWithLiterals as InitialExpandedItemsWithLiteralsOriginal, type IsDraftPostAutoTranslatableRequest as IsDraftPostAutoTranslatableRequestOriginal, type IsDraftPostAutoTranslatableResponse as IsDraftPostAutoTranslatableResponseOriginal, type ItemDataOneOf as ItemDataOneOfOriginal, type ItemImage as ItemImageOriginal, type ItemMetadata as ItemMetadataOriginal, 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, LineCap as LineCapOriginal, type LineCapWithLiterals as LineCapWithLiteralsOriginal, 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 ListDeletedDraftPostsRequest as ListDeletedDraftPostsRequestOriginal, type ListDeletedDraftPostsResponse as ListDeletedDraftPostsResponseOriginal, type ListDraftPostsRequest as ListDraftPostsRequestOriginal, type ListDraftPostsResponse as ListDraftPostsResponseOriginal, type ListItemNodeData as ListItemNodeDataOriginal, ListStyle as ListStyleOriginal, type ListStyleWithLiterals as ListStyleWithLiteralsOriginal, type ListValue as ListValueOriginal, type LoopAnimation as LoopAnimationOriginal, type LoopEffect as LoopEffectOriginal, LoopEffectType as LoopEffectTypeOriginal, type LoopEffectTypeWithLiterals as LoopEffectTypeWithLiteralsOriginal, type MapData as MapDataOriginal, type MapSettings as MapSettingsOriginal, MapType as MapTypeOriginal, type MapTypeWithLiterals as MapTypeWithLiteralsOriginal, type MarkPostAsInModerationRequest as MarkPostAsInModerationRequestOriginal, type MarkPostAsInModerationResponse as MarkPostAsInModerationResponseOriginal, type MaskedDraftPosts as MaskedDraftPostsOriginal, 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 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, 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 Permissions as PermissionsOriginal, 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 PointerEffect as PointerEffectOriginal, PointerEffectType as PointerEffectTypeOriginal, type PointerEffectTypeWithLiterals as PointerEffectTypeWithLiteralsOriginal, 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 PricingData as PricingDataOriginal, type PublishDraftPostRequest as PublishDraftPostRequestOriginal, type PublishDraftPostResponse as PublishDraftPostResponseOriginal, type QueryDraftPostsRequest as QueryDraftPostsRequestOriginal, type QueryDraftPostsResponse as QueryDraftPostsResponseOriginal, type RejectDraftPostRequest as RejectDraftPostRequestOriginal, type RejectDraftPostResponse as RejectDraftPostResponseOriginal, type Rel as RelOriginal, type RemoveFromTrashBinRequest as RemoveFromTrashBinRequestOriginal, type RemoveFromTrashBinResponse as RemoveFromTrashBinResponseOriginal, Resizing as ResizingOriginal, type ResizingWithLiterals as ResizingWithLiteralsOriginal, ResponsivenessBehaviour as ResponsivenessBehaviourOriginal, type ResponsivenessBehaviourWithLiterals as ResponsivenessBehaviourWithLiteralsOriginal, type RestoreFromTrashBinRequest as RestoreFromTrashBinRequestOriginal, type RestoreFromTrashBinResponse as RestoreFromTrashBinResponseOriginal, type RestoreInfo as RestoreInfoOriginal, type RevertToUnpublishedRequest as RevertToUnpublishedRequestOriginal, type RevertToUnpublishedResponse as RevertToUnpublishedResponseOriginal, type RibbonStyles as RibbonStylesOriginal, type RichContent as RichContentOriginal, Scaling as ScalingOriginal, type ScalingWithLiterals as ScalingWithLiteralsOriginal, type SeoSchema as SeoSchemaOriginal, type Settings as SettingsOriginal, type ShapeData as ShapeDataOriginal, type ShapeDataStyles as ShapeDataStylesOriginal, type SketchData as SketchDataOriginal, type SmartBlockCellData as SmartBlockCellDataOriginal, type SmartBlockData as SmartBlockDataOriginal, SmartBlockDataType as SmartBlockDataTypeOriginal, type SmartBlockDataTypeWithLiterals as SmartBlockDataTypeWithLiteralsOriginal, SortOrder as SortOrderOriginal, type SortOrderWithLiterals as SortOrderWithLiteralsOriginal, type Sorting as SortingOriginal, Source as SourceOriginal, type SourceWithLiterals as SourceWithLiteralsOriginal, type SpoilerData as SpoilerDataOriginal, type Spoiler as SpoilerOriginal, Status as StatusOriginal, type StatusWithLiterals as StatusWithLiteralsOriginal, type Stop as StopOriginal, type StylesBorder as StylesBorderOriginal, type Styles as StylesOriginal, StylesPosition as StylesPositionOriginal, type StylesPositionWithLiterals as StylesPositionWithLiteralsOriginal, type TableCellData as TableCellDataOriginal, type TableData as TableDataOriginal, type Tag as TagOriginal, Target as TargetOriginal, type TargetWithLiterals as TargetWithLiteralsOriginal, TextAlignment as TextAlignmentOriginal, type TextAlignmentWithLiterals as TextAlignmentWithLiteralsOriginal, type TextData as TextDataOriginal, type TextNodeStyle as TextNodeStyleOriginal, type TextStyle as TextStyleOriginal, ThumbnailsAlignment as ThumbnailsAlignmentOriginal, type ThumbnailsAlignmentWithLiterals as ThumbnailsAlignmentWithLiteralsOriginal, type Thumbnails as ThumbnailsOriginal, type TocData as TocDataOriginal, TotalDraftPostsGroupingField as TotalDraftPostsGroupingFieldOriginal, type TotalDraftPostsGroupingFieldWithLiterals as TotalDraftPostsGroupingFieldWithLiteralsOriginal, type TotalDraftPosts as TotalDraftPostsOriginal, type TranslateDraftRequest as TranslateDraftRequestOriginal, type TranslateDraftResponse as TranslateDraftResponseOriginal, Type as TypeOriginal, type TypeWithLiterals as TypeWithLiteralsOriginal, type UnpublishPostRequest as UnpublishPostRequestOriginal, type UnpublishPostResponse as UnpublishPostResponseOriginal, type UpdateDraftPostContentRequest as UpdateDraftPostContentRequestOriginal, type UpdateDraftPostContentResponse as UpdateDraftPostContentResponseOriginal, type UpdateDraftPostLanguageRequest as UpdateDraftPostLanguageRequestOriginal, type UpdateDraftPostLanguageResponse as UpdateDraftPostLanguageResponseOriginal, type UpdateDraftPostRequest as UpdateDraftPostRequestOriginal, type UpdateDraftPostResponse as UpdateDraftPostResponseOriginal, type V1Media as V1MediaOriginal, Variant as VariantOriginal, type VariantWithLiterals as VariantWithLiteralsOriginal, VerticalAlignmentAlignment as VerticalAlignmentAlignmentOriginal, type VerticalAlignmentAlignmentWithLiterals as VerticalAlignmentAlignmentWithLiteralsOriginal, VerticalAlignment as VerticalAlignmentOriginal, type VerticalAlignmentWithLiterals as VerticalAlignmentWithLiteralsOriginal, type VideoData as VideoDataOriginal, type Video as VideoOriginal, type VideoResolution as VideoResolutionOriginal, type VideoV2 as VideoV2Original, ViewMode as ViewModeOriginal, type ViewModeWithLiterals as ViewModeWithLiteralsOriginal, 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, bulkCreateDraftPosts, bulkDeleteDraftPosts, bulkUpdateDraftPosts, createDraftPost, deleteDraftPost, getDeletedDraftPost, getDraftPost, listDeletedDraftPosts, listDraftPosts, publishDraftPost, queryDraftPosts, removeFromTrashBin, restoreFromTrashBin, updateDraftPost };
|