@wix/auto_sdk_blog_draft-posts 1.0.91 → 1.0.93
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 +28 -13
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +338 -277
- package/build/cjs/index.typings.js +28 -13
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +340 -279
- package/build/cjs/meta.js +28 -13
- package/build/cjs/meta.js.map +1 -1
- package/build/cjs/schemas.js +15 -15
- package/build/cjs/schemas.js.map +1 -1
- package/build/es/index.d.mts +1 -1
- package/build/es/index.mjs +27 -13
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +338 -277
- package/build/es/index.typings.mjs +27 -13
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +340 -279
- package/build/es/meta.mjs +27 -13
- package/build/es/meta.mjs.map +1 -1
- package/build/es/schemas.mjs +15 -15
- package/build/es/schemas.mjs.map +1 -1
- package/build/internal/cjs/index.d.ts +1 -1
- package/build/internal/cjs/index.js +28 -13
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +359 -298
- package/build/internal/cjs/index.typings.js +28 -13
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +782 -721
- package/build/internal/cjs/meta.js +28 -13
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/cjs/schemas.js +15 -15
- package/build/internal/cjs/schemas.js.map +1 -1
- package/build/internal/es/index.d.mts +1 -1
- package/build/internal/es/index.mjs +27 -13
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +359 -298
- package/build/internal/es/index.typings.mjs +27 -13
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +782 -721
- package/build/internal/es/meta.mjs +27 -13
- package/build/internal/es/meta.mjs.map +1 -1
- package/build/internal/es/schemas.mjs +15 -15
- package/build/internal/es/schemas.mjs.map +1 -1
- package/package.json +2 -2
package/build/cjs/meta.d.ts
CHANGED
|
@@ -749,17 +749,27 @@ interface Rel {
|
|
|
749
749
|
interface Animation {
|
|
750
750
|
/** Animation kind. */
|
|
751
751
|
type?: AnimationTypeWithLiterals;
|
|
752
|
-
/** Entrance animation, played once when the node first enters the viewport. */
|
|
752
|
+
/** Entrance animation, played once when the node first enters the viewport (VIEW). */
|
|
753
753
|
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. */
|
|
754
|
+
/** Looping animation, repeated indefinitely while the node is on the page. When combined with entrance, the loop starts after the entrance finishes (VIEW). */
|
|
755
755
|
loop?: LoopAnimation;
|
|
756
|
+
/**
|
|
757
|
+
* POINTER carries its fields directly on the union member in the JTD wall, hence
|
|
758
|
+
* flat fields here (ts-proto camelCase must equal the JTD property names). A future
|
|
759
|
+
* SCROLL variant will contend for the `effect` JSON name — resolve when it lands.
|
|
760
|
+
*/
|
|
761
|
+
effect?: PointerEffect;
|
|
762
|
+
/** How quickly the node settles toward the pointer, in milliseconds (POINTER). */
|
|
763
|
+
transitionDuration?: number | null;
|
|
756
764
|
}
|
|
757
765
|
declare enum AnimationType {
|
|
758
766
|
/** Animations that play while the node is in view. */
|
|
759
|
-
VIEW = "VIEW"
|
|
767
|
+
VIEW = "VIEW",
|
|
768
|
+
/** Animations driven by the visitor's mouse position. */
|
|
769
|
+
POINTER = "POINTER"
|
|
760
770
|
}
|
|
761
771
|
/** @enumType */
|
|
762
|
-
type AnimationTypeWithLiterals = AnimationType | 'VIEW';
|
|
772
|
+
type AnimationTypeWithLiterals = AnimationType | 'VIEW' | 'POINTER';
|
|
763
773
|
interface EntranceAnimation {
|
|
764
774
|
/** The entrance effect to play. */
|
|
765
775
|
effect?: EntranceEffect;
|
|
@@ -879,6 +889,49 @@ declare enum LoopEffectType {
|
|
|
879
889
|
}
|
|
880
890
|
/** @enumType */
|
|
881
891
|
type LoopEffectTypeWithLiterals = LoopEffectType | 'BOUNCE' | 'BREATHE' | 'CROSS' | 'FLASH' | 'FLIP' | 'FOLD' | 'JELLO' | 'POKE' | 'PULSE' | 'RUBBER' | 'SPIN' | 'SWING' | 'WIGGLE';
|
|
892
|
+
interface PointerEffect {
|
|
893
|
+
/** The mouse effect type. */
|
|
894
|
+
type?: PointerEffectTypeWithLiterals;
|
|
895
|
+
/** Reacts away from the pointer instead of toward it. */
|
|
896
|
+
inverted?: boolean | null;
|
|
897
|
+
/**
|
|
898
|
+
* 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.
|
|
899
|
+
* @maxLength 20
|
|
900
|
+
*/
|
|
901
|
+
axis?: string | null;
|
|
902
|
+
/**
|
|
903
|
+
* Whether the node grows or shrinks as the pointer nears: UP or DOWN (SCALE).
|
|
904
|
+
* @maxLength 8
|
|
905
|
+
*/
|
|
906
|
+
direction?: string | null;
|
|
907
|
+
/**
|
|
908
|
+
* Motion style: GENTLE, MODERATE, or INTENSE.
|
|
909
|
+
* @maxLength 100
|
|
910
|
+
*/
|
|
911
|
+
easing?: string | null;
|
|
912
|
+
}
|
|
913
|
+
declare enum PointerEffectType {
|
|
914
|
+
/** Drifts loosely after the pointer with a light rotation. */
|
|
915
|
+
AIRY = "AIRY",
|
|
916
|
+
/** Squashes and stretches toward the pointer. */
|
|
917
|
+
BLOB = "BLOB",
|
|
918
|
+
/** Shifts after the pointer while blurring. */
|
|
919
|
+
BLUR = "BLUR",
|
|
920
|
+
/** Scales as the pointer approaches. */
|
|
921
|
+
SCALE = "SCALE",
|
|
922
|
+
/** Skews toward the pointer. */
|
|
923
|
+
SKEW = "SKEW",
|
|
924
|
+
/** Rotates around a pivot edge or axis, following the pointer. */
|
|
925
|
+
SWIVEL = "SWIVEL",
|
|
926
|
+
/** Tilts in 3D perspective toward the pointer. */
|
|
927
|
+
TILT_3D = "TILT_3D",
|
|
928
|
+
/** Follows the pointer's position. */
|
|
929
|
+
TRACK = "TRACK",
|
|
930
|
+
/** Follows the pointer with a 3D depth motion. */
|
|
931
|
+
TRACK_3D = "TRACK_3D"
|
|
932
|
+
}
|
|
933
|
+
/** @enumType */
|
|
934
|
+
type PointerEffectTypeWithLiterals = PointerEffectType | 'AIRY' | 'BLOB' | 'BLUR' | 'SCALE' | 'SKEW' | 'SWIVEL' | 'TILT_3D' | 'TRACK' | 'TRACK_3D';
|
|
882
935
|
interface CodeBlockData {
|
|
883
936
|
/** Styling for the code block's text. */
|
|
884
937
|
textStyle?: TextStyle;
|
|
@@ -2916,7 +2969,15 @@ interface Tag {
|
|
|
2916
2969
|
meta?: Record<string, any> | null;
|
|
2917
2970
|
/** SEO tag inner content. For example, `<title> inner content </title>`. */
|
|
2918
2971
|
children?: string;
|
|
2919
|
-
/**
|
|
2972
|
+
/**
|
|
2973
|
+
* Whether the tag is a [custom tag](https://support.wix.com/en/article/adding-additional-meta-tags-to-your-sites-pages).
|
|
2974
|
+
*
|
|
2975
|
+
* Limitation: when `ResolveStaticPageSeoTags` is called without `seoData`, the per-page SEO data is read
|
|
2976
|
+
* only from the Vibe/Wix-managed-headless override store. That store holds nothing for classic Wix Editor
|
|
2977
|
+
* or Wix Studio pages, so custom tags saved on those pages are missing from the response entirely. For
|
|
2978
|
+
* those pages `false` therefore does not mean "not a custom tag" — it means this API could not tell.
|
|
2979
|
+
* Pass `seoData` explicitly to resolve against a known set of tags.
|
|
2980
|
+
*/
|
|
2920
2981
|
custom?: boolean;
|
|
2921
2982
|
/** Whether the tag is disabled. If the tag is disabled, people can't find your page when searching for this phrase in search engines. */
|
|
2922
2983
|
disabled?: boolean;
|
|
@@ -3046,10 +3107,6 @@ interface DraftPostTranslation {
|
|
|
3046
3107
|
/** Post URL. */
|
|
3047
3108
|
url?: PageUrl;
|
|
3048
3109
|
}
|
|
3049
|
-
interface InitialDraftPostsCopied {
|
|
3050
|
-
/** Number of draft posts copied. */
|
|
3051
|
-
count?: number;
|
|
3052
|
-
}
|
|
3053
3110
|
interface DraftCategoriesUpdated {
|
|
3054
3111
|
/**
|
|
3055
3112
|
* Draft post ID.
|
|
@@ -3088,6 +3145,202 @@ interface DraftTagsUpdated {
|
|
|
3088
3145
|
*/
|
|
3089
3146
|
previousTags?: string[];
|
|
3090
3147
|
}
|
|
3148
|
+
interface GetDraftPostTotalsRequest {
|
|
3149
|
+
/**
|
|
3150
|
+
* Group results by fields (defaults to grouping by status).
|
|
3151
|
+
* If, for example, grouping by language is passed, language values in response will be filled.
|
|
3152
|
+
* If, for example, grouping by language is not passed, null values will be filled in language field in response.
|
|
3153
|
+
* @maxSize 10
|
|
3154
|
+
*/
|
|
3155
|
+
groupBy?: TotalDraftPostsGroupingFieldWithLiterals[];
|
|
3156
|
+
/**
|
|
3157
|
+
* Optional language filter by provided language code. Useful in multilingual context.
|
|
3158
|
+
* @format LANGUAGE_TAG
|
|
3159
|
+
*/
|
|
3160
|
+
language?: string | null;
|
|
3161
|
+
}
|
|
3162
|
+
declare enum TotalDraftPostsGroupingField {
|
|
3163
|
+
/** Groups results by status. */
|
|
3164
|
+
STATUS = "STATUS",
|
|
3165
|
+
/** Groups results by language. */
|
|
3166
|
+
LANGUAGE = "LANGUAGE"
|
|
3167
|
+
}
|
|
3168
|
+
/** @enumType */
|
|
3169
|
+
type TotalDraftPostsGroupingFieldWithLiterals = TotalDraftPostsGroupingField | 'STATUS' | 'LANGUAGE';
|
|
3170
|
+
interface GetDraftPostTotalsResponse {
|
|
3171
|
+
/** Draft post totals. */
|
|
3172
|
+
totalDraftPosts?: TotalDraftPosts[];
|
|
3173
|
+
}
|
|
3174
|
+
interface TotalDraftPosts {
|
|
3175
|
+
/** Draft post totals in that group. */
|
|
3176
|
+
total?: number;
|
|
3177
|
+
/** Draft post status (only has value when grouping by status, otherwise null). */
|
|
3178
|
+
status?: StatusWithLiterals;
|
|
3179
|
+
/**
|
|
3180
|
+
* Draft post language code (only has value when grouping by language, otherwise null).
|
|
3181
|
+
* @format LANGUAGE_TAG
|
|
3182
|
+
*/
|
|
3183
|
+
language?: string | null;
|
|
3184
|
+
}
|
|
3185
|
+
interface DomainEvent extends DomainEventBodyOneOf {
|
|
3186
|
+
createdEvent?: EntityCreatedEvent;
|
|
3187
|
+
updatedEvent?: EntityUpdatedEvent;
|
|
3188
|
+
deletedEvent?: EntityDeletedEvent;
|
|
3189
|
+
actionEvent?: ActionEvent;
|
|
3190
|
+
/** Event ID. With this ID you can easily spot duplicated events and ignore them. */
|
|
3191
|
+
id?: string;
|
|
3192
|
+
/**
|
|
3193
|
+
* Fully Qualified Domain Name of an entity. This is a unique identifier assigned to the API main business entities.
|
|
3194
|
+
* For example, `wix.stores.catalog.product`, `wix.bookings.session`, `wix.payments.transaction`.
|
|
3195
|
+
*/
|
|
3196
|
+
entityFqdn?: string;
|
|
3197
|
+
/**
|
|
3198
|
+
* Event action name, placed at the top level to make it easier for users to dispatch messages.
|
|
3199
|
+
* For example: `created`/`updated`/`deleted`/`started`/`completed`/`email_opened`.
|
|
3200
|
+
*/
|
|
3201
|
+
slug?: string;
|
|
3202
|
+
/** ID of the entity associated with the event. */
|
|
3203
|
+
entityId?: string;
|
|
3204
|
+
/** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example, `2020-04-26T13:57:50.699Z`. */
|
|
3205
|
+
eventTime?: Date | null;
|
|
3206
|
+
/**
|
|
3207
|
+
* Whether the event was triggered as a result of a privacy regulation application
|
|
3208
|
+
* (for example, GDPR).
|
|
3209
|
+
*/
|
|
3210
|
+
triggeredByAnonymizeRequest?: boolean | null;
|
|
3211
|
+
/** If present, indicates the action that triggered the event. */
|
|
3212
|
+
originatedFrom?: string | null;
|
|
3213
|
+
/**
|
|
3214
|
+
* 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.
|
|
3215
|
+
* 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.
|
|
3216
|
+
*/
|
|
3217
|
+
entityEventSequence?: string | null;
|
|
3218
|
+
}
|
|
3219
|
+
/** @oneof */
|
|
3220
|
+
interface DomainEventBodyOneOf {
|
|
3221
|
+
createdEvent?: EntityCreatedEvent;
|
|
3222
|
+
updatedEvent?: EntityUpdatedEvent;
|
|
3223
|
+
deletedEvent?: EntityDeletedEvent;
|
|
3224
|
+
actionEvent?: ActionEvent;
|
|
3225
|
+
}
|
|
3226
|
+
interface EntityCreatedEvent {
|
|
3227
|
+
entityAsJson?: string;
|
|
3228
|
+
/** Indicates the event was triggered by a restore-from-trashbin operation for a previously deleted entity */
|
|
3229
|
+
restoreInfo?: RestoreInfo;
|
|
3230
|
+
}
|
|
3231
|
+
interface RestoreInfo {
|
|
3232
|
+
deletedDate?: Date | null;
|
|
3233
|
+
}
|
|
3234
|
+
interface EntityUpdatedEvent {
|
|
3235
|
+
/**
|
|
3236
|
+
* Since platformized APIs only expose PATCH and not PUT we can't assume that the fields sent from the client are the actual diff.
|
|
3237
|
+
* This means that to generate a list of changed fields (as opposed to sent fields) one needs to traverse both objects.
|
|
3238
|
+
* We don't want to impose this on all developers and so we leave this traversal to the notification recipients which need it.
|
|
3239
|
+
*/
|
|
3240
|
+
currentEntityAsJson?: string;
|
|
3241
|
+
}
|
|
3242
|
+
interface EntityDeletedEvent {
|
|
3243
|
+
/** Entity that was deleted. */
|
|
3244
|
+
deletedEntityAsJson?: string | null;
|
|
3245
|
+
}
|
|
3246
|
+
interface ActionEvent {
|
|
3247
|
+
bodyAsJson?: string;
|
|
3248
|
+
}
|
|
3249
|
+
interface MessageEnvelope {
|
|
3250
|
+
/**
|
|
3251
|
+
* App instance ID.
|
|
3252
|
+
* @format GUID
|
|
3253
|
+
*/
|
|
3254
|
+
instanceId?: string | null;
|
|
3255
|
+
/**
|
|
3256
|
+
* Event type.
|
|
3257
|
+
* @maxLength 150
|
|
3258
|
+
*/
|
|
3259
|
+
eventType?: string;
|
|
3260
|
+
/** The identification type and identity data. */
|
|
3261
|
+
identity?: IdentificationData;
|
|
3262
|
+
/** Stringify payload. */
|
|
3263
|
+
data?: string;
|
|
3264
|
+
/** Details related to the account */
|
|
3265
|
+
accountInfo?: AccountInfo;
|
|
3266
|
+
}
|
|
3267
|
+
interface IdentificationData extends IdentificationDataIdOneOf {
|
|
3268
|
+
/**
|
|
3269
|
+
* ID of a site visitor that has not logged in to the site.
|
|
3270
|
+
* @format GUID
|
|
3271
|
+
*/
|
|
3272
|
+
anonymousVisitorId?: string;
|
|
3273
|
+
/**
|
|
3274
|
+
* ID of a site visitor that has logged in to the site.
|
|
3275
|
+
* @format GUID
|
|
3276
|
+
*/
|
|
3277
|
+
memberId?: string;
|
|
3278
|
+
/**
|
|
3279
|
+
* ID of a Wix user (site owner, contributor, etc.).
|
|
3280
|
+
* @format GUID
|
|
3281
|
+
*/
|
|
3282
|
+
wixUserId?: string;
|
|
3283
|
+
/**
|
|
3284
|
+
* ID of an app.
|
|
3285
|
+
* @format GUID
|
|
3286
|
+
*/
|
|
3287
|
+
appId?: string;
|
|
3288
|
+
/** @readonly */
|
|
3289
|
+
identityType?: WebhookIdentityTypeWithLiterals;
|
|
3290
|
+
}
|
|
3291
|
+
/** @oneof */
|
|
3292
|
+
interface IdentificationDataIdOneOf {
|
|
3293
|
+
/**
|
|
3294
|
+
* ID of a site visitor that has not logged in to the site.
|
|
3295
|
+
* @format GUID
|
|
3296
|
+
*/
|
|
3297
|
+
anonymousVisitorId?: string;
|
|
3298
|
+
/**
|
|
3299
|
+
* ID of a site visitor that has logged in to the site.
|
|
3300
|
+
* @format GUID
|
|
3301
|
+
*/
|
|
3302
|
+
memberId?: string;
|
|
3303
|
+
/**
|
|
3304
|
+
* ID of a Wix user (site owner, contributor, etc.).
|
|
3305
|
+
* @format GUID
|
|
3306
|
+
*/
|
|
3307
|
+
wixUserId?: string;
|
|
3308
|
+
/**
|
|
3309
|
+
* ID of an app.
|
|
3310
|
+
* @format GUID
|
|
3311
|
+
*/
|
|
3312
|
+
appId?: string;
|
|
3313
|
+
}
|
|
3314
|
+
declare enum WebhookIdentityType {
|
|
3315
|
+
UNKNOWN = "UNKNOWN",
|
|
3316
|
+
ANONYMOUS_VISITOR = "ANONYMOUS_VISITOR",
|
|
3317
|
+
MEMBER = "MEMBER",
|
|
3318
|
+
WIX_USER = "WIX_USER",
|
|
3319
|
+
APP = "APP"
|
|
3320
|
+
}
|
|
3321
|
+
/** @enumType */
|
|
3322
|
+
type WebhookIdentityTypeWithLiterals = WebhookIdentityType | 'UNKNOWN' | 'ANONYMOUS_VISITOR' | 'MEMBER' | 'WIX_USER' | 'APP';
|
|
3323
|
+
interface AccountInfo {
|
|
3324
|
+
/**
|
|
3325
|
+
* ID of the Wix account associated with the event.
|
|
3326
|
+
* @format GUID
|
|
3327
|
+
*/
|
|
3328
|
+
accountId?: string | null;
|
|
3329
|
+
/**
|
|
3330
|
+
* ID of the parent Wix account. Only included when accountId belongs to a child account.
|
|
3331
|
+
* @format GUID
|
|
3332
|
+
*/
|
|
3333
|
+
parentAccountId?: string | null;
|
|
3334
|
+
/**
|
|
3335
|
+
* ID of the Wix site associated with the event. Only included when the event is tied to a specific site.
|
|
3336
|
+
* @format GUID
|
|
3337
|
+
*/
|
|
3338
|
+
siteId?: string | null;
|
|
3339
|
+
}
|
|
3340
|
+
interface InitialDraftPostsCopied {
|
|
3341
|
+
/** Number of draft posts copied. */
|
|
3342
|
+
count?: number;
|
|
3343
|
+
}
|
|
3091
3344
|
interface CreateDraftPostRequest {
|
|
3092
3345
|
/** Draft post to create. */
|
|
3093
3346
|
draftPost: DraftPost;
|
|
@@ -3668,197 +3921,116 @@ interface DraftPostCount {
|
|
|
3668
3921
|
/** Number of posts. */
|
|
3669
3922
|
postCount?: number;
|
|
3670
3923
|
}
|
|
3671
|
-
interface
|
|
3672
|
-
createdEvent?: EntityCreatedEvent;
|
|
3673
|
-
updatedEvent?: EntityUpdatedEvent;
|
|
3674
|
-
deletedEvent?: EntityDeletedEvent;
|
|
3675
|
-
actionEvent?: ActionEvent;
|
|
3676
|
-
/** Event ID. With this ID you can easily spot duplicated events and ignore them. */
|
|
3677
|
-
id?: string;
|
|
3924
|
+
interface BulkRevertToUnpublishedRequest {
|
|
3678
3925
|
/**
|
|
3679
|
-
*
|
|
3680
|
-
*
|
|
3926
|
+
* Source post IDs.
|
|
3927
|
+
* @minSize 1
|
|
3928
|
+
* @maxSize 100
|
|
3929
|
+
* @format GUID
|
|
3681
3930
|
*/
|
|
3682
|
-
|
|
3931
|
+
postIds?: string[];
|
|
3932
|
+
/** Should full draft post be returned. */
|
|
3933
|
+
returnFullEntity?: boolean;
|
|
3934
|
+
}
|
|
3935
|
+
interface BulkRevertToUnpublishedResponse {
|
|
3936
|
+
/** Bulk action results. */
|
|
3937
|
+
results?: BulkDraftPostResult[];
|
|
3938
|
+
/** Bulk action metadata. */
|
|
3939
|
+
bulkActionMetadata?: BulkActionMetadata;
|
|
3940
|
+
}
|
|
3941
|
+
interface BulkRejectDraftPostRequest {
|
|
3683
3942
|
/**
|
|
3684
|
-
*
|
|
3685
|
-
*
|
|
3943
|
+
* Source post IDs.
|
|
3944
|
+
* @minSize 1
|
|
3945
|
+
* @maxSize 100
|
|
3946
|
+
* @format GUID
|
|
3686
3947
|
*/
|
|
3687
|
-
|
|
3688
|
-
/**
|
|
3689
|
-
|
|
3690
|
-
/** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example, `2020-04-26T13:57:50.699Z`. */
|
|
3691
|
-
eventTime?: Date | null;
|
|
3692
|
-
/**
|
|
3693
|
-
* Whether the event was triggered as a result of a privacy regulation application
|
|
3694
|
-
* (for example, GDPR).
|
|
3695
|
-
*/
|
|
3696
|
-
triggeredByAnonymizeRequest?: boolean | null;
|
|
3697
|
-
/** If present, indicates the action that triggered the event. */
|
|
3698
|
-
originatedFrom?: string | null;
|
|
3699
|
-
/**
|
|
3700
|
-
* 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.
|
|
3701
|
-
* 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.
|
|
3702
|
-
*/
|
|
3703
|
-
entityEventSequence?: string | null;
|
|
3704
|
-
}
|
|
3705
|
-
/** @oneof */
|
|
3706
|
-
interface DomainEventBodyOneOf {
|
|
3707
|
-
createdEvent?: EntityCreatedEvent;
|
|
3708
|
-
updatedEvent?: EntityUpdatedEvent;
|
|
3709
|
-
deletedEvent?: EntityDeletedEvent;
|
|
3710
|
-
actionEvent?: ActionEvent;
|
|
3711
|
-
}
|
|
3712
|
-
interface EntityCreatedEvent {
|
|
3713
|
-
entityAsJson?: string;
|
|
3714
|
-
/** Indicates the event was triggered by a restore-from-trashbin operation for a previously deleted entity */
|
|
3715
|
-
restoreInfo?: RestoreInfo;
|
|
3716
|
-
}
|
|
3717
|
-
interface RestoreInfo {
|
|
3718
|
-
deletedDate?: Date | null;
|
|
3719
|
-
}
|
|
3720
|
-
interface EntityUpdatedEvent {
|
|
3721
|
-
/**
|
|
3722
|
-
* Since platformized APIs only expose PATCH and not PUT we can't assume that the fields sent from the client are the actual diff.
|
|
3723
|
-
* This means that to generate a list of changed fields (as opposed to sent fields) one needs to traverse both objects.
|
|
3724
|
-
* We don't want to impose this on all developers and so we leave this traversal to the notification recipients which need it.
|
|
3725
|
-
*/
|
|
3726
|
-
currentEntityAsJson?: string;
|
|
3727
|
-
}
|
|
3728
|
-
interface EntityDeletedEvent {
|
|
3729
|
-
/** Entity that was deleted. */
|
|
3730
|
-
deletedEntityAsJson?: string | null;
|
|
3948
|
+
postIds?: string[];
|
|
3949
|
+
/** Should full draft post be returned. */
|
|
3950
|
+
returnFullEntity?: boolean;
|
|
3731
3951
|
}
|
|
3732
|
-
interface
|
|
3733
|
-
|
|
3952
|
+
interface BulkRejectDraftPostResponse {
|
|
3953
|
+
/** Bulk action results. */
|
|
3954
|
+
results?: BulkDraftPostResult[];
|
|
3955
|
+
/** Bulk action metadata. */
|
|
3956
|
+
bulkActionMetadata?: BulkActionMetadata;
|
|
3734
3957
|
}
|
|
3735
|
-
interface
|
|
3958
|
+
interface RevertToUnpublishedRequest {
|
|
3736
3959
|
/**
|
|
3737
|
-
*
|
|
3960
|
+
* Source post ID.
|
|
3738
3961
|
* @format GUID
|
|
3739
3962
|
*/
|
|
3740
|
-
|
|
3963
|
+
postId?: string;
|
|
3741
3964
|
/**
|
|
3742
|
-
*
|
|
3743
|
-
*
|
|
3965
|
+
* List of draft post fields to be included if entities are present in the response.
|
|
3966
|
+
* Base fieldset, which is default, will return all core draft post properties.
|
|
3967
|
+
* Example: When URL fieldset is selected, returned draft post will have a set of base properties and draft post preview url.
|
|
3968
|
+
* @maxSize 10
|
|
3744
3969
|
*/
|
|
3745
|
-
|
|
3746
|
-
/** The identification type and identity data. */
|
|
3747
|
-
identity?: IdentificationData;
|
|
3748
|
-
/** Stringify payload. */
|
|
3749
|
-
data?: string;
|
|
3750
|
-
/** Details related to the account */
|
|
3751
|
-
accountInfo?: AccountInfo;
|
|
3970
|
+
fieldsets?: FieldWithLiterals[];
|
|
3752
3971
|
}
|
|
3753
|
-
interface
|
|
3754
|
-
/**
|
|
3755
|
-
|
|
3756
|
-
* @format GUID
|
|
3757
|
-
*/
|
|
3758
|
-
anonymousVisitorId?: string;
|
|
3759
|
-
/**
|
|
3760
|
-
* ID of a site visitor that has logged in to the site.
|
|
3761
|
-
* @format GUID
|
|
3762
|
-
*/
|
|
3763
|
-
memberId?: string;
|
|
3764
|
-
/**
|
|
3765
|
-
* ID of a Wix user (site owner, contributor, etc.).
|
|
3766
|
-
* @format GUID
|
|
3767
|
-
*/
|
|
3768
|
-
wixUserId?: string;
|
|
3769
|
-
/**
|
|
3770
|
-
* ID of an app.
|
|
3771
|
-
* @format GUID
|
|
3772
|
-
*/
|
|
3773
|
-
appId?: string;
|
|
3774
|
-
/** @readonly */
|
|
3775
|
-
identityType?: WebhookIdentityTypeWithLiterals;
|
|
3972
|
+
interface RevertToUnpublishedResponse {
|
|
3973
|
+
/** Updated post draft. */
|
|
3974
|
+
draftPost?: DraftPost;
|
|
3776
3975
|
}
|
|
3777
|
-
|
|
3778
|
-
interface IdentificationDataIdOneOf {
|
|
3779
|
-
/**
|
|
3780
|
-
* ID of a site visitor that has not logged in to the site.
|
|
3781
|
-
* @format GUID
|
|
3782
|
-
*/
|
|
3783
|
-
anonymousVisitorId?: string;
|
|
3784
|
-
/**
|
|
3785
|
-
* ID of a site visitor that has logged in to the site.
|
|
3786
|
-
* @format GUID
|
|
3787
|
-
*/
|
|
3788
|
-
memberId?: string;
|
|
3976
|
+
interface RejectDraftPostRequest {
|
|
3789
3977
|
/**
|
|
3790
|
-
*
|
|
3978
|
+
* Source post ID.
|
|
3791
3979
|
* @format GUID
|
|
3792
3980
|
*/
|
|
3793
|
-
|
|
3981
|
+
postId?: string;
|
|
3794
3982
|
/**
|
|
3795
|
-
*
|
|
3796
|
-
*
|
|
3983
|
+
* List of draft post fields to be included if entities are present in the response.
|
|
3984
|
+
* Base fieldset, which is default, will return all core draft post properties.
|
|
3985
|
+
* Example: When URL fieldset is selected, returned draft post will have a set of base properties and draft post preview url.
|
|
3986
|
+
* @maxSize 10
|
|
3797
3987
|
*/
|
|
3798
|
-
|
|
3988
|
+
fieldsets?: FieldWithLiterals[];
|
|
3799
3989
|
}
|
|
3800
|
-
|
|
3801
|
-
|
|
3802
|
-
|
|
3803
|
-
MEMBER = "MEMBER",
|
|
3804
|
-
WIX_USER = "WIX_USER",
|
|
3805
|
-
APP = "APP"
|
|
3990
|
+
interface RejectDraftPostResponse {
|
|
3991
|
+
/** Draft post. */
|
|
3992
|
+
draftPost?: DraftPost;
|
|
3806
3993
|
}
|
|
3807
|
-
|
|
3808
|
-
type WebhookIdentityTypeWithLiterals = WebhookIdentityType | 'UNKNOWN' | 'ANONYMOUS_VISITOR' | 'MEMBER' | 'WIX_USER' | 'APP';
|
|
3809
|
-
interface AccountInfo {
|
|
3994
|
+
interface ApproveDraftPostRequest {
|
|
3810
3995
|
/**
|
|
3811
|
-
*
|
|
3996
|
+
* Source post ID.
|
|
3812
3997
|
* @format GUID
|
|
3813
3998
|
*/
|
|
3814
|
-
|
|
3999
|
+
postId?: string;
|
|
3815
4000
|
/**
|
|
3816
|
-
*
|
|
3817
|
-
* @
|
|
4001
|
+
* Scheduled publish date if should be not immediately published.
|
|
4002
|
+
* @maxLength 24
|
|
3818
4003
|
*/
|
|
3819
|
-
|
|
4004
|
+
scheduledPublishDate?: string | null;
|
|
3820
4005
|
/**
|
|
3821
|
-
*
|
|
3822
|
-
*
|
|
4006
|
+
* List of draft post fields to be included if entities are present in the response.
|
|
4007
|
+
* Base fieldset, which is default, will return all core draft post properties.
|
|
4008
|
+
* Example: When URL fieldset is selected, returned draft post will have a set of base properties and draft post preview url.
|
|
4009
|
+
* @maxSize 10
|
|
3823
4010
|
*/
|
|
3824
|
-
|
|
4011
|
+
fieldsets?: FieldWithLiterals[];
|
|
3825
4012
|
}
|
|
3826
|
-
interface
|
|
4013
|
+
interface ApproveDraftPostResponse {
|
|
4014
|
+
/** Updated post draft. */
|
|
4015
|
+
draftPost?: DraftPost;
|
|
4016
|
+
}
|
|
4017
|
+
interface MarkPostAsInModerationRequest {
|
|
3827
4018
|
/**
|
|
3828
|
-
*
|
|
3829
|
-
*
|
|
3830
|
-
* If, for example, grouping by language is not passed, null values will be filled in language field in response.
|
|
3831
|
-
* @maxSize 10
|
|
4019
|
+
* Source post ID.
|
|
4020
|
+
* @maxLength 38
|
|
3832
4021
|
*/
|
|
3833
|
-
|
|
4022
|
+
postId?: string;
|
|
3834
4023
|
/**
|
|
3835
|
-
*
|
|
3836
|
-
*
|
|
4024
|
+
* List of draft post fields to be included if entities are present in the response.
|
|
4025
|
+
* Base fieldset, which is default, will return all core draft post properties.
|
|
4026
|
+
* Example: When URL fieldset is selected, returned draft post will have a set of base properties and draft post preview url.
|
|
4027
|
+
* @maxSize 10
|
|
3837
4028
|
*/
|
|
3838
|
-
|
|
3839
|
-
}
|
|
3840
|
-
declare enum TotalDraftPostsGroupingField {
|
|
3841
|
-
/** Groups results by status. */
|
|
3842
|
-
STATUS = "STATUS",
|
|
3843
|
-
/** Groups results by language. */
|
|
3844
|
-
LANGUAGE = "LANGUAGE"
|
|
3845
|
-
}
|
|
3846
|
-
/** @enumType */
|
|
3847
|
-
type TotalDraftPostsGroupingFieldWithLiterals = TotalDraftPostsGroupingField | 'STATUS' | 'LANGUAGE';
|
|
3848
|
-
interface GetDraftPostTotalsResponse {
|
|
3849
|
-
/** Draft post totals. */
|
|
3850
|
-
totalDraftPosts?: TotalDraftPosts[];
|
|
4029
|
+
fieldsets?: FieldWithLiterals[];
|
|
3851
4030
|
}
|
|
3852
|
-
interface
|
|
3853
|
-
/**
|
|
3854
|
-
|
|
3855
|
-
/** Draft post status (only has value when grouping by status, otherwise null). */
|
|
3856
|
-
status?: StatusWithLiterals;
|
|
3857
|
-
/**
|
|
3858
|
-
* Draft post language code (only has value when grouping by language, otherwise null).
|
|
3859
|
-
* @format LANGUAGE_TAG
|
|
3860
|
-
*/
|
|
3861
|
-
language?: string | null;
|
|
4031
|
+
interface MarkPostAsInModerationResponse {
|
|
4032
|
+
/** Updated post draft. */
|
|
4033
|
+
draftPost?: DraftPost;
|
|
3862
4034
|
}
|
|
3863
4035
|
interface TranslateDraftRequest {
|
|
3864
4036
|
/**
|
|
@@ -3933,117 +4105,6 @@ interface UpdateDraftPostLanguageResponse {
|
|
|
3933
4105
|
/** Draft post */
|
|
3934
4106
|
draftPost?: DraftPost;
|
|
3935
4107
|
}
|
|
3936
|
-
interface BulkRevertToUnpublishedRequest {
|
|
3937
|
-
/**
|
|
3938
|
-
* Source post IDs.
|
|
3939
|
-
* @minSize 1
|
|
3940
|
-
* @maxSize 100
|
|
3941
|
-
* @format GUID
|
|
3942
|
-
*/
|
|
3943
|
-
postIds?: string[];
|
|
3944
|
-
/** Should full draft post be returned. */
|
|
3945
|
-
returnFullEntity?: boolean;
|
|
3946
|
-
}
|
|
3947
|
-
interface BulkRevertToUnpublishedResponse {
|
|
3948
|
-
/** Bulk action results. */
|
|
3949
|
-
results?: BulkDraftPostResult[];
|
|
3950
|
-
/** Bulk action metadata. */
|
|
3951
|
-
bulkActionMetadata?: BulkActionMetadata;
|
|
3952
|
-
}
|
|
3953
|
-
interface BulkRejectDraftPostRequest {
|
|
3954
|
-
/**
|
|
3955
|
-
* Source post IDs.
|
|
3956
|
-
* @minSize 1
|
|
3957
|
-
* @maxSize 100
|
|
3958
|
-
* @format GUID
|
|
3959
|
-
*/
|
|
3960
|
-
postIds?: string[];
|
|
3961
|
-
/** Should full draft post be returned. */
|
|
3962
|
-
returnFullEntity?: boolean;
|
|
3963
|
-
}
|
|
3964
|
-
interface BulkRejectDraftPostResponse {
|
|
3965
|
-
/** Bulk action results. */
|
|
3966
|
-
results?: BulkDraftPostResult[];
|
|
3967
|
-
/** Bulk action metadata. */
|
|
3968
|
-
bulkActionMetadata?: BulkActionMetadata;
|
|
3969
|
-
}
|
|
3970
|
-
interface RevertToUnpublishedRequest {
|
|
3971
|
-
/**
|
|
3972
|
-
* Source post ID.
|
|
3973
|
-
* @format GUID
|
|
3974
|
-
*/
|
|
3975
|
-
postId?: string;
|
|
3976
|
-
/**
|
|
3977
|
-
* List of draft post fields to be included if entities are present in the response.
|
|
3978
|
-
* Base fieldset, which is default, will return all core draft post properties.
|
|
3979
|
-
* Example: When URL fieldset is selected, returned draft post will have a set of base properties and draft post preview url.
|
|
3980
|
-
* @maxSize 10
|
|
3981
|
-
*/
|
|
3982
|
-
fieldsets?: FieldWithLiterals[];
|
|
3983
|
-
}
|
|
3984
|
-
interface RevertToUnpublishedResponse {
|
|
3985
|
-
/** Updated post draft. */
|
|
3986
|
-
draftPost?: DraftPost;
|
|
3987
|
-
}
|
|
3988
|
-
interface RejectDraftPostRequest {
|
|
3989
|
-
/**
|
|
3990
|
-
* Source post ID.
|
|
3991
|
-
* @format GUID
|
|
3992
|
-
*/
|
|
3993
|
-
postId?: string;
|
|
3994
|
-
/**
|
|
3995
|
-
* List of draft post fields to be included if entities are present in the response.
|
|
3996
|
-
* Base fieldset, which is default, will return all core draft post properties.
|
|
3997
|
-
* Example: When URL fieldset is selected, returned draft post will have a set of base properties and draft post preview url.
|
|
3998
|
-
* @maxSize 10
|
|
3999
|
-
*/
|
|
4000
|
-
fieldsets?: FieldWithLiterals[];
|
|
4001
|
-
}
|
|
4002
|
-
interface RejectDraftPostResponse {
|
|
4003
|
-
/** Draft post. */
|
|
4004
|
-
draftPost?: DraftPost;
|
|
4005
|
-
}
|
|
4006
|
-
interface ApproveDraftPostRequest {
|
|
4007
|
-
/**
|
|
4008
|
-
* Source post ID.
|
|
4009
|
-
* @format GUID
|
|
4010
|
-
*/
|
|
4011
|
-
postId?: string;
|
|
4012
|
-
/**
|
|
4013
|
-
* Scheduled publish date if should be not immediately published.
|
|
4014
|
-
* @maxLength 24
|
|
4015
|
-
*/
|
|
4016
|
-
scheduledPublishDate?: string | null;
|
|
4017
|
-
/**
|
|
4018
|
-
* List of draft post fields to be included if entities are present in the response.
|
|
4019
|
-
* Base fieldset, which is default, will return all core draft post properties.
|
|
4020
|
-
* Example: When URL fieldset is selected, returned draft post will have a set of base properties and draft post preview url.
|
|
4021
|
-
* @maxSize 10
|
|
4022
|
-
*/
|
|
4023
|
-
fieldsets?: FieldWithLiterals[];
|
|
4024
|
-
}
|
|
4025
|
-
interface ApproveDraftPostResponse {
|
|
4026
|
-
/** Updated post draft. */
|
|
4027
|
-
draftPost?: DraftPost;
|
|
4028
|
-
}
|
|
4029
|
-
interface MarkPostAsInModerationRequest {
|
|
4030
|
-
/**
|
|
4031
|
-
* Source post ID.
|
|
4032
|
-
* @maxLength 38
|
|
4033
|
-
*/
|
|
4034
|
-
postId?: string;
|
|
4035
|
-
/**
|
|
4036
|
-
* List of draft post fields to be included if entities are present in the response.
|
|
4037
|
-
* Base fieldset, which is default, will return all core draft post properties.
|
|
4038
|
-
* Example: When URL fieldset is selected, returned draft post will have a set of base properties and draft post preview url.
|
|
4039
|
-
* @maxSize 10
|
|
4040
|
-
*/
|
|
4041
|
-
fieldsets?: FieldWithLiterals[];
|
|
4042
|
-
}
|
|
4043
|
-
interface MarkPostAsInModerationResponse {
|
|
4044
|
-
/** Updated post draft. */
|
|
4045
|
-
draftPost?: DraftPost;
|
|
4046
|
-
}
|
|
4047
4108
|
|
|
4048
4109
|
type __PublicMethodMetaInfo<K = string, M = unknown, T = unknown, S = unknown, Q = unknown, R = unknown> = {
|
|
4049
4110
|
getUrl: (context: any) => string;
|
|
@@ -4084,4 +4145,4 @@ declare function publishDraftPost(): __PublicMethodMetaInfo<'POST', {
|
|
|
4084
4145
|
draftPostId: string;
|
|
4085
4146
|
}, PublishDraftPostRequest$1, PublishDraftPostRequest, PublishDraftPostResponse$1, PublishDraftPostResponse>;
|
|
4086
4147
|
|
|
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 };
|
|
4148
|
+
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 };
|