@wix/auto_sdk_comments_comments 1.0.30 → 1.0.32

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 +326 -0
  3. package/build/cjs/index.js.map +1 -1
  4. package/build/cjs/index.typings.d.ts +112 -5
  5. package/build/cjs/index.typings.js +218 -0
  6. package/build/cjs/index.typings.js.map +1 -1
  7. package/build/cjs/meta.d.ts +112 -5
  8. package/build/cjs/meta.js +218 -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 +322 -0
  12. package/build/es/index.mjs.map +1 -1
  13. package/build/es/index.typings.d.mts +112 -5
  14. package/build/es/index.typings.mjs +214 -0
  15. package/build/es/index.typings.mjs.map +1 -1
  16. package/build/es/meta.d.mts +112 -5
  17. package/build/es/meta.mjs +214 -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 +326 -0
  21. package/build/internal/cjs/index.js.map +1 -1
  22. package/build/internal/cjs/index.typings.d.ts +112 -5
  23. package/build/internal/cjs/index.typings.js +218 -0
  24. package/build/internal/cjs/index.typings.js.map +1 -1
  25. package/build/internal/cjs/meta.d.ts +112 -5
  26. package/build/internal/cjs/meta.js +218 -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 +322 -0
  30. package/build/internal/es/index.mjs.map +1 -1
  31. package/build/internal/es/index.typings.d.mts +112 -5
  32. package/build/internal/es/index.typings.mjs +214 -0
  33. package/build/internal/es/index.typings.mjs.map +1 -1
  34. package/build/internal/es/meta.d.mts +112 -5
  35. package/build/internal/es/meta.mjs +214 -0
  36. package/build/internal/es/meta.mjs.map +1 -1
  37. package/package.json +2 -2
@@ -192,7 +192,9 @@ interface Node extends NodeDataOneOf {
192
192
  blockquoteData?: BlockquoteData;
193
193
  /** Data for a caption node. */
194
194
  captionData?: CaptionData;
195
- /** LayoutData layout_data = 31; // Data for a layout node. Reserved for future use. */
195
+ /** Data for a layout node. Reserved for future use. */
196
+ layoutData?: LayoutData;
197
+ /** Data for a cell node. */
196
198
  layoutCellData?: LayoutCellData;
197
199
  /** 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. */
198
200
  type?: NodeTypeWithLiterals;
@@ -257,7 +259,9 @@ interface NodeDataOneOf {
257
259
  blockquoteData?: BlockquoteData;
258
260
  /** Data for a caption node. */
259
261
  captionData?: CaptionData;
260
- /** LayoutData layout_data = 31; // Data for a layout node. Reserved for future use. */
262
+ /** Data for a layout node. Reserved for future use. */
263
+ layoutData?: LayoutData;
264
+ /** Data for a cell node. */
261
265
  layoutCellData?: LayoutCellData;
262
266
  }
263
267
  declare enum NodeType {
@@ -880,10 +884,11 @@ interface HTMLDataDataOneOf {
880
884
  }
881
885
  declare enum Source {
882
886
  HTML = "HTML",
883
- ADSENSE = "ADSENSE"
887
+ ADSENSE = "ADSENSE",
888
+ AI = "AI"
884
889
  }
885
890
  /** @enumType */
886
- type SourceWithLiterals = Source | 'HTML' | 'ADSENSE';
891
+ type SourceWithLiterals = Source | 'HTML' | 'ADSENSE' | 'AI';
887
892
  interface ImageData {
888
893
  /** Styling for the image's container. */
889
894
  containerData?: PluginContainerData;
@@ -1813,6 +1818,108 @@ interface BlockquoteData {
1813
1818
  interface CaptionData {
1814
1819
  textStyle?: TextStyle;
1815
1820
  }
1821
+ interface LayoutData {
1822
+ /**
1823
+ * Background color as a hexadecimal value.
1824
+ * @format COLOR_HEX
1825
+ */
1826
+ backgroundColor?: string | null;
1827
+ /** Background image. */
1828
+ backgroundImage?: BackgroundImage;
1829
+ /**
1830
+ * Border color as a hexadecimal value.
1831
+ * @format COLOR_HEX
1832
+ */
1833
+ borderColor?: string | null;
1834
+ /** Border width in pixels. */
1835
+ borderWidth?: number | null;
1836
+ /** Border */
1837
+ borderRadius?: number | null;
1838
+ /**
1839
+ * Backdrop color as a hexadecimal value.
1840
+ * @format COLOR_HEX
1841
+ */
1842
+ backdropColor?: string | null;
1843
+ /** Backdrop image.radius in pixels. */
1844
+ backdropImage?: BackgroundImage;
1845
+ /** Backdrop top padding. */
1846
+ backdropPaddingTop?: number | null;
1847
+ /** Backdrop bottom padding */
1848
+ backdropPaddingBottom?: number | null;
1849
+ /** Horizontal and vertical gap between columns */
1850
+ gap?: number | null;
1851
+ /**
1852
+ * Padding in pixels for cells. Follows CSS order: top, right, bottom, left
1853
+ * @maxSize 4
1854
+ */
1855
+ cellPadding?: number[];
1856
+ /** Vertical alignment for the cell's items. */
1857
+ cellVerticalAlignment?: VerticalAlignmentAlignmentWithLiterals;
1858
+ /** Responsiveness behaviour of columns when responsiveness applies. Either stacks or wrappers. */
1859
+ responsivenessBehaviour?: ResponsivenessBehaviourWithLiterals;
1860
+ /** Size in pixels when responsiveness_behaviour applies */
1861
+ responsivenessBreakpoint?: number | null;
1862
+ }
1863
+ declare enum Scaling {
1864
+ /** Auto image scaling */
1865
+ AUTO = "AUTO",
1866
+ /** Contain image scaling */
1867
+ CONTAIN = "CONTAIN",
1868
+ /** Cover image scaling */
1869
+ COVER = "COVER"
1870
+ }
1871
+ /** @enumType */
1872
+ type ScalingWithLiterals = Scaling | 'AUTO' | 'CONTAIN' | 'COVER';
1873
+ declare enum ImagePosition {
1874
+ /** Image positioned at the center */
1875
+ CENTER = "CENTER",
1876
+ /** Image positioned on the left */
1877
+ CENTER_LEFT = "CENTER_LEFT",
1878
+ /** Image positioned on the right */
1879
+ CENTER_RIGHT = "CENTER_RIGHT",
1880
+ /** Image positioned at the center top */
1881
+ TOP = "TOP",
1882
+ /** Image positioned at the top left */
1883
+ TOP_LEFT = "TOP_LEFT",
1884
+ /** Image positioned at the top right */
1885
+ TOP_RIGHT = "TOP_RIGHT",
1886
+ /** Image positioned at the center bottom */
1887
+ BOTTOM = "BOTTOM",
1888
+ /** Image positioned at the bottom left */
1889
+ BOTTOM_LEFT = "BOTTOM_LEFT",
1890
+ /** Image positioned at the bottom right */
1891
+ BOTTOM_RIGHT = "BOTTOM_RIGHT"
1892
+ }
1893
+ /** @enumType */
1894
+ type ImagePositionWithLiterals = ImagePosition | 'CENTER' | 'CENTER_LEFT' | 'CENTER_RIGHT' | 'TOP' | 'TOP_LEFT' | 'TOP_RIGHT' | 'BOTTOM' | 'BOTTOM_LEFT' | 'BOTTOM_RIGHT';
1895
+ interface BackgroundImage {
1896
+ /** Background image. */
1897
+ media?: Media;
1898
+ /** Background image opacity. */
1899
+ opacity?: number | null;
1900
+ /** Background image scaling. */
1901
+ scaling?: ScalingWithLiterals;
1902
+ /** Position of background. Defaults to `CENTER`. */
1903
+ position?: ImagePositionWithLiterals;
1904
+ }
1905
+ declare enum VerticalAlignmentAlignment {
1906
+ /** Top alignment */
1907
+ TOP = "TOP",
1908
+ /** Middle alignment */
1909
+ MIDDLE = "MIDDLE",
1910
+ /** Bottom alignment */
1911
+ BOTTOM = "BOTTOM"
1912
+ }
1913
+ /** @enumType */
1914
+ type VerticalAlignmentAlignmentWithLiterals = VerticalAlignmentAlignment | 'TOP' | 'MIDDLE' | 'BOTTOM';
1915
+ declare enum ResponsivenessBehaviour {
1916
+ /** Stacking of columns */
1917
+ STACK = "STACK",
1918
+ /** Wrapping of columns */
1919
+ WRAP = "WRAP"
1920
+ }
1921
+ /** @enumType */
1922
+ type ResponsivenessBehaviourWithLiterals = ResponsivenessBehaviour | 'STACK' | 'WRAP';
1816
1923
  interface LayoutCellData {
1817
1924
  /** Size of the cell in 12 columns grid. */
1818
1925
  colSpan?: number | null;
@@ -3623,4 +3730,4 @@ interface BulkMoveCommentByFilterOptions {
3623
3730
  destination?: Destination;
3624
3731
  }
3625
3732
 
3626
- 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 };
3733
+ 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, type BackgroundImage, 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, ImagePosition, type ImagePositionWithLiterals, type ImageStyles, InitialExpandedItems, type InitialExpandedItemsWithLiterals, type InternalDocument, type InternalDocumentUpdateByFilterOperation, type InternalDocumentUpdateOperation, type InternalUpdateExistingOperation, 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 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, 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 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, unmarkComment, updateComment };
@@ -32,6 +32,7 @@ __export(index_typings_exports, {
32
32
  DividerDataAlignment: () => DividerDataAlignment,
33
33
  FontType: () => FontType,
34
34
  GIFType: () => GIFType,
35
+ ImagePosition: () => ImagePosition,
35
36
  InitialExpandedItems: () => InitialExpandedItems,
36
37
  Layout: () => Layout,
37
38
  LayoutType: () => LayoutType,
@@ -48,6 +49,8 @@ __export(index_typings_exports, {
48
49
  Position: () => Position,
49
50
  ReplySortOrder: () => ReplySortOrder,
50
51
  Resizing: () => Resizing,
52
+ ResponsivenessBehaviour: () => ResponsivenessBehaviour,
53
+ Scaling: () => Scaling,
51
54
  SortOrder: () => SortOrder,
52
55
  Source: () => Source,
53
56
  Status: () => Status,
@@ -58,6 +61,7 @@ __export(index_typings_exports, {
58
61
  Type: () => Type,
59
62
  VersioningMode: () => VersioningMode,
60
63
  VerticalAlignment: () => VerticalAlignment,
64
+ VerticalAlignmentAlignment: () => VerticalAlignmentAlignment,
61
65
  ViewMode: () => ViewMode,
62
66
  ViewRole: () => ViewRole,
63
67
  VoteRole: () => VoteRole,
@@ -219,6 +223,12 @@ function createComment(payload) {
219
223
  {
220
224
  path: "comment.content.richContent.nodes.audioData.coverImage.duration"
221
225
  },
226
+ {
227
+ path: "comment.content.richContent.nodes.layoutData.backgroundImage.media.duration"
228
+ },
229
+ {
230
+ path: "comment.content.richContent.nodes.layoutData.backdropImage.media.duration"
231
+ },
222
232
  {
223
233
  path: "comment.draftContent.richContent.nodes.galleryData.items.image.media.duration"
224
234
  },
@@ -263,6 +273,12 @@ function createComment(payload) {
263
273
  },
264
274
  {
265
275
  path: "comment.draftContent.richContent.nodes.audioData.coverImage.duration"
276
+ },
277
+ {
278
+ path: "comment.draftContent.richContent.nodes.layoutData.backgroundImage.media.duration"
279
+ },
280
+ {
281
+ path: "comment.draftContent.richContent.nodes.layoutData.backdropImage.media.duration"
266
282
  }
267
283
  ]
268
284
  }
@@ -372,6 +388,12 @@ function createComment(payload) {
372
388
  {
373
389
  path: "comment.content.richContent.nodes.audioData.coverImage.duration"
374
390
  },
391
+ {
392
+ path: "comment.content.richContent.nodes.layoutData.backgroundImage.media.duration"
393
+ },
394
+ {
395
+ path: "comment.content.richContent.nodes.layoutData.backdropImage.media.duration"
396
+ },
375
397
  {
376
398
  path: "comment.draftContent.richContent.nodes.galleryData.items.image.media.duration"
377
399
  },
@@ -416,6 +438,12 @@ function createComment(payload) {
416
438
  },
417
439
  {
418
440
  path: "comment.draftContent.richContent.nodes.audioData.coverImage.duration"
441
+ },
442
+ {
443
+ path: "comment.draftContent.richContent.nodes.layoutData.backgroundImage.media.duration"
444
+ },
445
+ {
446
+ path: "comment.draftContent.richContent.nodes.layoutData.backdropImage.media.duration"
419
447
  }
420
448
  ]
421
449
  }
@@ -532,6 +560,12 @@ function getComment(payload) {
532
560
  {
533
561
  path: "comment.content.richContent.nodes.audioData.coverImage.duration"
534
562
  },
563
+ {
564
+ path: "comment.content.richContent.nodes.layoutData.backgroundImage.media.duration"
565
+ },
566
+ {
567
+ path: "comment.content.richContent.nodes.layoutData.backdropImage.media.duration"
568
+ },
535
569
  {
536
570
  path: "comment.draftContent.richContent.nodes.galleryData.items.image.media.duration"
537
571
  },
@@ -576,6 +610,12 @@ function getComment(payload) {
576
610
  },
577
611
  {
578
612
  path: "comment.draftContent.richContent.nodes.audioData.coverImage.duration"
613
+ },
614
+ {
615
+ path: "comment.draftContent.richContent.nodes.layoutData.backgroundImage.media.duration"
616
+ },
617
+ {
618
+ path: "comment.draftContent.richContent.nodes.layoutData.backdropImage.media.duration"
579
619
  }
580
620
  ]
581
621
  }
@@ -666,6 +706,12 @@ function updateComment(payload) {
666
706
  {
667
707
  path: "comment.content.richContent.nodes.audioData.coverImage.duration"
668
708
  },
709
+ {
710
+ path: "comment.content.richContent.nodes.layoutData.backgroundImage.media.duration"
711
+ },
712
+ {
713
+ path: "comment.content.richContent.nodes.layoutData.backdropImage.media.duration"
714
+ },
669
715
  {
670
716
  path: "comment.draftContent.richContent.nodes.galleryData.items.image.media.duration"
671
717
  },
@@ -710,6 +756,12 @@ function updateComment(payload) {
710
756
  },
711
757
  {
712
758
  path: "comment.draftContent.richContent.nodes.audioData.coverImage.duration"
759
+ },
760
+ {
761
+ path: "comment.draftContent.richContent.nodes.layoutData.backgroundImage.media.duration"
762
+ },
763
+ {
764
+ path: "comment.draftContent.richContent.nodes.layoutData.backdropImage.media.duration"
713
765
  }
714
766
  ]
715
767
  }
@@ -819,6 +871,12 @@ function updateComment(payload) {
819
871
  {
820
872
  path: "comment.content.richContent.nodes.audioData.coverImage.duration"
821
873
  },
874
+ {
875
+ path: "comment.content.richContent.nodes.layoutData.backgroundImage.media.duration"
876
+ },
877
+ {
878
+ path: "comment.content.richContent.nodes.layoutData.backdropImage.media.duration"
879
+ },
822
880
  {
823
881
  path: "comment.draftContent.richContent.nodes.galleryData.items.image.media.duration"
824
882
  },
@@ -863,6 +921,12 @@ function updateComment(payload) {
863
921
  },
864
922
  {
865
923
  path: "comment.draftContent.richContent.nodes.audioData.coverImage.duration"
924
+ },
925
+ {
926
+ path: "comment.draftContent.richContent.nodes.layoutData.backgroundImage.media.duration"
927
+ },
928
+ {
929
+ path: "comment.draftContent.richContent.nodes.layoutData.backdropImage.media.duration"
866
930
  }
867
931
  ]
868
932
  }
@@ -1000,6 +1064,12 @@ function moderateDraftContent(payload) {
1000
1064
  {
1001
1065
  path: "comment.content.richContent.nodes.audioData.coverImage.duration"
1002
1066
  },
1067
+ {
1068
+ path: "comment.content.richContent.nodes.layoutData.backgroundImage.media.duration"
1069
+ },
1070
+ {
1071
+ path: "comment.content.richContent.nodes.layoutData.backdropImage.media.duration"
1072
+ },
1003
1073
  {
1004
1074
  path: "comment.draftContent.richContent.nodes.galleryData.items.image.media.duration"
1005
1075
  },
@@ -1044,6 +1114,12 @@ function moderateDraftContent(payload) {
1044
1114
  },
1045
1115
  {
1046
1116
  path: "comment.draftContent.richContent.nodes.audioData.coverImage.duration"
1117
+ },
1118
+ {
1119
+ path: "comment.draftContent.richContent.nodes.layoutData.backgroundImage.media.duration"
1120
+ },
1121
+ {
1122
+ path: "comment.draftContent.richContent.nodes.layoutData.backdropImage.media.duration"
1047
1123
  }
1048
1124
  ]
1049
1125
  }
@@ -1164,6 +1240,12 @@ function queryComments(payload) {
1164
1240
  {
1165
1241
  path: "comments.content.richContent.nodes.audioData.coverImage.duration"
1166
1242
  },
1243
+ {
1244
+ path: "comments.content.richContent.nodes.layoutData.backgroundImage.media.duration"
1245
+ },
1246
+ {
1247
+ path: "comments.content.richContent.nodes.layoutData.backdropImage.media.duration"
1248
+ },
1167
1249
  {
1168
1250
  path: "comments.draftContent.richContent.nodes.galleryData.items.image.media.duration"
1169
1251
  },
@@ -1208,6 +1290,12 @@ function queryComments(payload) {
1208
1290
  },
1209
1291
  {
1210
1292
  path: "comments.draftContent.richContent.nodes.audioData.coverImage.duration"
1293
+ },
1294
+ {
1295
+ path: "comments.draftContent.richContent.nodes.layoutData.backgroundImage.media.duration"
1296
+ },
1297
+ {
1298
+ path: "comments.draftContent.richContent.nodes.layoutData.backdropImage.media.duration"
1211
1299
  }
1212
1300
  ]
1213
1301
  }
@@ -1324,6 +1412,12 @@ function markComment(payload) {
1324
1412
  {
1325
1413
  path: "comment.content.richContent.nodes.audioData.coverImage.duration"
1326
1414
  },
1415
+ {
1416
+ path: "comment.content.richContent.nodes.layoutData.backgroundImage.media.duration"
1417
+ },
1418
+ {
1419
+ path: "comment.content.richContent.nodes.layoutData.backdropImage.media.duration"
1420
+ },
1327
1421
  {
1328
1422
  path: "comment.draftContent.richContent.nodes.galleryData.items.image.media.duration"
1329
1423
  },
@@ -1368,6 +1462,12 @@ function markComment(payload) {
1368
1462
  },
1369
1463
  {
1370
1464
  path: "comment.draftContent.richContent.nodes.audioData.coverImage.duration"
1465
+ },
1466
+ {
1467
+ path: "comment.draftContent.richContent.nodes.layoutData.backgroundImage.media.duration"
1468
+ },
1469
+ {
1470
+ path: "comment.draftContent.richContent.nodes.layoutData.backdropImage.media.duration"
1371
1471
  }
1372
1472
  ]
1373
1473
  }
@@ -1484,6 +1584,12 @@ function unmarkComment(payload) {
1484
1584
  {
1485
1585
  path: "comment.content.richContent.nodes.audioData.coverImage.duration"
1486
1586
  },
1587
+ {
1588
+ path: "comment.content.richContent.nodes.layoutData.backgroundImage.media.duration"
1589
+ },
1590
+ {
1591
+ path: "comment.content.richContent.nodes.layoutData.backdropImage.media.duration"
1592
+ },
1487
1593
  {
1488
1594
  path: "comment.draftContent.richContent.nodes.galleryData.items.image.media.duration"
1489
1595
  },
@@ -1528,6 +1634,12 @@ function unmarkComment(payload) {
1528
1634
  },
1529
1635
  {
1530
1636
  path: "comment.draftContent.richContent.nodes.audioData.coverImage.duration"
1637
+ },
1638
+ {
1639
+ path: "comment.draftContent.richContent.nodes.layoutData.backgroundImage.media.duration"
1640
+ },
1641
+ {
1642
+ path: "comment.draftContent.richContent.nodes.layoutData.backdropImage.media.duration"
1531
1643
  }
1532
1644
  ]
1533
1645
  }
@@ -1644,6 +1756,12 @@ function hideComment(payload) {
1644
1756
  {
1645
1757
  path: "comment.content.richContent.nodes.audioData.coverImage.duration"
1646
1758
  },
1759
+ {
1760
+ path: "comment.content.richContent.nodes.layoutData.backgroundImage.media.duration"
1761
+ },
1762
+ {
1763
+ path: "comment.content.richContent.nodes.layoutData.backdropImage.media.duration"
1764
+ },
1647
1765
  {
1648
1766
  path: "comment.draftContent.richContent.nodes.galleryData.items.image.media.duration"
1649
1767
  },
@@ -1688,6 +1806,12 @@ function hideComment(payload) {
1688
1806
  },
1689
1807
  {
1690
1808
  path: "comment.draftContent.richContent.nodes.audioData.coverImage.duration"
1809
+ },
1810
+ {
1811
+ path: "comment.draftContent.richContent.nodes.layoutData.backgroundImage.media.duration"
1812
+ },
1813
+ {
1814
+ path: "comment.draftContent.richContent.nodes.layoutData.backdropImage.media.duration"
1691
1815
  }
1692
1816
  ]
1693
1817
  }
@@ -1804,6 +1928,12 @@ function publishComment(payload) {
1804
1928
  {
1805
1929
  path: "comment.content.richContent.nodes.audioData.coverImage.duration"
1806
1930
  },
1931
+ {
1932
+ path: "comment.content.richContent.nodes.layoutData.backgroundImage.media.duration"
1933
+ },
1934
+ {
1935
+ path: "comment.content.richContent.nodes.layoutData.backdropImage.media.duration"
1936
+ },
1807
1937
  {
1808
1938
  path: "comment.draftContent.richContent.nodes.galleryData.items.image.media.duration"
1809
1939
  },
@@ -1848,6 +1978,12 @@ function publishComment(payload) {
1848
1978
  },
1849
1979
  {
1850
1980
  path: "comment.draftContent.richContent.nodes.audioData.coverImage.duration"
1981
+ },
1982
+ {
1983
+ path: "comment.draftContent.richContent.nodes.layoutData.backgroundImage.media.duration"
1984
+ },
1985
+ {
1986
+ path: "comment.draftContent.richContent.nodes.layoutData.backdropImage.media.duration"
1851
1987
  }
1852
1988
  ]
1853
1989
  }
@@ -2036,6 +2172,12 @@ function listCommentsByResource(payload) {
2036
2172
  {
2037
2173
  path: "comments.content.richContent.nodes.audioData.coverImage.duration"
2038
2174
  },
2175
+ {
2176
+ path: "comments.content.richContent.nodes.layoutData.backgroundImage.media.duration"
2177
+ },
2178
+ {
2179
+ path: "comments.content.richContent.nodes.layoutData.backdropImage.media.duration"
2180
+ },
2039
2181
  {
2040
2182
  path: "comments.draftContent.richContent.nodes.galleryData.items.image.media.duration"
2041
2183
  },
@@ -2081,6 +2223,12 @@ function listCommentsByResource(payload) {
2081
2223
  {
2082
2224
  path: "comments.draftContent.richContent.nodes.audioData.coverImage.duration"
2083
2225
  },
2226
+ {
2227
+ path: "comments.draftContent.richContent.nodes.layoutData.backgroundImage.media.duration"
2228
+ },
2229
+ {
2230
+ path: "comments.draftContent.richContent.nodes.layoutData.backdropImage.media.duration"
2231
+ },
2084
2232
  {
2085
2233
  path: "commentReplies.*.replies.content.richContent.nodes.galleryData.items.image.media.duration"
2086
2234
  },
@@ -2126,6 +2274,12 @@ function listCommentsByResource(payload) {
2126
2274
  {
2127
2275
  path: "commentReplies.*.replies.content.richContent.nodes.audioData.coverImage.duration"
2128
2276
  },
2277
+ {
2278
+ path: "commentReplies.*.replies.content.richContent.nodes.layoutData.backgroundImage.media.duration"
2279
+ },
2280
+ {
2281
+ path: "commentReplies.*.replies.content.richContent.nodes.layoutData.backdropImage.media.duration"
2282
+ },
2129
2283
  {
2130
2284
  path: "commentReplies.*.replies.draftContent.richContent.nodes.galleryData.items.image.media.duration"
2131
2285
  },
@@ -2170,6 +2324,12 @@ function listCommentsByResource(payload) {
2170
2324
  },
2171
2325
  {
2172
2326
  path: "commentReplies.*.replies.draftContent.richContent.nodes.audioData.coverImage.duration"
2327
+ },
2328
+ {
2329
+ path: "commentReplies.*.replies.draftContent.richContent.nodes.layoutData.backgroundImage.media.duration"
2330
+ },
2331
+ {
2332
+ path: "commentReplies.*.replies.draftContent.richContent.nodes.layoutData.backdropImage.media.duration"
2173
2333
  }
2174
2334
  ]
2175
2335
  }
@@ -2337,6 +2497,12 @@ function getCommentThread(payload) {
2337
2497
  {
2338
2498
  path: "comments.content.richContent.nodes.audioData.coverImage.duration"
2339
2499
  },
2500
+ {
2501
+ path: "comments.content.richContent.nodes.layoutData.backgroundImage.media.duration"
2502
+ },
2503
+ {
2504
+ path: "comments.content.richContent.nodes.layoutData.backdropImage.media.duration"
2505
+ },
2340
2506
  {
2341
2507
  path: "comments.draftContent.richContent.nodes.galleryData.items.image.media.duration"
2342
2508
  },
@@ -2382,6 +2548,12 @@ function getCommentThread(payload) {
2382
2548
  {
2383
2549
  path: "comments.draftContent.richContent.nodes.audioData.coverImage.duration"
2384
2550
  },
2551
+ {
2552
+ path: "comments.draftContent.richContent.nodes.layoutData.backgroundImage.media.duration"
2553
+ },
2554
+ {
2555
+ path: "comments.draftContent.richContent.nodes.layoutData.backdropImage.media.duration"
2556
+ },
2385
2557
  {
2386
2558
  path: "commentReplies.*.replies.content.richContent.nodes.galleryData.items.image.media.duration"
2387
2559
  },
@@ -2427,6 +2599,12 @@ function getCommentThread(payload) {
2427
2599
  {
2428
2600
  path: "commentReplies.*.replies.content.richContent.nodes.audioData.coverImage.duration"
2429
2601
  },
2602
+ {
2603
+ path: "commentReplies.*.replies.content.richContent.nodes.layoutData.backgroundImage.media.duration"
2604
+ },
2605
+ {
2606
+ path: "commentReplies.*.replies.content.richContent.nodes.layoutData.backdropImage.media.duration"
2607
+ },
2430
2608
  {
2431
2609
  path: "commentReplies.*.replies.draftContent.richContent.nodes.galleryData.items.image.media.duration"
2432
2610
  },
@@ -2471,6 +2649,12 @@ function getCommentThread(payload) {
2471
2649
  },
2472
2650
  {
2473
2651
  path: "commentReplies.*.replies.draftContent.richContent.nodes.audioData.coverImage.duration"
2652
+ },
2653
+ {
2654
+ path: "commentReplies.*.replies.draftContent.richContent.nodes.layoutData.backgroundImage.media.duration"
2655
+ },
2656
+ {
2657
+ path: "commentReplies.*.replies.draftContent.richContent.nodes.layoutData.backdropImage.media.duration"
2474
2658
  }
2475
2659
  ]
2476
2660
  }
@@ -2729,6 +2913,7 @@ var GIFType = /* @__PURE__ */ ((GIFType2) => {
2729
2913
  var Source = /* @__PURE__ */ ((Source2) => {
2730
2914
  Source2["HTML"] = "HTML";
2731
2915
  Source2["ADSENSE"] = "ADSENSE";
2916
+ Source2["AI"] = "AI";
2732
2917
  return Source2;
2733
2918
  })(Source || {});
2734
2919
  var StylesPosition = /* @__PURE__ */ ((StylesPosition2) => {
@@ -2857,6 +3042,35 @@ var NullValue = /* @__PURE__ */ ((NullValue2) => {
2857
3042
  NullValue2["NULL_VALUE"] = "NULL_VALUE";
2858
3043
  return NullValue2;
2859
3044
  })(NullValue || {});
3045
+ var Scaling = /* @__PURE__ */ ((Scaling2) => {
3046
+ Scaling2["AUTO"] = "AUTO";
3047
+ Scaling2["CONTAIN"] = "CONTAIN";
3048
+ Scaling2["COVER"] = "COVER";
3049
+ return Scaling2;
3050
+ })(Scaling || {});
3051
+ var ImagePosition = /* @__PURE__ */ ((ImagePosition2) => {
3052
+ ImagePosition2["CENTER"] = "CENTER";
3053
+ ImagePosition2["CENTER_LEFT"] = "CENTER_LEFT";
3054
+ ImagePosition2["CENTER_RIGHT"] = "CENTER_RIGHT";
3055
+ ImagePosition2["TOP"] = "TOP";
3056
+ ImagePosition2["TOP_LEFT"] = "TOP_LEFT";
3057
+ ImagePosition2["TOP_RIGHT"] = "TOP_RIGHT";
3058
+ ImagePosition2["BOTTOM"] = "BOTTOM";
3059
+ ImagePosition2["BOTTOM_LEFT"] = "BOTTOM_LEFT";
3060
+ ImagePosition2["BOTTOM_RIGHT"] = "BOTTOM_RIGHT";
3061
+ return ImagePosition2;
3062
+ })(ImagePosition || {});
3063
+ var VerticalAlignmentAlignment = /* @__PURE__ */ ((VerticalAlignmentAlignment2) => {
3064
+ VerticalAlignmentAlignment2["TOP"] = "TOP";
3065
+ VerticalAlignmentAlignment2["MIDDLE"] = "MIDDLE";
3066
+ VerticalAlignmentAlignment2["BOTTOM"] = "BOTTOM";
3067
+ return VerticalAlignmentAlignment2;
3068
+ })(VerticalAlignmentAlignment || {});
3069
+ var ResponsivenessBehaviour = /* @__PURE__ */ ((ResponsivenessBehaviour2) => {
3070
+ ResponsivenessBehaviour2["STACK"] = "STACK";
3071
+ ResponsivenessBehaviour2["WRAP"] = "WRAP";
3072
+ return ResponsivenessBehaviour2;
3073
+ })(ResponsivenessBehaviour || {});
2860
3074
  var Status = /* @__PURE__ */ ((Status2) => {
2861
3075
  Status2["UNKNOWN"] = "UNKNOWN";
2862
3076
  Status2["PUBLISHED"] = "PUBLISHED";
@@ -3890,6 +4104,7 @@ async function bulkMoveCommentByFilter2(appId, options) {
3890
4104
  DividerDataAlignment,
3891
4105
  FontType,
3892
4106
  GIFType,
4107
+ ImagePosition,
3893
4108
  InitialExpandedItems,
3894
4109
  Layout,
3895
4110
  LayoutType,
@@ -3906,6 +4121,8 @@ async function bulkMoveCommentByFilter2(appId, options) {
3906
4121
  Position,
3907
4122
  ReplySortOrder,
3908
4123
  Resizing,
4124
+ ResponsivenessBehaviour,
4125
+ Scaling,
3909
4126
  SortOrder,
3910
4127
  Source,
3911
4128
  Status,
@@ -3916,6 +4133,7 @@ async function bulkMoveCommentByFilter2(appId, options) {
3916
4133
  Type,
3917
4134
  VersioningMode,
3918
4135
  VerticalAlignment,
4136
+ VerticalAlignmentAlignment,
3919
4137
  ViewMode,
3920
4138
  ViewRole,
3921
4139
  VoteRole,