@wix/auto_sdk_comments_comments 1.0.24 → 1.0.26

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.
@@ -1361,6 +1361,10 @@ interface AppEmbedData extends AppEmbedDataAppDataOneOf {
1361
1361
  ribbonStyles?: RibbonStyles;
1362
1362
  /** Card styling options. */
1363
1363
  cardStyles?: CardStyles;
1364
+ /** Styling for the app embed's container. */
1365
+ containerData?: PluginContainerData;
1366
+ /** Pricing data for embedded Wix App content. */
1367
+ pricingData?: PricingData;
1364
1368
  }
1365
1369
  /** @oneof */
1366
1370
  interface AppEmbedDataAppDataOneOf {
@@ -1562,6 +1566,33 @@ interface CardStyles {
1562
1566
  */
1563
1567
  textColor?: string | null;
1564
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
+ }
1565
1596
  interface VideoData {
1566
1597
  /** Styling for the video's container. */
1567
1598
  containerData?: PluginContainerData;
@@ -2864,16 +2895,19 @@ declare enum WebhookIdentityType {
2864
2895
  }
2865
2896
  /** @enumType */
2866
2897
  type WebhookIdentityTypeWithLiterals = WebhookIdentityType | 'UNKNOWN' | 'ANONYMOUS_VISITOR' | 'MEMBER' | 'WIX_USER' | 'APP';
2898
+ /** @docsIgnore */
2867
2899
  type CreateCommentApplicationErrors = {
2868
2900
  code?: 'INVALID_CAPTCHA';
2869
2901
  description?: string;
2870
2902
  data?: Record<string, any>;
2871
2903
  };
2904
+ /** @docsIgnore */
2872
2905
  type UpdateCommentApplicationErrors = {
2873
2906
  code?: 'INVALID_CAPTCHA';
2874
2907
  description?: string;
2875
2908
  data?: Record<string, any>;
2876
2909
  };
2910
+ /** @docsIgnore */
2877
2911
  type CountCommentsApplicationErrors = {
2878
2912
  code?: 'TOO_MANY_TO_COUNT';
2879
2913
  description?: string;
@@ -3110,7 +3144,6 @@ interface CommentUpdatedEnvelope {
3110
3144
  * @slug updated
3111
3145
  */
3112
3146
  declare function onCommentUpdated(handler: (event: CommentUpdatedEnvelope) => void | Promise<void>): void;
3113
- type CommentNonNullablePaths = `content.mentions` | `content.attachments` | `parentComment.status` | `replyCount` | `voteSummary.netVoteCount` | `voteSummary.upvoteCount` | `voteSummary.downvoteCount` | `status` | `reactionSummary.total` | `marked`;
3114
3147
  /**
3115
3148
  * Creates a new comment and publishes it.
3116
3149
  *
@@ -3133,7 +3166,7 @@ type CommentNonNullablePaths = `content.mentions` | `content.attachments` | `par
3133
3166
  * @returns Created comment.
3134
3167
  * @fqn wix.comments.ng.v1.CommentsNg.CreateComment
3135
3168
  */
3136
- 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> & {
3137
3170
  __applicationErrorsType?: CreateCommentApplicationErrors;
3138
3171
  }>;
3139
3172
  /**
@@ -3146,7 +3179,7 @@ declare function createComment(comment: NonNullablePaths<Comment, `appId` | `con
3146
3179
  * @returns Retrieved comment.
3147
3180
  * @fqn wix.comments.ng.v1.CommentsNg.GetComment
3148
3181
  */
3149
- 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>>;
3150
3183
  /**
3151
3184
  * Updates a comment.
3152
3185
  *
@@ -3163,7 +3196,7 @@ declare function getComment(commentId: string): Promise<NonNullablePaths<Comment
3163
3196
  * @returns Updated comment.
3164
3197
  * @fqn wix.comments.ng.v1.CommentsNg.UpdateComment
3165
3198
  */
3166
- 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> & {
3167
3200
  __applicationErrorsType?: UpdateCommentApplicationErrors;
3168
3201
  }>;
3169
3202
  interface UpdateComment {
@@ -3302,9 +3335,7 @@ declare function deleteComment(commentId: string): Promise<void>;
3302
3335
  * @applicableIdentity APP
3303
3336
  * @fqn wix.comments.ng.v1.CommentsNg.ModerateDraftContent
3304
3337
  */
3305
- declare function moderateDraftContent(commentId: string, revision: string, options?: ModerateDraftContentOptions): Promise<NonNullablePaths<ModerateDraftContentResponse, {
3306
- [P in CommentNonNullablePaths]: `comment.${P}`;
3307
- }[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>>;
3308
3339
  interface ModerateDraftContentOptions {
3309
3340
  /** Draft content action. */
3310
3341
  draftContentAction?: ActionWithLiterals;
@@ -3401,9 +3432,7 @@ interface CommentsQueryBuilder {
3401
3432
  * @applicableIdentity APP
3402
3433
  * @fqn wix.comments.ng.v1.CommentsNg.MarkComment
3403
3434
  */
3404
- declare function markComment(commentId: string): Promise<NonNullablePaths<MarkCommentResponse, {
3405
- [P in CommentNonNullablePaths]: `comment.${P}`;
3406
- }[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>>;
3407
3436
  /**
3408
3437
  * Sets `marked` to `FALSE` to unmark a comment.
3409
3438
  * @param commentId - ID of the comment to unmark.
@@ -3413,9 +3442,7 @@ declare function markComment(commentId: string): Promise<NonNullablePaths<MarkCo
3413
3442
  * @applicableIdentity APP
3414
3443
  * @fqn wix.comments.ng.v1.CommentsNg.UnmarkComment
3415
3444
  */
3416
- declare function unmarkComment(commentId: string): Promise<NonNullablePaths<UnmarkCommentResponse, {
3417
- [P in CommentNonNullablePaths]: `comment.${P}`;
3418
- }[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>>;
3419
3446
  /**
3420
3447
  * Hides a comment in a widget. The comment status becomes `HIDDEN`.
3421
3448
  * @param commentId - ID of the comment to hide.
@@ -3425,9 +3452,7 @@ declare function unmarkComment(commentId: string): Promise<NonNullablePaths<Unma
3425
3452
  * @applicableIdentity APP
3426
3453
  * @fqn wix.comments.ng.v1.CommentsNg.HideComment
3427
3454
  */
3428
- declare function hideComment(commentId: string): Promise<NonNullablePaths<HideCommentResponse, {
3429
- [P in CommentNonNullablePaths]: `comment.${P}`;
3430
- }[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>>;
3431
3456
  /**
3432
3457
  * Publishes a comment with the `HIDDEN` status. The comment status becomes `PUBLISHED`.
3433
3458
  *
@@ -3439,9 +3464,7 @@ declare function hideComment(commentId: string): Promise<NonNullablePaths<HideCo
3439
3464
  * @applicableIdentity APP
3440
3465
  * @fqn wix.comments.ng.v1.CommentsNg.PublishComment
3441
3466
  */
3442
- declare function publishComment(commentId: string): Promise<NonNullablePaths<PublishCommentResponse, {
3443
- [P in CommentNonNullablePaths]: `comment.${P}`;
3444
- }[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>>;
3445
3468
  /**
3446
3469
  * Counts comments, given the specified filtering. Comments with the `HIDDEN` status are not included in the response.
3447
3470
  * @param appId - App ID to count the comments of.
@@ -3451,7 +3474,7 @@ declare function publishComment(commentId: string): Promise<NonNullablePaths<Pub
3451
3474
  * @applicableIdentity APP
3452
3475
  * @fqn wix.comments.ng.v1.CommentsNg.CountComments
3453
3476
  */
3454
- declare function countComments(appId: string, options?: CountCommentsOptions): Promise<NonNullablePaths<CountCommentsResponse, `count`> & {
3477
+ declare function countComments(appId: string, options?: CountCommentsOptions): Promise<NonNullablePaths<CountCommentsResponse, `count`, 2> & {
3455
3478
  __applicationErrorsType?: CountCommentsApplicationErrors;
3456
3479
  }>;
3457
3480
  interface CountCommentsOptions {
@@ -3469,9 +3492,7 @@ interface CountCommentsOptions {
3469
3492
  * @applicableIdentity APP
3470
3493
  * @fqn wix.comments.ng.v1.CommentsNg.ListCommentsByResource
3471
3494
  */
3472
- declare function listCommentsByResource(appId: string, options?: NonNullablePaths<ListCommentsByResourceOptions, `contextId` | `resourceId`>): Promise<NonNullablePaths<ListCommentsByResourceResponse, {
3473
- [P in CommentNonNullablePaths]: `comments.${number}.${P}`;
3474
- }[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>>;
3475
3496
  interface ListCommentsByResourceOptions {
3476
3497
  /**
3477
3498
  * ID of the specific context the comment is in response to.
@@ -3512,9 +3533,7 @@ interface ListCommentsByResourceOptions {
3512
3533
  * @applicableIdentity APP
3513
3534
  * @fqn wix.comments.ng.v1.CommentsNg.GetCommentThread
3514
3535
  */
3515
- declare function getCommentThread(commentId: string, options?: GetCommentThreadOptions): Promise<NonNullablePaths<GetCommentThreadResponse, {
3516
- [P in CommentNonNullablePaths]: `comments.${number}.${P}`;
3517
- }[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>>;
3518
3537
  interface GetCommentThreadOptions {
3519
3538
  /**
3520
3539
  * App ID.
@@ -3539,7 +3558,7 @@ interface GetCommentThreadOptions {
3539
3558
  * @applicableIdentity APP
3540
3559
  * @fqn wix.comments.ng.v1.CommentsNg.BulkPublishComment
3541
3560
  */
3542
- 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>>;
3543
3562
  interface BulkPublishCommentOptions {
3544
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"`}. */
3545
3564
  filter: Record<string, any> | null;
@@ -3555,7 +3574,7 @@ interface BulkPublishCommentOptions {
3555
3574
  * @applicableIdentity APP
3556
3575
  * @fqn wix.comments.ng.v1.CommentsNg.BulkHideComment
3557
3576
  */
3558
- 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>>;
3559
3578
  interface BulkHideCommentOptions {
3560
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"`}. */
3561
3580
  filter: Record<string, any> | null;
@@ -3571,7 +3590,7 @@ interface BulkHideCommentOptions {
3571
3590
  * @applicableIdentity APP
3572
3591
  * @fqn wix.comments.ng.v1.CommentsNg.BulkDeleteComment
3573
3592
  */
3574
- 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>>;
3575
3594
  interface BulkDeleteCommentOptions {
3576
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"`}. */
3577
3596
  filter: Record<string, any> | null;
@@ -3597,7 +3616,7 @@ interface BulkDeleteCommentOptions {
3597
3616
  * @applicableIdentity APP
3598
3617
  * @fqn wix.comments.ng.v1.CommentsNg.BulkModerateDraftContent
3599
3618
  */
3600
- 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>>;
3601
3620
  interface BulkModerateDraftContentOptions {
3602
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"`}. */
3603
3622
  filter: Record<string, any> | null;
@@ -3616,7 +3635,7 @@ interface BulkModerateDraftContentOptions {
3616
3635
  * @applicableIdentity APP
3617
3636
  * @fqn wix.comments.ng.v1.CommentsNg.BulkMoveCommentByFilter
3618
3637
  */
3619
- 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>>;
3620
3639
  interface BulkMoveCommentByFilterOptions {
3621
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"`}. */
3622
3641
  filter: Record<string, any> | null;
@@ -3624,4 +3643,4 @@ interface BulkMoveCommentByFilterOptions {
3624
3643
  destination?: Destination;
3625
3644
  }
3626
3645
 
3627
- 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 };