@wix/auto_sdk_comments_comments 1.0.25 → 1.0.27

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.
@@ -1363,6 +1363,8 @@ interface AppEmbedData extends AppEmbedDataAppDataOneOf {
1363
1363
  cardStyles?: CardStyles;
1364
1364
  /** Styling for the app embed's container. */
1365
1365
  containerData?: PluginContainerData;
1366
+ /** Pricing data for embedded Wix App content. */
1367
+ pricingData?: PricingData;
1366
1368
  }
1367
1369
  /** @oneof */
1368
1370
  interface AppEmbedDataAppDataOneOf {
@@ -1564,6 +1566,33 @@ interface CardStyles {
1564
1566
  */
1565
1567
  textColor?: string | null;
1566
1568
  }
1569
+ interface PricingData {
1570
+ /**
1571
+ * Minimum numeric price value as string (e.g., "10.99").
1572
+ * @decimalValue options { maxScale:2 }
1573
+ */
1574
+ valueFrom?: string | null;
1575
+ /**
1576
+ * Maximum numeric price value as string (e.g., "19.99").
1577
+ * @decimalValue options { maxScale:2 }
1578
+ */
1579
+ valueTo?: string | null;
1580
+ /**
1581
+ * Numeric price value as string after discount application (e.g., "15.99").
1582
+ * @decimalValue options { maxScale:2 }
1583
+ */
1584
+ discountedValue?: string | null;
1585
+ /**
1586
+ * Currency of the value in ISO 4217 format (e.g., "USD", "EUR").
1587
+ * @format CURRENCY
1588
+ */
1589
+ currency?: string | null;
1590
+ /**
1591
+ * Pricing plan ID.
1592
+ * @format GUID
1593
+ */
1594
+ pricingPlanId?: string | null;
1595
+ }
1567
1596
  interface VideoData {
1568
1597
  /** Styling for the video's container. */
1569
1598
  containerData?: PluginContainerData;
@@ -2866,16 +2895,19 @@ declare enum WebhookIdentityType {
2866
2895
  }
2867
2896
  /** @enumType */
2868
2897
  type WebhookIdentityTypeWithLiterals = WebhookIdentityType | 'UNKNOWN' | 'ANONYMOUS_VISITOR' | 'MEMBER' | 'WIX_USER' | 'APP';
2898
+ /** @docsIgnore */
2869
2899
  type CreateCommentApplicationErrors = {
2870
2900
  code?: 'INVALID_CAPTCHA';
2871
2901
  description?: string;
2872
2902
  data?: Record<string, any>;
2873
2903
  };
2904
+ /** @docsIgnore */
2874
2905
  type UpdateCommentApplicationErrors = {
2875
2906
  code?: 'INVALID_CAPTCHA';
2876
2907
  description?: string;
2877
2908
  data?: Record<string, any>;
2878
2909
  };
2910
+ /** @docsIgnore */
2879
2911
  type CountCommentsApplicationErrors = {
2880
2912
  code?: 'TOO_MANY_TO_COUNT';
2881
2913
  description?: string;
@@ -3112,7 +3144,6 @@ interface CommentUpdatedEnvelope {
3112
3144
  * @slug updated
3113
3145
  */
3114
3146
  declare function onCommentUpdated(handler: (event: CommentUpdatedEnvelope) => void | Promise<void>): void;
3115
- type CommentNonNullablePaths = `content.mentions` | `content.attachments` | `parentComment.status` | `replyCount` | `voteSummary.netVoteCount` | `voteSummary.upvoteCount` | `voteSummary.downvoteCount` | `status` | `reactionSummary.total` | `marked`;
3116
3147
  /**
3117
3148
  * Creates a new comment and publishes it.
3118
3149
  *
@@ -3135,7 +3166,7 @@ type CommentNonNullablePaths = `content.mentions` | `content.attachments` | `par
3135
3166
  * @returns Created comment.
3136
3167
  * @fqn wix.comments.ng.v1.CommentsNg.CreateComment
3137
3168
  */
3138
- declare function createComment(comment: NonNullablePaths<Comment, `appId` | `content` | `contextId` | `resourceId`>): Promise<NonNullablePaths<Comment, CommentNonNullablePaths> & {
3169
+ declare function createComment(comment: NonNullablePaths<Comment, `appId` | `content` | `contextId` | `resourceId`, 2>): Promise<NonNullablePaths<Comment, `content.mentions` | `content.attachments` | `parentComment.status` | `replyCount` | `voteSummary.netVoteCount` | `voteSummary.upvoteCount` | `voteSummary.downvoteCount` | `status` | `reactionSummary.total` | `marked`, 3> & {
3139
3170
  __applicationErrorsType?: CreateCommentApplicationErrors;
3140
3171
  }>;
3141
3172
  /**
@@ -3148,7 +3179,7 @@ declare function createComment(comment: NonNullablePaths<Comment, `appId` | `con
3148
3179
  * @returns Retrieved comment.
3149
3180
  * @fqn wix.comments.ng.v1.CommentsNg.GetComment
3150
3181
  */
3151
- declare function getComment(commentId: string): Promise<NonNullablePaths<Comment, CommentNonNullablePaths>>;
3182
+ declare function getComment(commentId: string): Promise<NonNullablePaths<Comment, `content.mentions` | `content.attachments` | `parentComment.status` | `replyCount` | `voteSummary.netVoteCount` | `voteSummary.upvoteCount` | `voteSummary.downvoteCount` | `status` | `reactionSummary.total` | `marked`, 3>>;
3152
3183
  /**
3153
3184
  * Updates a comment.
3154
3185
  *
@@ -3165,7 +3196,7 @@ declare function getComment(commentId: string): Promise<NonNullablePaths<Comment
3165
3196
  * @returns Updated comment.
3166
3197
  * @fqn wix.comments.ng.v1.CommentsNg.UpdateComment
3167
3198
  */
3168
- declare function updateComment(_id: string, comment: NonNullablePaths<UpdateComment, `revision`>): Promise<NonNullablePaths<Comment, CommentNonNullablePaths> & {
3199
+ declare function updateComment(_id: string, comment: NonNullablePaths<UpdateComment, `revision`, 2>): Promise<NonNullablePaths<Comment, `content.mentions` | `content.attachments` | `parentComment.status` | `replyCount` | `voteSummary.netVoteCount` | `voteSummary.upvoteCount` | `voteSummary.downvoteCount` | `status` | `reactionSummary.total` | `marked`, 3> & {
3169
3200
  __applicationErrorsType?: UpdateCommentApplicationErrors;
3170
3201
  }>;
3171
3202
  interface UpdateComment {
@@ -3304,9 +3335,7 @@ declare function deleteComment(commentId: string): Promise<void>;
3304
3335
  * @applicableIdentity APP
3305
3336
  * @fqn wix.comments.ng.v1.CommentsNg.ModerateDraftContent
3306
3337
  */
3307
- declare function moderateDraftContent(commentId: string, revision: string, options?: ModerateDraftContentOptions): Promise<NonNullablePaths<ModerateDraftContentResponse, {
3308
- [P in CommentNonNullablePaths]: `comment.${P}`;
3309
- }[CommentNonNullablePaths]>>;
3338
+ declare function moderateDraftContent(commentId: string, revision: string, options?: ModerateDraftContentOptions): Promise<NonNullablePaths<ModerateDraftContentResponse, `comment.content.mentions` | `comment.content.attachments` | `comment.parentComment.status` | `comment.replyCount` | `comment.voteSummary.netVoteCount` | `comment.voteSummary.upvoteCount` | `comment.voteSummary.downvoteCount` | `comment.status` | `comment.reactionSummary.total` | `comment.marked`, 4>>;
3310
3339
  interface ModerateDraftContentOptions {
3311
3340
  /** Draft content action. */
3312
3341
  draftContentAction?: ActionWithLiterals;
@@ -3403,9 +3432,7 @@ interface CommentsQueryBuilder {
3403
3432
  * @applicableIdentity APP
3404
3433
  * @fqn wix.comments.ng.v1.CommentsNg.MarkComment
3405
3434
  */
3406
- declare function markComment(commentId: string): Promise<NonNullablePaths<MarkCommentResponse, {
3407
- [P in CommentNonNullablePaths]: `comment.${P}`;
3408
- }[CommentNonNullablePaths]>>;
3435
+ declare function markComment(commentId: string): Promise<NonNullablePaths<MarkCommentResponse, `comment.content.mentions` | `comment.content.attachments` | `comment.parentComment.status` | `comment.replyCount` | `comment.voteSummary.netVoteCount` | `comment.voteSummary.upvoteCount` | `comment.voteSummary.downvoteCount` | `comment.status` | `comment.reactionSummary.total` | `comment.marked`, 4>>;
3409
3436
  /**
3410
3437
  * Sets `marked` to `FALSE` to unmark a comment.
3411
3438
  * @param commentId - ID of the comment to unmark.
@@ -3415,9 +3442,7 @@ declare function markComment(commentId: string): Promise<NonNullablePaths<MarkCo
3415
3442
  * @applicableIdentity APP
3416
3443
  * @fqn wix.comments.ng.v1.CommentsNg.UnmarkComment
3417
3444
  */
3418
- declare function unmarkComment(commentId: string): Promise<NonNullablePaths<UnmarkCommentResponse, {
3419
- [P in CommentNonNullablePaths]: `comment.${P}`;
3420
- }[CommentNonNullablePaths]>>;
3445
+ declare function unmarkComment(commentId: string): Promise<NonNullablePaths<UnmarkCommentResponse, `comment.content.mentions` | `comment.content.attachments` | `comment.parentComment.status` | `comment.replyCount` | `comment.voteSummary.netVoteCount` | `comment.voteSummary.upvoteCount` | `comment.voteSummary.downvoteCount` | `comment.status` | `comment.reactionSummary.total` | `comment.marked`, 4>>;
3421
3446
  /**
3422
3447
  * Hides a comment in a widget. The comment status becomes `HIDDEN`.
3423
3448
  * @param commentId - ID of the comment to hide.
@@ -3427,9 +3452,7 @@ declare function unmarkComment(commentId: string): Promise<NonNullablePaths<Unma
3427
3452
  * @applicableIdentity APP
3428
3453
  * @fqn wix.comments.ng.v1.CommentsNg.HideComment
3429
3454
  */
3430
- declare function hideComment(commentId: string): Promise<NonNullablePaths<HideCommentResponse, {
3431
- [P in CommentNonNullablePaths]: `comment.${P}`;
3432
- }[CommentNonNullablePaths]>>;
3455
+ declare function hideComment(commentId: string): Promise<NonNullablePaths<HideCommentResponse, `comment.content.mentions` | `comment.content.attachments` | `comment.parentComment.status` | `comment.replyCount` | `comment.voteSummary.netVoteCount` | `comment.voteSummary.upvoteCount` | `comment.voteSummary.downvoteCount` | `comment.status` | `comment.reactionSummary.total` | `comment.marked`, 4>>;
3433
3456
  /**
3434
3457
  * Publishes a comment with the `HIDDEN` status. The comment status becomes `PUBLISHED`.
3435
3458
  *
@@ -3441,9 +3464,7 @@ declare function hideComment(commentId: string): Promise<NonNullablePaths<HideCo
3441
3464
  * @applicableIdentity APP
3442
3465
  * @fqn wix.comments.ng.v1.CommentsNg.PublishComment
3443
3466
  */
3444
- declare function publishComment(commentId: string): Promise<NonNullablePaths<PublishCommentResponse, {
3445
- [P in CommentNonNullablePaths]: `comment.${P}`;
3446
- }[CommentNonNullablePaths]>>;
3467
+ declare function publishComment(commentId: string): Promise<NonNullablePaths<PublishCommentResponse, `comment.content.mentions` | `comment.content.attachments` | `comment.parentComment.status` | `comment.replyCount` | `comment.voteSummary.netVoteCount` | `comment.voteSummary.upvoteCount` | `comment.voteSummary.downvoteCount` | `comment.status` | `comment.reactionSummary.total` | `comment.marked`, 4>>;
3447
3468
  /**
3448
3469
  * Counts comments, given the specified filtering. Comments with the `HIDDEN` status are not included in the response.
3449
3470
  * @param appId - App ID to count the comments of.
@@ -3453,7 +3474,7 @@ declare function publishComment(commentId: string): Promise<NonNullablePaths<Pub
3453
3474
  * @applicableIdentity APP
3454
3475
  * @fqn wix.comments.ng.v1.CommentsNg.CountComments
3455
3476
  */
3456
- declare function countComments(appId: string, options?: CountCommentsOptions): Promise<NonNullablePaths<CountCommentsResponse, `count`> & {
3477
+ declare function countComments(appId: string, options?: CountCommentsOptions): Promise<NonNullablePaths<CountCommentsResponse, `count`, 2> & {
3457
3478
  __applicationErrorsType?: CountCommentsApplicationErrors;
3458
3479
  }>;
3459
3480
  interface CountCommentsOptions {
@@ -3471,9 +3492,7 @@ interface CountCommentsOptions {
3471
3492
  * @applicableIdentity APP
3472
3493
  * @fqn wix.comments.ng.v1.CommentsNg.ListCommentsByResource
3473
3494
  */
3474
- declare function listCommentsByResource(appId: string, options?: NonNullablePaths<ListCommentsByResourceOptions, `contextId` | `resourceId`>): Promise<NonNullablePaths<ListCommentsByResourceResponse, {
3475
- [P in CommentNonNullablePaths]: `comments.${number}.${P}`;
3476
- }[CommentNonNullablePaths]>>;
3495
+ declare function listCommentsByResource(appId: string, options?: NonNullablePaths<ListCommentsByResourceOptions, `contextId` | `resourceId`, 2>): Promise<NonNullablePaths<ListCommentsByResourceResponse, `comments` | `comments.${number}.parentComment.status` | `comments.${number}.replyCount` | `comments.${number}.voteSummary.netVoteCount` | `comments.${number}.voteSummary.upvoteCount` | `comments.${number}.voteSummary.downvoteCount` | `comments.${number}.status` | `comments.${number}.reactionSummary.total` | `comments.${number}.marked`, 5>>;
3477
3496
  interface ListCommentsByResourceOptions {
3478
3497
  /**
3479
3498
  * ID of the specific context the comment is in response to.
@@ -3514,9 +3533,7 @@ interface ListCommentsByResourceOptions {
3514
3533
  * @applicableIdentity APP
3515
3534
  * @fqn wix.comments.ng.v1.CommentsNg.GetCommentThread
3516
3535
  */
3517
- declare function getCommentThread(commentId: string, options?: GetCommentThreadOptions): Promise<NonNullablePaths<GetCommentThreadResponse, {
3518
- [P in CommentNonNullablePaths]: `comments.${number}.${P}`;
3519
- }[CommentNonNullablePaths]>>;
3536
+ declare function getCommentThread(commentId: string, options?: GetCommentThreadOptions): Promise<NonNullablePaths<GetCommentThreadResponse, `comments` | `comments.${number}.parentComment.status` | `comments.${number}.replyCount` | `comments.${number}.voteSummary.netVoteCount` | `comments.${number}.voteSummary.upvoteCount` | `comments.${number}.voteSummary.downvoteCount` | `comments.${number}.status` | `comments.${number}.reactionSummary.total` | `comments.${number}.marked`, 5>>;
3520
3537
  interface GetCommentThreadOptions {
3521
3538
  /**
3522
3539
  * App ID.
@@ -3541,7 +3558,7 @@ interface GetCommentThreadOptions {
3541
3558
  * @applicableIdentity APP
3542
3559
  * @fqn wix.comments.ng.v1.CommentsNg.BulkPublishComment
3543
3560
  */
3544
- declare function bulkPublishComment(appId: string, options: NonNullablePaths<BulkPublishCommentOptions, `filter`>): Promise<NonNullablePaths<BulkPublishCommentResponse, `jobId`>>;
3561
+ declare function bulkPublishComment(appId: string, options: NonNullablePaths<BulkPublishCommentOptions, `filter`, 2>): Promise<NonNullablePaths<BulkPublishCommentResponse, `jobId`, 2>>;
3545
3562
  interface BulkPublishCommentOptions {
3546
3563
  /** Filter to identify the comments that need to be published. Each key corresponds to an option name, and its values correspond to the choices for this option. For example, {`"resourceId"`: `"64ad407e0bf87891bba7de3a"`, `"parentComment.id"`: `"726cb137-a9c3-408b-9cc2-2b64c6be8a95"`}. */
3547
3564
  filter: Record<string, any> | null;
@@ -3557,7 +3574,7 @@ interface BulkPublishCommentOptions {
3557
3574
  * @applicableIdentity APP
3558
3575
  * @fqn wix.comments.ng.v1.CommentsNg.BulkHideComment
3559
3576
  */
3560
- declare function bulkHideComment(appId: string, options: NonNullablePaths<BulkHideCommentOptions, `filter`>): Promise<NonNullablePaths<BulkHideCommentResponse, `jobId`>>;
3577
+ declare function bulkHideComment(appId: string, options: NonNullablePaths<BulkHideCommentOptions, `filter`, 2>): Promise<NonNullablePaths<BulkHideCommentResponse, `jobId`, 2>>;
3561
3578
  interface BulkHideCommentOptions {
3562
3579
  /** Filter to identify the comments that need to be hidden. Each key corresponds to an option name, and its values correspond to the choices for this option. For example, {`"resourceId"`: `"64ad407e0bf87891bba7de3a"`, `"parentComment.id"`: `"726cb137-a9c3-408b-9cc2-2b64c6be8a95"`}. */
3563
3580
  filter: Record<string, any> | null;
@@ -3573,7 +3590,7 @@ interface BulkHideCommentOptions {
3573
3590
  * @applicableIdentity APP
3574
3591
  * @fqn wix.comments.ng.v1.CommentsNg.BulkDeleteComment
3575
3592
  */
3576
- declare function bulkDeleteComment(appId: string, options: NonNullablePaths<BulkDeleteCommentOptions, `filter`>): Promise<NonNullablePaths<BulkDeleteCommentResponse, `jobId`>>;
3593
+ declare function bulkDeleteComment(appId: string, options: NonNullablePaths<BulkDeleteCommentOptions, `filter`, 2>): Promise<NonNullablePaths<BulkDeleteCommentResponse, `jobId`, 2>>;
3577
3594
  interface BulkDeleteCommentOptions {
3578
3595
  /** Filter to identify the comments that need to be deleted. Each key corresponds to an option name, and its values correspond to the choices for this option. For example, {`"resourceId"`: `"64ad407e0bf87891bba7de3a"`, `"parentComment.id"`: `"726cb137-a9c3-408b-9cc2-2b64c6be8a95"`}. */
3579
3596
  filter: Record<string, any> | null;
@@ -3599,7 +3616,7 @@ interface BulkDeleteCommentOptions {
3599
3616
  * @applicableIdentity APP
3600
3617
  * @fqn wix.comments.ng.v1.CommentsNg.BulkModerateDraftContent
3601
3618
  */
3602
- declare function bulkModerateDraftContent(appId: string, options: NonNullablePaths<BulkModerateDraftContentOptions, `draftContentAction` | `filter`>): Promise<NonNullablePaths<BulkModerateDraftContentResponse, `jobId`>>;
3619
+ declare function bulkModerateDraftContent(appId: string, options: NonNullablePaths<BulkModerateDraftContentOptions, `draftContentAction` | `filter`, 2>): Promise<NonNullablePaths<BulkModerateDraftContentResponse, `jobId`, 2>>;
3603
3620
  interface BulkModerateDraftContentOptions {
3604
3621
  /** Filter to identify the comment content that needs to be moderated. Each key corresponds to an option name, and its values correspond to the choices for this option. For example, {`"resourceId"`: `"64ad407e0bf87891bba7de3a"`, `"parentComment.id"`: `"726cb137-a9c3-408b-9cc2-2b64c6be8a95"`}. */
3605
3622
  filter: Record<string, any> | null;
@@ -3618,7 +3635,7 @@ interface BulkModerateDraftContentOptions {
3618
3635
  * @applicableIdentity APP
3619
3636
  * @fqn wix.comments.ng.v1.CommentsNg.BulkMoveCommentByFilter
3620
3637
  */
3621
- declare function bulkMoveCommentByFilter(appId: string, options?: NonNullablePaths<BulkMoveCommentByFilterOptions, `destination.contextId` | `destination.resourceId` | `filter`>): Promise<NonNullablePaths<BulkMoveCommentByFilterResponse, `jobId`>>;
3638
+ declare function bulkMoveCommentByFilter(appId: string, options?: NonNullablePaths<BulkMoveCommentByFilterOptions, `destination.contextId` | `destination.resourceId` | `filter`, 3>): Promise<NonNullablePaths<BulkMoveCommentByFilterResponse, `jobId`, 2>>;
3622
3639
  interface BulkMoveCommentByFilterOptions {
3623
3640
  /** Filter to identify the comments that need to be moved. Each key corresponds to an option name, and its values correspond to the choices for this option. For example, {`"resourceId"`: `"64ad407e0bf87891bba7de3a"`, `"parentComment.id"`: `"726cb137-a9c3-408b-9cc2-2b64c6be8a95"`}. */
3624
3641
  filter: Record<string, any> | null;
@@ -3626,4 +3643,4 @@ interface BulkMoveCommentByFilterOptions {
3626
3643
  destination?: Destination;
3627
3644
  }
3628
3645
 
3629
- export { Action, type ActionEvent, type ActionWithLiterals, Alignment, type AlignmentWithLiterals, type AnchorData, type AppEmbedData, type AppEmbedDataAppDataOneOf, AppType, type AppTypeWithLiterals, AspectRatio, type AspectRatioWithLiterals, type Attachment, type AttachmentMediaOneOf, type AudioData, type Background, type BackgroundBackgroundOneOf, BackgroundType, type BackgroundTypeWithLiterals, type BaseEventMetadata, type BlockquoteData, type BookingData, type Border, type BorderColors, type BulkDeleteCommentOptions, type BulkDeleteCommentRequest, type BulkDeleteCommentResponse, type BulkHideCommentOptions, type BulkHideCommentRequest, type BulkHideCommentResponse, type BulkModerateDraftContentOptions, type BulkModerateDraftContentRequest, type BulkModerateDraftContentResponse, type BulkMoveCommentByFilterOptions, type BulkMoveCommentByFilterRequest, type BulkMoveCommentByFilterResponse, type BulkPublishCommentOptions, type BulkPublishCommentRequest, type BulkPublishCommentResponse, type BulletedListData, type ButtonData, ButtonDataType, type ButtonDataTypeWithLiterals, type ButtonStyles, type CaptionData, type CardStyles, type CellStyle, type CodeBlockData, type CollapsibleListData, type ColorData, type Colors, type Comment, type CommentAuthor, type CommentAuthorIdentityOneOf, type CommentContent, type CommentContentChanged, type CommentContentChangedEnvelope, type CommentCreatedEnvelope, type CommentDeleted, type CommentDeletedEnvelope, type CommentHidden, type CommentHiddenEnvelope, type CommentMarked, type CommentMarkedEnvelope, type CommentModerated, type CommentMoved, type CommentMovedEnvelope, type CommentPublished, type CommentPublishedEnvelope, type CommentReactionSummary, type CommentResourceCommentCountChangedEnvelope, type CommentSort, type CommentUnmarked, type CommentUnmarkedEnvelope, type CommentUpdatedEnvelope, type CommentsQueryBuilder, type CommentsQueryResult, type ContactDetails, type ContentAuthor, type ContentAuthorAuthorOneOf, type CountCommentsApplicationErrors, type CountCommentsOptions, type CountCommentsRequest, type CountCommentsResponse, type CreateCommentApplicationErrors, type CreateCommentRequest, type CreateCommentResponse, Crop, type CropWithLiterals, type CursorPaging, type CursorPagingMetadata, type CursorQuery, type CursorQueryPagingMethodOneOf, type Cursors, type Decoration, type DecorationDataOneOf, DecorationType, type DecorationTypeWithLiterals, type DeleteByFilterOperation, type DeleteByIdsOperation, type DeleteCommentRequest, type DeleteCommentResponse, type Design, type Destination, type Dimensions, Direction, type DirectionWithLiterals, type DividerData, DividerDataAlignment, type DividerDataAlignmentWithLiterals, type DocumentStyle, type DomainEvent, type DomainEventBodyOneOf, type EmbedData, type EntityCreatedEvent, type EntityDeletedEvent, type EntityUpdatedEvent, type EventData, type EventMetadata, type FileData, type FileSource, type FileSourceDataOneOf, type FontSizeData, FontType, type FontTypeWithLiterals, type GIF, type GIFData, GIFType, type GIFTypeWithLiterals, type GalleryData, type GalleryOptions, type GalleryOptionsLayout, type GetCommentRequest, type GetCommentResponse, type GetCommentThreadOptions, type GetCommentThreadRequest, type GetCommentThreadResponse, type Gradient, type HTMLData, type HTMLDataDataOneOf, type HeadingData, type Height, type HideCommentRequest, type HideCommentResponse, type IdentificationData, type IdentificationDataIdOneOf, type Image, type ImageData, type ImageDataStyles, type ImageStyles, InitialExpandedItems, type InitialExpandedItemsWithLiterals, type InternalDocument, type InternalDocumentUpdateByFilterOperation, type InternalDocumentUpdateOperation, type InternalUpdateExistingOperation, type Item, type ItemDataOneOf, type ItemStyle, Layout, type LayoutCellData, LayoutType, type LayoutTypeWithLiterals, type LayoutWithLiterals, LineStyle, type LineStyleWithLiterals, type Link, type LinkData, type LinkDataOneOf, type LinkPreviewData, type LinkPreviewDataStyles, type ListCommentsByResourceCursorPaging, type ListCommentsByResourceOptions, type ListCommentsByResourceRequest, type ListCommentsByResourceResponse, type ListValue, type MapData, type MapSettings, MapType, type MapTypeWithLiterals, type MarkCommentRequest, type MarkCommentResponse, type Media, type Mention, type MentionData, type MentionIdentityOneOf, type MessageEnvelope, type Metadata, type ModerateDraftContentOptions, type ModerateDraftContentRequest, type ModerateDraftContentResponse, type Node, type NodeDataOneOf, type NodeStyle, NodeType, type NodeTypeWithLiterals, NullValue, type NullValueWithLiterals, type Oembed, type Option, type OptionDesign, type OptionLayout, Order, type OrderWithLiterals, type OrderedListData, Orientation, type OrientationWithLiterals, type PDFSettings, type ParagraphData, type ParentComment, type Permissions, Placement, type PlacementWithLiterals, type PlaybackOptions, type PluginContainerData, PluginContainerDataAlignment, type PluginContainerDataAlignmentWithLiterals, type PluginContainerDataWidth, type PluginContainerDataWidthDataOneOf, type Poll, type PollData, type PollDataLayout, type PollDesign, type PollLayout, PollLayoutDirection, type PollLayoutDirectionWithLiterals, PollLayoutType, type PollLayoutTypeWithLiterals, Position, type PositionWithLiterals, type PublishCommentRequest, type PublishCommentResponse, type QueryCommentsRequest, type QueryCommentsResponse, type Rel, type RepliesListResponse, type ReplySort, ReplySortOrder, type ReplySortOrderWithLiterals, Resizing, type ResizingWithLiterals, type ResourceCommentCountChanged, type RestoreInfo, type RibbonStyles, type RichContent, type Settings, SortOrder, type SortOrderWithLiterals, type Sorting, Source, type SourceWithLiterals, type Spoiler, type SpoilerData, Status, type StatusWithLiterals, type Styles, type StylesBorder, StylesPosition, type StylesPositionWithLiterals, type TableCellData, type TableData, Target, type TargetWithLiterals, TextAlignment, type TextAlignmentWithLiterals, type TextData, type TextNodeStyle, type TextStyle, type Thumbnails, ThumbnailsAlignment, type ThumbnailsAlignmentWithLiterals, Type, type TypeWithLiterals, type UnmarkCommentRequest, type UnmarkCommentResponse, type UpdateComment, type UpdateCommentApplicationErrors, type UpdateCommentRequest, type UpdateCommentResponse, type UpdateInternalDocumentsEvent, type UpdateInternalDocumentsEventOperationOneOf, type VersionedDeleteByIdsOperation, type VersionedDocumentId, type VersionedDocumentUpdateOperation, VersioningMode, type VersioningModeWithLiterals, VerticalAlignment, type VerticalAlignmentWithLiterals, type Video, type VideoData, type VideoResolution, ViewMode, type ViewModeWithLiterals, ViewRole, type ViewRoleWithLiterals, VoteRole, type VoteRoleWithLiterals, type VoteSummary, WebhookIdentityType, type WebhookIdentityTypeWithLiterals, Width, WidthType, type WidthTypeWithLiterals, type WidthWithLiterals, bulkDeleteComment, bulkHideComment, bulkModerateDraftContent, bulkMoveCommentByFilter, bulkPublishComment, countComments, createComment, deleteComment, getComment, getCommentThread, hideComment, listCommentsByResource, markComment, moderateDraftContent, onCommentContentChanged, onCommentCreated, onCommentDeleted, onCommentHidden, onCommentMarked, onCommentMoved, onCommentPublished, onCommentResourceCommentCountChanged, onCommentUnmarked, onCommentUpdated, publishComment, queryComments, unmarkComment, updateComment };
3646
+ export { Action, type ActionEvent, type ActionWithLiterals, Alignment, type AlignmentWithLiterals, type AnchorData, type AppEmbedData, type AppEmbedDataAppDataOneOf, AppType, type AppTypeWithLiterals, AspectRatio, type AspectRatioWithLiterals, type Attachment, type AttachmentMediaOneOf, type AudioData, type Background, type BackgroundBackgroundOneOf, BackgroundType, type BackgroundTypeWithLiterals, type BaseEventMetadata, type BlockquoteData, type BookingData, type Border, type BorderColors, type BulkDeleteCommentOptions, type BulkDeleteCommentRequest, type BulkDeleteCommentResponse, type BulkHideCommentOptions, type BulkHideCommentRequest, type BulkHideCommentResponse, type BulkModerateDraftContentOptions, type BulkModerateDraftContentRequest, type BulkModerateDraftContentResponse, type BulkMoveCommentByFilterOptions, type BulkMoveCommentByFilterRequest, type BulkMoveCommentByFilterResponse, type BulkPublishCommentOptions, type BulkPublishCommentRequest, type BulkPublishCommentResponse, type BulletedListData, type ButtonData, ButtonDataType, type ButtonDataTypeWithLiterals, type ButtonStyles, type CaptionData, type CardStyles, type CellStyle, type CodeBlockData, type CollapsibleListData, type ColorData, type Colors, type Comment, type CommentAuthor, type CommentAuthorIdentityOneOf, type CommentContent, type CommentContentChanged, type CommentContentChangedEnvelope, type CommentCreatedEnvelope, type CommentDeleted, type CommentDeletedEnvelope, type CommentHidden, type CommentHiddenEnvelope, type CommentMarked, type CommentMarkedEnvelope, type CommentModerated, type CommentMoved, type CommentMovedEnvelope, type CommentPublished, type CommentPublishedEnvelope, type CommentReactionSummary, type CommentResourceCommentCountChangedEnvelope, type CommentSort, type CommentUnmarked, type CommentUnmarkedEnvelope, type CommentUpdatedEnvelope, type CommentsQueryBuilder, type CommentsQueryResult, type ContactDetails, type ContentAuthor, type ContentAuthorAuthorOneOf, type CountCommentsApplicationErrors, type CountCommentsOptions, type CountCommentsRequest, type CountCommentsResponse, type CreateCommentApplicationErrors, type CreateCommentRequest, type CreateCommentResponse, Crop, type CropWithLiterals, type CursorPaging, type CursorPagingMetadata, type CursorQuery, type CursorQueryPagingMethodOneOf, type Cursors, type Decoration, type DecorationDataOneOf, DecorationType, type DecorationTypeWithLiterals, type DeleteByFilterOperation, type DeleteByIdsOperation, type DeleteCommentRequest, type DeleteCommentResponse, type Design, type Destination, type Dimensions, Direction, type DirectionWithLiterals, type DividerData, DividerDataAlignment, type DividerDataAlignmentWithLiterals, type DocumentStyle, type DomainEvent, type DomainEventBodyOneOf, type EmbedData, type EntityCreatedEvent, type EntityDeletedEvent, type EntityUpdatedEvent, type EventData, type EventMetadata, type FileData, type FileSource, type FileSourceDataOneOf, type FontSizeData, FontType, type FontTypeWithLiterals, type GIF, type GIFData, GIFType, type GIFTypeWithLiterals, type GalleryData, type GalleryOptions, type GalleryOptionsLayout, type GetCommentRequest, type GetCommentResponse, type GetCommentThreadOptions, type GetCommentThreadRequest, type GetCommentThreadResponse, type Gradient, type HTMLData, type HTMLDataDataOneOf, type HeadingData, type Height, type HideCommentRequest, type HideCommentResponse, type IdentificationData, type IdentificationDataIdOneOf, type Image, type ImageData, type ImageDataStyles, type ImageStyles, InitialExpandedItems, type InitialExpandedItemsWithLiterals, type InternalDocument, type InternalDocumentUpdateByFilterOperation, type InternalDocumentUpdateOperation, type InternalUpdateExistingOperation, type Item, type ItemDataOneOf, type ItemStyle, Layout, type LayoutCellData, LayoutType, type LayoutTypeWithLiterals, type LayoutWithLiterals, LineStyle, type LineStyleWithLiterals, type Link, type LinkData, type LinkDataOneOf, type LinkPreviewData, type LinkPreviewDataStyles, type ListCommentsByResourceCursorPaging, type ListCommentsByResourceOptions, type ListCommentsByResourceRequest, type ListCommentsByResourceResponse, type ListValue, type MapData, type MapSettings, MapType, type MapTypeWithLiterals, type MarkCommentRequest, type MarkCommentResponse, type Media, type Mention, type MentionData, type MentionIdentityOneOf, type MessageEnvelope, type Metadata, type ModerateDraftContentOptions, type ModerateDraftContentRequest, type ModerateDraftContentResponse, type Node, type NodeDataOneOf, type NodeStyle, NodeType, type NodeTypeWithLiterals, NullValue, type NullValueWithLiterals, type Oembed, type Option, type OptionDesign, type OptionLayout, Order, type OrderWithLiterals, type OrderedListData, Orientation, type OrientationWithLiterals, type PDFSettings, type ParagraphData, type ParentComment, type Permissions, Placement, type PlacementWithLiterals, type PlaybackOptions, type PluginContainerData, PluginContainerDataAlignment, type PluginContainerDataAlignmentWithLiterals, type PluginContainerDataWidth, type PluginContainerDataWidthDataOneOf, type Poll, type PollData, type PollDataLayout, type PollDesign, type PollLayout, PollLayoutDirection, type PollLayoutDirectionWithLiterals, PollLayoutType, type PollLayoutTypeWithLiterals, Position, type PositionWithLiterals, type PricingData, type PublishCommentRequest, type PublishCommentResponse, type QueryCommentsRequest, type QueryCommentsResponse, type Rel, type RepliesListResponse, type ReplySort, ReplySortOrder, type ReplySortOrderWithLiterals, Resizing, type ResizingWithLiterals, type ResourceCommentCountChanged, type RestoreInfo, type RibbonStyles, type RichContent, type Settings, SortOrder, type SortOrderWithLiterals, type Sorting, Source, type SourceWithLiterals, type Spoiler, type SpoilerData, Status, type StatusWithLiterals, type Styles, type StylesBorder, StylesPosition, type StylesPositionWithLiterals, type TableCellData, type TableData, Target, type TargetWithLiterals, TextAlignment, type TextAlignmentWithLiterals, type TextData, type TextNodeStyle, type TextStyle, type Thumbnails, ThumbnailsAlignment, type ThumbnailsAlignmentWithLiterals, Type, type TypeWithLiterals, type UnmarkCommentRequest, type UnmarkCommentResponse, type UpdateComment, type UpdateCommentApplicationErrors, type UpdateCommentRequest, type UpdateCommentResponse, type UpdateInternalDocumentsEvent, type UpdateInternalDocumentsEventOperationOneOf, type VersionedDeleteByIdsOperation, type VersionedDocumentId, type VersionedDocumentUpdateOperation, VersioningMode, type VersioningModeWithLiterals, VerticalAlignment, type VerticalAlignmentWithLiterals, type Video, type VideoData, type VideoResolution, ViewMode, type ViewModeWithLiterals, ViewRole, type ViewRoleWithLiterals, VoteRole, type VoteRoleWithLiterals, type VoteSummary, WebhookIdentityType, type WebhookIdentityTypeWithLiterals, Width, WidthType, type WidthTypeWithLiterals, type WidthWithLiterals, bulkDeleteComment, bulkHideComment, bulkModerateDraftContent, bulkMoveCommentByFilter, bulkPublishComment, countComments, createComment, deleteComment, getComment, getCommentThread, hideComment, listCommentsByResource, markComment, moderateDraftContent, onCommentContentChanged, onCommentCreated, onCommentDeleted, onCommentHidden, onCommentMarked, onCommentMoved, onCommentPublished, onCommentResourceCommentCountChanged, onCommentUnmarked, onCommentUpdated, publishComment, queryComments, unmarkComment, updateComment };