@wix/auto_sdk_comments_comments 1.0.39 → 1.0.40
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.map +1 -1
- package/build/cjs/index.typings.d.ts +116 -1
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +116 -1
- package/build/cjs/meta.js.map +1 -1
- package/build/es/index.d.mts +1 -1
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +116 -1
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +116 -1
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/index.d.ts +1 -1
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +116 -1
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +116 -1
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/index.d.mts +1 -1
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +116 -1
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +116 -1
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
package/build/es/meta.d.mts
CHANGED
|
@@ -2396,6 +2396,121 @@ interface CommentReactionSummary {
|
|
|
2396
2396
|
*/
|
|
2397
2397
|
reactionCodeCount?: Record<string, number>;
|
|
2398
2398
|
}
|
|
2399
|
+
interface InvalidateCache extends InvalidateCacheGetByOneOf {
|
|
2400
|
+
/**
|
|
2401
|
+
* Invalidate by msId. NOT recommended, as this will invalidate the entire site cache!
|
|
2402
|
+
* @format GUID
|
|
2403
|
+
*/
|
|
2404
|
+
metaSiteId?: string;
|
|
2405
|
+
/**
|
|
2406
|
+
* Invalidate by Site ID. NOT recommended, as this will invalidate the entire site cache!
|
|
2407
|
+
* @format GUID
|
|
2408
|
+
*/
|
|
2409
|
+
siteId?: string;
|
|
2410
|
+
/** Invalidate by App */
|
|
2411
|
+
app?: App;
|
|
2412
|
+
/** Invalidate by page id */
|
|
2413
|
+
page?: Page;
|
|
2414
|
+
/** Invalidate by URI path */
|
|
2415
|
+
uri?: URI;
|
|
2416
|
+
/** Invalidate by file (for media files such as PDFs) */
|
|
2417
|
+
file?: File;
|
|
2418
|
+
/** Invalidate by custom tag. Tags used in BO invalidation are disabled for this endpoint (more info: https://wix-bo.com/dev/clear-ssr-cache) */
|
|
2419
|
+
customTag?: CustomTag;
|
|
2420
|
+
/**
|
|
2421
|
+
* tell us why you're invalidating the cache. You don't need to add your app name
|
|
2422
|
+
* @maxLength 256
|
|
2423
|
+
*/
|
|
2424
|
+
reason?: string | null;
|
|
2425
|
+
/** Is local DS */
|
|
2426
|
+
localDc?: boolean;
|
|
2427
|
+
hardPurge?: boolean;
|
|
2428
|
+
}
|
|
2429
|
+
/** @oneof */
|
|
2430
|
+
interface InvalidateCacheGetByOneOf {
|
|
2431
|
+
/**
|
|
2432
|
+
* Invalidate by msId. NOT recommended, as this will invalidate the entire site cache!
|
|
2433
|
+
* @format GUID
|
|
2434
|
+
*/
|
|
2435
|
+
metaSiteId?: string;
|
|
2436
|
+
/**
|
|
2437
|
+
* Invalidate by Site ID. NOT recommended, as this will invalidate the entire site cache!
|
|
2438
|
+
* @format GUID
|
|
2439
|
+
*/
|
|
2440
|
+
siteId?: string;
|
|
2441
|
+
/** Invalidate by App */
|
|
2442
|
+
app?: App;
|
|
2443
|
+
/** Invalidate by page id */
|
|
2444
|
+
page?: Page;
|
|
2445
|
+
/** Invalidate by URI path */
|
|
2446
|
+
uri?: URI;
|
|
2447
|
+
/** Invalidate by file (for media files such as PDFs) */
|
|
2448
|
+
file?: File;
|
|
2449
|
+
/** Invalidate by custom tag. Tags used in BO invalidation are disabled for this endpoint (more info: https://wix-bo.com/dev/clear-ssr-cache) */
|
|
2450
|
+
customTag?: CustomTag;
|
|
2451
|
+
}
|
|
2452
|
+
interface App {
|
|
2453
|
+
/**
|
|
2454
|
+
* The AppDefId
|
|
2455
|
+
* @minLength 1
|
|
2456
|
+
*/
|
|
2457
|
+
appDefId?: string;
|
|
2458
|
+
/**
|
|
2459
|
+
* The instance Id
|
|
2460
|
+
* @format GUID
|
|
2461
|
+
*/
|
|
2462
|
+
instanceId?: string;
|
|
2463
|
+
}
|
|
2464
|
+
interface Page {
|
|
2465
|
+
/**
|
|
2466
|
+
* the msid the page is on
|
|
2467
|
+
* @format GUID
|
|
2468
|
+
*/
|
|
2469
|
+
metaSiteId?: string;
|
|
2470
|
+
/**
|
|
2471
|
+
* Invalidate by Page ID
|
|
2472
|
+
* @minLength 1
|
|
2473
|
+
*/
|
|
2474
|
+
pageId?: string;
|
|
2475
|
+
}
|
|
2476
|
+
interface URI {
|
|
2477
|
+
/**
|
|
2478
|
+
* the msid the URI is on
|
|
2479
|
+
* @format GUID
|
|
2480
|
+
*/
|
|
2481
|
+
metaSiteId?: string;
|
|
2482
|
+
/**
|
|
2483
|
+
* URI path to invalidate (e.g. page/my/path) - without leading/trailing slashes
|
|
2484
|
+
* @minLength 1
|
|
2485
|
+
*/
|
|
2486
|
+
uriPath?: string;
|
|
2487
|
+
}
|
|
2488
|
+
interface File {
|
|
2489
|
+
/**
|
|
2490
|
+
* the msid the file is related to
|
|
2491
|
+
* @format GUID
|
|
2492
|
+
*/
|
|
2493
|
+
metaSiteId?: string;
|
|
2494
|
+
/**
|
|
2495
|
+
* Invalidate by filename (for media files such as PDFs)
|
|
2496
|
+
* @minLength 1
|
|
2497
|
+
* @maxLength 256
|
|
2498
|
+
*/
|
|
2499
|
+
fileName?: string;
|
|
2500
|
+
}
|
|
2501
|
+
interface CustomTag {
|
|
2502
|
+
/**
|
|
2503
|
+
* the msid the tag is related to
|
|
2504
|
+
* @format GUID
|
|
2505
|
+
*/
|
|
2506
|
+
metaSiteId?: string;
|
|
2507
|
+
/**
|
|
2508
|
+
* Tag to invalidate by
|
|
2509
|
+
* @minLength 1
|
|
2510
|
+
* @maxLength 256
|
|
2511
|
+
*/
|
|
2512
|
+
tag?: string;
|
|
2513
|
+
}
|
|
2399
2514
|
interface CommentModerated {
|
|
2400
2515
|
comment?: Comment;
|
|
2401
2516
|
moderationAction?: ActionWithLiterals;
|
|
@@ -3260,4 +3375,4 @@ declare function bulkDeleteComment(): __PublicMethodMetaInfo<'PUT', {}, BulkDele
|
|
|
3260
3375
|
declare function bulkModerateDraftContent(): __PublicMethodMetaInfo<'POST', {}, BulkModerateDraftContentRequest$1, BulkModerateDraftContentRequest, BulkModerateDraftContentResponse$1, BulkModerateDraftContentResponse>;
|
|
3261
3376
|
declare function bulkMoveCommentByFilter(): __PublicMethodMetaInfo<'PUT', {}, BulkMoveCommentByFilterRequest$1, BulkMoveCommentByFilterRequest, BulkMoveCommentByFilterResponse$1, BulkMoveCommentByFilterResponse>;
|
|
3262
3377
|
|
|
3263
|
-
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 BorderWidths as BorderWidthsOriginal, 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, DesignTarget as DesignTargetOriginal, type DesignTargetWithLiterals as DesignTargetWithLiteralsOriginal, 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 Empty as EmptyOriginal, 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 FontFamilyData as FontFamilyDataOriginal, 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 };
|
|
3378
|
+
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, type App as AppOriginal, 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 BorderWidths as BorderWidthsOriginal, 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 CustomTag as CustomTagOriginal, 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, DesignTarget as DesignTargetOriginal, type DesignTargetWithLiterals as DesignTargetWithLiteralsOriginal, 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 Empty as EmptyOriginal, type EntityCreatedEvent as EntityCreatedEventOriginal, type EntityDeletedEvent as EntityDeletedEventOriginal, type EntityUpdatedEvent as EntityUpdatedEventOriginal, type EventData as EventDataOriginal, type FileData as FileDataOriginal, type File as FileOriginal, type FileSourceDataOneOf as FileSourceDataOneOfOriginal, type FileSource as FileSourceOriginal, type FontFamilyData as FontFamilyDataOriginal, 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 InvalidateCacheGetByOneOf as InvalidateCacheGetByOneOfOriginal, type InvalidateCache as InvalidateCacheOriginal, 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 Page as PageOriginal, 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 URI as URIOriginal, 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 };
|