@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
@@ -193,7 +193,9 @@ interface Node extends NodeDataOneOf {
193
193
  blockquoteData?: BlockquoteData;
194
194
  /** Data for a caption node. */
195
195
  captionData?: CaptionData;
196
- /** LayoutData layout_data = 31; // Data for a layout node. Reserved for future use. */
196
+ /** Data for a layout node. Reserved for future use. */
197
+ layoutData?: LayoutData;
198
+ /** Data for a cell node. */
197
199
  layoutCellData?: LayoutCellData;
198
200
  /** 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. */
199
201
  type?: NodeTypeWithLiterals;
@@ -258,7 +260,9 @@ interface NodeDataOneOf {
258
260
  blockquoteData?: BlockquoteData;
259
261
  /** Data for a caption node. */
260
262
  captionData?: CaptionData;
261
- /** LayoutData layout_data = 31; // Data for a layout node. Reserved for future use. */
263
+ /** Data for a layout node. Reserved for future use. */
264
+ layoutData?: LayoutData;
265
+ /** Data for a cell node. */
262
266
  layoutCellData?: LayoutCellData;
263
267
  }
264
268
  declare enum NodeType {
@@ -881,10 +885,11 @@ interface HTMLDataDataOneOf {
881
885
  }
882
886
  declare enum Source {
883
887
  HTML = "HTML",
884
- ADSENSE = "ADSENSE"
888
+ ADSENSE = "ADSENSE",
889
+ AI = "AI"
885
890
  }
886
891
  /** @enumType */
887
- type SourceWithLiterals = Source | 'HTML' | 'ADSENSE';
892
+ type SourceWithLiterals = Source | 'HTML' | 'ADSENSE' | 'AI';
888
893
  interface ImageData {
889
894
  /** Styling for the image's container. */
890
895
  containerData?: PluginContainerData;
@@ -1814,6 +1819,108 @@ interface BlockquoteData {
1814
1819
  interface CaptionData {
1815
1820
  textStyle?: TextStyle;
1816
1821
  }
1822
+ interface LayoutData {
1823
+ /**
1824
+ * Background color as a hexadecimal value.
1825
+ * @format COLOR_HEX
1826
+ */
1827
+ backgroundColor?: string | null;
1828
+ /** Background image. */
1829
+ backgroundImage?: BackgroundImage;
1830
+ /**
1831
+ * Border color as a hexadecimal value.
1832
+ * @format COLOR_HEX
1833
+ */
1834
+ borderColor?: string | null;
1835
+ /** Border width in pixels. */
1836
+ borderWidth?: number | null;
1837
+ /** Border */
1838
+ borderRadius?: number | null;
1839
+ /**
1840
+ * Backdrop color as a hexadecimal value.
1841
+ * @format COLOR_HEX
1842
+ */
1843
+ backdropColor?: string | null;
1844
+ /** Backdrop image.radius in pixels. */
1845
+ backdropImage?: BackgroundImage;
1846
+ /** Backdrop top padding. */
1847
+ backdropPaddingTop?: number | null;
1848
+ /** Backdrop bottom padding */
1849
+ backdropPaddingBottom?: number | null;
1850
+ /** Horizontal and vertical gap between columns */
1851
+ gap?: number | null;
1852
+ /**
1853
+ * Padding in pixels for cells. Follows CSS order: top, right, bottom, left
1854
+ * @maxSize 4
1855
+ */
1856
+ cellPadding?: number[];
1857
+ /** Vertical alignment for the cell's items. */
1858
+ cellVerticalAlignment?: VerticalAlignmentAlignmentWithLiterals;
1859
+ /** Responsiveness behaviour of columns when responsiveness applies. Either stacks or wrappers. */
1860
+ responsivenessBehaviour?: ResponsivenessBehaviourWithLiterals;
1861
+ /** Size in pixels when responsiveness_behaviour applies */
1862
+ responsivenessBreakpoint?: number | null;
1863
+ }
1864
+ declare enum Scaling {
1865
+ /** Auto image scaling */
1866
+ AUTO = "AUTO",
1867
+ /** Contain image scaling */
1868
+ CONTAIN = "CONTAIN",
1869
+ /** Cover image scaling */
1870
+ COVER = "COVER"
1871
+ }
1872
+ /** @enumType */
1873
+ type ScalingWithLiterals = Scaling | 'AUTO' | 'CONTAIN' | 'COVER';
1874
+ declare enum ImagePosition {
1875
+ /** Image positioned at the center */
1876
+ CENTER = "CENTER",
1877
+ /** Image positioned on the left */
1878
+ CENTER_LEFT = "CENTER_LEFT",
1879
+ /** Image positioned on the right */
1880
+ CENTER_RIGHT = "CENTER_RIGHT",
1881
+ /** Image positioned at the center top */
1882
+ TOP = "TOP",
1883
+ /** Image positioned at the top left */
1884
+ TOP_LEFT = "TOP_LEFT",
1885
+ /** Image positioned at the top right */
1886
+ TOP_RIGHT = "TOP_RIGHT",
1887
+ /** Image positioned at the center bottom */
1888
+ BOTTOM = "BOTTOM",
1889
+ /** Image positioned at the bottom left */
1890
+ BOTTOM_LEFT = "BOTTOM_LEFT",
1891
+ /** Image positioned at the bottom right */
1892
+ BOTTOM_RIGHT = "BOTTOM_RIGHT"
1893
+ }
1894
+ /** @enumType */
1895
+ type ImagePositionWithLiterals = ImagePosition | 'CENTER' | 'CENTER_LEFT' | 'CENTER_RIGHT' | 'TOP' | 'TOP_LEFT' | 'TOP_RIGHT' | 'BOTTOM' | 'BOTTOM_LEFT' | 'BOTTOM_RIGHT';
1896
+ interface BackgroundImage {
1897
+ /** Background image. */
1898
+ media?: Media;
1899
+ /** Background image opacity. */
1900
+ opacity?: number | null;
1901
+ /** Background image scaling. */
1902
+ scaling?: ScalingWithLiterals;
1903
+ /** Position of background. Defaults to `CENTER`. */
1904
+ position?: ImagePositionWithLiterals;
1905
+ }
1906
+ declare enum VerticalAlignmentAlignment {
1907
+ /** Top alignment */
1908
+ TOP = "TOP",
1909
+ /** Middle alignment */
1910
+ MIDDLE = "MIDDLE",
1911
+ /** Bottom alignment */
1912
+ BOTTOM = "BOTTOM"
1913
+ }
1914
+ /** @enumType */
1915
+ type VerticalAlignmentAlignmentWithLiterals = VerticalAlignmentAlignment | 'TOP' | 'MIDDLE' | 'BOTTOM';
1916
+ declare enum ResponsivenessBehaviour {
1917
+ /** Stacking of columns */
1918
+ STACK = "STACK",
1919
+ /** Wrapping of columns */
1920
+ WRAP = "WRAP"
1921
+ }
1922
+ /** @enumType */
1923
+ type ResponsivenessBehaviourWithLiterals = ResponsivenessBehaviour | 'STACK' | 'WRAP';
1817
1924
  interface LayoutCellData {
1818
1925
  /** Size of the cell in 12 columns grid. */
1819
1926
  colSpan?: number | null;
@@ -3107,4 +3214,4 @@ declare function bulkDeleteComment(): __PublicMethodMetaInfo<'PUT', {}, BulkDele
3107
3214
  declare function bulkModerateDraftContent(): __PublicMethodMetaInfo<'POST', {}, BulkModerateDraftContentRequest$1, BulkModerateDraftContentRequest, BulkModerateDraftContentResponse$1, BulkModerateDraftContentResponse>;
3108
3215
  declare function bulkMoveCommentByFilter(): __PublicMethodMetaInfo<'PUT', {}, BulkMoveCommentByFilterRequest$1, BulkMoveCommentByFilterRequest, BulkMoveCommentByFilterResponse$1, BulkMoveCommentByFilterResponse>;
3109
3216
 
3110
- export { type ActionEvent as ActionEventOriginal, Action as ActionOriginal, type ActionWithLiterals as ActionWithLiteralsOriginal, Alignment as AlignmentOriginal, type AlignmentWithLiterals as AlignmentWithLiteralsOriginal, type AnchorData as AnchorDataOriginal, type AppEmbedDataAppDataOneOf as AppEmbedDataAppDataOneOfOriginal, type AppEmbedData as AppEmbedDataOriginal, AppType as AppTypeOriginal, type AppTypeWithLiterals as AppTypeWithLiteralsOriginal, AspectRatio as AspectRatioOriginal, type AspectRatioWithLiterals as AspectRatioWithLiteralsOriginal, type AttachmentMediaOneOf as AttachmentMediaOneOfOriginal, type Attachment as AttachmentOriginal, type AudioData as AudioDataOriginal, type Audio as AudioOriginal, type BackgroundBackgroundOneOf as BackgroundBackgroundOneOfOriginal, type Background as BackgroundOriginal, BackgroundType as BackgroundTypeOriginal, type BackgroundTypeWithLiterals as BackgroundTypeWithLiteralsOriginal, type BlockquoteData as BlockquoteDataOriginal, type BookingData as BookingDataOriginal, type BorderColors as BorderColorsOriginal, type Border as BorderOriginal, type BulkDeleteCommentRequest as BulkDeleteCommentRequestOriginal, type BulkDeleteCommentResponse as BulkDeleteCommentResponseOriginal, type BulkHideCommentRequest as BulkHideCommentRequestOriginal, type BulkHideCommentResponse as BulkHideCommentResponseOriginal, type BulkModerateDraftContentRequest as BulkModerateDraftContentRequestOriginal, type BulkModerateDraftContentResponse as BulkModerateDraftContentResponseOriginal, type BulkMoveCommentByFilterRequest as BulkMoveCommentByFilterRequestOriginal, type BulkMoveCommentByFilterResponse as BulkMoveCommentByFilterResponseOriginal, type BulkPublishCommentRequest as BulkPublishCommentRequestOriginal, type BulkPublishCommentResponse as BulkPublishCommentResponseOriginal, type BulletedListData as BulletedListDataOriginal, type ButtonData as ButtonDataOriginal, ButtonDataType as ButtonDataTypeOriginal, type ButtonDataTypeWithLiterals as ButtonDataTypeWithLiteralsOriginal, type ButtonStyles as ButtonStylesOriginal, type CaptionData as CaptionDataOriginal, type CardStyles as CardStylesOriginal, type CellStyle as CellStyleOriginal, type CodeBlockData as CodeBlockDataOriginal, type CollapsibleListData as CollapsibleListDataOriginal, type ColorData as ColorDataOriginal, type Colors as ColorsOriginal, type CommentAuthorIdentityOneOf as CommentAuthorIdentityOneOfOriginal, type CommentAuthor as CommentAuthorOriginal, type CommentContentChanged as CommentContentChangedOriginal, type CommentContent as CommentContentOriginal, type CommentDeleted as CommentDeletedOriginal, type CommentHidden as CommentHiddenOriginal, type CommentMarked as CommentMarkedOriginal, type CommentModerated as CommentModeratedOriginal, type CommentMoved as CommentMovedOriginal, type Comment as CommentOriginal, type CommentPublished as CommentPublishedOriginal, type CommentReactionSummary as CommentReactionSummaryOriginal, type CommentSort as CommentSortOriginal, type CommentUnmarked as CommentUnmarkedOriginal, type ContactDetails as ContactDetailsOriginal, type ContentAuthorAuthorOneOf as ContentAuthorAuthorOneOfOriginal, type ContentAuthor as ContentAuthorOriginal, type CountCommentsApplicationErrors as CountCommentsApplicationErrorsOriginal, type CountCommentsRequest as CountCommentsRequestOriginal, type CountCommentsResponse as CountCommentsResponseOriginal, type CreateCommentApplicationErrors as CreateCommentApplicationErrorsOriginal, type CreateCommentRequest as CreateCommentRequestOriginal, type CreateCommentResponse as CreateCommentResponseOriginal, Crop as CropOriginal, type CropWithLiterals as CropWithLiteralsOriginal, type CursorPagingMetadata as CursorPagingMetadataOriginal, type CursorPaging as CursorPagingOriginal, type CursorQuery as CursorQueryOriginal, type CursorQueryPagingMethodOneOf as CursorQueryPagingMethodOneOfOriginal, type Cursors as CursorsOriginal, type DecorationDataOneOf as DecorationDataOneOfOriginal, type Decoration as DecorationOriginal, DecorationType as DecorationTypeOriginal, type DecorationTypeWithLiterals as DecorationTypeWithLiteralsOriginal, type DeleteByFilterOperation as DeleteByFilterOperationOriginal, type DeleteByIdsOperation as DeleteByIdsOperationOriginal, type DeleteCommentRequest as DeleteCommentRequestOriginal, type DeleteCommentResponse as DeleteCommentResponseOriginal, type Design as DesignOriginal, type Destination as DestinationOriginal, type Dimensions as DimensionsOriginal, Direction as DirectionOriginal, type DirectionWithLiterals as DirectionWithLiteralsOriginal, DividerDataAlignment as DividerDataAlignmentOriginal, type DividerDataAlignmentWithLiterals as DividerDataAlignmentWithLiteralsOriginal, type DividerData as DividerDataOriginal, type Document as DocumentOriginal, type DocumentStyle as DocumentStyleOriginal, type DomainEventBodyOneOf as DomainEventBodyOneOfOriginal, type DomainEvent as DomainEventOriginal, type EmbedData as EmbedDataOriginal, type EntityCreatedEvent as EntityCreatedEventOriginal, type EntityDeletedEvent as EntityDeletedEventOriginal, type EntityUpdatedEvent as EntityUpdatedEventOriginal, type EventData as EventDataOriginal, type FileData as FileDataOriginal, type FileSourceDataOneOf as FileSourceDataOneOfOriginal, type FileSource as FileSourceOriginal, type FontSizeData as FontSizeDataOriginal, FontType as FontTypeOriginal, type FontTypeWithLiterals as FontTypeWithLiteralsOriginal, type GIFData as GIFDataOriginal, type GIF as GIFOriginal, GIFType as GIFTypeOriginal, type GIFTypeWithLiterals as GIFTypeWithLiteralsOriginal, type GalleryData as GalleryDataOriginal, type GalleryOptionsLayout as GalleryOptionsLayoutOriginal, type GalleryOptions as GalleryOptionsOriginal, type GetCommentRequest as GetCommentRequestOriginal, type GetCommentResponse as GetCommentResponseOriginal, type GetCommentThreadRequest as GetCommentThreadRequestOriginal, type GetCommentThreadResponse as GetCommentThreadResponseOriginal, type Gradient as GradientOriginal, type HTMLDataDataOneOf as HTMLDataDataOneOfOriginal, type HTMLData as HTMLDataOriginal, type HeadingData as HeadingDataOriginal, type Height as HeightOriginal, type HideCommentRequest as HideCommentRequestOriginal, type HideCommentResponse as HideCommentResponseOriginal, type IdentificationDataIdOneOf as IdentificationDataIdOneOfOriginal, type IdentificationData as IdentificationDataOriginal, type ImageData as ImageDataOriginal, type ImageDataStyles as ImageDataStylesOriginal, type Image as ImageOriginal, type ImageStyles as ImageStylesOriginal, InitialExpandedItems as InitialExpandedItemsOriginal, type InitialExpandedItemsWithLiterals as InitialExpandedItemsWithLiteralsOriginal, type InternalDocument as InternalDocumentOriginal, type InternalDocumentUpdateByFilterOperation as InternalDocumentUpdateByFilterOperationOriginal, type InternalDocumentUpdateOperation as InternalDocumentUpdateOperationOriginal, type InternalUpdateExistingOperation as InternalUpdateExistingOperationOriginal, type ItemDataOneOf as ItemDataOneOfOriginal, type ItemImage as ItemImageOriginal, type Item as ItemOriginal, type ItemStyle as ItemStyleOriginal, type LayoutCellData as LayoutCellDataOriginal, Layout as LayoutOriginal, LayoutType as LayoutTypeOriginal, type LayoutTypeWithLiterals as LayoutTypeWithLiteralsOriginal, type LayoutWithLiterals as LayoutWithLiteralsOriginal, LineStyle as LineStyleOriginal, type LineStyleWithLiterals as LineStyleWithLiteralsOriginal, type LinkDataOneOf as LinkDataOneOfOriginal, type LinkData as LinkDataOriginal, type Link as LinkOriginal, type LinkPreviewData as LinkPreviewDataOriginal, type LinkPreviewDataStyles as LinkPreviewDataStylesOriginal, type ListCommentsByResourceCursorPaging as ListCommentsByResourceCursorPagingOriginal, type ListCommentsByResourceRequest as ListCommentsByResourceRequestOriginal, type ListCommentsByResourceResponse as ListCommentsByResourceResponseOriginal, type ListValue as ListValueOriginal, type MapData as MapDataOriginal, type MapSettings as MapSettingsOriginal, MapType as MapTypeOriginal, type MapTypeWithLiterals as MapTypeWithLiteralsOriginal, type MarkCommentRequest as MarkCommentRequestOriginal, type MarkCommentResponse as MarkCommentResponseOriginal, type Media as MediaOriginal, type MentionData as MentionDataOriginal, type MentionIdentityOneOf as MentionIdentityOneOfOriginal, type Mention as MentionOriginal, type MessageEnvelope as MessageEnvelopeOriginal, type Metadata as MetadataOriginal, type ModerateDraftContentRequest as ModerateDraftContentRequestOriginal, type ModerateDraftContentResponse as ModerateDraftContentResponseOriginal, type NodeDataOneOf as NodeDataOneOfOriginal, type Node as NodeOriginal, type NodeStyle as NodeStyleOriginal, NodeType as NodeTypeOriginal, type NodeTypeWithLiterals as NodeTypeWithLiteralsOriginal, NullValue as NullValueOriginal, type NullValueWithLiterals as NullValueWithLiteralsOriginal, type Oembed as OembedOriginal, type OptionDesign as OptionDesignOriginal, type OptionLayout as OptionLayoutOriginal, type Option as OptionOriginal, Order as OrderOriginal, type OrderWithLiterals as OrderWithLiteralsOriginal, type OrderedListData as OrderedListDataOriginal, Orientation as OrientationOriginal, type OrientationWithLiterals as OrientationWithLiteralsOriginal, type PDFSettings as PDFSettingsOriginal, type ParagraphData as ParagraphDataOriginal, type ParentComment as ParentCommentOriginal, type Permissions as PermissionsOriginal, Placement as PlacementOriginal, type PlacementWithLiterals as PlacementWithLiteralsOriginal, type PlaybackOptions as PlaybackOptionsOriginal, PluginContainerDataAlignment as PluginContainerDataAlignmentOriginal, type PluginContainerDataAlignmentWithLiterals as PluginContainerDataAlignmentWithLiteralsOriginal, type PluginContainerData as PluginContainerDataOriginal, type PluginContainerDataWidthDataOneOf as PluginContainerDataWidthDataOneOfOriginal, type PluginContainerDataWidth as PluginContainerDataWidthOriginal, type PollDataLayout as PollDataLayoutOriginal, type PollData as PollDataOriginal, type PollDesign as PollDesignOriginal, PollLayoutDirection as PollLayoutDirectionOriginal, type PollLayoutDirectionWithLiterals as PollLayoutDirectionWithLiteralsOriginal, type PollLayout as PollLayoutOriginal, PollLayoutType as PollLayoutTypeOriginal, type PollLayoutTypeWithLiterals as PollLayoutTypeWithLiteralsOriginal, type Poll as PollOriginal, Position as PositionOriginal, type PositionWithLiterals as PositionWithLiteralsOriginal, type PricingData as PricingDataOriginal, type PublishCommentRequest as PublishCommentRequestOriginal, type PublishCommentResponse as PublishCommentResponseOriginal, type QueryCommentsRequest as QueryCommentsRequestOriginal, type QueryCommentsResponse as QueryCommentsResponseOriginal, type Rel as RelOriginal, type RepliesListResponse as RepliesListResponseOriginal, ReplySortOrder as ReplySortOrderOriginal, type ReplySortOrderWithLiterals as ReplySortOrderWithLiteralsOriginal, type ReplySort as ReplySortOriginal, Resizing as ResizingOriginal, type ResizingWithLiterals as ResizingWithLiteralsOriginal, type ResourceCommentCountChanged as ResourceCommentCountChangedOriginal, type RestoreInfo as RestoreInfoOriginal, type RibbonStyles as RibbonStylesOriginal, type RichContent as RichContentOriginal, type Settings as SettingsOriginal, SortOrder as SortOrderOriginal, type SortOrderWithLiterals as SortOrderWithLiteralsOriginal, type Sorting as SortingOriginal, Source as SourceOriginal, type SourceWithLiterals as SourceWithLiteralsOriginal, type SpoilerData as SpoilerDataOriginal, type Spoiler as SpoilerOriginal, Status as StatusOriginal, type StatusWithLiterals as StatusWithLiteralsOriginal, type StylesBorder as StylesBorderOriginal, type Styles as StylesOriginal, StylesPosition as StylesPositionOriginal, type StylesPositionWithLiterals as StylesPositionWithLiteralsOriginal, type TableCellData as TableCellDataOriginal, type TableData as TableDataOriginal, Target as TargetOriginal, type TargetWithLiterals as TargetWithLiteralsOriginal, TextAlignment as TextAlignmentOriginal, type TextAlignmentWithLiterals as TextAlignmentWithLiteralsOriginal, type TextData as TextDataOriginal, type TextNodeStyle as TextNodeStyleOriginal, type TextStyle as TextStyleOriginal, ThumbnailsAlignment as ThumbnailsAlignmentOriginal, type ThumbnailsAlignmentWithLiterals as ThumbnailsAlignmentWithLiteralsOriginal, type Thumbnails as ThumbnailsOriginal, Type as TypeOriginal, type TypeWithLiterals as TypeWithLiteralsOriginal, type UnmarkCommentRequest as UnmarkCommentRequestOriginal, type UnmarkCommentResponse as UnmarkCommentResponseOriginal, type UpdateCommentApplicationErrors as UpdateCommentApplicationErrorsOriginal, type UpdateCommentRequest as UpdateCommentRequestOriginal, type UpdateCommentResponse as UpdateCommentResponseOriginal, type UpdateInternalDocumentsEventOperationOneOf as UpdateInternalDocumentsEventOperationOneOfOriginal, type UpdateInternalDocumentsEvent as UpdateInternalDocumentsEventOriginal, type VersionedDeleteByIdsOperation as VersionedDeleteByIdsOperationOriginal, type VersionedDocumentId as VersionedDocumentIdOriginal, type VersionedDocumentUpdateOperation as VersionedDocumentUpdateOperationOriginal, VersioningMode as VersioningModeOriginal, type VersioningModeWithLiterals as VersioningModeWithLiteralsOriginal, VerticalAlignment as VerticalAlignmentOriginal, type VerticalAlignmentWithLiterals as VerticalAlignmentWithLiteralsOriginal, type VideoData as VideoDataOriginal, type Video as VideoOriginal, type VideoResolution as VideoResolutionOriginal, type VideoV2 as VideoV2Original, ViewMode as ViewModeOriginal, type ViewModeWithLiterals as ViewModeWithLiteralsOriginal, ViewRole as ViewRoleOriginal, type ViewRoleWithLiterals as ViewRoleWithLiteralsOriginal, VoteRole as VoteRoleOriginal, type VoteRoleWithLiterals as VoteRoleWithLiteralsOriginal, type VoteSummary as VoteSummaryOriginal, WebhookIdentityType as WebhookIdentityTypeOriginal, type WebhookIdentityTypeWithLiterals as WebhookIdentityTypeWithLiteralsOriginal, Width as WidthOriginal, WidthType as WidthTypeOriginal, type WidthTypeWithLiterals as WidthTypeWithLiteralsOriginal, type WidthWithLiterals as WidthWithLiteralsOriginal, type __PublicMethodMetaInfo, bulkDeleteComment, bulkHideComment, bulkModerateDraftContent, bulkMoveCommentByFilter, bulkPublishComment, countComments, createComment, deleteComment, getComment, getCommentThread, hideComment, listCommentsByResource, markComment, moderateDraftContent, publishComment, queryComments, unmarkComment, updateComment };
3217
+ export { type ActionEvent as ActionEventOriginal, Action as ActionOriginal, type ActionWithLiterals as ActionWithLiteralsOriginal, Alignment as AlignmentOriginal, type AlignmentWithLiterals as AlignmentWithLiteralsOriginal, type AnchorData as AnchorDataOriginal, type AppEmbedDataAppDataOneOf as AppEmbedDataAppDataOneOfOriginal, type AppEmbedData as AppEmbedDataOriginal, AppType as AppTypeOriginal, type AppTypeWithLiterals as AppTypeWithLiteralsOriginal, AspectRatio as AspectRatioOriginal, type AspectRatioWithLiterals as AspectRatioWithLiteralsOriginal, type AttachmentMediaOneOf as AttachmentMediaOneOfOriginal, type Attachment as AttachmentOriginal, type AudioData as AudioDataOriginal, type Audio as AudioOriginal, type BackgroundBackgroundOneOf as BackgroundBackgroundOneOfOriginal, type BackgroundImage as BackgroundImageOriginal, type Background as BackgroundOriginal, BackgroundType as BackgroundTypeOriginal, type BackgroundTypeWithLiterals as BackgroundTypeWithLiteralsOriginal, type BlockquoteData as BlockquoteDataOriginal, type BookingData as BookingDataOriginal, type BorderColors as BorderColorsOriginal, type Border as BorderOriginal, type BulkDeleteCommentRequest as BulkDeleteCommentRequestOriginal, type BulkDeleteCommentResponse as BulkDeleteCommentResponseOriginal, type BulkHideCommentRequest as BulkHideCommentRequestOriginal, type BulkHideCommentResponse as BulkHideCommentResponseOriginal, type BulkModerateDraftContentRequest as BulkModerateDraftContentRequestOriginal, type BulkModerateDraftContentResponse as BulkModerateDraftContentResponseOriginal, type BulkMoveCommentByFilterRequest as BulkMoveCommentByFilterRequestOriginal, type BulkMoveCommentByFilterResponse as BulkMoveCommentByFilterResponseOriginal, type BulkPublishCommentRequest as BulkPublishCommentRequestOriginal, type BulkPublishCommentResponse as BulkPublishCommentResponseOriginal, type BulletedListData as BulletedListDataOriginal, type ButtonData as ButtonDataOriginal, ButtonDataType as ButtonDataTypeOriginal, type ButtonDataTypeWithLiterals as ButtonDataTypeWithLiteralsOriginal, type ButtonStyles as ButtonStylesOriginal, type CaptionData as CaptionDataOriginal, type CardStyles as CardStylesOriginal, type CellStyle as CellStyleOriginal, type CodeBlockData as CodeBlockDataOriginal, type CollapsibleListData as CollapsibleListDataOriginal, type ColorData as ColorDataOriginal, type Colors as ColorsOriginal, type CommentAuthorIdentityOneOf as CommentAuthorIdentityOneOfOriginal, type CommentAuthor as CommentAuthorOriginal, type CommentContentChanged as CommentContentChangedOriginal, type CommentContent as CommentContentOriginal, type CommentDeleted as CommentDeletedOriginal, type CommentHidden as CommentHiddenOriginal, type CommentMarked as CommentMarkedOriginal, type CommentModerated as CommentModeratedOriginal, type CommentMoved as CommentMovedOriginal, type Comment as CommentOriginal, type CommentPublished as CommentPublishedOriginal, type CommentReactionSummary as CommentReactionSummaryOriginal, type CommentSort as CommentSortOriginal, type CommentUnmarked as CommentUnmarkedOriginal, type ContactDetails as ContactDetailsOriginal, type ContentAuthorAuthorOneOf as ContentAuthorAuthorOneOfOriginal, type ContentAuthor as ContentAuthorOriginal, type CountCommentsApplicationErrors as CountCommentsApplicationErrorsOriginal, type CountCommentsRequest as CountCommentsRequestOriginal, type CountCommentsResponse as CountCommentsResponseOriginal, type CreateCommentApplicationErrors as CreateCommentApplicationErrorsOriginal, type CreateCommentRequest as CreateCommentRequestOriginal, type CreateCommentResponse as CreateCommentResponseOriginal, Crop as CropOriginal, type CropWithLiterals as CropWithLiteralsOriginal, type CursorPagingMetadata as CursorPagingMetadataOriginal, type CursorPaging as CursorPagingOriginal, type CursorQuery as CursorQueryOriginal, type CursorQueryPagingMethodOneOf as CursorQueryPagingMethodOneOfOriginal, type Cursors as CursorsOriginal, type DecorationDataOneOf as DecorationDataOneOfOriginal, type Decoration as DecorationOriginal, DecorationType as DecorationTypeOriginal, type DecorationTypeWithLiterals as DecorationTypeWithLiteralsOriginal, type DeleteByFilterOperation as DeleteByFilterOperationOriginal, type DeleteByIdsOperation as DeleteByIdsOperationOriginal, type DeleteCommentRequest as DeleteCommentRequestOriginal, type DeleteCommentResponse as DeleteCommentResponseOriginal, type Design as DesignOriginal, type Destination as DestinationOriginal, type Dimensions as DimensionsOriginal, Direction as DirectionOriginal, type DirectionWithLiterals as DirectionWithLiteralsOriginal, DividerDataAlignment as DividerDataAlignmentOriginal, type DividerDataAlignmentWithLiterals as DividerDataAlignmentWithLiteralsOriginal, type DividerData as DividerDataOriginal, type Document as DocumentOriginal, type DocumentStyle as DocumentStyleOriginal, type DomainEventBodyOneOf as DomainEventBodyOneOfOriginal, type DomainEvent as DomainEventOriginal, type EmbedData as EmbedDataOriginal, type EntityCreatedEvent as EntityCreatedEventOriginal, type EntityDeletedEvent as EntityDeletedEventOriginal, type EntityUpdatedEvent as EntityUpdatedEventOriginal, type EventData as EventDataOriginal, type FileData as FileDataOriginal, type FileSourceDataOneOf as FileSourceDataOneOfOriginal, type FileSource as FileSourceOriginal, type FontSizeData as FontSizeDataOriginal, FontType as FontTypeOriginal, type FontTypeWithLiterals as FontTypeWithLiteralsOriginal, type GIFData as GIFDataOriginal, type GIF as GIFOriginal, GIFType as GIFTypeOriginal, type GIFTypeWithLiterals as GIFTypeWithLiteralsOriginal, type GalleryData as GalleryDataOriginal, type GalleryOptionsLayout as GalleryOptionsLayoutOriginal, type GalleryOptions as GalleryOptionsOriginal, type GetCommentRequest as GetCommentRequestOriginal, type GetCommentResponse as GetCommentResponseOriginal, type GetCommentThreadRequest as GetCommentThreadRequestOriginal, type GetCommentThreadResponse as GetCommentThreadResponseOriginal, type Gradient as GradientOriginal, type HTMLDataDataOneOf as HTMLDataDataOneOfOriginal, type HTMLData as HTMLDataOriginal, type HeadingData as HeadingDataOriginal, type Height as HeightOriginal, type HideCommentRequest as HideCommentRequestOriginal, type HideCommentResponse as HideCommentResponseOriginal, type IdentificationDataIdOneOf as IdentificationDataIdOneOfOriginal, type IdentificationData as IdentificationDataOriginal, type ImageData as ImageDataOriginal, type ImageDataStyles as ImageDataStylesOriginal, type Image as ImageOriginal, ImagePosition as ImagePositionOriginal, type ImagePositionWithLiterals as ImagePositionWithLiteralsOriginal, type ImageStyles as ImageStylesOriginal, InitialExpandedItems as InitialExpandedItemsOriginal, type InitialExpandedItemsWithLiterals as InitialExpandedItemsWithLiteralsOriginal, type InternalDocument as InternalDocumentOriginal, type InternalDocumentUpdateByFilterOperation as InternalDocumentUpdateByFilterOperationOriginal, type InternalDocumentUpdateOperation as InternalDocumentUpdateOperationOriginal, type InternalUpdateExistingOperation as InternalUpdateExistingOperationOriginal, type ItemDataOneOf as ItemDataOneOfOriginal, type ItemImage as ItemImageOriginal, type Item as ItemOriginal, type ItemStyle as ItemStyleOriginal, type LayoutCellData as LayoutCellDataOriginal, type LayoutData as LayoutDataOriginal, Layout as LayoutOriginal, LayoutType as LayoutTypeOriginal, type LayoutTypeWithLiterals as LayoutTypeWithLiteralsOriginal, type LayoutWithLiterals as LayoutWithLiteralsOriginal, LineStyle as LineStyleOriginal, type LineStyleWithLiterals as LineStyleWithLiteralsOriginal, type LinkDataOneOf as LinkDataOneOfOriginal, type LinkData as LinkDataOriginal, type Link as LinkOriginal, type LinkPreviewData as LinkPreviewDataOriginal, type LinkPreviewDataStyles as LinkPreviewDataStylesOriginal, type ListCommentsByResourceCursorPaging as ListCommentsByResourceCursorPagingOriginal, type ListCommentsByResourceRequest as ListCommentsByResourceRequestOriginal, type ListCommentsByResourceResponse as ListCommentsByResourceResponseOriginal, type ListValue as ListValueOriginal, type MapData as MapDataOriginal, type MapSettings as MapSettingsOriginal, MapType as MapTypeOriginal, type MapTypeWithLiterals as MapTypeWithLiteralsOriginal, type MarkCommentRequest as MarkCommentRequestOriginal, type MarkCommentResponse as MarkCommentResponseOriginal, type Media as MediaOriginal, type MentionData as MentionDataOriginal, type MentionIdentityOneOf as MentionIdentityOneOfOriginal, type Mention as MentionOriginal, type MessageEnvelope as MessageEnvelopeOriginal, type Metadata as MetadataOriginal, type ModerateDraftContentRequest as ModerateDraftContentRequestOriginal, type ModerateDraftContentResponse as ModerateDraftContentResponseOriginal, type NodeDataOneOf as NodeDataOneOfOriginal, type Node as NodeOriginal, type NodeStyle as NodeStyleOriginal, NodeType as NodeTypeOriginal, type NodeTypeWithLiterals as NodeTypeWithLiteralsOriginal, NullValue as NullValueOriginal, type NullValueWithLiterals as NullValueWithLiteralsOriginal, type Oembed as OembedOriginal, type OptionDesign as OptionDesignOriginal, type OptionLayout as OptionLayoutOriginal, type Option as OptionOriginal, Order as OrderOriginal, type OrderWithLiterals as OrderWithLiteralsOriginal, type OrderedListData as OrderedListDataOriginal, Orientation as OrientationOriginal, type OrientationWithLiterals as OrientationWithLiteralsOriginal, type PDFSettings as PDFSettingsOriginal, type ParagraphData as ParagraphDataOriginal, type ParentComment as ParentCommentOriginal, type Permissions as PermissionsOriginal, Placement as PlacementOriginal, type PlacementWithLiterals as PlacementWithLiteralsOriginal, type PlaybackOptions as PlaybackOptionsOriginal, PluginContainerDataAlignment as PluginContainerDataAlignmentOriginal, type PluginContainerDataAlignmentWithLiterals as PluginContainerDataAlignmentWithLiteralsOriginal, type PluginContainerData as PluginContainerDataOriginal, type PluginContainerDataWidthDataOneOf as PluginContainerDataWidthDataOneOfOriginal, type PluginContainerDataWidth as PluginContainerDataWidthOriginal, type PollDataLayout as PollDataLayoutOriginal, type PollData as PollDataOriginal, type PollDesign as PollDesignOriginal, PollLayoutDirection as PollLayoutDirectionOriginal, type PollLayoutDirectionWithLiterals as PollLayoutDirectionWithLiteralsOriginal, type PollLayout as PollLayoutOriginal, PollLayoutType as PollLayoutTypeOriginal, type PollLayoutTypeWithLiterals as PollLayoutTypeWithLiteralsOriginal, type Poll as PollOriginal, Position as PositionOriginal, type PositionWithLiterals as PositionWithLiteralsOriginal, type PricingData as PricingDataOriginal, type PublishCommentRequest as PublishCommentRequestOriginal, type PublishCommentResponse as PublishCommentResponseOriginal, type QueryCommentsRequest as QueryCommentsRequestOriginal, type QueryCommentsResponse as QueryCommentsResponseOriginal, type Rel as RelOriginal, type RepliesListResponse as RepliesListResponseOriginal, ReplySortOrder as ReplySortOrderOriginal, type ReplySortOrderWithLiterals as ReplySortOrderWithLiteralsOriginal, type ReplySort as ReplySortOriginal, Resizing as ResizingOriginal, type ResizingWithLiterals as ResizingWithLiteralsOriginal, type ResourceCommentCountChanged as ResourceCommentCountChangedOriginal, ResponsivenessBehaviour as ResponsivenessBehaviourOriginal, type ResponsivenessBehaviourWithLiterals as ResponsivenessBehaviourWithLiteralsOriginal, type RestoreInfo as RestoreInfoOriginal, type RibbonStyles as RibbonStylesOriginal, type RichContent as RichContentOriginal, Scaling as ScalingOriginal, type ScalingWithLiterals as ScalingWithLiteralsOriginal, type Settings as SettingsOriginal, SortOrder as SortOrderOriginal, type SortOrderWithLiterals as SortOrderWithLiteralsOriginal, type Sorting as SortingOriginal, Source as SourceOriginal, type SourceWithLiterals as SourceWithLiteralsOriginal, type SpoilerData as SpoilerDataOriginal, type Spoiler as SpoilerOriginal, Status as StatusOriginal, type StatusWithLiterals as StatusWithLiteralsOriginal, type StylesBorder as StylesBorderOriginal, type Styles as StylesOriginal, StylesPosition as StylesPositionOriginal, type StylesPositionWithLiterals as StylesPositionWithLiteralsOriginal, type TableCellData as TableCellDataOriginal, type TableData as TableDataOriginal, Target as TargetOriginal, type TargetWithLiterals as TargetWithLiteralsOriginal, TextAlignment as TextAlignmentOriginal, type TextAlignmentWithLiterals as TextAlignmentWithLiteralsOriginal, type TextData as TextDataOriginal, type TextNodeStyle as TextNodeStyleOriginal, type TextStyle as TextStyleOriginal, ThumbnailsAlignment as ThumbnailsAlignmentOriginal, type ThumbnailsAlignmentWithLiterals as ThumbnailsAlignmentWithLiteralsOriginal, type Thumbnails as ThumbnailsOriginal, Type as TypeOriginal, type TypeWithLiterals as TypeWithLiteralsOriginal, type UnmarkCommentRequest as UnmarkCommentRequestOriginal, type UnmarkCommentResponse as UnmarkCommentResponseOriginal, type UpdateCommentApplicationErrors as UpdateCommentApplicationErrorsOriginal, type UpdateCommentRequest as UpdateCommentRequestOriginal, type UpdateCommentResponse as UpdateCommentResponseOriginal, type UpdateInternalDocumentsEventOperationOneOf as UpdateInternalDocumentsEventOperationOneOfOriginal, type UpdateInternalDocumentsEvent as UpdateInternalDocumentsEventOriginal, type VersionedDeleteByIdsOperation as VersionedDeleteByIdsOperationOriginal, type VersionedDocumentId as VersionedDocumentIdOriginal, type VersionedDocumentUpdateOperation as VersionedDocumentUpdateOperationOriginal, VersioningMode as VersioningModeOriginal, type VersioningModeWithLiterals as VersioningModeWithLiteralsOriginal, VerticalAlignmentAlignment as VerticalAlignmentAlignmentOriginal, type VerticalAlignmentAlignmentWithLiterals as VerticalAlignmentAlignmentWithLiteralsOriginal, VerticalAlignment as VerticalAlignmentOriginal, type VerticalAlignmentWithLiterals as VerticalAlignmentWithLiteralsOriginal, type VideoData as VideoDataOriginal, type Video as VideoOriginal, type VideoResolution as VideoResolutionOriginal, type VideoV2 as VideoV2Original, ViewMode as ViewModeOriginal, type ViewModeWithLiterals as ViewModeWithLiteralsOriginal, ViewRole as ViewRoleOriginal, type ViewRoleWithLiterals as ViewRoleWithLiteralsOriginal, VoteRole as VoteRoleOriginal, type VoteRoleWithLiterals as VoteRoleWithLiteralsOriginal, type VoteSummary as VoteSummaryOriginal, WebhookIdentityType as WebhookIdentityTypeOriginal, type WebhookIdentityTypeWithLiterals as WebhookIdentityTypeWithLiteralsOriginal, Width as WidthOriginal, WidthType as WidthTypeOriginal, type WidthTypeWithLiterals as WidthTypeWithLiteralsOriginal, type WidthWithLiterals as WidthWithLiteralsOriginal, type __PublicMethodMetaInfo, bulkDeleteComment, bulkHideComment, bulkModerateDraftContent, bulkMoveCommentByFilter, bulkPublishComment, countComments, createComment, deleteComment, getComment, getCommentThread, hideComment, listCommentsByResource, markComment, moderateDraftContent, publishComment, queryComments, unmarkComment, updateComment };
@@ -127,6 +127,12 @@ function createComment(payload) {
127
127
  {
128
128
  path: "comment.content.richContent.nodes.audioData.coverImage.duration"
129
129
  },
130
+ {
131
+ path: "comment.content.richContent.nodes.layoutData.backgroundImage.media.duration"
132
+ },
133
+ {
134
+ path: "comment.content.richContent.nodes.layoutData.backdropImage.media.duration"
135
+ },
130
136
  {
131
137
  path: "comment.draftContent.richContent.nodes.galleryData.items.image.media.duration"
132
138
  },
@@ -171,6 +177,12 @@ function createComment(payload) {
171
177
  },
172
178
  {
173
179
  path: "comment.draftContent.richContent.nodes.audioData.coverImage.duration"
180
+ },
181
+ {
182
+ path: "comment.draftContent.richContent.nodes.layoutData.backgroundImage.media.duration"
183
+ },
184
+ {
185
+ path: "comment.draftContent.richContent.nodes.layoutData.backdropImage.media.duration"
174
186
  }
175
187
  ]
176
188
  }
@@ -280,6 +292,12 @@ function createComment(payload) {
280
292
  {
281
293
  path: "comment.content.richContent.nodes.audioData.coverImage.duration"
282
294
  },
295
+ {
296
+ path: "comment.content.richContent.nodes.layoutData.backgroundImage.media.duration"
297
+ },
298
+ {
299
+ path: "comment.content.richContent.nodes.layoutData.backdropImage.media.duration"
300
+ },
283
301
  {
284
302
  path: "comment.draftContent.richContent.nodes.galleryData.items.image.media.duration"
285
303
  },
@@ -324,6 +342,12 @@ function createComment(payload) {
324
342
  },
325
343
  {
326
344
  path: "comment.draftContent.richContent.nodes.audioData.coverImage.duration"
345
+ },
346
+ {
347
+ path: "comment.draftContent.richContent.nodes.layoutData.backgroundImage.media.duration"
348
+ },
349
+ {
350
+ path: "comment.draftContent.richContent.nodes.layoutData.backdropImage.media.duration"
327
351
  }
328
352
  ]
329
353
  }
@@ -440,6 +464,12 @@ function getComment(payload) {
440
464
  {
441
465
  path: "comment.content.richContent.nodes.audioData.coverImage.duration"
442
466
  },
467
+ {
468
+ path: "comment.content.richContent.nodes.layoutData.backgroundImage.media.duration"
469
+ },
470
+ {
471
+ path: "comment.content.richContent.nodes.layoutData.backdropImage.media.duration"
472
+ },
443
473
  {
444
474
  path: "comment.draftContent.richContent.nodes.galleryData.items.image.media.duration"
445
475
  },
@@ -484,6 +514,12 @@ function getComment(payload) {
484
514
  },
485
515
  {
486
516
  path: "comment.draftContent.richContent.nodes.audioData.coverImage.duration"
517
+ },
518
+ {
519
+ path: "comment.draftContent.richContent.nodes.layoutData.backgroundImage.media.duration"
520
+ },
521
+ {
522
+ path: "comment.draftContent.richContent.nodes.layoutData.backdropImage.media.duration"
487
523
  }
488
524
  ]
489
525
  }
@@ -574,6 +610,12 @@ function updateComment(payload) {
574
610
  {
575
611
  path: "comment.content.richContent.nodes.audioData.coverImage.duration"
576
612
  },
613
+ {
614
+ path: "comment.content.richContent.nodes.layoutData.backgroundImage.media.duration"
615
+ },
616
+ {
617
+ path: "comment.content.richContent.nodes.layoutData.backdropImage.media.duration"
618
+ },
577
619
  {
578
620
  path: "comment.draftContent.richContent.nodes.galleryData.items.image.media.duration"
579
621
  },
@@ -618,6 +660,12 @@ function updateComment(payload) {
618
660
  },
619
661
  {
620
662
  path: "comment.draftContent.richContent.nodes.audioData.coverImage.duration"
663
+ },
664
+ {
665
+ path: "comment.draftContent.richContent.nodes.layoutData.backgroundImage.media.duration"
666
+ },
667
+ {
668
+ path: "comment.draftContent.richContent.nodes.layoutData.backdropImage.media.duration"
621
669
  }
622
670
  ]
623
671
  }
@@ -727,6 +775,12 @@ function updateComment(payload) {
727
775
  {
728
776
  path: "comment.content.richContent.nodes.audioData.coverImage.duration"
729
777
  },
778
+ {
779
+ path: "comment.content.richContent.nodes.layoutData.backgroundImage.media.duration"
780
+ },
781
+ {
782
+ path: "comment.content.richContent.nodes.layoutData.backdropImage.media.duration"
783
+ },
730
784
  {
731
785
  path: "comment.draftContent.richContent.nodes.galleryData.items.image.media.duration"
732
786
  },
@@ -771,6 +825,12 @@ function updateComment(payload) {
771
825
  },
772
826
  {
773
827
  path: "comment.draftContent.richContent.nodes.audioData.coverImage.duration"
828
+ },
829
+ {
830
+ path: "comment.draftContent.richContent.nodes.layoutData.backgroundImage.media.duration"
831
+ },
832
+ {
833
+ path: "comment.draftContent.richContent.nodes.layoutData.backdropImage.media.duration"
774
834
  }
775
835
  ]
776
836
  }
@@ -908,6 +968,12 @@ function moderateDraftContent(payload) {
908
968
  {
909
969
  path: "comment.content.richContent.nodes.audioData.coverImage.duration"
910
970
  },
971
+ {
972
+ path: "comment.content.richContent.nodes.layoutData.backgroundImage.media.duration"
973
+ },
974
+ {
975
+ path: "comment.content.richContent.nodes.layoutData.backdropImage.media.duration"
976
+ },
911
977
  {
912
978
  path: "comment.draftContent.richContent.nodes.galleryData.items.image.media.duration"
913
979
  },
@@ -952,6 +1018,12 @@ function moderateDraftContent(payload) {
952
1018
  },
953
1019
  {
954
1020
  path: "comment.draftContent.richContent.nodes.audioData.coverImage.duration"
1021
+ },
1022
+ {
1023
+ path: "comment.draftContent.richContent.nodes.layoutData.backgroundImage.media.duration"
1024
+ },
1025
+ {
1026
+ path: "comment.draftContent.richContent.nodes.layoutData.backdropImage.media.duration"
955
1027
  }
956
1028
  ]
957
1029
  }
@@ -1072,6 +1144,12 @@ function queryComments(payload) {
1072
1144
  {
1073
1145
  path: "comments.content.richContent.nodes.audioData.coverImage.duration"
1074
1146
  },
1147
+ {
1148
+ path: "comments.content.richContent.nodes.layoutData.backgroundImage.media.duration"
1149
+ },
1150
+ {
1151
+ path: "comments.content.richContent.nodes.layoutData.backdropImage.media.duration"
1152
+ },
1075
1153
  {
1076
1154
  path: "comments.draftContent.richContent.nodes.galleryData.items.image.media.duration"
1077
1155
  },
@@ -1116,6 +1194,12 @@ function queryComments(payload) {
1116
1194
  },
1117
1195
  {
1118
1196
  path: "comments.draftContent.richContent.nodes.audioData.coverImage.duration"
1197
+ },
1198
+ {
1199
+ path: "comments.draftContent.richContent.nodes.layoutData.backgroundImage.media.duration"
1200
+ },
1201
+ {
1202
+ path: "comments.draftContent.richContent.nodes.layoutData.backdropImage.media.duration"
1119
1203
  }
1120
1204
  ]
1121
1205
  }
@@ -1232,6 +1316,12 @@ function markComment(payload) {
1232
1316
  {
1233
1317
  path: "comment.content.richContent.nodes.audioData.coverImage.duration"
1234
1318
  },
1319
+ {
1320
+ path: "comment.content.richContent.nodes.layoutData.backgroundImage.media.duration"
1321
+ },
1322
+ {
1323
+ path: "comment.content.richContent.nodes.layoutData.backdropImage.media.duration"
1324
+ },
1235
1325
  {
1236
1326
  path: "comment.draftContent.richContent.nodes.galleryData.items.image.media.duration"
1237
1327
  },
@@ -1276,6 +1366,12 @@ function markComment(payload) {
1276
1366
  },
1277
1367
  {
1278
1368
  path: "comment.draftContent.richContent.nodes.audioData.coverImage.duration"
1369
+ },
1370
+ {
1371
+ path: "comment.draftContent.richContent.nodes.layoutData.backgroundImage.media.duration"
1372
+ },
1373
+ {
1374
+ path: "comment.draftContent.richContent.nodes.layoutData.backdropImage.media.duration"
1279
1375
  }
1280
1376
  ]
1281
1377
  }
@@ -1392,6 +1488,12 @@ function unmarkComment(payload) {
1392
1488
  {
1393
1489
  path: "comment.content.richContent.nodes.audioData.coverImage.duration"
1394
1490
  },
1491
+ {
1492
+ path: "comment.content.richContent.nodes.layoutData.backgroundImage.media.duration"
1493
+ },
1494
+ {
1495
+ path: "comment.content.richContent.nodes.layoutData.backdropImage.media.duration"
1496
+ },
1395
1497
  {
1396
1498
  path: "comment.draftContent.richContent.nodes.galleryData.items.image.media.duration"
1397
1499
  },
@@ -1436,6 +1538,12 @@ function unmarkComment(payload) {
1436
1538
  },
1437
1539
  {
1438
1540
  path: "comment.draftContent.richContent.nodes.audioData.coverImage.duration"
1541
+ },
1542
+ {
1543
+ path: "comment.draftContent.richContent.nodes.layoutData.backgroundImage.media.duration"
1544
+ },
1545
+ {
1546
+ path: "comment.draftContent.richContent.nodes.layoutData.backdropImage.media.duration"
1439
1547
  }
1440
1548
  ]
1441
1549
  }
@@ -1552,6 +1660,12 @@ function hideComment(payload) {
1552
1660
  {
1553
1661
  path: "comment.content.richContent.nodes.audioData.coverImage.duration"
1554
1662
  },
1663
+ {
1664
+ path: "comment.content.richContent.nodes.layoutData.backgroundImage.media.duration"
1665
+ },
1666
+ {
1667
+ path: "comment.content.richContent.nodes.layoutData.backdropImage.media.duration"
1668
+ },
1555
1669
  {
1556
1670
  path: "comment.draftContent.richContent.nodes.galleryData.items.image.media.duration"
1557
1671
  },
@@ -1596,6 +1710,12 @@ function hideComment(payload) {
1596
1710
  },
1597
1711
  {
1598
1712
  path: "comment.draftContent.richContent.nodes.audioData.coverImage.duration"
1713
+ },
1714
+ {
1715
+ path: "comment.draftContent.richContent.nodes.layoutData.backgroundImage.media.duration"
1716
+ },
1717
+ {
1718
+ path: "comment.draftContent.richContent.nodes.layoutData.backdropImage.media.duration"
1599
1719
  }
1600
1720
  ]
1601
1721
  }
@@ -1712,6 +1832,12 @@ function publishComment(payload) {
1712
1832
  {
1713
1833
  path: "comment.content.richContent.nodes.audioData.coverImage.duration"
1714
1834
  },
1835
+ {
1836
+ path: "comment.content.richContent.nodes.layoutData.backgroundImage.media.duration"
1837
+ },
1838
+ {
1839
+ path: "comment.content.richContent.nodes.layoutData.backdropImage.media.duration"
1840
+ },
1715
1841
  {
1716
1842
  path: "comment.draftContent.richContent.nodes.galleryData.items.image.media.duration"
1717
1843
  },
@@ -1756,6 +1882,12 @@ function publishComment(payload) {
1756
1882
  },
1757
1883
  {
1758
1884
  path: "comment.draftContent.richContent.nodes.audioData.coverImage.duration"
1885
+ },
1886
+ {
1887
+ path: "comment.draftContent.richContent.nodes.layoutData.backgroundImage.media.duration"
1888
+ },
1889
+ {
1890
+ path: "comment.draftContent.richContent.nodes.layoutData.backdropImage.media.duration"
1759
1891
  }
1760
1892
  ]
1761
1893
  }
@@ -1944,6 +2076,12 @@ function listCommentsByResource(payload) {
1944
2076
  {
1945
2077
  path: "comments.content.richContent.nodes.audioData.coverImage.duration"
1946
2078
  },
2079
+ {
2080
+ path: "comments.content.richContent.nodes.layoutData.backgroundImage.media.duration"
2081
+ },
2082
+ {
2083
+ path: "comments.content.richContent.nodes.layoutData.backdropImage.media.duration"
2084
+ },
1947
2085
  {
1948
2086
  path: "comments.draftContent.richContent.nodes.galleryData.items.image.media.duration"
1949
2087
  },
@@ -1989,6 +2127,12 @@ function listCommentsByResource(payload) {
1989
2127
  {
1990
2128
  path: "comments.draftContent.richContent.nodes.audioData.coverImage.duration"
1991
2129
  },
2130
+ {
2131
+ path: "comments.draftContent.richContent.nodes.layoutData.backgroundImage.media.duration"
2132
+ },
2133
+ {
2134
+ path: "comments.draftContent.richContent.nodes.layoutData.backdropImage.media.duration"
2135
+ },
1992
2136
  {
1993
2137
  path: "commentReplies.*.replies.content.richContent.nodes.galleryData.items.image.media.duration"
1994
2138
  },
@@ -2034,6 +2178,12 @@ function listCommentsByResource(payload) {
2034
2178
  {
2035
2179
  path: "commentReplies.*.replies.content.richContent.nodes.audioData.coverImage.duration"
2036
2180
  },
2181
+ {
2182
+ path: "commentReplies.*.replies.content.richContent.nodes.layoutData.backgroundImage.media.duration"
2183
+ },
2184
+ {
2185
+ path: "commentReplies.*.replies.content.richContent.nodes.layoutData.backdropImage.media.duration"
2186
+ },
2037
2187
  {
2038
2188
  path: "commentReplies.*.replies.draftContent.richContent.nodes.galleryData.items.image.media.duration"
2039
2189
  },
@@ -2078,6 +2228,12 @@ function listCommentsByResource(payload) {
2078
2228
  },
2079
2229
  {
2080
2230
  path: "commentReplies.*.replies.draftContent.richContent.nodes.audioData.coverImage.duration"
2231
+ },
2232
+ {
2233
+ path: "commentReplies.*.replies.draftContent.richContent.nodes.layoutData.backgroundImage.media.duration"
2234
+ },
2235
+ {
2236
+ path: "commentReplies.*.replies.draftContent.richContent.nodes.layoutData.backdropImage.media.duration"
2081
2237
  }
2082
2238
  ]
2083
2239
  }
@@ -2245,6 +2401,12 @@ function getCommentThread(payload) {
2245
2401
  {
2246
2402
  path: "comments.content.richContent.nodes.audioData.coverImage.duration"
2247
2403
  },
2404
+ {
2405
+ path: "comments.content.richContent.nodes.layoutData.backgroundImage.media.duration"
2406
+ },
2407
+ {
2408
+ path: "comments.content.richContent.nodes.layoutData.backdropImage.media.duration"
2409
+ },
2248
2410
  {
2249
2411
  path: "comments.draftContent.richContent.nodes.galleryData.items.image.media.duration"
2250
2412
  },
@@ -2290,6 +2452,12 @@ function getCommentThread(payload) {
2290
2452
  {
2291
2453
  path: "comments.draftContent.richContent.nodes.audioData.coverImage.duration"
2292
2454
  },
2455
+ {
2456
+ path: "comments.draftContent.richContent.nodes.layoutData.backgroundImage.media.duration"
2457
+ },
2458
+ {
2459
+ path: "comments.draftContent.richContent.nodes.layoutData.backdropImage.media.duration"
2460
+ },
2293
2461
  {
2294
2462
  path: "commentReplies.*.replies.content.richContent.nodes.galleryData.items.image.media.duration"
2295
2463
  },
@@ -2335,6 +2503,12 @@ function getCommentThread(payload) {
2335
2503
  {
2336
2504
  path: "commentReplies.*.replies.content.richContent.nodes.audioData.coverImage.duration"
2337
2505
  },
2506
+ {
2507
+ path: "commentReplies.*.replies.content.richContent.nodes.layoutData.backgroundImage.media.duration"
2508
+ },
2509
+ {
2510
+ path: "commentReplies.*.replies.content.richContent.nodes.layoutData.backdropImage.media.duration"
2511
+ },
2338
2512
  {
2339
2513
  path: "commentReplies.*.replies.draftContent.richContent.nodes.galleryData.items.image.media.duration"
2340
2514
  },
@@ -2379,6 +2553,12 @@ function getCommentThread(payload) {
2379
2553
  },
2380
2554
  {
2381
2555
  path: "commentReplies.*.replies.draftContent.richContent.nodes.audioData.coverImage.duration"
2556
+ },
2557
+ {
2558
+ path: "commentReplies.*.replies.draftContent.richContent.nodes.layoutData.backgroundImage.media.duration"
2559
+ },
2560
+ {
2561
+ path: "commentReplies.*.replies.draftContent.richContent.nodes.layoutData.backdropImage.media.duration"
2382
2562
  }
2383
2563
  ]
2384
2564
  }
@@ -2628,6 +2808,7 @@ var GIFType = /* @__PURE__ */ ((GIFType2) => {
2628
2808
  var Source = /* @__PURE__ */ ((Source2) => {
2629
2809
  Source2["HTML"] = "HTML";
2630
2810
  Source2["ADSENSE"] = "ADSENSE";
2811
+ Source2["AI"] = "AI";
2631
2812
  return Source2;
2632
2813
  })(Source || {});
2633
2814
  var StylesPosition = /* @__PURE__ */ ((StylesPosition2) => {
@@ -2756,6 +2937,35 @@ var NullValue = /* @__PURE__ */ ((NullValue2) => {
2756
2937
  NullValue2["NULL_VALUE"] = "NULL_VALUE";
2757
2938
  return NullValue2;
2758
2939
  })(NullValue || {});
2940
+ var Scaling = /* @__PURE__ */ ((Scaling2) => {
2941
+ Scaling2["AUTO"] = "AUTO";
2942
+ Scaling2["CONTAIN"] = "CONTAIN";
2943
+ Scaling2["COVER"] = "COVER";
2944
+ return Scaling2;
2945
+ })(Scaling || {});
2946
+ var ImagePosition = /* @__PURE__ */ ((ImagePosition2) => {
2947
+ ImagePosition2["CENTER"] = "CENTER";
2948
+ ImagePosition2["CENTER_LEFT"] = "CENTER_LEFT";
2949
+ ImagePosition2["CENTER_RIGHT"] = "CENTER_RIGHT";
2950
+ ImagePosition2["TOP"] = "TOP";
2951
+ ImagePosition2["TOP_LEFT"] = "TOP_LEFT";
2952
+ ImagePosition2["TOP_RIGHT"] = "TOP_RIGHT";
2953
+ ImagePosition2["BOTTOM"] = "BOTTOM";
2954
+ ImagePosition2["BOTTOM_LEFT"] = "BOTTOM_LEFT";
2955
+ ImagePosition2["BOTTOM_RIGHT"] = "BOTTOM_RIGHT";
2956
+ return ImagePosition2;
2957
+ })(ImagePosition || {});
2958
+ var VerticalAlignmentAlignment = /* @__PURE__ */ ((VerticalAlignmentAlignment2) => {
2959
+ VerticalAlignmentAlignment2["TOP"] = "TOP";
2960
+ VerticalAlignmentAlignment2["MIDDLE"] = "MIDDLE";
2961
+ VerticalAlignmentAlignment2["BOTTOM"] = "BOTTOM";
2962
+ return VerticalAlignmentAlignment2;
2963
+ })(VerticalAlignmentAlignment || {});
2964
+ var ResponsivenessBehaviour = /* @__PURE__ */ ((ResponsivenessBehaviour2) => {
2965
+ ResponsivenessBehaviour2["STACK"] = "STACK";
2966
+ ResponsivenessBehaviour2["WRAP"] = "WRAP";
2967
+ return ResponsivenessBehaviour2;
2968
+ })(ResponsivenessBehaviour || {});
2759
2969
  var Status = /* @__PURE__ */ ((Status2) => {
2760
2970
  Status2["UNKNOWN"] = "UNKNOWN";
2761
2971
  Status2["PUBLISHED"] = "PUBLISHED";
@@ -3146,6 +3356,7 @@ export {
3146
3356
  DividerDataAlignment as DividerDataAlignmentOriginal,
3147
3357
  FontType as FontTypeOriginal,
3148
3358
  GIFType as GIFTypeOriginal,
3359
+ ImagePosition as ImagePositionOriginal,
3149
3360
  InitialExpandedItems as InitialExpandedItemsOriginal,
3150
3361
  Layout as LayoutOriginal,
3151
3362
  LayoutType as LayoutTypeOriginal,
@@ -3162,6 +3373,8 @@ export {
3162
3373
  Position as PositionOriginal,
3163
3374
  ReplySortOrder as ReplySortOrderOriginal,
3164
3375
  Resizing as ResizingOriginal,
3376
+ ResponsivenessBehaviour as ResponsivenessBehaviourOriginal,
3377
+ Scaling as ScalingOriginal,
3165
3378
  SortOrder as SortOrderOriginal,
3166
3379
  Source as SourceOriginal,
3167
3380
  Status as StatusOriginal,
@@ -3171,6 +3384,7 @@ export {
3171
3384
  ThumbnailsAlignment as ThumbnailsAlignmentOriginal,
3172
3385
  Type as TypeOriginal,
3173
3386
  VersioningMode as VersioningModeOriginal,
3387
+ VerticalAlignmentAlignment as VerticalAlignmentAlignmentOriginal,
3174
3388
  VerticalAlignment as VerticalAlignmentOriginal,
3175
3389
  ViewMode as ViewModeOriginal,
3176
3390
  ViewRole as ViewRoleOriginal,