@wix/auto_sdk_comments_comments 1.0.22 → 1.0.23

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.
@@ -2959,7 +2959,6 @@ interface CommentHiddenEnvelope {
2959
2959
  * @eventType wix.comments.v2.comment_comment_hidden
2960
2960
  * @serviceIdentifier wix.comments.ng.v1.CommentsNg
2961
2961
  * @slug comment_hidden
2962
- * @documentationMaturity preview
2963
2962
  */
2964
2963
  declare function onCommentHidden(handler: (event: CommentHiddenEnvelope) => void | Promise<void>): void;
2965
2964
  interface CommentMarkedEnvelope {
@@ -2998,7 +2997,6 @@ interface CommentMovedEnvelope {
2998
2997
  * @eventType wix.comments.v2.comment_comment_moved
2999
2998
  * @serviceIdentifier wix.comments.ng.v1.CommentsNg
3000
2999
  * @slug comment_moved
3001
- * @documentationMaturity preview
3002
3000
  */
3003
3001
  declare function onCommentMoved(handler: (event: CommentMovedEnvelope) => void | Promise<void>): void;
3004
3002
  interface CommentPublishedEnvelope {
@@ -3018,7 +3016,6 @@ interface CommentPublishedEnvelope {
3018
3016
  * @eventType wix.comments.v2.comment_comment_published
3019
3017
  * @serviceIdentifier wix.comments.ng.v1.CommentsNg
3020
3018
  * @slug comment_published
3021
- * @documentationMaturity preview
3022
3019
  */
3023
3020
  declare function onCommentPublished(handler: (event: CommentPublishedEnvelope) => void | Promise<void>): void;
3024
3021
  interface CommentUnmarkedEnvelope {
@@ -3283,7 +3280,6 @@ declare function deleteComment(commentId: string): Promise<void>;
3283
3280
  *
3284
3281
  * To prevent conflicting changes, the current `revision` must be passed when updating the comment.
3285
3282
  * @public
3286
- * @documentationMaturity preview
3287
3283
  * @requiredField commentId
3288
3284
  * @requiredField revision
3289
3285
  * @permissionId WIX_COMMENTS.COMMENT_MODERATE_DRAFT_CONTENT
@@ -3408,7 +3404,6 @@ declare function unmarkComment(commentId: string): Promise<NonNullablePaths<Unma
3408
3404
  * Hides a comment in a widget. The comment status becomes `HIDDEN`.
3409
3405
  * @param commentId - ID of the comment to hide.
3410
3406
  * @public
3411
- * @documentationMaturity preview
3412
3407
  * @requiredField commentId
3413
3408
  * @permissionId WIX_COMMENTS.COMMENT_HIDE
3414
3409
  * @applicableIdentity APP
@@ -3423,7 +3418,6 @@ declare function hideComment(commentId: string): Promise<NonNullablePaths<HideCo
3423
3418
  * To publish a new comment, call Create Comment.
3424
3419
  * @param commentId - ID of the comment to publish.
3425
3420
  * @public
3426
- * @documentationMaturity preview
3427
3421
  * @requiredField commentId
3428
3422
  * @permissionId WIX_COMMENTS.COMMENT_PUBLISH
3429
3423
  * @applicableIdentity APP
@@ -3452,7 +3446,6 @@ interface CountCommentsOptions {
3452
3446
  * Lists published comments and replies from a specified resource, such as a blog post.
3453
3447
  * @param appId - ID of the app from which the comments are listed.
3454
3448
  * @public
3455
- * @documentationMaturity preview
3456
3449
  * @requiredField appId
3457
3450
  * @requiredField options.contextId
3458
3451
  * @requiredField options.resourceId
@@ -3498,7 +3491,6 @@ interface ListCommentsByResourceOptions {
3498
3491
  * If you request a reply thread, the method returns a reply with its parent comment. With cursors (`pagingMetadata.cursors.next` or `pagingMetadata.cursors.prev`) you can load replies by calling the List Comments by Resource method.
3499
3492
  * @param commentId - Comment ID.
3500
3493
  * @public
3501
- * @documentationMaturity preview
3502
3494
  * @requiredField commentId
3503
3495
  * @permissionId WIX_COMMENTS.COMMENT_THREAD
3504
3496
  * @applicableIdentity APP
@@ -3524,7 +3516,6 @@ interface GetCommentThreadOptions {
3524
3516
  * Publishes multiple comments with the `HIDDEN` status. The comment status becomes `PUBLISHED`.
3525
3517
  * @param appId - ID of the app where to publish the comment.
3526
3518
  * @public
3527
- * @documentationMaturity preview
3528
3519
  * @requiredField appId
3529
3520
  * @requiredField options
3530
3521
  * @requiredField options.filter
@@ -3541,7 +3532,6 @@ interface BulkPublishCommentOptions {
3541
3532
  * Hides multiple comments. The comment status becomes `HIDDEN`.
3542
3533
  * @param appId - ID of the app where to hide the comments.
3543
3534
  * @public
3544
- * @documentationMaturity preview
3545
3535
  * @requiredField appId
3546
3536
  * @requiredField options
3547
3537
  * @requiredField options.filter
@@ -3558,7 +3548,6 @@ interface BulkHideCommentOptions {
3558
3548
  * Deletes multiple comments.
3559
3549
  * @param appId - ID of the app where to delete the comments.
3560
3550
  * @public
3561
- * @documentationMaturity preview
3562
3551
  * @requiredField appId
3563
3552
  * @requiredField options
3564
3553
  * @requiredField options.filter
@@ -3584,7 +3573,6 @@ interface BulkDeleteCommentOptions {
3584
3573
  * To moderate a single comment, call Moderate Draft Content.
3585
3574
  * @param appId - ID of the app where to moderate the comments.
3586
3575
  * @public
3587
- * @documentationMaturity preview
3588
3576
  * @requiredField appId
3589
3577
  * @requiredField options
3590
3578
  * @requiredField options.draftContentAction
@@ -3604,7 +3592,6 @@ interface BulkModerateDraftContentOptions {
3604
3592
  * Moves multiple comments to another resource.
3605
3593
  * @param appId - ID of the app from which to move the comments.
3606
3594
  * @public
3607
- * @documentationMaturity preview
3608
3595
  * @requiredField appId
3609
3596
  * @requiredField options.destination.contextId
3610
3597
  * @requiredField options.destination.resourceId