@wix/auto_sdk_comments_comments 1.0.46 → 1.0.48

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (37) hide show
  1. package/build/cjs/index.d.ts +1 -1
  2. package/build/cjs/index.js +159 -2
  3. package/build/cjs/index.js.map +1 -1
  4. package/build/cjs/index.typings.d.ts +31 -3
  5. package/build/cjs/index.typings.js +99 -2
  6. package/build/cjs/index.typings.js.map +1 -1
  7. package/build/cjs/meta.d.ts +25 -3
  8. package/build/cjs/meta.js +91 -0
  9. package/build/cjs/meta.js.map +1 -1
  10. package/build/es/index.d.mts +1 -1
  11. package/build/es/index.mjs +157 -1
  12. package/build/es/index.mjs.map +1 -1
  13. package/build/es/index.typings.d.mts +31 -3
  14. package/build/es/index.typings.mjs +97 -1
  15. package/build/es/index.typings.mjs.map +1 -1
  16. package/build/es/meta.d.mts +25 -3
  17. package/build/es/meta.mjs +91 -0
  18. package/build/es/meta.mjs.map +1 -1
  19. package/build/internal/cjs/index.d.ts +1 -1
  20. package/build/internal/cjs/index.js +159 -2
  21. package/build/internal/cjs/index.js.map +1 -1
  22. package/build/internal/cjs/index.typings.d.ts +31 -3
  23. package/build/internal/cjs/index.typings.js +99 -2
  24. package/build/internal/cjs/index.typings.js.map +1 -1
  25. package/build/internal/cjs/meta.d.ts +25 -3
  26. package/build/internal/cjs/meta.js +91 -0
  27. package/build/internal/cjs/meta.js.map +1 -1
  28. package/build/internal/es/index.d.mts +1 -1
  29. package/build/internal/es/index.mjs +157 -1
  30. package/build/internal/es/index.mjs.map +1 -1
  31. package/build/internal/es/index.typings.d.mts +31 -3
  32. package/build/internal/es/index.typings.mjs +97 -1
  33. package/build/internal/es/index.typings.mjs.map +1 -1
  34. package/build/internal/es/meta.d.mts +25 -3
  35. package/build/internal/es/meta.mjs +91 -0
  36. package/build/internal/es/meta.mjs.map +1 -1
  37. package/package.json +4 -4
@@ -1,3 +1,4 @@
1
+ import * as _wix_sdk_types from '@wix/sdk-types';
1
2
  import { QuerySpec, Query, NonNullablePaths } from '@wix/sdk-types';
2
3
 
3
4
  /**
@@ -196,6 +197,8 @@ interface Node extends NodeDataOneOf {
196
197
  layoutData?: LayoutData;
197
198
  /** Data for a cell node. */
198
199
  layoutCellData?: LayoutCellData;
200
+ /** Data for a shape node. */
201
+ shapeData?: ShapeData;
199
202
  /** Node type. Use `APP_EMBED` for nodes that embed content from other Wix apps. Use `EMBED` to embed content in [oEmbed](https://oembed.com/) format. */
200
203
  type?: NodeTypeWithLiterals;
201
204
  /** Node ID. */
@@ -263,6 +266,8 @@ interface NodeDataOneOf {
263
266
  layoutData?: LayoutData;
264
267
  /** Data for a cell node. */
265
268
  layoutCellData?: LayoutCellData;
269
+ /** Data for a shape node. */
270
+ shapeData?: ShapeData;
266
271
  }
267
272
  declare enum NodeType {
268
273
  PARAGRAPH = "PARAGRAPH",
@@ -298,10 +303,11 @@ declare enum NodeType {
298
303
  AUDIO = "AUDIO",
299
304
  CAPTION = "CAPTION",
300
305
  LAYOUT = "LAYOUT",
301
- LAYOUT_CELL = "LAYOUT_CELL"
306
+ LAYOUT_CELL = "LAYOUT_CELL",
307
+ SHAPE = "SHAPE"
302
308
  }
303
309
  /** @enumType */
304
- type NodeTypeWithLiterals = NodeType | 'PARAGRAPH' | 'TEXT' | 'HEADING' | 'BULLETED_LIST' | 'ORDERED_LIST' | 'LIST_ITEM' | 'BLOCKQUOTE' | 'CODE_BLOCK' | 'VIDEO' | 'DIVIDER' | 'FILE' | 'GALLERY' | 'GIF' | 'HTML' | 'IMAGE' | 'LINK_PREVIEW' | 'MAP' | 'POLL' | 'APP_EMBED' | 'BUTTON' | 'COLLAPSIBLE_LIST' | 'TABLE' | 'EMBED' | 'COLLAPSIBLE_ITEM' | 'COLLAPSIBLE_ITEM_TITLE' | 'COLLAPSIBLE_ITEM_BODY' | 'TABLE_CELL' | 'TABLE_ROW' | 'EXTERNAL' | 'AUDIO' | 'CAPTION' | 'LAYOUT' | 'LAYOUT_CELL';
310
+ type NodeTypeWithLiterals = NodeType | 'PARAGRAPH' | 'TEXT' | 'HEADING' | 'BULLETED_LIST' | 'ORDERED_LIST' | 'LIST_ITEM' | 'BLOCKQUOTE' | 'CODE_BLOCK' | 'VIDEO' | 'DIVIDER' | 'FILE' | 'GALLERY' | 'GIF' | 'HTML' | 'IMAGE' | 'LINK_PREVIEW' | 'MAP' | 'POLL' | 'APP_EMBED' | 'BUTTON' | 'COLLAPSIBLE_LIST' | 'TABLE' | 'EMBED' | 'COLLAPSIBLE_ITEM' | 'COLLAPSIBLE_ITEM_TITLE' | 'COLLAPSIBLE_ITEM_BODY' | 'TABLE_CELL' | 'TABLE_ROW' | 'EXTERNAL' | 'AUDIO' | 'CAPTION' | 'LAYOUT' | 'LAYOUT_CELL' | 'SHAPE';
305
311
  interface NodeStyle {
306
312
  /** The top padding value in pixels. */
307
313
  paddingTop?: string | null;
@@ -1968,6 +1974,23 @@ interface LayoutCellData {
1968
1974
  /** Size of the cell in 12 columns grid. */
1969
1975
  colSpan?: number | null;
1970
1976
  }
1977
+ interface ShapeData {
1978
+ /** Styling for the shape's container. */
1979
+ containerData?: PluginContainerData;
1980
+ /** Shape file details. */
1981
+ shape?: Media;
1982
+ /** Styling for the shape. */
1983
+ styles?: ShapeDataStyles;
1984
+ }
1985
+ interface ShapeDataStyles {
1986
+ /**
1987
+ * Shape fill color as a hexadecimal value.
1988
+ * @format COLOR_HEX
1989
+ */
1990
+ color?: string | null;
1991
+ /** Map of original color keys to their new color values. */
1992
+ colors?: Record<string, string>;
1993
+ }
1971
1994
  interface Metadata {
1972
1995
  /** Schema version. */
1973
1996
  version?: number;
@@ -3829,6 +3852,11 @@ type CommentQuery = {
3829
3852
  order?: NonNullable<CommonQueryWithEntityContext['sort']>[number]['order'];
3830
3853
  }[];
3831
3854
  };
3855
+ declare const utils: {
3856
+ QueryBuilder: () => _wix_sdk_types.QueryBuilder<Comment, CommentQuerySpec, CommentQuery>;
3857
+ Filter: _wix_sdk_types.FilterFactory<Comment, CommentQuerySpec>;
3858
+ Sort: _wix_sdk_types.SortFactory<CommentQuerySpec>;
3859
+ };
3832
3860
  /**
3833
3861
  * Sets `marked` to `TRUE` to mark a comment.
3834
3862
  *
@@ -4052,4 +4080,4 @@ interface BulkMoveCommentByFilterOptions {
4052
4080
  destination?: Destination;
4053
4081
  }
4054
4082
 
4055
- export { type AccountInfo, type AccountInfoMetadata, Action, type ActionEvent, type ActionWithLiterals, Alignment, type AlignmentWithLiterals, type AnchorData, type App, type AppEmbedData, type AppEmbedDataAppDataOneOf, AppType, type AppTypeWithLiterals, AspectRatio, type AspectRatioWithLiterals, type Attachment, type AttachmentMediaOneOf, type AudioData, type Background, type BackgroundBackgroundOneOf, type BackgroundImage, BackgroundType, type BackgroundTypeWithLiterals, type BaseEventMetadata, type BlockquoteData, type BookingData, type Border, type BorderColors, type BorderWidths, 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 CommentQuery, type CommentQuerySpec, type CommentReactionSummary, type CommentResourceCommentCountChangedEnvelope, type CommentSort, type CommentUnmarked, type CommentUnmarkedEnvelope, type CommentUpdatedEnvelope, type CommentsQueryBuilder, type CommentsQueryResult, type CommonQueryWithEntityContext, 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 CustomTag, type Decoration, type DecorationDataOneOf, DecorationType, type DecorationTypeWithLiterals, type DeleteByFilterOperation, type DeleteByIdsOperation, type DeleteCommentRequest, type DeleteCommentResponse, type Design, DesignTarget, type DesignTargetWithLiterals, type Destination, type Dimensions, Direction, type DirectionWithLiterals, type DividerData, DividerDataAlignment, type DividerDataAlignmentWithLiterals, type DocumentStyle, type DomainEvent, type DomainEventBodyOneOf, type EmbedData, type Empty, type EntityCreatedEvent, type EntityDeletedEvent, type EntityUpdatedEvent, type EventData, type EventMetadata, type File, type FileData, type FileSource, type FileSourceDataOneOf, type FontFamilyData, 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, ImagePosition, type ImagePositionWithLiterals, type ImageStyles, InitialExpandedItems, type InitialExpandedItemsWithLiterals, type InternalDocument, type InternalDocumentUpdateByFilterOperation, type InternalDocumentUpdateOperation, type InternalUpdateExistingOperation, type InvalidateCache, type InvalidateCacheGetByOneOf, type Item, type ItemDataOneOf, type ItemStyle, Layout, type LayoutCellData, type LayoutData, 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 Page, 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 QueryCommentsOptions, type QueryCommentsRequest, type QueryCommentsResponse, type Rel, type RepliesListResponse, type ReplySort, ReplySortOrder, type ReplySortOrderWithLiterals, Resizing, type ResizingWithLiterals, type ResourceCommentCountChanged, ResponsivenessBehaviour, type ResponsivenessBehaviourWithLiterals, type RestoreInfo, type RibbonStyles, type RichContent, Scaling, type ScalingWithLiterals, 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 URI, 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, VerticalAlignmentAlignment, type VerticalAlignmentAlignmentWithLiterals, 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, typedQueryComments, unmarkComment, updateComment };
4083
+ export { type AccountInfo, type AccountInfoMetadata, Action, type ActionEvent, type ActionWithLiterals, Alignment, type AlignmentWithLiterals, type AnchorData, type App, type AppEmbedData, type AppEmbedDataAppDataOneOf, AppType, type AppTypeWithLiterals, AspectRatio, type AspectRatioWithLiterals, type Attachment, type AttachmentMediaOneOf, type AudioData, type Background, type BackgroundBackgroundOneOf, type BackgroundImage, BackgroundType, type BackgroundTypeWithLiterals, type BaseEventMetadata, type BlockquoteData, type BookingData, type Border, type BorderColors, type BorderWidths, 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 CommentQuery, type CommentQuerySpec, type CommentReactionSummary, type CommentResourceCommentCountChangedEnvelope, type CommentSort, type CommentUnmarked, type CommentUnmarkedEnvelope, type CommentUpdatedEnvelope, type CommentsQueryBuilder, type CommentsQueryResult, type CommonQueryWithEntityContext, 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 CustomTag, type Decoration, type DecorationDataOneOf, DecorationType, type DecorationTypeWithLiterals, type DeleteByFilterOperation, type DeleteByIdsOperation, type DeleteCommentRequest, type DeleteCommentResponse, type Design, DesignTarget, type DesignTargetWithLiterals, type Destination, type Dimensions, Direction, type DirectionWithLiterals, type DividerData, DividerDataAlignment, type DividerDataAlignmentWithLiterals, type DocumentStyle, type DomainEvent, type DomainEventBodyOneOf, type EmbedData, type Empty, type EntityCreatedEvent, type EntityDeletedEvent, type EntityUpdatedEvent, type EventData, type EventMetadata, type File, type FileData, type FileSource, type FileSourceDataOneOf, type FontFamilyData, 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, ImagePosition, type ImagePositionWithLiterals, type ImageStyles, InitialExpandedItems, type InitialExpandedItemsWithLiterals, type InternalDocument, type InternalDocumentUpdateByFilterOperation, type InternalDocumentUpdateOperation, type InternalUpdateExistingOperation, type InvalidateCache, type InvalidateCacheGetByOneOf, type Item, type ItemDataOneOf, type ItemStyle, Layout, type LayoutCellData, type LayoutData, 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 Page, 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 QueryCommentsOptions, type QueryCommentsRequest, type QueryCommentsResponse, type Rel, type RepliesListResponse, type ReplySort, ReplySortOrder, type ReplySortOrderWithLiterals, Resizing, type ResizingWithLiterals, type ResourceCommentCountChanged, ResponsivenessBehaviour, type ResponsivenessBehaviourWithLiterals, type RestoreInfo, type RibbonStyles, type RichContent, Scaling, type ScalingWithLiterals, type Settings, type ShapeData, type ShapeDataStyles, 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 URI, 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, VerticalAlignmentAlignment, type VerticalAlignmentAlignmentWithLiterals, 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, typedQueryComments, unmarkComment, updateComment, utils };
@@ -141,6 +141,9 @@ function createComment(payload) {
141
141
  {
142
142
  path: "comment.content.richContent.nodes.layoutData.backdropImage.media.duration"
143
143
  },
144
+ {
145
+ path: "comment.content.richContent.nodes.shapeData.shape.duration"
146
+ },
144
147
  {
145
148
  path: "comment.draftContent.richContent.nodes.galleryData.items.image.media.duration"
146
149
  },
@@ -191,6 +194,9 @@ function createComment(payload) {
191
194
  },
192
195
  {
193
196
  path: "comment.draftContent.richContent.nodes.layoutData.backdropImage.media.duration"
197
+ },
198
+ {
199
+ path: "comment.draftContent.richContent.nodes.shapeData.shape.duration"
194
200
  }
195
201
  ]
196
202
  }
@@ -306,6 +312,9 @@ function createComment(payload) {
306
312
  {
307
313
  path: "comment.content.richContent.nodes.layoutData.backdropImage.media.duration"
308
314
  },
315
+ {
316
+ path: "comment.content.richContent.nodes.shapeData.shape.duration"
317
+ },
309
318
  {
310
319
  path: "comment.draftContent.richContent.nodes.galleryData.items.image.media.duration"
311
320
  },
@@ -356,6 +365,9 @@ function createComment(payload) {
356
365
  },
357
366
  {
358
367
  path: "comment.draftContent.richContent.nodes.layoutData.backdropImage.media.duration"
368
+ },
369
+ {
370
+ path: "comment.draftContent.richContent.nodes.shapeData.shape.duration"
359
371
  }
360
372
  ]
361
373
  }
@@ -478,6 +490,9 @@ function getComment(payload) {
478
490
  {
479
491
  path: "comment.content.richContent.nodes.layoutData.backdropImage.media.duration"
480
492
  },
493
+ {
494
+ path: "comment.content.richContent.nodes.shapeData.shape.duration"
495
+ },
481
496
  {
482
497
  path: "comment.draftContent.richContent.nodes.galleryData.items.image.media.duration"
483
498
  },
@@ -528,6 +543,9 @@ function getComment(payload) {
528
543
  },
529
544
  {
530
545
  path: "comment.draftContent.richContent.nodes.layoutData.backdropImage.media.duration"
546
+ },
547
+ {
548
+ path: "comment.draftContent.richContent.nodes.shapeData.shape.duration"
531
549
  }
532
550
  ]
533
551
  }
@@ -624,6 +642,9 @@ function updateComment(payload) {
624
642
  {
625
643
  path: "comment.content.richContent.nodes.layoutData.backdropImage.media.duration"
626
644
  },
645
+ {
646
+ path: "comment.content.richContent.nodes.shapeData.shape.duration"
647
+ },
627
648
  {
628
649
  path: "comment.draftContent.richContent.nodes.galleryData.items.image.media.duration"
629
650
  },
@@ -674,6 +695,9 @@ function updateComment(payload) {
674
695
  },
675
696
  {
676
697
  path: "comment.draftContent.richContent.nodes.layoutData.backdropImage.media.duration"
698
+ },
699
+ {
700
+ path: "comment.draftContent.richContent.nodes.shapeData.shape.duration"
677
701
  }
678
702
  ]
679
703
  }
@@ -789,6 +813,9 @@ function updateComment(payload) {
789
813
  {
790
814
  path: "comment.content.richContent.nodes.layoutData.backdropImage.media.duration"
791
815
  },
816
+ {
817
+ path: "comment.content.richContent.nodes.shapeData.shape.duration"
818
+ },
792
819
  {
793
820
  path: "comment.draftContent.richContent.nodes.galleryData.items.image.media.duration"
794
821
  },
@@ -839,6 +866,9 @@ function updateComment(payload) {
839
866
  },
840
867
  {
841
868
  path: "comment.draftContent.richContent.nodes.layoutData.backdropImage.media.duration"
869
+ },
870
+ {
871
+ path: "comment.draftContent.richContent.nodes.shapeData.shape.duration"
842
872
  }
843
873
  ]
844
874
  }
@@ -982,6 +1012,9 @@ function moderateDraftContent(payload) {
982
1012
  {
983
1013
  path: "comment.content.richContent.nodes.layoutData.backdropImage.media.duration"
984
1014
  },
1015
+ {
1016
+ path: "comment.content.richContent.nodes.shapeData.shape.duration"
1017
+ },
985
1018
  {
986
1019
  path: "comment.draftContent.richContent.nodes.galleryData.items.image.media.duration"
987
1020
  },
@@ -1032,6 +1065,9 @@ function moderateDraftContent(payload) {
1032
1065
  },
1033
1066
  {
1034
1067
  path: "comment.draftContent.richContent.nodes.layoutData.backdropImage.media.duration"
1068
+ },
1069
+ {
1070
+ path: "comment.draftContent.richContent.nodes.shapeData.shape.duration"
1035
1071
  }
1036
1072
  ]
1037
1073
  }
@@ -1158,6 +1194,9 @@ function queryComments(payload) {
1158
1194
  {
1159
1195
  path: "comments.content.richContent.nodes.layoutData.backdropImage.media.duration"
1160
1196
  },
1197
+ {
1198
+ path: "comments.content.richContent.nodes.shapeData.shape.duration"
1199
+ },
1161
1200
  {
1162
1201
  path: "comments.draftContent.richContent.nodes.galleryData.items.image.media.duration"
1163
1202
  },
@@ -1208,6 +1247,9 @@ function queryComments(payload) {
1208
1247
  },
1209
1248
  {
1210
1249
  path: "comments.draftContent.richContent.nodes.layoutData.backdropImage.media.duration"
1250
+ },
1251
+ {
1252
+ path: "comments.draftContent.richContent.nodes.shapeData.shape.duration"
1211
1253
  }
1212
1254
  ]
1213
1255
  }
@@ -1330,6 +1372,9 @@ function markComment(payload) {
1330
1372
  {
1331
1373
  path: "comment.content.richContent.nodes.layoutData.backdropImage.media.duration"
1332
1374
  },
1375
+ {
1376
+ path: "comment.content.richContent.nodes.shapeData.shape.duration"
1377
+ },
1333
1378
  {
1334
1379
  path: "comment.draftContent.richContent.nodes.galleryData.items.image.media.duration"
1335
1380
  },
@@ -1380,6 +1425,9 @@ function markComment(payload) {
1380
1425
  },
1381
1426
  {
1382
1427
  path: "comment.draftContent.richContent.nodes.layoutData.backdropImage.media.duration"
1428
+ },
1429
+ {
1430
+ path: "comment.draftContent.richContent.nodes.shapeData.shape.duration"
1383
1431
  }
1384
1432
  ]
1385
1433
  }
@@ -1502,6 +1550,9 @@ function unmarkComment(payload) {
1502
1550
  {
1503
1551
  path: "comment.content.richContent.nodes.layoutData.backdropImage.media.duration"
1504
1552
  },
1553
+ {
1554
+ path: "comment.content.richContent.nodes.shapeData.shape.duration"
1555
+ },
1505
1556
  {
1506
1557
  path: "comment.draftContent.richContent.nodes.galleryData.items.image.media.duration"
1507
1558
  },
@@ -1552,6 +1603,9 @@ function unmarkComment(payload) {
1552
1603
  },
1553
1604
  {
1554
1605
  path: "comment.draftContent.richContent.nodes.layoutData.backdropImage.media.duration"
1606
+ },
1607
+ {
1608
+ path: "comment.draftContent.richContent.nodes.shapeData.shape.duration"
1555
1609
  }
1556
1610
  ]
1557
1611
  }
@@ -1674,6 +1728,9 @@ function hideComment(payload) {
1674
1728
  {
1675
1729
  path: "comment.content.richContent.nodes.layoutData.backdropImage.media.duration"
1676
1730
  },
1731
+ {
1732
+ path: "comment.content.richContent.nodes.shapeData.shape.duration"
1733
+ },
1677
1734
  {
1678
1735
  path: "comment.draftContent.richContent.nodes.galleryData.items.image.media.duration"
1679
1736
  },
@@ -1724,6 +1781,9 @@ function hideComment(payload) {
1724
1781
  },
1725
1782
  {
1726
1783
  path: "comment.draftContent.richContent.nodes.layoutData.backdropImage.media.duration"
1784
+ },
1785
+ {
1786
+ path: "comment.draftContent.richContent.nodes.shapeData.shape.duration"
1727
1787
  }
1728
1788
  ]
1729
1789
  }
@@ -1846,6 +1906,9 @@ function publishComment(payload) {
1846
1906
  {
1847
1907
  path: "comment.content.richContent.nodes.layoutData.backdropImage.media.duration"
1848
1908
  },
1909
+ {
1910
+ path: "comment.content.richContent.nodes.shapeData.shape.duration"
1911
+ },
1849
1912
  {
1850
1913
  path: "comment.draftContent.richContent.nodes.galleryData.items.image.media.duration"
1851
1914
  },
@@ -1896,6 +1959,9 @@ function publishComment(payload) {
1896
1959
  },
1897
1960
  {
1898
1961
  path: "comment.draftContent.richContent.nodes.layoutData.backdropImage.media.duration"
1962
+ },
1963
+ {
1964
+ path: "comment.draftContent.richContent.nodes.shapeData.shape.duration"
1899
1965
  }
1900
1966
  ]
1901
1967
  }
@@ -2090,6 +2156,9 @@ function listCommentsByResource(payload) {
2090
2156
  {
2091
2157
  path: "comments.content.richContent.nodes.layoutData.backdropImage.media.duration"
2092
2158
  },
2159
+ {
2160
+ path: "comments.content.richContent.nodes.shapeData.shape.duration"
2161
+ },
2093
2162
  {
2094
2163
  path: "comments.draftContent.richContent.nodes.galleryData.items.image.media.duration"
2095
2164
  },
@@ -2141,6 +2210,9 @@ function listCommentsByResource(payload) {
2141
2210
  {
2142
2211
  path: "comments.draftContent.richContent.nodes.layoutData.backdropImage.media.duration"
2143
2212
  },
2213
+ {
2214
+ path: "comments.draftContent.richContent.nodes.shapeData.shape.duration"
2215
+ },
2144
2216
  {
2145
2217
  path: "commentReplies.*.replies.content.richContent.nodes.galleryData.items.image.media.duration"
2146
2218
  },
@@ -2192,6 +2264,9 @@ function listCommentsByResource(payload) {
2192
2264
  {
2193
2265
  path: "commentReplies.*.replies.content.richContent.nodes.layoutData.backdropImage.media.duration"
2194
2266
  },
2267
+ {
2268
+ path: "commentReplies.*.replies.content.richContent.nodes.shapeData.shape.duration"
2269
+ },
2195
2270
  {
2196
2271
  path: "commentReplies.*.replies.draftContent.richContent.nodes.galleryData.items.image.media.duration"
2197
2272
  },
@@ -2242,6 +2317,9 @@ function listCommentsByResource(payload) {
2242
2317
  },
2243
2318
  {
2244
2319
  path: "commentReplies.*.replies.draftContent.richContent.nodes.layoutData.backdropImage.media.duration"
2320
+ },
2321
+ {
2322
+ path: "commentReplies.*.replies.draftContent.richContent.nodes.shapeData.shape.duration"
2245
2323
  }
2246
2324
  ]
2247
2325
  }
@@ -2415,6 +2493,9 @@ function getCommentThread(payload) {
2415
2493
  {
2416
2494
  path: "comments.content.richContent.nodes.layoutData.backdropImage.media.duration"
2417
2495
  },
2496
+ {
2497
+ path: "comments.content.richContent.nodes.shapeData.shape.duration"
2498
+ },
2418
2499
  {
2419
2500
  path: "comments.draftContent.richContent.nodes.galleryData.items.image.media.duration"
2420
2501
  },
@@ -2466,6 +2547,9 @@ function getCommentThread(payload) {
2466
2547
  {
2467
2548
  path: "comments.draftContent.richContent.nodes.layoutData.backdropImage.media.duration"
2468
2549
  },
2550
+ {
2551
+ path: "comments.draftContent.richContent.nodes.shapeData.shape.duration"
2552
+ },
2469
2553
  {
2470
2554
  path: "commentReplies.*.replies.content.richContent.nodes.galleryData.items.image.media.duration"
2471
2555
  },
@@ -2517,6 +2601,9 @@ function getCommentThread(payload) {
2517
2601
  {
2518
2602
  path: "commentReplies.*.replies.content.richContent.nodes.layoutData.backdropImage.media.duration"
2519
2603
  },
2604
+ {
2605
+ path: "commentReplies.*.replies.content.richContent.nodes.shapeData.shape.duration"
2606
+ },
2520
2607
  {
2521
2608
  path: "commentReplies.*.replies.draftContent.richContent.nodes.galleryData.items.image.media.duration"
2522
2609
  },
@@ -2567,6 +2654,9 @@ function getCommentThread(payload) {
2567
2654
  },
2568
2655
  {
2569
2656
  path: "commentReplies.*.replies.draftContent.richContent.nodes.layoutData.backdropImage.media.duration"
2657
+ },
2658
+ {
2659
+ path: "commentReplies.*.replies.draftContent.richContent.nodes.shapeData.shape.duration"
2570
2660
  }
2571
2661
  ]
2572
2662
  }
@@ -2692,6 +2782,7 @@ import { transformRESTVideoV2ToSDKVideoV2 } from "@wix/sdk-runtime/transformatio
2692
2782
  import { transformSDKDocumentToRESTDocument } from "@wix/sdk-runtime/transformations/document";
2693
2783
  import { transformRESTDocumentToSDKDocument } from "@wix/sdk-runtime/transformations/document";
2694
2784
  import { transformPaths as transformPaths2 } from "@wix/sdk-runtime/transformations/transform-paths";
2785
+ import { createQueryUtils } from "@wix/sdk-runtime/query-builder-utils";
2695
2786
  var NodeType = /* @__PURE__ */ ((NodeType2) => {
2696
2787
  NodeType2["PARAGRAPH"] = "PARAGRAPH";
2697
2788
  NodeType2["TEXT"] = "TEXT";
@@ -2726,6 +2817,7 @@ var NodeType = /* @__PURE__ */ ((NodeType2) => {
2726
2817
  NodeType2["CAPTION"] = "CAPTION";
2727
2818
  NodeType2["LAYOUT"] = "LAYOUT";
2728
2819
  NodeType2["LAYOUT_CELL"] = "LAYOUT_CELL";
2820
+ NodeType2["SHAPE"] = "SHAPE";
2729
2821
  return NodeType2;
2730
2822
  })(NodeType || {});
2731
2823
  var WidthType = /* @__PURE__ */ ((WidthType2) => {
@@ -3503,6 +3595,9 @@ async function typedQueryComments(query, options) {
3503
3595
  throw transformedError;
3504
3596
  }
3505
3597
  }
3598
+ var utils = {
3599
+ ...createQueryUtils()
3600
+ };
3506
3601
  async function markComment2(commentId) {
3507
3602
  const { httpClient, sideEffects } = arguments[1];
3508
3603
  const payload = renameKeysFromSDKRequestToRESTRequest(
@@ -4137,6 +4232,7 @@ export {
4137
4232
  queryComments2 as queryComments,
4138
4233
  typedQueryComments,
4139
4234
  unmarkComment2 as unmarkComment,
4140
- updateComment2 as updateComment
4235
+ updateComment2 as updateComment,
4236
+ utils
4141
4237
  };
4142
4238
  //# sourceMappingURL=index.typings.mjs.map