@wix/auto_sdk_comments_comments 1.0.31 → 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 +325 -0
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +109 -3
- package/build/cjs/index.typings.js +217 -0
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +109 -3
- package/build/cjs/meta.js +217 -0
- package/build/cjs/meta.js.map +1 -1
- package/build/es/index.d.mts +1 -1
- package/build/es/index.mjs +321 -0
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +109 -3
- package/build/es/index.typings.mjs +213 -0
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +109 -3
- package/build/es/meta.mjs +213 -0
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/index.d.ts +1 -1
- package/build/internal/cjs/index.js +325 -0
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +109 -3
- package/build/internal/cjs/index.typings.js +217 -0
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +109 -3
- package/build/internal/cjs/meta.js +217 -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 +321 -0
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +109 -3
- package/build/internal/es/index.typings.mjs +213 -0
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +109 -3
- package/build/internal/es/meta.mjs +213 -0
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
package/build/cjs/meta.d.ts
CHANGED
|
@@ -193,7 +193,9 @@ interface Node extends NodeDataOneOf {
|
|
|
193
193
|
blockquoteData?: BlockquoteData;
|
|
194
194
|
/** Data for a caption node. */
|
|
195
195
|
captionData?: CaptionData;
|
|
196
|
-
/**
|
|
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
|
-
/**
|
|
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 {
|
|
@@ -1815,6 +1819,108 @@ interface BlockquoteData {
|
|
|
1815
1819
|
interface CaptionData {
|
|
1816
1820
|
textStyle?: TextStyle;
|
|
1817
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';
|
|
1818
1924
|
interface LayoutCellData {
|
|
1819
1925
|
/** Size of the cell in 12 columns grid. */
|
|
1820
1926
|
colSpan?: number | null;
|
|
@@ -3108,4 +3214,4 @@ declare function bulkDeleteComment(): __PublicMethodMetaInfo<'PUT', {}, BulkDele
|
|
|
3108
3214
|
declare function bulkModerateDraftContent(): __PublicMethodMetaInfo<'POST', {}, BulkModerateDraftContentRequest$1, BulkModerateDraftContentRequest, BulkModerateDraftContentResponse$1, BulkModerateDraftContentResponse>;
|
|
3109
3215
|
declare function bulkMoveCommentByFilter(): __PublicMethodMetaInfo<'PUT', {}, BulkMoveCommentByFilterRequest$1, BulkMoveCommentByFilterRequest, BulkMoveCommentByFilterResponse$1, BulkMoveCommentByFilterResponse>;
|
|
3110
3216
|
|
|
3111
|
-
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 };
|
package/build/cjs/meta.js
CHANGED
|
@@ -32,6 +32,7 @@ __export(meta_exports, {
|
|
|
32
32
|
DividerDataAlignmentOriginal: () => DividerDataAlignment,
|
|
33
33
|
FontTypeOriginal: () => FontType,
|
|
34
34
|
GIFTypeOriginal: () => GIFType,
|
|
35
|
+
ImagePositionOriginal: () => ImagePosition,
|
|
35
36
|
InitialExpandedItemsOriginal: () => InitialExpandedItems,
|
|
36
37
|
LayoutOriginal: () => Layout,
|
|
37
38
|
LayoutTypeOriginal: () => LayoutType,
|
|
@@ -48,6 +49,8 @@ __export(meta_exports, {
|
|
|
48
49
|
PositionOriginal: () => Position,
|
|
49
50
|
ReplySortOrderOriginal: () => ReplySortOrder,
|
|
50
51
|
ResizingOriginal: () => Resizing,
|
|
52
|
+
ResponsivenessBehaviourOriginal: () => ResponsivenessBehaviour,
|
|
53
|
+
ScalingOriginal: () => Scaling,
|
|
51
54
|
SortOrderOriginal: () => SortOrder,
|
|
52
55
|
SourceOriginal: () => Source,
|
|
53
56
|
StatusOriginal: () => Status,
|
|
@@ -57,6 +60,7 @@ __export(meta_exports, {
|
|
|
57
60
|
ThumbnailsAlignmentOriginal: () => ThumbnailsAlignment,
|
|
58
61
|
TypeOriginal: () => Type,
|
|
59
62
|
VersioningModeOriginal: () => VersioningMode,
|
|
63
|
+
VerticalAlignmentAlignmentOriginal: () => VerticalAlignmentAlignment,
|
|
60
64
|
VerticalAlignmentOriginal: () => VerticalAlignment,
|
|
61
65
|
ViewModeOriginal: () => ViewMode,
|
|
62
66
|
ViewRoleOriginal: () => ViewRole,
|
|
@@ -214,6 +218,12 @@ function createComment(payload) {
|
|
|
214
218
|
{
|
|
215
219
|
path: "comment.content.richContent.nodes.audioData.coverImage.duration"
|
|
216
220
|
},
|
|
221
|
+
{
|
|
222
|
+
path: "comment.content.richContent.nodes.layoutData.backgroundImage.media.duration"
|
|
223
|
+
},
|
|
224
|
+
{
|
|
225
|
+
path: "comment.content.richContent.nodes.layoutData.backdropImage.media.duration"
|
|
226
|
+
},
|
|
217
227
|
{
|
|
218
228
|
path: "comment.draftContent.richContent.nodes.galleryData.items.image.media.duration"
|
|
219
229
|
},
|
|
@@ -258,6 +268,12 @@ function createComment(payload) {
|
|
|
258
268
|
},
|
|
259
269
|
{
|
|
260
270
|
path: "comment.draftContent.richContent.nodes.audioData.coverImage.duration"
|
|
271
|
+
},
|
|
272
|
+
{
|
|
273
|
+
path: "comment.draftContent.richContent.nodes.layoutData.backgroundImage.media.duration"
|
|
274
|
+
},
|
|
275
|
+
{
|
|
276
|
+
path: "comment.draftContent.richContent.nodes.layoutData.backdropImage.media.duration"
|
|
261
277
|
}
|
|
262
278
|
]
|
|
263
279
|
}
|
|
@@ -367,6 +383,12 @@ function createComment(payload) {
|
|
|
367
383
|
{
|
|
368
384
|
path: "comment.content.richContent.nodes.audioData.coverImage.duration"
|
|
369
385
|
},
|
|
386
|
+
{
|
|
387
|
+
path: "comment.content.richContent.nodes.layoutData.backgroundImage.media.duration"
|
|
388
|
+
},
|
|
389
|
+
{
|
|
390
|
+
path: "comment.content.richContent.nodes.layoutData.backdropImage.media.duration"
|
|
391
|
+
},
|
|
370
392
|
{
|
|
371
393
|
path: "comment.draftContent.richContent.nodes.galleryData.items.image.media.duration"
|
|
372
394
|
},
|
|
@@ -411,6 +433,12 @@ function createComment(payload) {
|
|
|
411
433
|
},
|
|
412
434
|
{
|
|
413
435
|
path: "comment.draftContent.richContent.nodes.audioData.coverImage.duration"
|
|
436
|
+
},
|
|
437
|
+
{
|
|
438
|
+
path: "comment.draftContent.richContent.nodes.layoutData.backgroundImage.media.duration"
|
|
439
|
+
},
|
|
440
|
+
{
|
|
441
|
+
path: "comment.draftContent.richContent.nodes.layoutData.backdropImage.media.duration"
|
|
414
442
|
}
|
|
415
443
|
]
|
|
416
444
|
}
|
|
@@ -527,6 +555,12 @@ function getComment(payload) {
|
|
|
527
555
|
{
|
|
528
556
|
path: "comment.content.richContent.nodes.audioData.coverImage.duration"
|
|
529
557
|
},
|
|
558
|
+
{
|
|
559
|
+
path: "comment.content.richContent.nodes.layoutData.backgroundImage.media.duration"
|
|
560
|
+
},
|
|
561
|
+
{
|
|
562
|
+
path: "comment.content.richContent.nodes.layoutData.backdropImage.media.duration"
|
|
563
|
+
},
|
|
530
564
|
{
|
|
531
565
|
path: "comment.draftContent.richContent.nodes.galleryData.items.image.media.duration"
|
|
532
566
|
},
|
|
@@ -571,6 +605,12 @@ function getComment(payload) {
|
|
|
571
605
|
},
|
|
572
606
|
{
|
|
573
607
|
path: "comment.draftContent.richContent.nodes.audioData.coverImage.duration"
|
|
608
|
+
},
|
|
609
|
+
{
|
|
610
|
+
path: "comment.draftContent.richContent.nodes.layoutData.backgroundImage.media.duration"
|
|
611
|
+
},
|
|
612
|
+
{
|
|
613
|
+
path: "comment.draftContent.richContent.nodes.layoutData.backdropImage.media.duration"
|
|
574
614
|
}
|
|
575
615
|
]
|
|
576
616
|
}
|
|
@@ -661,6 +701,12 @@ function updateComment(payload) {
|
|
|
661
701
|
{
|
|
662
702
|
path: "comment.content.richContent.nodes.audioData.coverImage.duration"
|
|
663
703
|
},
|
|
704
|
+
{
|
|
705
|
+
path: "comment.content.richContent.nodes.layoutData.backgroundImage.media.duration"
|
|
706
|
+
},
|
|
707
|
+
{
|
|
708
|
+
path: "comment.content.richContent.nodes.layoutData.backdropImage.media.duration"
|
|
709
|
+
},
|
|
664
710
|
{
|
|
665
711
|
path: "comment.draftContent.richContent.nodes.galleryData.items.image.media.duration"
|
|
666
712
|
},
|
|
@@ -705,6 +751,12 @@ function updateComment(payload) {
|
|
|
705
751
|
},
|
|
706
752
|
{
|
|
707
753
|
path: "comment.draftContent.richContent.nodes.audioData.coverImage.duration"
|
|
754
|
+
},
|
|
755
|
+
{
|
|
756
|
+
path: "comment.draftContent.richContent.nodes.layoutData.backgroundImage.media.duration"
|
|
757
|
+
},
|
|
758
|
+
{
|
|
759
|
+
path: "comment.draftContent.richContent.nodes.layoutData.backdropImage.media.duration"
|
|
708
760
|
}
|
|
709
761
|
]
|
|
710
762
|
}
|
|
@@ -814,6 +866,12 @@ function updateComment(payload) {
|
|
|
814
866
|
{
|
|
815
867
|
path: "comment.content.richContent.nodes.audioData.coverImage.duration"
|
|
816
868
|
},
|
|
869
|
+
{
|
|
870
|
+
path: "comment.content.richContent.nodes.layoutData.backgroundImage.media.duration"
|
|
871
|
+
},
|
|
872
|
+
{
|
|
873
|
+
path: "comment.content.richContent.nodes.layoutData.backdropImage.media.duration"
|
|
874
|
+
},
|
|
817
875
|
{
|
|
818
876
|
path: "comment.draftContent.richContent.nodes.galleryData.items.image.media.duration"
|
|
819
877
|
},
|
|
@@ -858,6 +916,12 @@ function updateComment(payload) {
|
|
|
858
916
|
},
|
|
859
917
|
{
|
|
860
918
|
path: "comment.draftContent.richContent.nodes.audioData.coverImage.duration"
|
|
919
|
+
},
|
|
920
|
+
{
|
|
921
|
+
path: "comment.draftContent.richContent.nodes.layoutData.backgroundImage.media.duration"
|
|
922
|
+
},
|
|
923
|
+
{
|
|
924
|
+
path: "comment.draftContent.richContent.nodes.layoutData.backdropImage.media.duration"
|
|
861
925
|
}
|
|
862
926
|
]
|
|
863
927
|
}
|
|
@@ -995,6 +1059,12 @@ function moderateDraftContent(payload) {
|
|
|
995
1059
|
{
|
|
996
1060
|
path: "comment.content.richContent.nodes.audioData.coverImage.duration"
|
|
997
1061
|
},
|
|
1062
|
+
{
|
|
1063
|
+
path: "comment.content.richContent.nodes.layoutData.backgroundImage.media.duration"
|
|
1064
|
+
},
|
|
1065
|
+
{
|
|
1066
|
+
path: "comment.content.richContent.nodes.layoutData.backdropImage.media.duration"
|
|
1067
|
+
},
|
|
998
1068
|
{
|
|
999
1069
|
path: "comment.draftContent.richContent.nodes.galleryData.items.image.media.duration"
|
|
1000
1070
|
},
|
|
@@ -1039,6 +1109,12 @@ function moderateDraftContent(payload) {
|
|
|
1039
1109
|
},
|
|
1040
1110
|
{
|
|
1041
1111
|
path: "comment.draftContent.richContent.nodes.audioData.coverImage.duration"
|
|
1112
|
+
},
|
|
1113
|
+
{
|
|
1114
|
+
path: "comment.draftContent.richContent.nodes.layoutData.backgroundImage.media.duration"
|
|
1115
|
+
},
|
|
1116
|
+
{
|
|
1117
|
+
path: "comment.draftContent.richContent.nodes.layoutData.backdropImage.media.duration"
|
|
1042
1118
|
}
|
|
1043
1119
|
]
|
|
1044
1120
|
}
|
|
@@ -1159,6 +1235,12 @@ function queryComments(payload) {
|
|
|
1159
1235
|
{
|
|
1160
1236
|
path: "comments.content.richContent.nodes.audioData.coverImage.duration"
|
|
1161
1237
|
},
|
|
1238
|
+
{
|
|
1239
|
+
path: "comments.content.richContent.nodes.layoutData.backgroundImage.media.duration"
|
|
1240
|
+
},
|
|
1241
|
+
{
|
|
1242
|
+
path: "comments.content.richContent.nodes.layoutData.backdropImage.media.duration"
|
|
1243
|
+
},
|
|
1162
1244
|
{
|
|
1163
1245
|
path: "comments.draftContent.richContent.nodes.galleryData.items.image.media.duration"
|
|
1164
1246
|
},
|
|
@@ -1203,6 +1285,12 @@ function queryComments(payload) {
|
|
|
1203
1285
|
},
|
|
1204
1286
|
{
|
|
1205
1287
|
path: "comments.draftContent.richContent.nodes.audioData.coverImage.duration"
|
|
1288
|
+
},
|
|
1289
|
+
{
|
|
1290
|
+
path: "comments.draftContent.richContent.nodes.layoutData.backgroundImage.media.duration"
|
|
1291
|
+
},
|
|
1292
|
+
{
|
|
1293
|
+
path: "comments.draftContent.richContent.nodes.layoutData.backdropImage.media.duration"
|
|
1206
1294
|
}
|
|
1207
1295
|
]
|
|
1208
1296
|
}
|
|
@@ -1319,6 +1407,12 @@ function markComment(payload) {
|
|
|
1319
1407
|
{
|
|
1320
1408
|
path: "comment.content.richContent.nodes.audioData.coverImage.duration"
|
|
1321
1409
|
},
|
|
1410
|
+
{
|
|
1411
|
+
path: "comment.content.richContent.nodes.layoutData.backgroundImage.media.duration"
|
|
1412
|
+
},
|
|
1413
|
+
{
|
|
1414
|
+
path: "comment.content.richContent.nodes.layoutData.backdropImage.media.duration"
|
|
1415
|
+
},
|
|
1322
1416
|
{
|
|
1323
1417
|
path: "comment.draftContent.richContent.nodes.galleryData.items.image.media.duration"
|
|
1324
1418
|
},
|
|
@@ -1363,6 +1457,12 @@ function markComment(payload) {
|
|
|
1363
1457
|
},
|
|
1364
1458
|
{
|
|
1365
1459
|
path: "comment.draftContent.richContent.nodes.audioData.coverImage.duration"
|
|
1460
|
+
},
|
|
1461
|
+
{
|
|
1462
|
+
path: "comment.draftContent.richContent.nodes.layoutData.backgroundImage.media.duration"
|
|
1463
|
+
},
|
|
1464
|
+
{
|
|
1465
|
+
path: "comment.draftContent.richContent.nodes.layoutData.backdropImage.media.duration"
|
|
1366
1466
|
}
|
|
1367
1467
|
]
|
|
1368
1468
|
}
|
|
@@ -1479,6 +1579,12 @@ function unmarkComment(payload) {
|
|
|
1479
1579
|
{
|
|
1480
1580
|
path: "comment.content.richContent.nodes.audioData.coverImage.duration"
|
|
1481
1581
|
},
|
|
1582
|
+
{
|
|
1583
|
+
path: "comment.content.richContent.nodes.layoutData.backgroundImage.media.duration"
|
|
1584
|
+
},
|
|
1585
|
+
{
|
|
1586
|
+
path: "comment.content.richContent.nodes.layoutData.backdropImage.media.duration"
|
|
1587
|
+
},
|
|
1482
1588
|
{
|
|
1483
1589
|
path: "comment.draftContent.richContent.nodes.galleryData.items.image.media.duration"
|
|
1484
1590
|
},
|
|
@@ -1523,6 +1629,12 @@ function unmarkComment(payload) {
|
|
|
1523
1629
|
},
|
|
1524
1630
|
{
|
|
1525
1631
|
path: "comment.draftContent.richContent.nodes.audioData.coverImage.duration"
|
|
1632
|
+
},
|
|
1633
|
+
{
|
|
1634
|
+
path: "comment.draftContent.richContent.nodes.layoutData.backgroundImage.media.duration"
|
|
1635
|
+
},
|
|
1636
|
+
{
|
|
1637
|
+
path: "comment.draftContent.richContent.nodes.layoutData.backdropImage.media.duration"
|
|
1526
1638
|
}
|
|
1527
1639
|
]
|
|
1528
1640
|
}
|
|
@@ -1639,6 +1751,12 @@ function hideComment(payload) {
|
|
|
1639
1751
|
{
|
|
1640
1752
|
path: "comment.content.richContent.nodes.audioData.coverImage.duration"
|
|
1641
1753
|
},
|
|
1754
|
+
{
|
|
1755
|
+
path: "comment.content.richContent.nodes.layoutData.backgroundImage.media.duration"
|
|
1756
|
+
},
|
|
1757
|
+
{
|
|
1758
|
+
path: "comment.content.richContent.nodes.layoutData.backdropImage.media.duration"
|
|
1759
|
+
},
|
|
1642
1760
|
{
|
|
1643
1761
|
path: "comment.draftContent.richContent.nodes.galleryData.items.image.media.duration"
|
|
1644
1762
|
},
|
|
@@ -1683,6 +1801,12 @@ function hideComment(payload) {
|
|
|
1683
1801
|
},
|
|
1684
1802
|
{
|
|
1685
1803
|
path: "comment.draftContent.richContent.nodes.audioData.coverImage.duration"
|
|
1804
|
+
},
|
|
1805
|
+
{
|
|
1806
|
+
path: "comment.draftContent.richContent.nodes.layoutData.backgroundImage.media.duration"
|
|
1807
|
+
},
|
|
1808
|
+
{
|
|
1809
|
+
path: "comment.draftContent.richContent.nodes.layoutData.backdropImage.media.duration"
|
|
1686
1810
|
}
|
|
1687
1811
|
]
|
|
1688
1812
|
}
|
|
@@ -1799,6 +1923,12 @@ function publishComment(payload) {
|
|
|
1799
1923
|
{
|
|
1800
1924
|
path: "comment.content.richContent.nodes.audioData.coverImage.duration"
|
|
1801
1925
|
},
|
|
1926
|
+
{
|
|
1927
|
+
path: "comment.content.richContent.nodes.layoutData.backgroundImage.media.duration"
|
|
1928
|
+
},
|
|
1929
|
+
{
|
|
1930
|
+
path: "comment.content.richContent.nodes.layoutData.backdropImage.media.duration"
|
|
1931
|
+
},
|
|
1802
1932
|
{
|
|
1803
1933
|
path: "comment.draftContent.richContent.nodes.galleryData.items.image.media.duration"
|
|
1804
1934
|
},
|
|
@@ -1843,6 +1973,12 @@ function publishComment(payload) {
|
|
|
1843
1973
|
},
|
|
1844
1974
|
{
|
|
1845
1975
|
path: "comment.draftContent.richContent.nodes.audioData.coverImage.duration"
|
|
1976
|
+
},
|
|
1977
|
+
{
|
|
1978
|
+
path: "comment.draftContent.richContent.nodes.layoutData.backgroundImage.media.duration"
|
|
1979
|
+
},
|
|
1980
|
+
{
|
|
1981
|
+
path: "comment.draftContent.richContent.nodes.layoutData.backdropImage.media.duration"
|
|
1846
1982
|
}
|
|
1847
1983
|
]
|
|
1848
1984
|
}
|
|
@@ -2031,6 +2167,12 @@ function listCommentsByResource(payload) {
|
|
|
2031
2167
|
{
|
|
2032
2168
|
path: "comments.content.richContent.nodes.audioData.coverImage.duration"
|
|
2033
2169
|
},
|
|
2170
|
+
{
|
|
2171
|
+
path: "comments.content.richContent.nodes.layoutData.backgroundImage.media.duration"
|
|
2172
|
+
},
|
|
2173
|
+
{
|
|
2174
|
+
path: "comments.content.richContent.nodes.layoutData.backdropImage.media.duration"
|
|
2175
|
+
},
|
|
2034
2176
|
{
|
|
2035
2177
|
path: "comments.draftContent.richContent.nodes.galleryData.items.image.media.duration"
|
|
2036
2178
|
},
|
|
@@ -2076,6 +2218,12 @@ function listCommentsByResource(payload) {
|
|
|
2076
2218
|
{
|
|
2077
2219
|
path: "comments.draftContent.richContent.nodes.audioData.coverImage.duration"
|
|
2078
2220
|
},
|
|
2221
|
+
{
|
|
2222
|
+
path: "comments.draftContent.richContent.nodes.layoutData.backgroundImage.media.duration"
|
|
2223
|
+
},
|
|
2224
|
+
{
|
|
2225
|
+
path: "comments.draftContent.richContent.nodes.layoutData.backdropImage.media.duration"
|
|
2226
|
+
},
|
|
2079
2227
|
{
|
|
2080
2228
|
path: "commentReplies.*.replies.content.richContent.nodes.galleryData.items.image.media.duration"
|
|
2081
2229
|
},
|
|
@@ -2121,6 +2269,12 @@ function listCommentsByResource(payload) {
|
|
|
2121
2269
|
{
|
|
2122
2270
|
path: "commentReplies.*.replies.content.richContent.nodes.audioData.coverImage.duration"
|
|
2123
2271
|
},
|
|
2272
|
+
{
|
|
2273
|
+
path: "commentReplies.*.replies.content.richContent.nodes.layoutData.backgroundImage.media.duration"
|
|
2274
|
+
},
|
|
2275
|
+
{
|
|
2276
|
+
path: "commentReplies.*.replies.content.richContent.nodes.layoutData.backdropImage.media.duration"
|
|
2277
|
+
},
|
|
2124
2278
|
{
|
|
2125
2279
|
path: "commentReplies.*.replies.draftContent.richContent.nodes.galleryData.items.image.media.duration"
|
|
2126
2280
|
},
|
|
@@ -2165,6 +2319,12 @@ function listCommentsByResource(payload) {
|
|
|
2165
2319
|
},
|
|
2166
2320
|
{
|
|
2167
2321
|
path: "commentReplies.*.replies.draftContent.richContent.nodes.audioData.coverImage.duration"
|
|
2322
|
+
},
|
|
2323
|
+
{
|
|
2324
|
+
path: "commentReplies.*.replies.draftContent.richContent.nodes.layoutData.backgroundImage.media.duration"
|
|
2325
|
+
},
|
|
2326
|
+
{
|
|
2327
|
+
path: "commentReplies.*.replies.draftContent.richContent.nodes.layoutData.backdropImage.media.duration"
|
|
2168
2328
|
}
|
|
2169
2329
|
]
|
|
2170
2330
|
}
|
|
@@ -2332,6 +2492,12 @@ function getCommentThread(payload) {
|
|
|
2332
2492
|
{
|
|
2333
2493
|
path: "comments.content.richContent.nodes.audioData.coverImage.duration"
|
|
2334
2494
|
},
|
|
2495
|
+
{
|
|
2496
|
+
path: "comments.content.richContent.nodes.layoutData.backgroundImage.media.duration"
|
|
2497
|
+
},
|
|
2498
|
+
{
|
|
2499
|
+
path: "comments.content.richContent.nodes.layoutData.backdropImage.media.duration"
|
|
2500
|
+
},
|
|
2335
2501
|
{
|
|
2336
2502
|
path: "comments.draftContent.richContent.nodes.galleryData.items.image.media.duration"
|
|
2337
2503
|
},
|
|
@@ -2377,6 +2543,12 @@ function getCommentThread(payload) {
|
|
|
2377
2543
|
{
|
|
2378
2544
|
path: "comments.draftContent.richContent.nodes.audioData.coverImage.duration"
|
|
2379
2545
|
},
|
|
2546
|
+
{
|
|
2547
|
+
path: "comments.draftContent.richContent.nodes.layoutData.backgroundImage.media.duration"
|
|
2548
|
+
},
|
|
2549
|
+
{
|
|
2550
|
+
path: "comments.draftContent.richContent.nodes.layoutData.backdropImage.media.duration"
|
|
2551
|
+
},
|
|
2380
2552
|
{
|
|
2381
2553
|
path: "commentReplies.*.replies.content.richContent.nodes.galleryData.items.image.media.duration"
|
|
2382
2554
|
},
|
|
@@ -2422,6 +2594,12 @@ function getCommentThread(payload) {
|
|
|
2422
2594
|
{
|
|
2423
2595
|
path: "commentReplies.*.replies.content.richContent.nodes.audioData.coverImage.duration"
|
|
2424
2596
|
},
|
|
2597
|
+
{
|
|
2598
|
+
path: "commentReplies.*.replies.content.richContent.nodes.layoutData.backgroundImage.media.duration"
|
|
2599
|
+
},
|
|
2600
|
+
{
|
|
2601
|
+
path: "commentReplies.*.replies.content.richContent.nodes.layoutData.backdropImage.media.duration"
|
|
2602
|
+
},
|
|
2425
2603
|
{
|
|
2426
2604
|
path: "commentReplies.*.replies.draftContent.richContent.nodes.galleryData.items.image.media.duration"
|
|
2427
2605
|
},
|
|
@@ -2466,6 +2644,12 @@ function getCommentThread(payload) {
|
|
|
2466
2644
|
},
|
|
2467
2645
|
{
|
|
2468
2646
|
path: "commentReplies.*.replies.draftContent.richContent.nodes.audioData.coverImage.duration"
|
|
2647
|
+
},
|
|
2648
|
+
{
|
|
2649
|
+
path: "commentReplies.*.replies.draftContent.richContent.nodes.layoutData.backgroundImage.media.duration"
|
|
2650
|
+
},
|
|
2651
|
+
{
|
|
2652
|
+
path: "commentReplies.*.replies.draftContent.richContent.nodes.layoutData.backdropImage.media.duration"
|
|
2469
2653
|
}
|
|
2470
2654
|
]
|
|
2471
2655
|
}
|
|
@@ -2844,6 +3028,35 @@ var NullValue = /* @__PURE__ */ ((NullValue2) => {
|
|
|
2844
3028
|
NullValue2["NULL_VALUE"] = "NULL_VALUE";
|
|
2845
3029
|
return NullValue2;
|
|
2846
3030
|
})(NullValue || {});
|
|
3031
|
+
var Scaling = /* @__PURE__ */ ((Scaling2) => {
|
|
3032
|
+
Scaling2["AUTO"] = "AUTO";
|
|
3033
|
+
Scaling2["CONTAIN"] = "CONTAIN";
|
|
3034
|
+
Scaling2["COVER"] = "COVER";
|
|
3035
|
+
return Scaling2;
|
|
3036
|
+
})(Scaling || {});
|
|
3037
|
+
var ImagePosition = /* @__PURE__ */ ((ImagePosition2) => {
|
|
3038
|
+
ImagePosition2["CENTER"] = "CENTER";
|
|
3039
|
+
ImagePosition2["CENTER_LEFT"] = "CENTER_LEFT";
|
|
3040
|
+
ImagePosition2["CENTER_RIGHT"] = "CENTER_RIGHT";
|
|
3041
|
+
ImagePosition2["TOP"] = "TOP";
|
|
3042
|
+
ImagePosition2["TOP_LEFT"] = "TOP_LEFT";
|
|
3043
|
+
ImagePosition2["TOP_RIGHT"] = "TOP_RIGHT";
|
|
3044
|
+
ImagePosition2["BOTTOM"] = "BOTTOM";
|
|
3045
|
+
ImagePosition2["BOTTOM_LEFT"] = "BOTTOM_LEFT";
|
|
3046
|
+
ImagePosition2["BOTTOM_RIGHT"] = "BOTTOM_RIGHT";
|
|
3047
|
+
return ImagePosition2;
|
|
3048
|
+
})(ImagePosition || {});
|
|
3049
|
+
var VerticalAlignmentAlignment = /* @__PURE__ */ ((VerticalAlignmentAlignment2) => {
|
|
3050
|
+
VerticalAlignmentAlignment2["TOP"] = "TOP";
|
|
3051
|
+
VerticalAlignmentAlignment2["MIDDLE"] = "MIDDLE";
|
|
3052
|
+
VerticalAlignmentAlignment2["BOTTOM"] = "BOTTOM";
|
|
3053
|
+
return VerticalAlignmentAlignment2;
|
|
3054
|
+
})(VerticalAlignmentAlignment || {});
|
|
3055
|
+
var ResponsivenessBehaviour = /* @__PURE__ */ ((ResponsivenessBehaviour2) => {
|
|
3056
|
+
ResponsivenessBehaviour2["STACK"] = "STACK";
|
|
3057
|
+
ResponsivenessBehaviour2["WRAP"] = "WRAP";
|
|
3058
|
+
return ResponsivenessBehaviour2;
|
|
3059
|
+
})(ResponsivenessBehaviour || {});
|
|
2847
3060
|
var Status = /* @__PURE__ */ ((Status2) => {
|
|
2848
3061
|
Status2["UNKNOWN"] = "UNKNOWN";
|
|
2849
3062
|
Status2["PUBLISHED"] = "PUBLISHED";
|
|
@@ -3235,6 +3448,7 @@ function bulkMoveCommentByFilter2() {
|
|
|
3235
3448
|
DividerDataAlignmentOriginal,
|
|
3236
3449
|
FontTypeOriginal,
|
|
3237
3450
|
GIFTypeOriginal,
|
|
3451
|
+
ImagePositionOriginal,
|
|
3238
3452
|
InitialExpandedItemsOriginal,
|
|
3239
3453
|
LayoutOriginal,
|
|
3240
3454
|
LayoutTypeOriginal,
|
|
@@ -3251,6 +3465,8 @@ function bulkMoveCommentByFilter2() {
|
|
|
3251
3465
|
PositionOriginal,
|
|
3252
3466
|
ReplySortOrderOriginal,
|
|
3253
3467
|
ResizingOriginal,
|
|
3468
|
+
ResponsivenessBehaviourOriginal,
|
|
3469
|
+
ScalingOriginal,
|
|
3254
3470
|
SortOrderOriginal,
|
|
3255
3471
|
SourceOriginal,
|
|
3256
3472
|
StatusOriginal,
|
|
@@ -3260,6 +3476,7 @@ function bulkMoveCommentByFilter2() {
|
|
|
3260
3476
|
ThumbnailsAlignmentOriginal,
|
|
3261
3477
|
TypeOriginal,
|
|
3262
3478
|
VersioningModeOriginal,
|
|
3479
|
+
VerticalAlignmentAlignmentOriginal,
|
|
3263
3480
|
VerticalAlignmentOriginal,
|
|
3264
3481
|
ViewModeOriginal,
|
|
3265
3482
|
ViewRoleOriginal,
|