@wix/auto_sdk_comments_comments 1.0.20 → 1.0.21

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.
@@ -1,4 +1,4 @@
1
- import { c7 as CreateCommentRequest$1, c9 as CreateCommentResponse$1, cb as GetCommentRequest$1, cc as GetCommentResponse$1, cd as UpdateCommentRequest$1, ce as UpdateCommentResponse$1, cg as DeleteCommentRequest$1, ch as DeleteCommentResponse$1, cj as ModerateDraftContentRequest$1, a as ModerateDraftContentResponse$1, cm as QueryCommentsRequest$1, cr as QueryCommentsResponse$1, cu as MarkCommentRequest$1, c as MarkCommentResponse$1, cw as UnmarkCommentRequest$1, d as UnmarkCommentResponse$1, cy as HideCommentRequest$1, H as HideCommentResponse$1, cz as PublishCommentRequest$1, P as PublishCommentResponse$1, cA as CountCommentsRequest$1, f as CountCommentsResponse$1, cB as ListCommentsByResourceRequest$1, g as ListCommentsByResourceResponse$1, cG as GetCommentThreadRequest$1, h as GetCommentThreadResponse$1, cH as BulkPublishCommentRequest$1, i as BulkPublishCommentResponse$1, cI as BulkHideCommentRequest$1, k as BulkHideCommentResponse$1, cJ as BulkDeleteCommentRequest$1, m as BulkDeleteCommentResponse$1, cK as BulkModerateDraftContentRequest$1, o as BulkModerateDraftContentResponse$1, cL as BulkMoveCommentByFilterRequest$1, q as BulkMoveCommentByFilterResponse$1 } from './comments-v2-comment-comments.universal-kzUoSqmO.js';
1
+ import { c7 as CreateCommentRequest$1, c9 as CreateCommentResponse$1, cb as GetCommentRequest$1, cc as GetCommentResponse$1, cd as UpdateCommentRequest$1, ce as UpdateCommentResponse$1, cg as DeleteCommentRequest$1, ch as DeleteCommentResponse$1, cj as ModerateDraftContentRequest$1, a as ModerateDraftContentResponse$1, cm as QueryCommentsRequest$1, cr as QueryCommentsResponse$1, cu as MarkCommentRequest$1, c as MarkCommentResponse$1, cw as UnmarkCommentRequest$1, d as UnmarkCommentResponse$1, cy as HideCommentRequest$1, H as HideCommentResponse$1, cz as PublishCommentRequest$1, P as PublishCommentResponse$1, cA as CountCommentsRequest$1, f as CountCommentsResponse$1, cB as ListCommentsByResourceRequest$1, g as ListCommentsByResourceResponse$1, cG as GetCommentThreadRequest$1, h as GetCommentThreadResponse$1, cH as BulkPublishCommentRequest$1, i as BulkPublishCommentResponse$1, cI as BulkHideCommentRequest$1, k as BulkHideCommentResponse$1, cJ as BulkDeleteCommentRequest$1, m as BulkDeleteCommentResponse$1, cK as BulkModerateDraftContentRequest$1, o as BulkModerateDraftContentResponse$1, cL as BulkMoveCommentByFilterRequest$1, q as BulkMoveCommentByFilterResponse$1 } from './comments-v2-comment-comments.universal-BVp9019z.js';
2
2
 
3
3
  /**
4
4
  * A comment is a user-generated message in response to a specific resource. It allows site visitors
@@ -1226,6 +1226,10 @@ interface Decoration extends DecorationDataOneOf {
1226
1226
  spoilerData?: SpoilerData;
1227
1227
  /** Data for a strikethrough decoration. Defaults to `true`. */
1228
1228
  strikethroughData?: boolean | null;
1229
+ /** Data for a superscript decoration. Defaults to `true`. */
1230
+ superscriptData?: boolean | null;
1231
+ /** Data for a subscript decoration. Defaults to `true`. */
1232
+ subscriptData?: boolean | null;
1229
1233
  /** The type of decoration to apply. */
1230
1234
  type?: DecorationTypeWithLiterals;
1231
1235
  }
@@ -1251,6 +1255,10 @@ interface DecorationDataOneOf {
1251
1255
  spoilerData?: SpoilerData;
1252
1256
  /** Data for a strikethrough decoration. Defaults to `true`. */
1253
1257
  strikethroughData?: boolean | null;
1258
+ /** Data for a superscript decoration. Defaults to `true`. */
1259
+ superscriptData?: boolean | null;
1260
+ /** Data for a subscript decoration. Defaults to `true`. */
1261
+ subscriptData?: boolean | null;
1254
1262
  }
1255
1263
  declare enum DecorationType {
1256
1264
  BOLD = "BOLD",
@@ -1263,10 +1271,12 @@ declare enum DecorationType {
1263
1271
  COLOR = "COLOR",
1264
1272
  FONT_SIZE = "FONT_SIZE",
1265
1273
  EXTERNAL = "EXTERNAL",
1266
- STRIKETHROUGH = "STRIKETHROUGH"
1274
+ STRIKETHROUGH = "STRIKETHROUGH",
1275
+ SUPERSCRIPT = "SUPERSCRIPT",
1276
+ SUBSCRIPT = "SUBSCRIPT"
1267
1277
  }
1268
1278
  /** @enumType */
1269
- type DecorationTypeWithLiterals = DecorationType | 'BOLD' | 'ITALIC' | 'UNDERLINE' | 'SPOILER' | 'ANCHOR' | 'MENTION' | 'LINK' | 'COLOR' | 'FONT_SIZE' | 'EXTERNAL' | 'STRIKETHROUGH';
1279
+ type DecorationTypeWithLiterals = DecorationType | 'BOLD' | 'ITALIC' | 'UNDERLINE' | 'SPOILER' | 'ANCHOR' | 'MENTION' | 'LINK' | 'COLOR' | 'FONT_SIZE' | 'EXTERNAL' | 'STRIKETHROUGH' | 'SUPERSCRIPT' | 'SUBSCRIPT';
1270
1280
  interface AnchorData {
1271
1281
  /** The target node's ID. */
1272
1282
  anchor?: string;
@@ -1224,6 +1224,10 @@ interface Decoration extends DecorationDataOneOf {
1224
1224
  spoilerData?: SpoilerData;
1225
1225
  /** Data for a strikethrough decoration. Defaults to `true`. */
1226
1226
  strikethroughData?: boolean | null;
1227
+ /** Data for a superscript decoration. Defaults to `true`. */
1228
+ superscriptData?: boolean | null;
1229
+ /** Data for a subscript decoration. Defaults to `true`. */
1230
+ subscriptData?: boolean | null;
1227
1231
  /** The type of decoration to apply. */
1228
1232
  type?: DecorationTypeWithLiterals;
1229
1233
  }
@@ -1249,6 +1253,10 @@ interface DecorationDataOneOf {
1249
1253
  spoilerData?: SpoilerData;
1250
1254
  /** Data for a strikethrough decoration. Defaults to `true`. */
1251
1255
  strikethroughData?: boolean | null;
1256
+ /** Data for a superscript decoration. Defaults to `true`. */
1257
+ superscriptData?: boolean | null;
1258
+ /** Data for a subscript decoration. Defaults to `true`. */
1259
+ subscriptData?: boolean | null;
1252
1260
  }
1253
1261
  declare enum DecorationType {
1254
1262
  BOLD = "BOLD",
@@ -1261,10 +1269,12 @@ declare enum DecorationType {
1261
1269
  COLOR = "COLOR",
1262
1270
  FONT_SIZE = "FONT_SIZE",
1263
1271
  EXTERNAL = "EXTERNAL",
1264
- STRIKETHROUGH = "STRIKETHROUGH"
1272
+ STRIKETHROUGH = "STRIKETHROUGH",
1273
+ SUPERSCRIPT = "SUPERSCRIPT",
1274
+ SUBSCRIPT = "SUBSCRIPT"
1265
1275
  }
1266
1276
  /** @enumType */
1267
- type DecorationTypeWithLiterals = DecorationType | 'BOLD' | 'ITALIC' | 'UNDERLINE' | 'SPOILER' | 'ANCHOR' | 'MENTION' | 'LINK' | 'COLOR' | 'FONT_SIZE' | 'EXTERNAL' | 'STRIKETHROUGH';
1277
+ type DecorationTypeWithLiterals = DecorationType | 'BOLD' | 'ITALIC' | 'UNDERLINE' | 'SPOILER' | 'ANCHOR' | 'MENTION' | 'LINK' | 'COLOR' | 'FONT_SIZE' | 'EXTERNAL' | 'STRIKETHROUGH' | 'SUPERSCRIPT' | 'SUBSCRIPT';
1268
1278
  interface AnchorData {
1269
1279
  /** The target node's ID. */
1270
1280
  anchor?: string;
@@ -1,6 +1,6 @@
1
1
  import { HttpClient, EventDefinition, MaybeContext, BuildRESTFunction, BuildEventDefinition } from '@wix/sdk-types';
2
- import { C as Comment, U as UpdateComment, M as ModerateDraftContentOptions, a as ModerateDraftContentResponse, b as CommentsQueryBuilder, c as MarkCommentResponse, d as UnmarkCommentResponse, H as HideCommentResponse, P as PublishCommentResponse, e as CountCommentsOptions, f as CountCommentsResponse, L as ListCommentsByResourceOptions, g as ListCommentsByResourceResponse, G as GetCommentThreadOptions, h as GetCommentThreadResponse, B as BulkPublishCommentOptions, i as BulkPublishCommentResponse, j as BulkHideCommentOptions, k as BulkHideCommentResponse, l as BulkDeleteCommentOptions, m as BulkDeleteCommentResponse, n as BulkModerateDraftContentOptions, o as BulkModerateDraftContentResponse, p as BulkMoveCommentByFilterOptions, q as BulkMoveCommentByFilterResponse, r as CommentContentChangedEnvelope, s as CommentHiddenEnvelope, t as CommentMarkedEnvelope, u as CommentMovedEnvelope, v as CommentPublishedEnvelope, w as CommentUnmarkedEnvelope, x as CommentCreatedEnvelope, y as CommentResourceCommentCountChangedEnvelope, z as CommentUpdatedEnvelope } from './comments-v2-comment-comments.universal-kzUoSqmO.mjs';
3
- export { ac as Action, cU as ActionEvent, J as Alignment, bh as AnchorData, bn as AppEmbedData, bo as AppEmbedDataAppDataOneOf, a5 as AppType, bN as Attachment, bO as AttachmentMediaOneOf, bC as AudioData, b7 as Background, b8 as BackgroundBackgroundOneOf, a2 as BackgroundType, cY as BaseEventMetadata, bF as BlockquoteData, bp as BookingData, an as Border, bA as BorderColors, cJ as BulkDeleteCommentRequest, cI as BulkHideCommentRequest, cK as BulkModerateDraftContentRequest, cL as BulkMoveCommentByFilterRequest, cH as BulkPublishCommentRequest, bE as BulletedListData, am as ButtonData, bG as CaptionData, bz as CellStyle, ay as CodeBlockData, bv as CollapsibleListData, bi as ColorData, ao as Colors, bS as CommentAuthor, bT as CommentAuthorIdentityOneOf, ah as CommentContent, cf as CommentContentChanged, ci as CommentDeleted, cl as CommentHidden, cv as CommentMarked, c6 as CommentModerated, cN as CommentMoved, ck as CommentPublished, bW as CommentReactionSummary, cC as CommentSort, cx as CommentUnmarked, c_ as CommentsQueryResult, c8 as ContactDetails, bQ as ContentAuthor, bR as ContentAuthorAuthorOneOf, cA as CountCommentsRequest, c7 as CreateCommentRequest, c9 as CreateCommentResponse, Q as Crop, cq as CursorPaging, cs as CursorPagingMetadata, cn as CursorQuery, co as CursorQueryPagingMethodOneOf, ct as Cursors, bf as Decoration, bg as DecorationDataOneOf, a3 as DecorationType, c0 as DeleteByFilterOperation, b$ as DeleteByIdsOperation, cg as DeleteCommentRequest, ch as DeleteCommentResponse, bd as Design, cM as Destination, bx as Dimensions, a7 as Direction, aA as DividerData, bJ as DocumentStyle, cO as DomainEvent, cP as DomainEventBodyOneOf, bt as EmbedData, cQ as EntityCreatedEvent, cT as EntityDeletedEvent, cS as EntityUpdatedEvent, bq as EventData, cZ as EventMetadata, aB as FileData, aC as FileSource, aD as FileSourceDataOneOf, bl as FontSizeData, a4 as FontType, aQ as GIF, aP as GIFData, S as GIFType, aF as GalleryData, aL as GalleryOptions, cb as GetCommentRequest, cc as GetCommentResponse, cG as GetCommentThreadRequest, b6 as Gradient, aS as HTMLData, aT as HTMLDataDataOneOf, aR as HeadingData, at as Height, cy as HideCommentRequest, cW as IdentificationData, cX as IdentificationDataIdOneOf, aH as Image, aU as ImageData, aW as ImageDataStyles, a6 as InitialExpandedItems, bZ as InternalDocument, c1 as InternalDocumentUpdateByFilterOperation, b_ as InternalDocumentUpdateOperation, c2 as InternalUpdateExistingOperation, aJ as Item, aK as ItemDataOneOf, aN as ItemStyle, aM as Layout, bH as LayoutCellData, K as LayoutType, F as LineStyle, av as Link, bj as LinkData, aw as LinkDataOneOf, aX as LinkPreviewData, aY as LinkPreviewDataStyles, cE as ListCommentsByResourceCursorPaging, cB as ListCommentsByResourceRequest, bB as ListValue, aZ as MapData, a_ as MapSettings, Z as MapType, cu as MarkCommentRequest, aG as Media, bL as Mention, bk as MentionData, bM as MentionIdentityOneOf, cV as MessageEnvelope, bI as Metadata, cj as ModerateDraftContentRequest, aj as Node, ak as NodeDataOneOf, al as NodeStyle, N as NodeType, a9 as NullValue, bu as Oembed, b2 as Option, ba as OptionDesign, b5 as OptionLayout, ae as Order, bD as OrderedListData, O as Orientation, aE as PDFSettings, a$ as ParagraphData, bU as ParentComment, b1 as Permissions, bs as PlaybackOptions, ap as PluginContainerData, A as PluginContainerDataAlignment, aq as PluginContainerDataWidth, ar as PluginContainerDataWidthDataOneOf, bb as Poll, b0 as PollData, bc as PollDataLayout, b9 as PollDesign, b4 as PollLayout, a1 as PollLayoutDirection, a0 as PollLayoutType, Y as Position, cz as PublishCommentRequest, cm as QueryCommentsRequest, cr as QueryCommentsResponse, ax as Rel, cF as RepliesListResponse, cD as ReplySort, af as ReplySortOrder, ca as ResourceCommentCountChanged, cR as RestoreInfo, ai as RichContent, b3 as Settings, ad as SortOrder, cp as Sorting, X as Source, as as Spoiler, bm as SpoilerData, aa as Status, au as Styles, aV as StylesBorder, by as TableCellData, bw as TableData, D as Target, E as TextAlignment, be as TextData, bK as TextNodeStyle, az as TextStyle, aO as Thumbnails, R as ThumbnailsAlignment, T as Type, cw as UnmarkCommentRequest, cd as UpdateCommentRequest, ce as UpdateCommentResponse, bX as UpdateInternalDocumentsEvent, bY as UpdateInternalDocumentsEventOperationOneOf, c4 as VersionedDeleteByIdsOperation, c5 as VersionedDocumentId, c3 as VersionedDocumentUpdateOperation, ab as VersioningMode, a8 as VerticalAlignment, aI as Video, br as VideoData, bP as VideoResolution, V as ViewMode, _ as ViewRole, $ as VoteRole, bV as VoteSummary, ag as WebhookIdentityType, I as Width, W as WidthType } from './comments-v2-comment-comments.universal-kzUoSqmO.mjs';
2
+ import { C as Comment, U as UpdateComment, M as ModerateDraftContentOptions, a as ModerateDraftContentResponse, b as CommentsQueryBuilder, c as MarkCommentResponse, d as UnmarkCommentResponse, H as HideCommentResponse, P as PublishCommentResponse, e as CountCommentsOptions, f as CountCommentsResponse, L as ListCommentsByResourceOptions, g as ListCommentsByResourceResponse, G as GetCommentThreadOptions, h as GetCommentThreadResponse, B as BulkPublishCommentOptions, i as BulkPublishCommentResponse, j as BulkHideCommentOptions, k as BulkHideCommentResponse, l as BulkDeleteCommentOptions, m as BulkDeleteCommentResponse, n as BulkModerateDraftContentOptions, o as BulkModerateDraftContentResponse, p as BulkMoveCommentByFilterOptions, q as BulkMoveCommentByFilterResponse, r as CommentContentChangedEnvelope, s as CommentHiddenEnvelope, t as CommentMarkedEnvelope, u as CommentMovedEnvelope, v as CommentPublishedEnvelope, w as CommentUnmarkedEnvelope, x as CommentCreatedEnvelope, y as CommentResourceCommentCountChangedEnvelope, z as CommentUpdatedEnvelope } from './comments-v2-comment-comments.universal-BVp9019z.mjs';
3
+ export { ac as Action, cU as ActionEvent, J as Alignment, bh as AnchorData, bn as AppEmbedData, bo as AppEmbedDataAppDataOneOf, a5 as AppType, bN as Attachment, bO as AttachmentMediaOneOf, bC as AudioData, b7 as Background, b8 as BackgroundBackgroundOneOf, a2 as BackgroundType, cY as BaseEventMetadata, bF as BlockquoteData, bp as BookingData, an as Border, bA as BorderColors, cJ as BulkDeleteCommentRequest, cI as BulkHideCommentRequest, cK as BulkModerateDraftContentRequest, cL as BulkMoveCommentByFilterRequest, cH as BulkPublishCommentRequest, bE as BulletedListData, am as ButtonData, bG as CaptionData, bz as CellStyle, ay as CodeBlockData, bv as CollapsibleListData, bi as ColorData, ao as Colors, bS as CommentAuthor, bT as CommentAuthorIdentityOneOf, ah as CommentContent, cf as CommentContentChanged, ci as CommentDeleted, cl as CommentHidden, cv as CommentMarked, c6 as CommentModerated, cN as CommentMoved, ck as CommentPublished, bW as CommentReactionSummary, cC as CommentSort, cx as CommentUnmarked, c_ as CommentsQueryResult, c8 as ContactDetails, bQ as ContentAuthor, bR as ContentAuthorAuthorOneOf, cA as CountCommentsRequest, c7 as CreateCommentRequest, c9 as CreateCommentResponse, Q as Crop, cq as CursorPaging, cs as CursorPagingMetadata, cn as CursorQuery, co as CursorQueryPagingMethodOneOf, ct as Cursors, bf as Decoration, bg as DecorationDataOneOf, a3 as DecorationType, c0 as DeleteByFilterOperation, b$ as DeleteByIdsOperation, cg as DeleteCommentRequest, ch as DeleteCommentResponse, bd as Design, cM as Destination, bx as Dimensions, a7 as Direction, aA as DividerData, bJ as DocumentStyle, cO as DomainEvent, cP as DomainEventBodyOneOf, bt as EmbedData, cQ as EntityCreatedEvent, cT as EntityDeletedEvent, cS as EntityUpdatedEvent, bq as EventData, cZ as EventMetadata, aB as FileData, aC as FileSource, aD as FileSourceDataOneOf, bl as FontSizeData, a4 as FontType, aQ as GIF, aP as GIFData, S as GIFType, aF as GalleryData, aL as GalleryOptions, cb as GetCommentRequest, cc as GetCommentResponse, cG as GetCommentThreadRequest, b6 as Gradient, aS as HTMLData, aT as HTMLDataDataOneOf, aR as HeadingData, at as Height, cy as HideCommentRequest, cW as IdentificationData, cX as IdentificationDataIdOneOf, aH as Image, aU as ImageData, aW as ImageDataStyles, a6 as InitialExpandedItems, bZ as InternalDocument, c1 as InternalDocumentUpdateByFilterOperation, b_ as InternalDocumentUpdateOperation, c2 as InternalUpdateExistingOperation, aJ as Item, aK as ItemDataOneOf, aN as ItemStyle, aM as Layout, bH as LayoutCellData, K as LayoutType, F as LineStyle, av as Link, bj as LinkData, aw as LinkDataOneOf, aX as LinkPreviewData, aY as LinkPreviewDataStyles, cE as ListCommentsByResourceCursorPaging, cB as ListCommentsByResourceRequest, bB as ListValue, aZ as MapData, a_ as MapSettings, Z as MapType, cu as MarkCommentRequest, aG as Media, bL as Mention, bk as MentionData, bM as MentionIdentityOneOf, cV as MessageEnvelope, bI as Metadata, cj as ModerateDraftContentRequest, aj as Node, ak as NodeDataOneOf, al as NodeStyle, N as NodeType, a9 as NullValue, bu as Oembed, b2 as Option, ba as OptionDesign, b5 as OptionLayout, ae as Order, bD as OrderedListData, O as Orientation, aE as PDFSettings, a$ as ParagraphData, bU as ParentComment, b1 as Permissions, bs as PlaybackOptions, ap as PluginContainerData, A as PluginContainerDataAlignment, aq as PluginContainerDataWidth, ar as PluginContainerDataWidthDataOneOf, bb as Poll, b0 as PollData, bc as PollDataLayout, b9 as PollDesign, b4 as PollLayout, a1 as PollLayoutDirection, a0 as PollLayoutType, Y as Position, cz as PublishCommentRequest, cm as QueryCommentsRequest, cr as QueryCommentsResponse, ax as Rel, cF as RepliesListResponse, cD as ReplySort, af as ReplySortOrder, ca as ResourceCommentCountChanged, cR as RestoreInfo, ai as RichContent, b3 as Settings, ad as SortOrder, cp as Sorting, X as Source, as as Spoiler, bm as SpoilerData, aa as Status, au as Styles, aV as StylesBorder, by as TableCellData, bw as TableData, D as Target, E as TextAlignment, be as TextData, bK as TextNodeStyle, az as TextStyle, aO as Thumbnails, R as ThumbnailsAlignment, T as Type, cw as UnmarkCommentRequest, cd as UpdateCommentRequest, ce as UpdateCommentResponse, bX as UpdateInternalDocumentsEvent, bY as UpdateInternalDocumentsEventOperationOneOf, c4 as VersionedDeleteByIdsOperation, c5 as VersionedDocumentId, c3 as VersionedDocumentUpdateOperation, ab as VersioningMode, a8 as VerticalAlignment, aI as Video, br as VideoData, bP as VideoResolution, V as ViewMode, _ as ViewRole, $ as VoteRole, bV as VoteSummary, ag as WebhookIdentityType, I as Width, W as WidthType } from './comments-v2-comment-comments.universal-BVp9019z.mjs';
4
4
 
5
5
  declare function createComment$1(httpClient: HttpClient): CreateCommentSignature;
6
6
  interface CreateCommentSignature {
@@ -2657,6 +2657,8 @@ var DecorationType = /* @__PURE__ */ ((DecorationType2) => {
2657
2657
  DecorationType2["FONT_SIZE"] = "FONT_SIZE";
2658
2658
  DecorationType2["EXTERNAL"] = "EXTERNAL";
2659
2659
  DecorationType2["STRIKETHROUGH"] = "STRIKETHROUGH";
2660
+ DecorationType2["SUPERSCRIPT"] = "SUPERSCRIPT";
2661
+ DecorationType2["SUBSCRIPT"] = "SUBSCRIPT";
2660
2662
  return DecorationType2;
2661
2663
  })(DecorationType || {});
2662
2664
  var FontType = /* @__PURE__ */ ((FontType2) => {