@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.
- package/build/cjs/index.d.ts +1 -1
- package/build/cjs/index.js +326 -0
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +112 -5
- package/build/cjs/index.typings.js +218 -0
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +112 -5
- package/build/cjs/meta.js +218 -0
- package/build/cjs/meta.js.map +1 -1
- package/build/es/index.d.mts +1 -1
- package/build/es/index.mjs +322 -0
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +112 -5
- package/build/es/index.typings.mjs +214 -0
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +112 -5
- package/build/es/meta.mjs +214 -0
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/index.d.ts +1 -1
- package/build/internal/cjs/index.js +326 -0
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +112 -5
- package/build/internal/cjs/index.typings.js +218 -0
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +112 -5
- package/build/internal/cjs/meta.js +218 -0
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/index.d.mts +1 -1
- package/build/internal/es/index.mjs +322 -0
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +112 -5
- package/build/internal/es/index.typings.mjs +214 -0
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +112 -5
- package/build/internal/es/meta.mjs +214 -0
- package/build/internal/es/meta.mjs.map +1 -1
- 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
|
-
/**
|
|
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
|
-
/**
|
|
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 };
|
|
@@ -135,6 +135,12 @@ function createComment(payload) {
|
|
|
135
135
|
{
|
|
136
136
|
path: "comment.content.richContent.nodes.audioData.coverImage.duration"
|
|
137
137
|
},
|
|
138
|
+
{
|
|
139
|
+
path: "comment.content.richContent.nodes.layoutData.backgroundImage.media.duration"
|
|
140
|
+
},
|
|
141
|
+
{
|
|
142
|
+
path: "comment.content.richContent.nodes.layoutData.backdropImage.media.duration"
|
|
143
|
+
},
|
|
138
144
|
{
|
|
139
145
|
path: "comment.draftContent.richContent.nodes.galleryData.items.image.media.duration"
|
|
140
146
|
},
|
|
@@ -179,6 +185,12 @@ function createComment(payload) {
|
|
|
179
185
|
},
|
|
180
186
|
{
|
|
181
187
|
path: "comment.draftContent.richContent.nodes.audioData.coverImage.duration"
|
|
188
|
+
},
|
|
189
|
+
{
|
|
190
|
+
path: "comment.draftContent.richContent.nodes.layoutData.backgroundImage.media.duration"
|
|
191
|
+
},
|
|
192
|
+
{
|
|
193
|
+
path: "comment.draftContent.richContent.nodes.layoutData.backdropImage.media.duration"
|
|
182
194
|
}
|
|
183
195
|
]
|
|
184
196
|
}
|
|
@@ -288,6 +300,12 @@ function createComment(payload) {
|
|
|
288
300
|
{
|
|
289
301
|
path: "comment.content.richContent.nodes.audioData.coverImage.duration"
|
|
290
302
|
},
|
|
303
|
+
{
|
|
304
|
+
path: "comment.content.richContent.nodes.layoutData.backgroundImage.media.duration"
|
|
305
|
+
},
|
|
306
|
+
{
|
|
307
|
+
path: "comment.content.richContent.nodes.layoutData.backdropImage.media.duration"
|
|
308
|
+
},
|
|
291
309
|
{
|
|
292
310
|
path: "comment.draftContent.richContent.nodes.galleryData.items.image.media.duration"
|
|
293
311
|
},
|
|
@@ -332,6 +350,12 @@ function createComment(payload) {
|
|
|
332
350
|
},
|
|
333
351
|
{
|
|
334
352
|
path: "comment.draftContent.richContent.nodes.audioData.coverImage.duration"
|
|
353
|
+
},
|
|
354
|
+
{
|
|
355
|
+
path: "comment.draftContent.richContent.nodes.layoutData.backgroundImage.media.duration"
|
|
356
|
+
},
|
|
357
|
+
{
|
|
358
|
+
path: "comment.draftContent.richContent.nodes.layoutData.backdropImage.media.duration"
|
|
335
359
|
}
|
|
336
360
|
]
|
|
337
361
|
}
|
|
@@ -448,6 +472,12 @@ function getComment(payload) {
|
|
|
448
472
|
{
|
|
449
473
|
path: "comment.content.richContent.nodes.audioData.coverImage.duration"
|
|
450
474
|
},
|
|
475
|
+
{
|
|
476
|
+
path: "comment.content.richContent.nodes.layoutData.backgroundImage.media.duration"
|
|
477
|
+
},
|
|
478
|
+
{
|
|
479
|
+
path: "comment.content.richContent.nodes.layoutData.backdropImage.media.duration"
|
|
480
|
+
},
|
|
451
481
|
{
|
|
452
482
|
path: "comment.draftContent.richContent.nodes.galleryData.items.image.media.duration"
|
|
453
483
|
},
|
|
@@ -492,6 +522,12 @@ function getComment(payload) {
|
|
|
492
522
|
},
|
|
493
523
|
{
|
|
494
524
|
path: "comment.draftContent.richContent.nodes.audioData.coverImage.duration"
|
|
525
|
+
},
|
|
526
|
+
{
|
|
527
|
+
path: "comment.draftContent.richContent.nodes.layoutData.backgroundImage.media.duration"
|
|
528
|
+
},
|
|
529
|
+
{
|
|
530
|
+
path: "comment.draftContent.richContent.nodes.layoutData.backdropImage.media.duration"
|
|
495
531
|
}
|
|
496
532
|
]
|
|
497
533
|
}
|
|
@@ -582,6 +618,12 @@ function updateComment(payload) {
|
|
|
582
618
|
{
|
|
583
619
|
path: "comment.content.richContent.nodes.audioData.coverImage.duration"
|
|
584
620
|
},
|
|
621
|
+
{
|
|
622
|
+
path: "comment.content.richContent.nodes.layoutData.backgroundImage.media.duration"
|
|
623
|
+
},
|
|
624
|
+
{
|
|
625
|
+
path: "comment.content.richContent.nodes.layoutData.backdropImage.media.duration"
|
|
626
|
+
},
|
|
585
627
|
{
|
|
586
628
|
path: "comment.draftContent.richContent.nodes.galleryData.items.image.media.duration"
|
|
587
629
|
},
|
|
@@ -626,6 +668,12 @@ function updateComment(payload) {
|
|
|
626
668
|
},
|
|
627
669
|
{
|
|
628
670
|
path: "comment.draftContent.richContent.nodes.audioData.coverImage.duration"
|
|
671
|
+
},
|
|
672
|
+
{
|
|
673
|
+
path: "comment.draftContent.richContent.nodes.layoutData.backgroundImage.media.duration"
|
|
674
|
+
},
|
|
675
|
+
{
|
|
676
|
+
path: "comment.draftContent.richContent.nodes.layoutData.backdropImage.media.duration"
|
|
629
677
|
}
|
|
630
678
|
]
|
|
631
679
|
}
|
|
@@ -735,6 +783,12 @@ function updateComment(payload) {
|
|
|
735
783
|
{
|
|
736
784
|
path: "comment.content.richContent.nodes.audioData.coverImage.duration"
|
|
737
785
|
},
|
|
786
|
+
{
|
|
787
|
+
path: "comment.content.richContent.nodes.layoutData.backgroundImage.media.duration"
|
|
788
|
+
},
|
|
789
|
+
{
|
|
790
|
+
path: "comment.content.richContent.nodes.layoutData.backdropImage.media.duration"
|
|
791
|
+
},
|
|
738
792
|
{
|
|
739
793
|
path: "comment.draftContent.richContent.nodes.galleryData.items.image.media.duration"
|
|
740
794
|
},
|
|
@@ -779,6 +833,12 @@ function updateComment(payload) {
|
|
|
779
833
|
},
|
|
780
834
|
{
|
|
781
835
|
path: "comment.draftContent.richContent.nodes.audioData.coverImage.duration"
|
|
836
|
+
},
|
|
837
|
+
{
|
|
838
|
+
path: "comment.draftContent.richContent.nodes.layoutData.backgroundImage.media.duration"
|
|
839
|
+
},
|
|
840
|
+
{
|
|
841
|
+
path: "comment.draftContent.richContent.nodes.layoutData.backdropImage.media.duration"
|
|
782
842
|
}
|
|
783
843
|
]
|
|
784
844
|
}
|
|
@@ -916,6 +976,12 @@ function moderateDraftContent(payload) {
|
|
|
916
976
|
{
|
|
917
977
|
path: "comment.content.richContent.nodes.audioData.coverImage.duration"
|
|
918
978
|
},
|
|
979
|
+
{
|
|
980
|
+
path: "comment.content.richContent.nodes.layoutData.backgroundImage.media.duration"
|
|
981
|
+
},
|
|
982
|
+
{
|
|
983
|
+
path: "comment.content.richContent.nodes.layoutData.backdropImage.media.duration"
|
|
984
|
+
},
|
|
919
985
|
{
|
|
920
986
|
path: "comment.draftContent.richContent.nodes.galleryData.items.image.media.duration"
|
|
921
987
|
},
|
|
@@ -960,6 +1026,12 @@ function moderateDraftContent(payload) {
|
|
|
960
1026
|
},
|
|
961
1027
|
{
|
|
962
1028
|
path: "comment.draftContent.richContent.nodes.audioData.coverImage.duration"
|
|
1029
|
+
},
|
|
1030
|
+
{
|
|
1031
|
+
path: "comment.draftContent.richContent.nodes.layoutData.backgroundImage.media.duration"
|
|
1032
|
+
},
|
|
1033
|
+
{
|
|
1034
|
+
path: "comment.draftContent.richContent.nodes.layoutData.backdropImage.media.duration"
|
|
963
1035
|
}
|
|
964
1036
|
]
|
|
965
1037
|
}
|
|
@@ -1080,6 +1152,12 @@ function queryComments(payload) {
|
|
|
1080
1152
|
{
|
|
1081
1153
|
path: "comments.content.richContent.nodes.audioData.coverImage.duration"
|
|
1082
1154
|
},
|
|
1155
|
+
{
|
|
1156
|
+
path: "comments.content.richContent.nodes.layoutData.backgroundImage.media.duration"
|
|
1157
|
+
},
|
|
1158
|
+
{
|
|
1159
|
+
path: "comments.content.richContent.nodes.layoutData.backdropImage.media.duration"
|
|
1160
|
+
},
|
|
1083
1161
|
{
|
|
1084
1162
|
path: "comments.draftContent.richContent.nodes.galleryData.items.image.media.duration"
|
|
1085
1163
|
},
|
|
@@ -1124,6 +1202,12 @@ function queryComments(payload) {
|
|
|
1124
1202
|
},
|
|
1125
1203
|
{
|
|
1126
1204
|
path: "comments.draftContent.richContent.nodes.audioData.coverImage.duration"
|
|
1205
|
+
},
|
|
1206
|
+
{
|
|
1207
|
+
path: "comments.draftContent.richContent.nodes.layoutData.backgroundImage.media.duration"
|
|
1208
|
+
},
|
|
1209
|
+
{
|
|
1210
|
+
path: "comments.draftContent.richContent.nodes.layoutData.backdropImage.media.duration"
|
|
1127
1211
|
}
|
|
1128
1212
|
]
|
|
1129
1213
|
}
|
|
@@ -1240,6 +1324,12 @@ function markComment(payload) {
|
|
|
1240
1324
|
{
|
|
1241
1325
|
path: "comment.content.richContent.nodes.audioData.coverImage.duration"
|
|
1242
1326
|
},
|
|
1327
|
+
{
|
|
1328
|
+
path: "comment.content.richContent.nodes.layoutData.backgroundImage.media.duration"
|
|
1329
|
+
},
|
|
1330
|
+
{
|
|
1331
|
+
path: "comment.content.richContent.nodes.layoutData.backdropImage.media.duration"
|
|
1332
|
+
},
|
|
1243
1333
|
{
|
|
1244
1334
|
path: "comment.draftContent.richContent.nodes.galleryData.items.image.media.duration"
|
|
1245
1335
|
},
|
|
@@ -1284,6 +1374,12 @@ function markComment(payload) {
|
|
|
1284
1374
|
},
|
|
1285
1375
|
{
|
|
1286
1376
|
path: "comment.draftContent.richContent.nodes.audioData.coverImage.duration"
|
|
1377
|
+
},
|
|
1378
|
+
{
|
|
1379
|
+
path: "comment.draftContent.richContent.nodes.layoutData.backgroundImage.media.duration"
|
|
1380
|
+
},
|
|
1381
|
+
{
|
|
1382
|
+
path: "comment.draftContent.richContent.nodes.layoutData.backdropImage.media.duration"
|
|
1287
1383
|
}
|
|
1288
1384
|
]
|
|
1289
1385
|
}
|
|
@@ -1400,6 +1496,12 @@ function unmarkComment(payload) {
|
|
|
1400
1496
|
{
|
|
1401
1497
|
path: "comment.content.richContent.nodes.audioData.coverImage.duration"
|
|
1402
1498
|
},
|
|
1499
|
+
{
|
|
1500
|
+
path: "comment.content.richContent.nodes.layoutData.backgroundImage.media.duration"
|
|
1501
|
+
},
|
|
1502
|
+
{
|
|
1503
|
+
path: "comment.content.richContent.nodes.layoutData.backdropImage.media.duration"
|
|
1504
|
+
},
|
|
1403
1505
|
{
|
|
1404
1506
|
path: "comment.draftContent.richContent.nodes.galleryData.items.image.media.duration"
|
|
1405
1507
|
},
|
|
@@ -1444,6 +1546,12 @@ function unmarkComment(payload) {
|
|
|
1444
1546
|
},
|
|
1445
1547
|
{
|
|
1446
1548
|
path: "comment.draftContent.richContent.nodes.audioData.coverImage.duration"
|
|
1549
|
+
},
|
|
1550
|
+
{
|
|
1551
|
+
path: "comment.draftContent.richContent.nodes.layoutData.backgroundImage.media.duration"
|
|
1552
|
+
},
|
|
1553
|
+
{
|
|
1554
|
+
path: "comment.draftContent.richContent.nodes.layoutData.backdropImage.media.duration"
|
|
1447
1555
|
}
|
|
1448
1556
|
]
|
|
1449
1557
|
}
|
|
@@ -1560,6 +1668,12 @@ function hideComment(payload) {
|
|
|
1560
1668
|
{
|
|
1561
1669
|
path: "comment.content.richContent.nodes.audioData.coverImage.duration"
|
|
1562
1670
|
},
|
|
1671
|
+
{
|
|
1672
|
+
path: "comment.content.richContent.nodes.layoutData.backgroundImage.media.duration"
|
|
1673
|
+
},
|
|
1674
|
+
{
|
|
1675
|
+
path: "comment.content.richContent.nodes.layoutData.backdropImage.media.duration"
|
|
1676
|
+
},
|
|
1563
1677
|
{
|
|
1564
1678
|
path: "comment.draftContent.richContent.nodes.galleryData.items.image.media.duration"
|
|
1565
1679
|
},
|
|
@@ -1604,6 +1718,12 @@ function hideComment(payload) {
|
|
|
1604
1718
|
},
|
|
1605
1719
|
{
|
|
1606
1720
|
path: "comment.draftContent.richContent.nodes.audioData.coverImage.duration"
|
|
1721
|
+
},
|
|
1722
|
+
{
|
|
1723
|
+
path: "comment.draftContent.richContent.nodes.layoutData.backgroundImage.media.duration"
|
|
1724
|
+
},
|
|
1725
|
+
{
|
|
1726
|
+
path: "comment.draftContent.richContent.nodes.layoutData.backdropImage.media.duration"
|
|
1607
1727
|
}
|
|
1608
1728
|
]
|
|
1609
1729
|
}
|
|
@@ -1720,6 +1840,12 @@ function publishComment(payload) {
|
|
|
1720
1840
|
{
|
|
1721
1841
|
path: "comment.content.richContent.nodes.audioData.coverImage.duration"
|
|
1722
1842
|
},
|
|
1843
|
+
{
|
|
1844
|
+
path: "comment.content.richContent.nodes.layoutData.backgroundImage.media.duration"
|
|
1845
|
+
},
|
|
1846
|
+
{
|
|
1847
|
+
path: "comment.content.richContent.nodes.layoutData.backdropImage.media.duration"
|
|
1848
|
+
},
|
|
1723
1849
|
{
|
|
1724
1850
|
path: "comment.draftContent.richContent.nodes.galleryData.items.image.media.duration"
|
|
1725
1851
|
},
|
|
@@ -1764,6 +1890,12 @@ function publishComment(payload) {
|
|
|
1764
1890
|
},
|
|
1765
1891
|
{
|
|
1766
1892
|
path: "comment.draftContent.richContent.nodes.audioData.coverImage.duration"
|
|
1893
|
+
},
|
|
1894
|
+
{
|
|
1895
|
+
path: "comment.draftContent.richContent.nodes.layoutData.backgroundImage.media.duration"
|
|
1896
|
+
},
|
|
1897
|
+
{
|
|
1898
|
+
path: "comment.draftContent.richContent.nodes.layoutData.backdropImage.media.duration"
|
|
1767
1899
|
}
|
|
1768
1900
|
]
|
|
1769
1901
|
}
|
|
@@ -1952,6 +2084,12 @@ function listCommentsByResource(payload) {
|
|
|
1952
2084
|
{
|
|
1953
2085
|
path: "comments.content.richContent.nodes.audioData.coverImage.duration"
|
|
1954
2086
|
},
|
|
2087
|
+
{
|
|
2088
|
+
path: "comments.content.richContent.nodes.layoutData.backgroundImage.media.duration"
|
|
2089
|
+
},
|
|
2090
|
+
{
|
|
2091
|
+
path: "comments.content.richContent.nodes.layoutData.backdropImage.media.duration"
|
|
2092
|
+
},
|
|
1955
2093
|
{
|
|
1956
2094
|
path: "comments.draftContent.richContent.nodes.galleryData.items.image.media.duration"
|
|
1957
2095
|
},
|
|
@@ -1997,6 +2135,12 @@ function listCommentsByResource(payload) {
|
|
|
1997
2135
|
{
|
|
1998
2136
|
path: "comments.draftContent.richContent.nodes.audioData.coverImage.duration"
|
|
1999
2137
|
},
|
|
2138
|
+
{
|
|
2139
|
+
path: "comments.draftContent.richContent.nodes.layoutData.backgroundImage.media.duration"
|
|
2140
|
+
},
|
|
2141
|
+
{
|
|
2142
|
+
path: "comments.draftContent.richContent.nodes.layoutData.backdropImage.media.duration"
|
|
2143
|
+
},
|
|
2000
2144
|
{
|
|
2001
2145
|
path: "commentReplies.*.replies.content.richContent.nodes.galleryData.items.image.media.duration"
|
|
2002
2146
|
},
|
|
@@ -2042,6 +2186,12 @@ function listCommentsByResource(payload) {
|
|
|
2042
2186
|
{
|
|
2043
2187
|
path: "commentReplies.*.replies.content.richContent.nodes.audioData.coverImage.duration"
|
|
2044
2188
|
},
|
|
2189
|
+
{
|
|
2190
|
+
path: "commentReplies.*.replies.content.richContent.nodes.layoutData.backgroundImage.media.duration"
|
|
2191
|
+
},
|
|
2192
|
+
{
|
|
2193
|
+
path: "commentReplies.*.replies.content.richContent.nodes.layoutData.backdropImage.media.duration"
|
|
2194
|
+
},
|
|
2045
2195
|
{
|
|
2046
2196
|
path: "commentReplies.*.replies.draftContent.richContent.nodes.galleryData.items.image.media.duration"
|
|
2047
2197
|
},
|
|
@@ -2086,6 +2236,12 @@ function listCommentsByResource(payload) {
|
|
|
2086
2236
|
},
|
|
2087
2237
|
{
|
|
2088
2238
|
path: "commentReplies.*.replies.draftContent.richContent.nodes.audioData.coverImage.duration"
|
|
2239
|
+
},
|
|
2240
|
+
{
|
|
2241
|
+
path: "commentReplies.*.replies.draftContent.richContent.nodes.layoutData.backgroundImage.media.duration"
|
|
2242
|
+
},
|
|
2243
|
+
{
|
|
2244
|
+
path: "commentReplies.*.replies.draftContent.richContent.nodes.layoutData.backdropImage.media.duration"
|
|
2089
2245
|
}
|
|
2090
2246
|
]
|
|
2091
2247
|
}
|
|
@@ -2253,6 +2409,12 @@ function getCommentThread(payload) {
|
|
|
2253
2409
|
{
|
|
2254
2410
|
path: "comments.content.richContent.nodes.audioData.coverImage.duration"
|
|
2255
2411
|
},
|
|
2412
|
+
{
|
|
2413
|
+
path: "comments.content.richContent.nodes.layoutData.backgroundImage.media.duration"
|
|
2414
|
+
},
|
|
2415
|
+
{
|
|
2416
|
+
path: "comments.content.richContent.nodes.layoutData.backdropImage.media.duration"
|
|
2417
|
+
},
|
|
2256
2418
|
{
|
|
2257
2419
|
path: "comments.draftContent.richContent.nodes.galleryData.items.image.media.duration"
|
|
2258
2420
|
},
|
|
@@ -2298,6 +2460,12 @@ function getCommentThread(payload) {
|
|
|
2298
2460
|
{
|
|
2299
2461
|
path: "comments.draftContent.richContent.nodes.audioData.coverImage.duration"
|
|
2300
2462
|
},
|
|
2463
|
+
{
|
|
2464
|
+
path: "comments.draftContent.richContent.nodes.layoutData.backgroundImage.media.duration"
|
|
2465
|
+
},
|
|
2466
|
+
{
|
|
2467
|
+
path: "comments.draftContent.richContent.nodes.layoutData.backdropImage.media.duration"
|
|
2468
|
+
},
|
|
2301
2469
|
{
|
|
2302
2470
|
path: "commentReplies.*.replies.content.richContent.nodes.galleryData.items.image.media.duration"
|
|
2303
2471
|
},
|
|
@@ -2343,6 +2511,12 @@ function getCommentThread(payload) {
|
|
|
2343
2511
|
{
|
|
2344
2512
|
path: "commentReplies.*.replies.content.richContent.nodes.audioData.coverImage.duration"
|
|
2345
2513
|
},
|
|
2514
|
+
{
|
|
2515
|
+
path: "commentReplies.*.replies.content.richContent.nodes.layoutData.backgroundImage.media.duration"
|
|
2516
|
+
},
|
|
2517
|
+
{
|
|
2518
|
+
path: "commentReplies.*.replies.content.richContent.nodes.layoutData.backdropImage.media.duration"
|
|
2519
|
+
},
|
|
2346
2520
|
{
|
|
2347
2521
|
path: "commentReplies.*.replies.draftContent.richContent.nodes.galleryData.items.image.media.duration"
|
|
2348
2522
|
},
|
|
@@ -2387,6 +2561,12 @@ function getCommentThread(payload) {
|
|
|
2387
2561
|
},
|
|
2388
2562
|
{
|
|
2389
2563
|
path: "commentReplies.*.replies.draftContent.richContent.nodes.audioData.coverImage.duration"
|
|
2564
|
+
},
|
|
2565
|
+
{
|
|
2566
|
+
path: "commentReplies.*.replies.draftContent.richContent.nodes.layoutData.backgroundImage.media.duration"
|
|
2567
|
+
},
|
|
2568
|
+
{
|
|
2569
|
+
path: "commentReplies.*.replies.draftContent.richContent.nodes.layoutData.backdropImage.media.duration"
|
|
2390
2570
|
}
|
|
2391
2571
|
]
|
|
2392
2572
|
}
|
|
@@ -2645,6 +2825,7 @@ var GIFType = /* @__PURE__ */ ((GIFType2) => {
|
|
|
2645
2825
|
var Source = /* @__PURE__ */ ((Source2) => {
|
|
2646
2826
|
Source2["HTML"] = "HTML";
|
|
2647
2827
|
Source2["ADSENSE"] = "ADSENSE";
|
|
2828
|
+
Source2["AI"] = "AI";
|
|
2648
2829
|
return Source2;
|
|
2649
2830
|
})(Source || {});
|
|
2650
2831
|
var StylesPosition = /* @__PURE__ */ ((StylesPosition2) => {
|
|
@@ -2773,6 +2954,35 @@ var NullValue = /* @__PURE__ */ ((NullValue2) => {
|
|
|
2773
2954
|
NullValue2["NULL_VALUE"] = "NULL_VALUE";
|
|
2774
2955
|
return NullValue2;
|
|
2775
2956
|
})(NullValue || {});
|
|
2957
|
+
var Scaling = /* @__PURE__ */ ((Scaling2) => {
|
|
2958
|
+
Scaling2["AUTO"] = "AUTO";
|
|
2959
|
+
Scaling2["CONTAIN"] = "CONTAIN";
|
|
2960
|
+
Scaling2["COVER"] = "COVER";
|
|
2961
|
+
return Scaling2;
|
|
2962
|
+
})(Scaling || {});
|
|
2963
|
+
var ImagePosition = /* @__PURE__ */ ((ImagePosition2) => {
|
|
2964
|
+
ImagePosition2["CENTER"] = "CENTER";
|
|
2965
|
+
ImagePosition2["CENTER_LEFT"] = "CENTER_LEFT";
|
|
2966
|
+
ImagePosition2["CENTER_RIGHT"] = "CENTER_RIGHT";
|
|
2967
|
+
ImagePosition2["TOP"] = "TOP";
|
|
2968
|
+
ImagePosition2["TOP_LEFT"] = "TOP_LEFT";
|
|
2969
|
+
ImagePosition2["TOP_RIGHT"] = "TOP_RIGHT";
|
|
2970
|
+
ImagePosition2["BOTTOM"] = "BOTTOM";
|
|
2971
|
+
ImagePosition2["BOTTOM_LEFT"] = "BOTTOM_LEFT";
|
|
2972
|
+
ImagePosition2["BOTTOM_RIGHT"] = "BOTTOM_RIGHT";
|
|
2973
|
+
return ImagePosition2;
|
|
2974
|
+
})(ImagePosition || {});
|
|
2975
|
+
var VerticalAlignmentAlignment = /* @__PURE__ */ ((VerticalAlignmentAlignment2) => {
|
|
2976
|
+
VerticalAlignmentAlignment2["TOP"] = "TOP";
|
|
2977
|
+
VerticalAlignmentAlignment2["MIDDLE"] = "MIDDLE";
|
|
2978
|
+
VerticalAlignmentAlignment2["BOTTOM"] = "BOTTOM";
|
|
2979
|
+
return VerticalAlignmentAlignment2;
|
|
2980
|
+
})(VerticalAlignmentAlignment || {});
|
|
2981
|
+
var ResponsivenessBehaviour = /* @__PURE__ */ ((ResponsivenessBehaviour2) => {
|
|
2982
|
+
ResponsivenessBehaviour2["STACK"] = "STACK";
|
|
2983
|
+
ResponsivenessBehaviour2["WRAP"] = "WRAP";
|
|
2984
|
+
return ResponsivenessBehaviour2;
|
|
2985
|
+
})(ResponsivenessBehaviour || {});
|
|
2776
2986
|
var Status = /* @__PURE__ */ ((Status2) => {
|
|
2777
2987
|
Status2["UNKNOWN"] = "UNKNOWN";
|
|
2778
2988
|
Status2["PUBLISHED"] = "PUBLISHED";
|
|
@@ -3805,6 +4015,7 @@ export {
|
|
|
3805
4015
|
DividerDataAlignment,
|
|
3806
4016
|
FontType,
|
|
3807
4017
|
GIFType,
|
|
4018
|
+
ImagePosition,
|
|
3808
4019
|
InitialExpandedItems,
|
|
3809
4020
|
Layout,
|
|
3810
4021
|
LayoutType,
|
|
@@ -3821,6 +4032,8 @@ export {
|
|
|
3821
4032
|
Position,
|
|
3822
4033
|
ReplySortOrder,
|
|
3823
4034
|
Resizing,
|
|
4035
|
+
ResponsivenessBehaviour,
|
|
4036
|
+
Scaling,
|
|
3824
4037
|
SortOrder,
|
|
3825
4038
|
Source,
|
|
3826
4039
|
Status,
|
|
@@ -3831,6 +4044,7 @@ export {
|
|
|
3831
4044
|
Type,
|
|
3832
4045
|
VersioningMode,
|
|
3833
4046
|
VerticalAlignment,
|
|
4047
|
+
VerticalAlignmentAlignment,
|
|
3834
4048
|
ViewMode,
|
|
3835
4049
|
ViewRole,
|
|
3836
4050
|
VoteRole,
|