@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.
Files changed (45) hide show
  1. package/build/cjs/index.d.ts +1 -1
  2. package/build/cjs/index.js +28 -13
  3. package/build/cjs/index.js.map +1 -1
  4. package/build/cjs/index.typings.d.ts +338 -277
  5. package/build/cjs/index.typings.js +28 -13
  6. package/build/cjs/index.typings.js.map +1 -1
  7. package/build/cjs/meta.d.ts +340 -279
  8. package/build/cjs/meta.js +28 -13
  9. package/build/cjs/meta.js.map +1 -1
  10. package/build/cjs/schemas.js +15 -15
  11. package/build/cjs/schemas.js.map +1 -1
  12. package/build/es/index.d.mts +1 -1
  13. package/build/es/index.mjs +27 -13
  14. package/build/es/index.mjs.map +1 -1
  15. package/build/es/index.typings.d.mts +338 -277
  16. package/build/es/index.typings.mjs +27 -13
  17. package/build/es/index.typings.mjs.map +1 -1
  18. package/build/es/meta.d.mts +340 -279
  19. package/build/es/meta.mjs +27 -13
  20. package/build/es/meta.mjs.map +1 -1
  21. package/build/es/schemas.mjs +15 -15
  22. package/build/es/schemas.mjs.map +1 -1
  23. package/build/internal/cjs/index.d.ts +1 -1
  24. package/build/internal/cjs/index.js +28 -13
  25. package/build/internal/cjs/index.js.map +1 -1
  26. package/build/internal/cjs/index.typings.d.ts +359 -298
  27. package/build/internal/cjs/index.typings.js +28 -13
  28. package/build/internal/cjs/index.typings.js.map +1 -1
  29. package/build/internal/cjs/meta.d.ts +782 -721
  30. package/build/internal/cjs/meta.js +28 -13
  31. package/build/internal/cjs/meta.js.map +1 -1
  32. package/build/internal/cjs/schemas.js +15 -15
  33. package/build/internal/cjs/schemas.js.map +1 -1
  34. package/build/internal/es/index.d.mts +1 -1
  35. package/build/internal/es/index.mjs +27 -13
  36. package/build/internal/es/index.mjs.map +1 -1
  37. package/build/internal/es/index.typings.d.mts +359 -298
  38. package/build/internal/es/index.typings.mjs +27 -13
  39. package/build/internal/es/index.typings.mjs.map +1 -1
  40. package/build/internal/es/meta.d.mts +782 -721
  41. package/build/internal/es/meta.mjs +27 -13
  42. package/build/internal/es/meta.mjs.map +1 -1
  43. package/build/internal/es/schemas.mjs +15 -15
  44. package/build/internal/es/schemas.mjs.map +1 -1
  45. package/package.json +2 -2
@@ -726,17 +726,27 @@ interface Rel {
726
726
  interface Animation {
727
727
  /** Animation kind. */
728
728
  type?: AnimationTypeWithLiterals;
729
- /** Entrance animation, played once when the node first enters the viewport. */
729
+ /** Entrance animation, played once when the node first enters the viewport (VIEW). */
730
730
  entrance?: EntranceAnimation;
731
- /** Looping animation, repeated indefinitely while the node is on the page. When combined with entrance, the loop starts after the entrance finishes. */
731
+ /** Looping animation, repeated indefinitely while the node is on the page. When combined with entrance, the loop starts after the entrance finishes (VIEW). */
732
732
  loop?: LoopAnimation;
733
+ /**
734
+ * POINTER carries its fields directly on the union member in the JTD wall, hence
735
+ * flat fields here (ts-proto camelCase must equal the JTD property names). A future
736
+ * SCROLL variant will contend for the `effect` JSON name — resolve when it lands.
737
+ */
738
+ effect?: PointerEffect;
739
+ /** How quickly the node settles toward the pointer, in milliseconds (POINTER). */
740
+ transitionDuration?: number | null;
733
741
  }
734
742
  declare enum AnimationType {
735
743
  /** Animations that play while the node is in view. */
736
- VIEW = "VIEW"
744
+ VIEW = "VIEW",
745
+ /** Animations driven by the visitor's mouse position. */
746
+ POINTER = "POINTER"
737
747
  }
738
748
  /** @enumType */
739
- type AnimationTypeWithLiterals = AnimationType | 'VIEW';
749
+ type AnimationTypeWithLiterals = AnimationType | 'VIEW' | 'POINTER';
740
750
  interface EntranceAnimation {
741
751
  /** The entrance effect to play. */
742
752
  effect?: EntranceEffect;
@@ -856,6 +866,49 @@ declare enum LoopEffectType {
856
866
  }
857
867
  /** @enumType */
858
868
  type LoopEffectTypeWithLiterals = LoopEffectType | 'BOUNCE' | 'BREATHE' | 'CROSS' | 'FLASH' | 'FLIP' | 'FOLD' | 'JELLO' | 'POKE' | 'PULSE' | 'RUBBER' | 'SPIN' | 'SWING' | 'WIGGLE';
869
+ interface PointerEffect {
870
+ /** The mouse effect type. */
871
+ type?: PointerEffectTypeWithLiterals;
872
+ /** Reacts away from the pointer instead of toward it. */
873
+ inverted?: boolean | null;
874
+ /**
875
+ * 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.
876
+ * @maxLength 20
877
+ */
878
+ axis?: string | null;
879
+ /**
880
+ * Whether the node grows or shrinks as the pointer nears: UP or DOWN (SCALE).
881
+ * @maxLength 8
882
+ */
883
+ direction?: string | null;
884
+ /**
885
+ * Motion style: GENTLE, MODERATE, or INTENSE.
886
+ * @maxLength 100
887
+ */
888
+ easing?: string | null;
889
+ }
890
+ declare enum PointerEffectType {
891
+ /** Drifts loosely after the pointer with a light rotation. */
892
+ AIRY = "AIRY",
893
+ /** Squashes and stretches toward the pointer. */
894
+ BLOB = "BLOB",
895
+ /** Shifts after the pointer while blurring. */
896
+ BLUR = "BLUR",
897
+ /** Scales as the pointer approaches. */
898
+ SCALE = "SCALE",
899
+ /** Skews toward the pointer. */
900
+ SKEW = "SKEW",
901
+ /** Rotates around a pivot edge or axis, following the pointer. */
902
+ SWIVEL = "SWIVEL",
903
+ /** Tilts in 3D perspective toward the pointer. */
904
+ TILT_3D = "TILT_3D",
905
+ /** Follows the pointer's position. */
906
+ TRACK = "TRACK",
907
+ /** Follows the pointer with a 3D depth motion. */
908
+ TRACK_3D = "TRACK_3D"
909
+ }
910
+ /** @enumType */
911
+ type PointerEffectTypeWithLiterals = PointerEffectType | 'AIRY' | 'BLOB' | 'BLUR' | 'SCALE' | 'SKEW' | 'SWIVEL' | 'TILT_3D' | 'TRACK' | 'TRACK_3D';
859
912
  interface CodeBlockData {
860
913
  /** Styling for the code block's text. */
861
914
  textStyle?: TextStyle;
@@ -2893,7 +2946,15 @@ interface Tag {
2893
2946
  meta?: Record<string, any> | null;
2894
2947
  /** SEO tag inner content. For example, `<title> inner content </title>`. */
2895
2948
  children?: string;
2896
- /** Whether the tag is a [custom tag](https://support.wix.com/en/article/adding-additional-meta-tags-to-your-sites-pages). */
2949
+ /**
2950
+ * Whether the tag is a [custom tag](https://support.wix.com/en/article/adding-additional-meta-tags-to-your-sites-pages).
2951
+ *
2952
+ * Limitation: when `ResolveStaticPageSeoTags` is called without `seoData`, the per-page SEO data is read
2953
+ * only from the Vibe/Wix-managed-headless override store. That store holds nothing for classic Wix Editor
2954
+ * or Wix Studio pages, so custom tags saved on those pages are missing from the response entirely. For
2955
+ * those pages `false` therefore does not mean "not a custom tag" — it means this API could not tell.
2956
+ * Pass `seoData` explicitly to resolve against a known set of tags.
2957
+ */
2897
2958
  custom?: boolean;
2898
2959
  /** Whether the tag is disabled. If the tag is disabled, people can't find your page when searching for this phrase in search engines. */
2899
2960
  disabled?: boolean;
@@ -3002,10 +3063,6 @@ interface DraftPostTranslation {
3002
3063
  /** Post URL. */
3003
3064
  url?: string;
3004
3065
  }
3005
- interface InitialDraftPostsCopied {
3006
- /** Number of draft posts copied. */
3007
- count?: number;
3008
- }
3009
3066
  interface DraftCategoriesUpdated {
3010
3067
  /**
3011
3068
  * Draft post ID.
@@ -3044,6 +3101,200 @@ interface DraftTagsUpdated {
3044
3101
  */
3045
3102
  previousTags?: string[];
3046
3103
  }
3104
+ interface GetDraftPostTotalsRequest {
3105
+ /**
3106
+ * Group results by fields (defaults to grouping by status).
3107
+ * If, for example, grouping by language is passed, language values in response will be filled.
3108
+ * If, for example, grouping by language is not passed, null values will be filled in language field in response.
3109
+ * @maxSize 10
3110
+ */
3111
+ groupBy?: TotalDraftPostsGroupingFieldWithLiterals[];
3112
+ /**
3113
+ * Optional language filter by provided language code. Useful in multilingual context.
3114
+ * @format LANGUAGE_TAG
3115
+ */
3116
+ language?: string | null;
3117
+ }
3118
+ declare enum TotalDraftPostsGroupingField {
3119
+ /** Groups results by status. */
3120
+ STATUS = "STATUS",
3121
+ /** Groups results by language. */
3122
+ LANGUAGE = "LANGUAGE"
3123
+ }
3124
+ /** @enumType */
3125
+ type TotalDraftPostsGroupingFieldWithLiterals = TotalDraftPostsGroupingField | 'STATUS' | 'LANGUAGE';
3126
+ interface GetDraftPostTotalsResponse {
3127
+ /** Draft post totals. */
3128
+ totalDraftPosts?: TotalDraftPosts[];
3129
+ }
3130
+ interface TotalDraftPosts {
3131
+ /** Draft post totals in that group. */
3132
+ total?: number;
3133
+ /** Draft post status (only has value when grouping by status, otherwise null). */
3134
+ status?: StatusWithLiterals;
3135
+ /**
3136
+ * Draft post language code (only has value when grouping by language, otherwise null).
3137
+ * @format LANGUAGE_TAG
3138
+ */
3139
+ language?: string | null;
3140
+ }
3141
+ interface DomainEvent extends DomainEventBodyOneOf {
3142
+ createdEvent?: EntityCreatedEvent;
3143
+ updatedEvent?: EntityUpdatedEvent;
3144
+ deletedEvent?: EntityDeletedEvent;
3145
+ actionEvent?: ActionEvent;
3146
+ /** Event ID. With this ID you can easily spot duplicated events and ignore them. */
3147
+ _id?: string;
3148
+ /**
3149
+ * Fully Qualified Domain Name of an entity. This is a unique identifier assigned to the API main business entities.
3150
+ * For example, `wix.stores.catalog.product`, `wix.bookings.session`, `wix.payments.transaction`.
3151
+ */
3152
+ entityFqdn?: string;
3153
+ /**
3154
+ * Event action name, placed at the top level to make it easier for users to dispatch messages.
3155
+ * For example: `created`/`updated`/`deleted`/`started`/`completed`/`email_opened`.
3156
+ */
3157
+ slug?: string;
3158
+ /** ID of the entity associated with the event. */
3159
+ entityId?: string;
3160
+ /** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example, `2020-04-26T13:57:50.699Z`. */
3161
+ eventTime?: Date | null;
3162
+ /**
3163
+ * Whether the event was triggered as a result of a privacy regulation application
3164
+ * (for example, GDPR).
3165
+ */
3166
+ triggeredByAnonymizeRequest?: boolean | null;
3167
+ /** If present, indicates the action that triggered the event. */
3168
+ originatedFrom?: string | null;
3169
+ /**
3170
+ * 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.
3171
+ * 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.
3172
+ */
3173
+ entityEventSequence?: string | null;
3174
+ }
3175
+ /** @oneof */
3176
+ interface DomainEventBodyOneOf {
3177
+ createdEvent?: EntityCreatedEvent;
3178
+ updatedEvent?: EntityUpdatedEvent;
3179
+ deletedEvent?: EntityDeletedEvent;
3180
+ actionEvent?: ActionEvent;
3181
+ }
3182
+ interface EntityCreatedEvent {
3183
+ entity?: string;
3184
+ }
3185
+ interface RestoreInfo {
3186
+ deletedDate?: Date | null;
3187
+ }
3188
+ interface EntityUpdatedEvent {
3189
+ /**
3190
+ * Since platformized APIs only expose PATCH and not PUT we can't assume that the fields sent from the client are the actual diff.
3191
+ * This means that to generate a list of changed fields (as opposed to sent fields) one needs to traverse both objects.
3192
+ * We don't want to impose this on all developers and so we leave this traversal to the notification recipients which need it.
3193
+ */
3194
+ currentEntity?: string;
3195
+ }
3196
+ interface EntityDeletedEvent {
3197
+ /** Entity that was deleted. */
3198
+ deletedEntity?: string | null;
3199
+ }
3200
+ interface ActionEvent {
3201
+ body?: string;
3202
+ }
3203
+ interface MessageEnvelope {
3204
+ /**
3205
+ * App instance ID.
3206
+ * @format GUID
3207
+ */
3208
+ instanceId?: string | null;
3209
+ /**
3210
+ * Event type.
3211
+ * @maxLength 150
3212
+ */
3213
+ eventType?: string;
3214
+ /** The identification type and identity data. */
3215
+ identity?: IdentificationData;
3216
+ /** Stringify payload. */
3217
+ data?: string;
3218
+ /** Details related to the account */
3219
+ accountInfo?: AccountInfo;
3220
+ }
3221
+ interface IdentificationData extends IdentificationDataIdOneOf {
3222
+ /**
3223
+ * ID of a site visitor that has not logged in to the site.
3224
+ * @format GUID
3225
+ */
3226
+ anonymousVisitorId?: string;
3227
+ /**
3228
+ * ID of a site visitor that has logged in to the site.
3229
+ * @format GUID
3230
+ */
3231
+ memberId?: string;
3232
+ /**
3233
+ * ID of a Wix user (site owner, contributor, etc.).
3234
+ * @format GUID
3235
+ */
3236
+ wixUserId?: string;
3237
+ /**
3238
+ * ID of an app.
3239
+ * @format GUID
3240
+ */
3241
+ appId?: string;
3242
+ /** @readonly */
3243
+ identityType?: WebhookIdentityTypeWithLiterals;
3244
+ }
3245
+ /** @oneof */
3246
+ interface IdentificationDataIdOneOf {
3247
+ /**
3248
+ * ID of a site visitor that has not logged in to the site.
3249
+ * @format GUID
3250
+ */
3251
+ anonymousVisitorId?: string;
3252
+ /**
3253
+ * ID of a site visitor that has logged in to the site.
3254
+ * @format GUID
3255
+ */
3256
+ memberId?: string;
3257
+ /**
3258
+ * ID of a Wix user (site owner, contributor, etc.).
3259
+ * @format GUID
3260
+ */
3261
+ wixUserId?: string;
3262
+ /**
3263
+ * ID of an app.
3264
+ * @format GUID
3265
+ */
3266
+ appId?: string;
3267
+ }
3268
+ declare enum WebhookIdentityType {
3269
+ UNKNOWN = "UNKNOWN",
3270
+ ANONYMOUS_VISITOR = "ANONYMOUS_VISITOR",
3271
+ MEMBER = "MEMBER",
3272
+ WIX_USER = "WIX_USER",
3273
+ APP = "APP"
3274
+ }
3275
+ /** @enumType */
3276
+ type WebhookIdentityTypeWithLiterals = WebhookIdentityType | 'UNKNOWN' | 'ANONYMOUS_VISITOR' | 'MEMBER' | 'WIX_USER' | 'APP';
3277
+ interface AccountInfo {
3278
+ /**
3279
+ * ID of the Wix account associated with the event.
3280
+ * @format GUID
3281
+ */
3282
+ accountId?: string | null;
3283
+ /**
3284
+ * ID of the parent Wix account. Only included when accountId belongs to a child account.
3285
+ * @format GUID
3286
+ */
3287
+ parentAccountId?: string | null;
3288
+ /**
3289
+ * ID of the Wix site associated with the event. Only included when the event is tied to a specific site.
3290
+ * @format GUID
3291
+ */
3292
+ siteId?: string | null;
3293
+ }
3294
+ interface InitialDraftPostsCopied {
3295
+ /** Number of draft posts copied. */
3296
+ count?: number;
3297
+ }
3047
3298
  interface CreateDraftPostRequest {
3048
3299
  /** Draft post to create. */
3049
3300
  draftPost: DraftPost;
@@ -3624,195 +3875,116 @@ interface DraftPostCount {
3624
3875
  /** Number of posts. */
3625
3876
  postCount?: number;
3626
3877
  }
3627
- interface DomainEvent extends DomainEventBodyOneOf {
3628
- createdEvent?: EntityCreatedEvent;
3629
- updatedEvent?: EntityUpdatedEvent;
3630
- deletedEvent?: EntityDeletedEvent;
3631
- actionEvent?: ActionEvent;
3632
- /** Event ID. With this ID you can easily spot duplicated events and ignore them. */
3633
- _id?: string;
3878
+ interface BulkRevertToUnpublishedRequest {
3634
3879
  /**
3635
- * Fully Qualified Domain Name of an entity. This is a unique identifier assigned to the API main business entities.
3636
- * For example, `wix.stores.catalog.product`, `wix.bookings.session`, `wix.payments.transaction`.
3880
+ * Source post IDs.
3881
+ * @minSize 1
3882
+ * @maxSize 100
3883
+ * @format GUID
3637
3884
  */
3638
- entityFqdn?: string;
3885
+ postIds?: string[];
3886
+ /** Should full draft post be returned. */
3887
+ returnFullEntity?: boolean;
3888
+ }
3889
+ interface BulkRevertToUnpublishedResponse {
3890
+ /** Bulk action results. */
3891
+ results?: BulkDraftPostResult[];
3892
+ /** Bulk action metadata. */
3893
+ bulkActionMetadata?: BulkActionMetadata;
3894
+ }
3895
+ interface BulkRejectDraftPostRequest {
3639
3896
  /**
3640
- * Event action name, placed at the top level to make it easier for users to dispatch messages.
3641
- * For example: `created`/`updated`/`deleted`/`started`/`completed`/`email_opened`.
3897
+ * Source post IDs.
3898
+ * @minSize 1
3899
+ * @maxSize 100
3900
+ * @format GUID
3642
3901
  */
3643
- slug?: string;
3644
- /** ID of the entity associated with the event. */
3645
- entityId?: string;
3646
- /** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example, `2020-04-26T13:57:50.699Z`. */
3647
- eventTime?: Date | null;
3648
- /**
3649
- * Whether the event was triggered as a result of a privacy regulation application
3650
- * (for example, GDPR).
3651
- */
3652
- triggeredByAnonymizeRequest?: boolean | null;
3653
- /** If present, indicates the action that triggered the event. */
3654
- originatedFrom?: string | null;
3655
- /**
3656
- * 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.
3657
- * 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.
3658
- */
3659
- entityEventSequence?: string | null;
3660
- }
3661
- /** @oneof */
3662
- interface DomainEventBodyOneOf {
3663
- createdEvent?: EntityCreatedEvent;
3664
- updatedEvent?: EntityUpdatedEvent;
3665
- deletedEvent?: EntityDeletedEvent;
3666
- actionEvent?: ActionEvent;
3667
- }
3668
- interface EntityCreatedEvent {
3669
- entity?: string;
3670
- }
3671
- interface RestoreInfo {
3672
- deletedDate?: Date | null;
3673
- }
3674
- interface EntityUpdatedEvent {
3675
- /**
3676
- * Since platformized APIs only expose PATCH and not PUT we can't assume that the fields sent from the client are the actual diff.
3677
- * This means that to generate a list of changed fields (as opposed to sent fields) one needs to traverse both objects.
3678
- * We don't want to impose this on all developers and so we leave this traversal to the notification recipients which need it.
3679
- */
3680
- currentEntity?: string;
3681
- }
3682
- interface EntityDeletedEvent {
3683
- /** Entity that was deleted. */
3684
- deletedEntity?: string | null;
3902
+ postIds?: string[];
3903
+ /** Should full draft post be returned. */
3904
+ returnFullEntity?: boolean;
3685
3905
  }
3686
- interface ActionEvent {
3687
- body?: string;
3906
+ interface BulkRejectDraftPostResponse {
3907
+ /** Bulk action results. */
3908
+ results?: BulkDraftPostResult[];
3909
+ /** Bulk action metadata. */
3910
+ bulkActionMetadata?: BulkActionMetadata;
3688
3911
  }
3689
- interface MessageEnvelope {
3912
+ interface RevertToUnpublishedRequest {
3690
3913
  /**
3691
- * App instance ID.
3914
+ * Source post ID.
3692
3915
  * @format GUID
3693
3916
  */
3694
- instanceId?: string | null;
3917
+ postId?: string;
3695
3918
  /**
3696
- * Event type.
3697
- * @maxLength 150
3919
+ * List of draft post fields to be included if entities are present in the response.
3920
+ * Base fieldset, which is default, will return all core draft post properties.
3921
+ * Example: When URL fieldset is selected, returned draft post will have a set of base properties and draft post preview url.
3922
+ * @maxSize 10
3698
3923
  */
3699
- eventType?: string;
3700
- /** The identification type and identity data. */
3701
- identity?: IdentificationData;
3702
- /** Stringify payload. */
3703
- data?: string;
3704
- /** Details related to the account */
3705
- accountInfo?: AccountInfo;
3924
+ fieldsets?: FieldWithLiterals[];
3706
3925
  }
3707
- interface IdentificationData extends IdentificationDataIdOneOf {
3708
- /**
3709
- * ID of a site visitor that has not logged in to the site.
3710
- * @format GUID
3711
- */
3712
- anonymousVisitorId?: string;
3713
- /**
3714
- * ID of a site visitor that has logged in to the site.
3715
- * @format GUID
3716
- */
3717
- memberId?: string;
3718
- /**
3719
- * ID of a Wix user (site owner, contributor, etc.).
3720
- * @format GUID
3721
- */
3722
- wixUserId?: string;
3723
- /**
3724
- * ID of an app.
3725
- * @format GUID
3726
- */
3727
- appId?: string;
3728
- /** @readonly */
3729
- identityType?: WebhookIdentityTypeWithLiterals;
3926
+ interface RevertToUnpublishedResponse {
3927
+ /** Updated post draft. */
3928
+ draftPost?: DraftPost;
3730
3929
  }
3731
- /** @oneof */
3732
- interface IdentificationDataIdOneOf {
3733
- /**
3734
- * ID of a site visitor that has not logged in to the site.
3735
- * @format GUID
3736
- */
3737
- anonymousVisitorId?: string;
3738
- /**
3739
- * ID of a site visitor that has logged in to the site.
3740
- * @format GUID
3741
- */
3742
- memberId?: string;
3930
+ interface RejectDraftPostRequest {
3743
3931
  /**
3744
- * ID of a Wix user (site owner, contributor, etc.).
3932
+ * Source post ID.
3745
3933
  * @format GUID
3746
3934
  */
3747
- wixUserId?: string;
3935
+ postId?: string;
3748
3936
  /**
3749
- * ID of an app.
3750
- * @format GUID
3937
+ * List of draft post fields to be included if entities are present in the response.
3938
+ * Base fieldset, which is default, will return all core draft post properties.
3939
+ * Example: When URL fieldset is selected, returned draft post will have a set of base properties and draft post preview url.
3940
+ * @maxSize 10
3751
3941
  */
3752
- appId?: string;
3942
+ fieldsets?: FieldWithLiterals[];
3753
3943
  }
3754
- declare enum WebhookIdentityType {
3755
- UNKNOWN = "UNKNOWN",
3756
- ANONYMOUS_VISITOR = "ANONYMOUS_VISITOR",
3757
- MEMBER = "MEMBER",
3758
- WIX_USER = "WIX_USER",
3759
- APP = "APP"
3944
+ interface RejectDraftPostResponse {
3945
+ /** Draft post. */
3946
+ draftPost?: DraftPost;
3760
3947
  }
3761
- /** @enumType */
3762
- type WebhookIdentityTypeWithLiterals = WebhookIdentityType | 'UNKNOWN' | 'ANONYMOUS_VISITOR' | 'MEMBER' | 'WIX_USER' | 'APP';
3763
- interface AccountInfo {
3948
+ interface ApproveDraftPostRequest {
3764
3949
  /**
3765
- * ID of the Wix account associated with the event.
3950
+ * Source post ID.
3766
3951
  * @format GUID
3767
3952
  */
3768
- accountId?: string | null;
3953
+ postId?: string;
3769
3954
  /**
3770
- * ID of the parent Wix account. Only included when accountId belongs to a child account.
3771
- * @format GUID
3955
+ * Scheduled publish date if should be not immediately published.
3956
+ * @maxLength 24
3772
3957
  */
3773
- parentAccountId?: string | null;
3958
+ scheduledPublishDate?: string | null;
3774
3959
  /**
3775
- * ID of the Wix site associated with the event. Only included when the event is tied to a specific site.
3776
- * @format GUID
3960
+ * List of draft post fields to be included if entities are present in the response.
3961
+ * Base fieldset, which is default, will return all core draft post properties.
3962
+ * Example: When URL fieldset is selected, returned draft post will have a set of base properties and draft post preview url.
3963
+ * @maxSize 10
3777
3964
  */
3778
- siteId?: string | null;
3965
+ fieldsets?: FieldWithLiterals[];
3779
3966
  }
3780
- interface GetDraftPostTotalsRequest {
3967
+ interface ApproveDraftPostResponse {
3968
+ /** Updated post draft. */
3969
+ draftPost?: DraftPost;
3970
+ }
3971
+ interface MarkPostAsInModerationRequest {
3781
3972
  /**
3782
- * Group results by fields (defaults to grouping by status).
3783
- * If, for example, grouping by language is passed, language values in response will be filled.
3784
- * If, for example, grouping by language is not passed, null values will be filled in language field in response.
3785
- * @maxSize 10
3973
+ * Source post ID.
3974
+ * @maxLength 38
3786
3975
  */
3787
- groupBy?: TotalDraftPostsGroupingFieldWithLiterals[];
3976
+ postId?: string;
3788
3977
  /**
3789
- * Optional language filter by provided language code. Useful in multilingual context.
3790
- * @format LANGUAGE_TAG
3978
+ * List of draft post fields to be included if entities are present in the response.
3979
+ * Base fieldset, which is default, will return all core draft post properties.
3980
+ * Example: When URL fieldset is selected, returned draft post will have a set of base properties and draft post preview url.
3981
+ * @maxSize 10
3791
3982
  */
3792
- language?: string | null;
3793
- }
3794
- declare enum TotalDraftPostsGroupingField {
3795
- /** Groups results by status. */
3796
- STATUS = "STATUS",
3797
- /** Groups results by language. */
3798
- LANGUAGE = "LANGUAGE"
3799
- }
3800
- /** @enumType */
3801
- type TotalDraftPostsGroupingFieldWithLiterals = TotalDraftPostsGroupingField | 'STATUS' | 'LANGUAGE';
3802
- interface GetDraftPostTotalsResponse {
3803
- /** Draft post totals. */
3804
- totalDraftPosts?: TotalDraftPosts[];
3983
+ fieldsets?: FieldWithLiterals[];
3805
3984
  }
3806
- interface TotalDraftPosts {
3807
- /** Draft post totals in that group. */
3808
- total?: number;
3809
- /** Draft post status (only has value when grouping by status, otherwise null). */
3810
- status?: StatusWithLiterals;
3811
- /**
3812
- * Draft post language code (only has value when grouping by language, otherwise null).
3813
- * @format LANGUAGE_TAG
3814
- */
3815
- language?: string | null;
3985
+ interface MarkPostAsInModerationResponse {
3986
+ /** Updated post draft. */
3987
+ draftPost?: DraftPost;
3816
3988
  }
3817
3989
  interface TranslateDraftRequest {
3818
3990
  /**
@@ -3887,117 +4059,6 @@ interface UpdateDraftPostLanguageResponse {
3887
4059
  /** Draft post */
3888
4060
  draftPost?: DraftPost;
3889
4061
  }
3890
- interface BulkRevertToUnpublishedRequest {
3891
- /**
3892
- * Source post IDs.
3893
- * @minSize 1
3894
- * @maxSize 100
3895
- * @format GUID
3896
- */
3897
- postIds?: string[];
3898
- /** Should full draft post be returned. */
3899
- returnFullEntity?: boolean;
3900
- }
3901
- interface BulkRevertToUnpublishedResponse {
3902
- /** Bulk action results. */
3903
- results?: BulkDraftPostResult[];
3904
- /** Bulk action metadata. */
3905
- bulkActionMetadata?: BulkActionMetadata;
3906
- }
3907
- interface BulkRejectDraftPostRequest {
3908
- /**
3909
- * Source post IDs.
3910
- * @minSize 1
3911
- * @maxSize 100
3912
- * @format GUID
3913
- */
3914
- postIds?: string[];
3915
- /** Should full draft post be returned. */
3916
- returnFullEntity?: boolean;
3917
- }
3918
- interface BulkRejectDraftPostResponse {
3919
- /** Bulk action results. */
3920
- results?: BulkDraftPostResult[];
3921
- /** Bulk action metadata. */
3922
- bulkActionMetadata?: BulkActionMetadata;
3923
- }
3924
- interface RevertToUnpublishedRequest {
3925
- /**
3926
- * Source post ID.
3927
- * @format GUID
3928
- */
3929
- postId?: string;
3930
- /**
3931
- * List of draft post fields to be included if entities are present in the response.
3932
- * Base fieldset, which is default, will return all core draft post properties.
3933
- * Example: When URL fieldset is selected, returned draft post will have a set of base properties and draft post preview url.
3934
- * @maxSize 10
3935
- */
3936
- fieldsets?: FieldWithLiterals[];
3937
- }
3938
- interface RevertToUnpublishedResponse {
3939
- /** Updated post draft. */
3940
- draftPost?: DraftPost;
3941
- }
3942
- interface RejectDraftPostRequest {
3943
- /**
3944
- * Source post ID.
3945
- * @format GUID
3946
- */
3947
- postId?: string;
3948
- /**
3949
- * List of draft post fields to be included if entities are present in the response.
3950
- * Base fieldset, which is default, will return all core draft post properties.
3951
- * Example: When URL fieldset is selected, returned draft post will have a set of base properties and draft post preview url.
3952
- * @maxSize 10
3953
- */
3954
- fieldsets?: FieldWithLiterals[];
3955
- }
3956
- interface RejectDraftPostResponse {
3957
- /** Draft post. */
3958
- draftPost?: DraftPost;
3959
- }
3960
- interface ApproveDraftPostRequest {
3961
- /**
3962
- * Source post ID.
3963
- * @format GUID
3964
- */
3965
- postId?: string;
3966
- /**
3967
- * Scheduled publish date if should be not immediately published.
3968
- * @maxLength 24
3969
- */
3970
- scheduledPublishDate?: string | null;
3971
- /**
3972
- * List of draft post fields to be included if entities are present in the response.
3973
- * Base fieldset, which is default, will return all core draft post properties.
3974
- * Example: When URL fieldset is selected, returned draft post will have a set of base properties and draft post preview url.
3975
- * @maxSize 10
3976
- */
3977
- fieldsets?: FieldWithLiterals[];
3978
- }
3979
- interface ApproveDraftPostResponse {
3980
- /** Updated post draft. */
3981
- draftPost?: DraftPost;
3982
- }
3983
- interface MarkPostAsInModerationRequest {
3984
- /**
3985
- * Source post ID.
3986
- * @maxLength 38
3987
- */
3988
- postId?: string;
3989
- /**
3990
- * List of draft post fields to be included if entities are present in the response.
3991
- * Base fieldset, which is default, will return all core draft post properties.
3992
- * Example: When URL fieldset is selected, returned draft post will have a set of base properties and draft post preview url.
3993
- * @maxSize 10
3994
- */
3995
- fieldsets?: FieldWithLiterals[];
3996
- }
3997
- interface MarkPostAsInModerationResponse {
3998
- /** Updated post draft. */
3999
- draftPost?: DraftPost;
4000
- }
4001
4062
  interface BaseEventMetadata {
4002
4063
  /**
4003
4064
  * App instance ID.
@@ -4798,4 +4859,4 @@ declare const utils: {
4798
4859
  */
4799
4860
  declare function publishDraftPost(draftPostId: string): Promise<NonNullablePaths<PublishDraftPostResponse, `postId`, 2>>;
4800
4861
 
4801
- export { type AccountInfo, type AccountInfoMetadata, Action, type ActionEvent, type ActionWithLiterals, type AddressLocation, Alignment, type AlignmentWithLiterals, type AnchorData, type Animation, AnimationType, type AnimationTypeWithLiterals, type AppEmbedData, type AppEmbedDataAppDataOneOf, AppType, type AppTypeWithLiterals, type ApplicationError, type ApproveDraftPostRequest, type ApproveDraftPostResponse, AspectRatio, type AspectRatioWithLiterals, type AudioData, type Backdrop, BackdropType, type BackdropTypeWithLiterals, type Background, type BackgroundGradient, type BackgroundImage, BackgroundType, type BackgroundTypeWithLiterals, type Banner, BannerOrigin, type BannerOriginWithLiterals, BannerPosition, type BannerPositionWithLiterals, type BaseEventMetadata, type BlockquoteData, type BlogPaging, type BookingData, type Border, type BorderColors, type BorderWidths, type BulkActionMetadata, type BulkCreateDraftPostsOptions, type BulkCreateDraftPostsRequest, type BulkCreateDraftPostsResponse, type BulkDeleteDraftPostsOptions, type BulkDeleteDraftPostsRequest, type BulkDeleteDraftPostsResponse, type BulkDraftPostResult, type BulkRejectDraftPostRequest, type BulkRejectDraftPostResponse, type BulkRevertToUnpublishedRequest, type BulkRevertToUnpublishedResponse, type BulkUpdateDraftPostsOptions, type BulkUpdateDraftPostsRequest, type BulkUpdateDraftPostsResponse, type BulletedListData, type ButtonData, ButtonDataType, type ButtonDataTypeWithLiterals, type ButtonStyles, type CaptionData, type CardData, type CardDataBackground, CardDataBackgroundType, type CardDataBackgroundTypeWithLiterals, type CardStyles, CardStylesType, type CardStylesTypeWithLiterals, type CellStyle, type CheckboxListData, type CodeBlockData, type CollapsibleListData, type ColorData, type Colors, ColumnSize, type ColumnSizeWithLiterals, type CommonQueryWithEntityContext, type CreateDraftPostOptions, type CreateDraftPostRequest, type CreateDraftPostResponse, Crop, type CropWithLiterals, type CursorPaging, type Cursors, type Decoration, type DecorationDataOneOf, DecorationType, type DecorationTypeWithLiterals, type DeleteDraftPostOptions, type DeleteDraftPostRequest, type DeleteDraftPostResponse, type Design, DesignTarget, type DesignTargetWithLiterals, type Dimensions, Direction, type DirectionWithLiterals, type DividerData, DividerDataAlignment, type DividerDataAlignmentWithLiterals, type DividerDataStyles, type DocumentStyle, type DomainEvent, type DomainEventBodyOneOf, type DraftCategoriesUpdated, type DraftCreatedEnvelope, type DraftDeletedEnvelope, type DraftPost, type DraftPostCount, type DraftPostOwnerChanged, type DraftPostQuery, type DraftPostQuerySpec, type DraftPostTranslation, type DraftPostsQueryBuilder, type DraftPostsQueryResult, type DraftTagsUpdated, type DraftUpdatedEnvelope, type EmbedData, type EmbedMedia, type EmbedThumbnail, type EmbedVideo, type EntityCreatedEvent, type EntityDeletedEvent, type EntityUpdatedEvent, type EntranceAnimation, type EntranceEffect, EntranceEffectType, type EntranceEffectTypeWithLiterals, type EventData, type EventMetadata, Field, type FieldWithLiterals, type FileData, type FileSource, type FileSourceDataOneOf, type FocalPoint, type FontFamilyData, type FontSizeData, FontType, type FontTypeWithLiterals, type GIF, type GIFData, GIFType, type GIFTypeWithLiterals, type GalleryData, type GalleryOptions, type GalleryOptionsLayout, type GetDeletedDraftPostRequest, type GetDeletedDraftPostResponse, type GetDraftPostCountsRequest, type GetDraftPostCountsResponse, type GetDraftPostOptions, type GetDraftPostRequest, type GetDraftPostResponse, type GetDraftPostTotalsRequest, type GetDraftPostTotalsResponse, GetDraftPostsSort, type GetDraftPostsSortWithLiterals, type Gradient, GradientType, type GradientTypeWithLiterals, type HTMLData, type HTMLDataDataOneOf, type HeadingData, type Height, type IdentificationData, type IdentificationDataIdOneOf, type Image, type ImageData, type ImageDataCrop, type ImageDataStyles, ImagePosition, ImagePositionPosition, type ImagePositionPositionWithLiterals, type ImagePositionWithLiterals, ImageScalingScaling, type ImageScalingScalingWithLiterals, type ImageStyles, Indentation, type IndentationWithLiterals, type InitialDraftPostsCopied, InitialExpandedItems, type InitialExpandedItemsWithLiterals, type IsDraftPostAutoTranslatableRequest, type IsDraftPostAutoTranslatableResponse, type Item, type ItemDataOneOf, type ItemMetadata, type ItemStyle, type Keyword, Layout, type LayoutCellData, type LayoutData, type LayoutDataBackground, type LayoutDataBackgroundImage, LayoutDataBackgroundType, type LayoutDataBackgroundTypeWithLiterals, LayoutType, type LayoutTypeWithLiterals, type LayoutWithLiterals, LineCap, type LineCapWithLiterals, LineStyle, type LineStyleWithLiterals, type Link, type LinkData, type LinkDataOneOf, type LinkPreviewData, type LinkPreviewDataStyles, type ListDeletedDraftPostsOptions, type ListDeletedDraftPostsRequest, type ListDeletedDraftPostsResponse, type ListDraftPostsOptions, type ListDraftPostsRequest, type ListDraftPostsResponse, type ListItemNodeData, ListStyle, type ListStyleWithLiterals, type ListValue, type LoopAnimation, type LoopEffect, LoopEffectType, type LoopEffectTypeWithLiterals, type MapData, type MapSettings, MapType, type MapTypeWithLiterals, type MarkPostAsInModerationRequest, type MarkPostAsInModerationResponse, type MaskedDraftPosts, type Media, type MediaMediaOneOf, type MentionData, type MessageEnvelope, type MetaData, type Metadata, type ModerationDetails, ModerationStatusStatus, type ModerationStatusStatusWithLiterals, type Node, type NodeDataOneOf, type NodeStyle, NodeType, type NodeTypeWithLiterals, NullValue, type NullValueWithLiterals, type Oembed, type Option, type OptionDesign, type OptionLayout, type OrderedListData, Orientation, type OrientationWithLiterals, Origin, type OriginWithLiterals, type PDFSettings, type Paging, type PagingMetadataV2, type ParagraphData, type Permissions, Placement, type PlacementWithLiterals, type PlatformQuery, type PlatformQueryPagingMethodOneOf, type PlaybackOptions, type PluginContainerData, PluginContainerDataAlignment, type PluginContainerDataAlignmentWithLiterals, type PluginContainerDataWidth, type PluginContainerDataWidthDataOneOf, type Poll, type PollData, type PollDataLayout, type PollDesign, type PollDesignBackground, type PollDesignBackgroundBackgroundOneOf, PollDesignBackgroundType, type PollDesignBackgroundTypeWithLiterals, type PollLayout, PollLayoutDirection, type PollLayoutDirectionWithLiterals, PollLayoutType, type PollLayoutTypeWithLiterals, type PollSettings, Position, type PositionWithLiterals, type PricingData, type PublishDraftPostRequest, type PublishDraftPostResponse, type QueryDraftPostsOptions, type QueryDraftPostsRequest, type QueryDraftPostsResponse, type RejectDraftPostRequest, type RejectDraftPostResponse, type Rel, type RemoveFromTrashBinRequest, type RemoveFromTrashBinResponse, Resizing, type ResizingWithLiterals, ResponsivenessBehaviour, type ResponsivenessBehaviourWithLiterals, type RestoreFromTrashBinRequest, type RestoreFromTrashBinResponse, type RestoreInfo, type RevertToUnpublishedRequest, type RevertToUnpublishedResponse, type RibbonStyles, type RichContent, Scaling, type ScalingWithLiterals, type SeoSchema, type Settings, type ShapeData, type ShapeDataStyles, type SketchData, type SmartBlockCellData, type SmartBlockData, SmartBlockDataType, type SmartBlockDataTypeWithLiterals, SortOrder, type SortOrderWithLiterals, type Sorting, Source, type SourceWithLiterals, type Spoiler, type SpoilerData, Status, type StatusWithLiterals, type Stop, type Styles, type StylesBorder, StylesPosition, type StylesPositionWithLiterals, type TableCellData, type TableData, type Tag, Target, type TargetWithLiterals, TextAlignment, type TextAlignmentWithLiterals, type TextData, type TextNodeStyle, type TextStyle, type Thumbnails, ThumbnailsAlignment, type ThumbnailsAlignmentWithLiterals, type TocData, type TotalDraftPosts, TotalDraftPostsGroupingField, type TotalDraftPostsGroupingFieldWithLiterals, type TranslateDraftRequest, type TranslateDraftResponse, Type, type TypeWithLiterals, type UnpublishPostRequest, type UnpublishPostResponse, type UpdateDraftPost, type UpdateDraftPostContentRequest, type UpdateDraftPostContentResponse, type UpdateDraftPostLanguageRequest, type UpdateDraftPostLanguageResponse, type UpdateDraftPostOptions, type UpdateDraftPostRequest, type UpdateDraftPostResponse, type V1Media, Variant, type VariantWithLiterals, VerticalAlignment, VerticalAlignmentAlignment, type VerticalAlignmentAlignmentWithLiterals, type VerticalAlignmentWithLiterals, type Video, type VideoData, type VideoResolution, ViewMode, type ViewModeWithLiterals, ViewRole, type ViewRoleWithLiterals, VoteRole, type VoteRoleWithLiterals, WebhookIdentityType, type WebhookIdentityTypeWithLiterals, Width, WidthType, type WidthTypeWithLiterals, type WidthWithLiterals, type WixMedia, bulkCreateDraftPosts, bulkDeleteDraftPosts, bulkUpdateDraftPosts, createDraftPost, deleteDraftPost, getDeletedDraftPost, getDraftPost, listDeletedDraftPosts, listDraftPosts, onDraftCreated, onDraftDeleted, onDraftUpdated, publishDraftPost, queryDraftPosts, removeFromTrashBin, restoreFromTrashBin, typedQueryDraftPosts, updateDraftPost, utils };
4862
+ export { type AccountInfo, type AccountInfoMetadata, Action, type ActionEvent, type ActionWithLiterals, type AddressLocation, Alignment, type AlignmentWithLiterals, type AnchorData, type Animation, AnimationType, type AnimationTypeWithLiterals, type AppEmbedData, type AppEmbedDataAppDataOneOf, AppType, type AppTypeWithLiterals, type ApplicationError, type ApproveDraftPostRequest, type ApproveDraftPostResponse, AspectRatio, type AspectRatioWithLiterals, type AudioData, type Backdrop, BackdropType, type BackdropTypeWithLiterals, type Background, type BackgroundGradient, type BackgroundImage, BackgroundType, type BackgroundTypeWithLiterals, type Banner, BannerOrigin, type BannerOriginWithLiterals, BannerPosition, type BannerPositionWithLiterals, type BaseEventMetadata, type BlockquoteData, type BlogPaging, type BookingData, type Border, type BorderColors, type BorderWidths, type BulkActionMetadata, type BulkCreateDraftPostsOptions, type BulkCreateDraftPostsRequest, type BulkCreateDraftPostsResponse, type BulkDeleteDraftPostsOptions, type BulkDeleteDraftPostsRequest, type BulkDeleteDraftPostsResponse, type BulkDraftPostResult, type BulkRejectDraftPostRequest, type BulkRejectDraftPostResponse, type BulkRevertToUnpublishedRequest, type BulkRevertToUnpublishedResponse, type BulkUpdateDraftPostsOptions, type BulkUpdateDraftPostsRequest, type BulkUpdateDraftPostsResponse, type BulletedListData, type ButtonData, ButtonDataType, type ButtonDataTypeWithLiterals, type ButtonStyles, type CaptionData, type CardData, type CardDataBackground, CardDataBackgroundType, type CardDataBackgroundTypeWithLiterals, type CardStyles, CardStylesType, type CardStylesTypeWithLiterals, type CellStyle, type CheckboxListData, type CodeBlockData, type CollapsibleListData, type ColorData, type Colors, ColumnSize, type ColumnSizeWithLiterals, type CommonQueryWithEntityContext, type CreateDraftPostOptions, type CreateDraftPostRequest, type CreateDraftPostResponse, Crop, type CropWithLiterals, type CursorPaging, type Cursors, type Decoration, type DecorationDataOneOf, DecorationType, type DecorationTypeWithLiterals, type DeleteDraftPostOptions, type DeleteDraftPostRequest, type DeleteDraftPostResponse, type Design, DesignTarget, type DesignTargetWithLiterals, type Dimensions, Direction, type DirectionWithLiterals, type DividerData, DividerDataAlignment, type DividerDataAlignmentWithLiterals, type DividerDataStyles, type DocumentStyle, type DomainEvent, type DomainEventBodyOneOf, type DraftCategoriesUpdated, type DraftCreatedEnvelope, type DraftDeletedEnvelope, type DraftPost, type DraftPostCount, type DraftPostOwnerChanged, type DraftPostQuery, type DraftPostQuerySpec, type DraftPostTranslation, type DraftPostsQueryBuilder, type DraftPostsQueryResult, type DraftTagsUpdated, type DraftUpdatedEnvelope, type EmbedData, type EmbedMedia, type EmbedThumbnail, type EmbedVideo, type EntityCreatedEvent, type EntityDeletedEvent, type EntityUpdatedEvent, type EntranceAnimation, type EntranceEffect, EntranceEffectType, type EntranceEffectTypeWithLiterals, type EventData, type EventMetadata, Field, type FieldWithLiterals, type FileData, type FileSource, type FileSourceDataOneOf, type FocalPoint, type FontFamilyData, type FontSizeData, FontType, type FontTypeWithLiterals, type GIF, type GIFData, GIFType, type GIFTypeWithLiterals, type GalleryData, type GalleryOptions, type GalleryOptionsLayout, type GetDeletedDraftPostRequest, type GetDeletedDraftPostResponse, type GetDraftPostCountsRequest, type GetDraftPostCountsResponse, type GetDraftPostOptions, type GetDraftPostRequest, type GetDraftPostResponse, type GetDraftPostTotalsRequest, type GetDraftPostTotalsResponse, GetDraftPostsSort, type GetDraftPostsSortWithLiterals, type Gradient, GradientType, type GradientTypeWithLiterals, type HTMLData, type HTMLDataDataOneOf, type HeadingData, type Height, type IdentificationData, type IdentificationDataIdOneOf, type Image, type ImageData, type ImageDataCrop, type ImageDataStyles, ImagePosition, ImagePositionPosition, type ImagePositionPositionWithLiterals, type ImagePositionWithLiterals, ImageScalingScaling, type ImageScalingScalingWithLiterals, type ImageStyles, Indentation, type IndentationWithLiterals, type InitialDraftPostsCopied, InitialExpandedItems, type InitialExpandedItemsWithLiterals, type IsDraftPostAutoTranslatableRequest, type IsDraftPostAutoTranslatableResponse, type Item, type ItemDataOneOf, type ItemMetadata, type ItemStyle, type Keyword, Layout, type LayoutCellData, type LayoutData, type LayoutDataBackground, type LayoutDataBackgroundImage, LayoutDataBackgroundType, type LayoutDataBackgroundTypeWithLiterals, LayoutType, type LayoutTypeWithLiterals, type LayoutWithLiterals, LineCap, type LineCapWithLiterals, LineStyle, type LineStyleWithLiterals, type Link, type LinkData, type LinkDataOneOf, type LinkPreviewData, type LinkPreviewDataStyles, type ListDeletedDraftPostsOptions, type ListDeletedDraftPostsRequest, type ListDeletedDraftPostsResponse, type ListDraftPostsOptions, type ListDraftPostsRequest, type ListDraftPostsResponse, type ListItemNodeData, ListStyle, type ListStyleWithLiterals, type ListValue, type LoopAnimation, type LoopEffect, LoopEffectType, type LoopEffectTypeWithLiterals, type MapData, type MapSettings, MapType, type MapTypeWithLiterals, type MarkPostAsInModerationRequest, type MarkPostAsInModerationResponse, type MaskedDraftPosts, type Media, type MediaMediaOneOf, type MentionData, type MessageEnvelope, type MetaData, type Metadata, type ModerationDetails, ModerationStatusStatus, type ModerationStatusStatusWithLiterals, type Node, type NodeDataOneOf, type NodeStyle, NodeType, type NodeTypeWithLiterals, NullValue, type NullValueWithLiterals, type Oembed, type Option, type OptionDesign, type OptionLayout, type OrderedListData, Orientation, type OrientationWithLiterals, Origin, type OriginWithLiterals, type PDFSettings, type Paging, type PagingMetadataV2, type ParagraphData, type Permissions, Placement, type PlacementWithLiterals, type PlatformQuery, type PlatformQueryPagingMethodOneOf, type PlaybackOptions, type PluginContainerData, PluginContainerDataAlignment, type PluginContainerDataAlignmentWithLiterals, type PluginContainerDataWidth, type PluginContainerDataWidthDataOneOf, type PointerEffect, PointerEffectType, type PointerEffectTypeWithLiterals, type Poll, type PollData, type PollDataLayout, type PollDesign, type PollDesignBackground, type PollDesignBackgroundBackgroundOneOf, PollDesignBackgroundType, type PollDesignBackgroundTypeWithLiterals, type PollLayout, PollLayoutDirection, type PollLayoutDirectionWithLiterals, PollLayoutType, type PollLayoutTypeWithLiterals, type PollSettings, Position, type PositionWithLiterals, type PricingData, type PublishDraftPostRequest, type PublishDraftPostResponse, type QueryDraftPostsOptions, type QueryDraftPostsRequest, type QueryDraftPostsResponse, type RejectDraftPostRequest, type RejectDraftPostResponse, type Rel, type RemoveFromTrashBinRequest, type RemoveFromTrashBinResponse, Resizing, type ResizingWithLiterals, ResponsivenessBehaviour, type ResponsivenessBehaviourWithLiterals, type RestoreFromTrashBinRequest, type RestoreFromTrashBinResponse, type RestoreInfo, type RevertToUnpublishedRequest, type RevertToUnpublishedResponse, type RibbonStyles, type RichContent, Scaling, type ScalingWithLiterals, type SeoSchema, type Settings, type ShapeData, type ShapeDataStyles, type SketchData, type SmartBlockCellData, type SmartBlockData, SmartBlockDataType, type SmartBlockDataTypeWithLiterals, SortOrder, type SortOrderWithLiterals, type Sorting, Source, type SourceWithLiterals, type Spoiler, type SpoilerData, Status, type StatusWithLiterals, type Stop, type Styles, type StylesBorder, StylesPosition, type StylesPositionWithLiterals, type TableCellData, type TableData, type Tag, Target, type TargetWithLiterals, TextAlignment, type TextAlignmentWithLiterals, type TextData, type TextNodeStyle, type TextStyle, type Thumbnails, ThumbnailsAlignment, type ThumbnailsAlignmentWithLiterals, type TocData, type TotalDraftPosts, TotalDraftPostsGroupingField, type TotalDraftPostsGroupingFieldWithLiterals, type TranslateDraftRequest, type TranslateDraftResponse, Type, type TypeWithLiterals, type UnpublishPostRequest, type UnpublishPostResponse, type UpdateDraftPost, type UpdateDraftPostContentRequest, type UpdateDraftPostContentResponse, type UpdateDraftPostLanguageRequest, type UpdateDraftPostLanguageResponse, type UpdateDraftPostOptions, type UpdateDraftPostRequest, type UpdateDraftPostResponse, type V1Media, Variant, type VariantWithLiterals, VerticalAlignment, VerticalAlignmentAlignment, type VerticalAlignmentAlignmentWithLiterals, type VerticalAlignmentWithLiterals, type Video, type VideoData, type VideoResolution, ViewMode, type ViewModeWithLiterals, ViewRole, type ViewRoleWithLiterals, VoteRole, type VoteRoleWithLiterals, WebhookIdentityType, type WebhookIdentityTypeWithLiterals, Width, WidthType, type WidthTypeWithLiterals, type WidthWithLiterals, type WixMedia, bulkCreateDraftPosts, bulkDeleteDraftPosts, bulkUpdateDraftPosts, createDraftPost, deleteDraftPost, getDeletedDraftPost, getDraftPost, listDeletedDraftPosts, listDraftPosts, onDraftCreated, onDraftDeleted, onDraftUpdated, publishDraftPost, queryDraftPosts, removeFromTrashBin, restoreFromTrashBin, typedQueryDraftPosts, updateDraftPost, utils };