@wix/auto_sdk_comments_comments 1.0.28 → 1.0.30

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.
@@ -1756,6 +1756,27 @@ interface BorderColors {
1756
1756
  */
1757
1757
  bottom?: string | null;
1758
1758
  }
1759
+ /**
1760
+ * `NullValue` is a singleton enumeration to represent the null value for the
1761
+ * `Value` type union.
1762
+ *
1763
+ * The JSON representation for `NullValue` is JSON `null`.
1764
+ */
1765
+ declare enum NullValue {
1766
+ /** Null value. */
1767
+ NULL_VALUE = "NULL_VALUE"
1768
+ }
1769
+ /** @enumType */
1770
+ type NullValueWithLiterals = NullValue | 'NULL_VALUE';
1771
+ /**
1772
+ * `ListValue` is a wrapper around a repeated field of values.
1773
+ *
1774
+ * The JSON representation for `ListValue` is JSON array.
1775
+ */
1776
+ interface ListValue {
1777
+ /** Repeated field of dynamically typed values. */
1778
+ values?: any[];
1779
+ }
1759
1780
  interface AudioData {
1760
1781
  /** Styling for the audio node's container. */
1761
1782
  containerData?: PluginContainerData;
@@ -2095,6 +2116,51 @@ interface Document {
2095
2116
  */
2096
2117
  filename?: string | null;
2097
2118
  }
2119
+ interface ContentAuthor extends ContentAuthorAuthorOneOf {
2120
+ /**
2121
+ * Wix user ID.
2122
+ * @format GUID
2123
+ */
2124
+ userId?: string | null;
2125
+ /**
2126
+ * Member ID. See the Members API for more details.
2127
+ * @format GUID
2128
+ */
2129
+ memberId?: string | null;
2130
+ /**
2131
+ * Visitor ID.
2132
+ * @format GUID
2133
+ */
2134
+ visitorId?: string | null;
2135
+ /**
2136
+ * Application ID. For more information, see [Authenticate as an App Instance](https://dev.wix.com/docs/build-apps/develop-your-app/access/authentication/authenticate-as-an-app-instance).
2137
+ * @format GUID
2138
+ */
2139
+ appId?: string | null;
2140
+ }
2141
+ /** @oneof */
2142
+ interface ContentAuthorAuthorOneOf {
2143
+ /**
2144
+ * Wix user ID.
2145
+ * @format GUID
2146
+ */
2147
+ userId?: string | null;
2148
+ /**
2149
+ * Member ID. See the Members API for more details.
2150
+ * @format GUID
2151
+ */
2152
+ memberId?: string | null;
2153
+ /**
2154
+ * Visitor ID.
2155
+ * @format GUID
2156
+ */
2157
+ visitorId?: string | null;
2158
+ /**
2159
+ * Application ID. For more information, see [Authenticate as an App Instance](https://dev.wix.com/docs/build-apps/develop-your-app/access/authentication/authenticate-as-an-app-instance).
2160
+ * @format GUID
2161
+ */
2162
+ appId?: string | null;
2163
+ }
2098
2164
  interface CommentAuthor extends CommentAuthorIdentityOneOf {
2099
2165
  /**
2100
2166
  * Wix user ID.
@@ -2179,6 +2245,145 @@ interface CommentReactionSummary {
2179
2245
  */
2180
2246
  reactionCodeCount?: Record<string, number>;
2181
2247
  }
2248
+ interface UpdateInternalDocumentsEvent extends UpdateInternalDocumentsEventOperationOneOf {
2249
+ /** insert/update documents */
2250
+ update?: InternalDocumentUpdateOperation;
2251
+ /** delete by document ids */
2252
+ deleteByIds?: DeleteByIdsOperation;
2253
+ /** delete documents matching filter */
2254
+ deleteByFilter?: DeleteByFilterOperation;
2255
+ /** update internal documents matching filter */
2256
+ updateByFilter?: InternalDocumentUpdateByFilterOperation;
2257
+ /** update only existing documents */
2258
+ updateExisting?: InternalUpdateExistingOperation;
2259
+ /** insert/update documents with versioning */
2260
+ versionedUpdate?: VersionedDocumentUpdateOperation;
2261
+ /** delete by document ids with versioning */
2262
+ versionedDeleteByIds?: VersionedDeleteByIdsOperation;
2263
+ /**
2264
+ * type of the documents
2265
+ * @minLength 2
2266
+ */
2267
+ documentType?: string;
2268
+ /**
2269
+ * language of the documents (mandatory)
2270
+ * @minLength 2
2271
+ */
2272
+ language?: string | null;
2273
+ /**
2274
+ * one or more search documents
2275
+ * @deprecated
2276
+ */
2277
+ addDocuments?: InternalDocument[];
2278
+ /**
2279
+ * one or more ids of indexed documents to be removed. Removal will happen before addition (if both provided)
2280
+ * @deprecated
2281
+ */
2282
+ removeDocumentIds?: string[];
2283
+ /** id to pass to processing notification */
2284
+ correlationId?: string | null;
2285
+ /** when event was created / issued */
2286
+ issuedAt?: Date | null;
2287
+ }
2288
+ /** @oneof */
2289
+ interface UpdateInternalDocumentsEventOperationOneOf {
2290
+ /** insert/update documents */
2291
+ update?: InternalDocumentUpdateOperation;
2292
+ /** delete by document ids */
2293
+ deleteByIds?: DeleteByIdsOperation;
2294
+ /** delete documents matching filter */
2295
+ deleteByFilter?: DeleteByFilterOperation;
2296
+ /** update internal documents matching filter */
2297
+ updateByFilter?: InternalDocumentUpdateByFilterOperation;
2298
+ /** update only existing documents */
2299
+ updateExisting?: InternalUpdateExistingOperation;
2300
+ /** insert/update documents with versioning */
2301
+ versionedUpdate?: VersionedDocumentUpdateOperation;
2302
+ /** delete by document ids with versioning */
2303
+ versionedDeleteByIds?: VersionedDeleteByIdsOperation;
2304
+ }
2305
+ interface InternalDocument {
2306
+ /** document with mandatory fields (id) and with fields specific to the type of the document */
2307
+ document?: Record<string, any> | null;
2308
+ }
2309
+ interface InternalDocumentUpdateOperation {
2310
+ /** documents to index or update */
2311
+ documents?: InternalDocument[];
2312
+ }
2313
+ interface DeleteByIdsOperation {
2314
+ /** ids of the documents to delete */
2315
+ documentIds?: string[];
2316
+ /**
2317
+ * tenant id for custom tenancy strategy
2318
+ * @minLength 2
2319
+ * @maxLength 300
2320
+ */
2321
+ tenantId?: string | null;
2322
+ }
2323
+ interface DeleteByFilterOperation {
2324
+ /** documents matching this filter wil be deleted. only filterable documents defined in document_type can be used for filtering */
2325
+ filter?: Record<string, any> | null;
2326
+ /**
2327
+ * tenant id for custom tenancy strategy
2328
+ * @minLength 2
2329
+ * @maxLength 300
2330
+ */
2331
+ tenantId?: string | null;
2332
+ }
2333
+ interface InternalDocumentUpdateByFilterOperation {
2334
+ /** documents matching this filter will be updated */
2335
+ filter?: Record<string, any> | null;
2336
+ /** partial document to apply */
2337
+ document?: InternalDocument;
2338
+ /**
2339
+ * tenant id for custom tenancy strategy
2340
+ * @minLength 2
2341
+ * @maxLength 300
2342
+ */
2343
+ tenantId?: string | null;
2344
+ }
2345
+ interface InternalUpdateExistingOperation {
2346
+ /** documents to update */
2347
+ documents?: InternalDocument[];
2348
+ }
2349
+ interface VersionedDocumentUpdateOperation {
2350
+ /** documents to create or overwrite */
2351
+ documents?: InternalDocument[];
2352
+ /** versioning mode to use instead of default */
2353
+ versioningMode?: VersioningModeWithLiterals;
2354
+ }
2355
+ declare enum VersioningMode {
2356
+ /** use default versioning mode agreed with search team */
2357
+ DEFAULT = "DEFAULT",
2358
+ /** execute only if version is greater than existing */
2359
+ GREATER_THAN = "GREATER_THAN",
2360
+ /** execute only if version is greater or equal to existing */
2361
+ GREATER_OR_EQUAL = "GREATER_OR_EQUAL"
2362
+ }
2363
+ /** @enumType */
2364
+ type VersioningModeWithLiterals = VersioningMode | 'DEFAULT' | 'GREATER_THAN' | 'GREATER_OR_EQUAL';
2365
+ interface VersionedDeleteByIdsOperation {
2366
+ /** ids with version of the documents to delete */
2367
+ documentIds?: VersionedDocumentId[];
2368
+ /**
2369
+ * tenant id for custom tenancy strategy
2370
+ * @minLength 2
2371
+ * @maxLength 300
2372
+ */
2373
+ tenantId?: string | null;
2374
+ }
2375
+ interface VersionedDocumentId {
2376
+ /** document id */
2377
+ documentId?: string;
2378
+ /** document version */
2379
+ version?: string;
2380
+ /** versioning mode to use instead of default */
2381
+ versioningMode?: VersioningModeWithLiterals;
2382
+ }
2383
+ interface CommentModerated {
2384
+ comment?: Comment;
2385
+ moderationAction?: ActionWithLiterals;
2386
+ }
2182
2387
  declare enum Action {
2183
2388
  /** Unknown content. */
2184
2389
  UNKNOWN = "UNKNOWN",
@@ -2193,10 +2398,30 @@ interface CreateCommentRequest {
2193
2398
  /** Comment to create. */
2194
2399
  comment?: Comment;
2195
2400
  }
2401
+ interface ContactDetails {
2402
+ }
2196
2403
  interface CreateCommentResponse {
2197
2404
  /** Created comment. */
2198
2405
  comment?: Comment;
2199
2406
  }
2407
+ interface ResourceCommentCountChanged {
2408
+ /** ID of the app that the comment is added to. */
2409
+ appId?: string;
2410
+ /**
2411
+ * ID of the specific context the comment is in response to.
2412
+ *
2413
+ * Within some Wix apps, the `contextId` will be the same as the `resourceId`. For example in Wix Forum, the `forumPostId` is used as both the `contextId` and the `resourceId`.
2414
+ */
2415
+ contextId?: string;
2416
+ /**
2417
+ * ID of the specific resource that the comment is in response to.
2418
+ *
2419
+ * Within some Wix apps, the `resourceId` will be the same as the `contextId`. For example in Wix Forum, the `forumPostId` is used as both the `resourceId` and the `contextId`.
2420
+ */
2421
+ resourceId?: string;
2422
+ /** How many comments are published for the resource. */
2423
+ publishedCommentCount?: number;
2424
+ }
2200
2425
  interface GetCommentRequest {
2201
2426
  /**
2202
2427
  * ID of the comment to retrieve.
@@ -2217,6 +2442,14 @@ interface UpdateCommentResponse {
2217
2442
  /** Updated comment. */
2218
2443
  comment?: Comment;
2219
2444
  }
2445
+ interface CommentContentChanged {
2446
+ /** Comment ID. */
2447
+ commentId?: string;
2448
+ /** Content before the update. */
2449
+ previousContent?: CommentContent;
2450
+ /** Content after the update. */
2451
+ currentContent?: CommentContent;
2452
+ }
2220
2453
  interface DeleteCommentRequest {
2221
2454
  /**
2222
2455
  * ID of the comment to delete.
@@ -2226,6 +2459,9 @@ interface DeleteCommentRequest {
2226
2459
  }
2227
2460
  interface DeleteCommentResponse {
2228
2461
  }
2462
+ interface CommentDeleted {
2463
+ comment?: Comment;
2464
+ }
2229
2465
  interface ModerateDraftContentRequest {
2230
2466
  /**
2231
2467
  * ID of the comment to moderate.
@@ -2245,6 +2481,15 @@ interface ModerateDraftContentResponse {
2245
2481
  /** Moderated comment. */
2246
2482
  comment?: Comment;
2247
2483
  }
2484
+ interface CommentPublished {
2485
+ /** Comment info. */
2486
+ comment?: Comment;
2487
+ /** Whether this is the first comment publish. */
2488
+ firstPublish?: boolean;
2489
+ }
2490
+ interface CommentHidden {
2491
+ comment?: Comment;
2492
+ }
2248
2493
  interface QueryCommentsRequest {
2249
2494
  /**
2250
2495
  * App ID to query comments for.
@@ -2356,6 +2601,9 @@ interface MarkCommentResponse {
2356
2601
  /** Marked comment. */
2357
2602
  comment?: Comment;
2358
2603
  }
2604
+ interface CommentMarked {
2605
+ comment?: Comment;
2606
+ }
2359
2607
  interface UnmarkCommentRequest {
2360
2608
  /**
2361
2609
  * ID of the comment to unmark.
@@ -2367,6 +2615,9 @@ interface UnmarkCommentResponse {
2367
2615
  /** Unmarked comment. */
2368
2616
  comment?: Comment;
2369
2617
  }
2618
+ interface CommentUnmarked {
2619
+ comment?: Comment;
2620
+ }
2370
2621
  interface HideCommentRequest {
2371
2622
  /**
2372
2623
  * ID of the comment to hide.
@@ -2650,6 +2901,164 @@ interface BulkMoveCommentByFilterResponse {
2650
2901
  */
2651
2902
  jobId?: string;
2652
2903
  }
2904
+ interface CommentMoved {
2905
+ comment?: Comment;
2906
+ destination?: Destination;
2907
+ }
2908
+ interface DomainEvent extends DomainEventBodyOneOf {
2909
+ createdEvent?: EntityCreatedEvent;
2910
+ updatedEvent?: EntityUpdatedEvent;
2911
+ deletedEvent?: EntityDeletedEvent;
2912
+ actionEvent?: ActionEvent;
2913
+ /** Event ID. With this ID you can easily spot duplicated events and ignore them. */
2914
+ id?: string;
2915
+ /**
2916
+ * Fully Qualified Domain Name of an entity. This is a unique identifier assigned to the API main business entities.
2917
+ * For example, `wix.stores.catalog.product`, `wix.bookings.session`, `wix.payments.transaction`.
2918
+ */
2919
+ entityFqdn?: string;
2920
+ /**
2921
+ * Event action name, placed at the top level to make it easier for users to dispatch messages.
2922
+ * For example: `created`/`updated`/`deleted`/`started`/`completed`/`email_opened`.
2923
+ */
2924
+ slug?: string;
2925
+ /** ID of the entity associated with the event. */
2926
+ entityId?: string;
2927
+ /** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example, `2020-04-26T13:57:50.699Z`. */
2928
+ eventTime?: Date | null;
2929
+ /**
2930
+ * Whether the event was triggered as a result of a privacy regulation application
2931
+ * (for example, GDPR).
2932
+ */
2933
+ triggeredByAnonymizeRequest?: boolean | null;
2934
+ /** If present, indicates the action that triggered the event. */
2935
+ originatedFrom?: string | null;
2936
+ /**
2937
+ * A sequence number that indicates the order of updates to an entity. For example, if an entity was updated at 16:00 and then again at 16:01, the second update will always have a higher sequence number.
2938
+ * You can use this number to make sure you're handling updates in the right order. Just save the latest sequence number on your end and compare it to the one in each new message. If the new message has an older (lower) number, you can safely ignore it.
2939
+ */
2940
+ entityEventSequence?: string | null;
2941
+ }
2942
+ /** @oneof */
2943
+ interface DomainEventBodyOneOf {
2944
+ createdEvent?: EntityCreatedEvent;
2945
+ updatedEvent?: EntityUpdatedEvent;
2946
+ deletedEvent?: EntityDeletedEvent;
2947
+ actionEvent?: ActionEvent;
2948
+ }
2949
+ interface EntityCreatedEvent {
2950
+ entityAsJson?: string;
2951
+ /** Indicates the event was triggered by a restore-from-trashbin operation for a previously deleted entity */
2952
+ restoreInfo?: RestoreInfo;
2953
+ }
2954
+ interface RestoreInfo {
2955
+ deletedDate?: Date | null;
2956
+ }
2957
+ interface EntityUpdatedEvent {
2958
+ /**
2959
+ * Since platformized APIs only expose PATCH and not PUT we can't assume that the fields sent from the client are the actual diff.
2960
+ * This means that to generate a list of changed fields (as opposed to sent fields) one needs to traverse both objects.
2961
+ * We don't want to impose this on all developers and so we leave this traversal to the notification recipients which need it.
2962
+ */
2963
+ currentEntityAsJson?: string;
2964
+ }
2965
+ interface EntityDeletedEvent {
2966
+ /** Entity that was deleted. */
2967
+ deletedEntityAsJson?: string | null;
2968
+ }
2969
+ interface ActionEvent {
2970
+ bodyAsJson?: string;
2971
+ }
2972
+ interface MessageEnvelope {
2973
+ /**
2974
+ * App instance ID.
2975
+ * @format GUID
2976
+ */
2977
+ instanceId?: string | null;
2978
+ /**
2979
+ * Event type.
2980
+ * @maxLength 150
2981
+ */
2982
+ eventType?: string;
2983
+ /** The identification type and identity data. */
2984
+ identity?: IdentificationData;
2985
+ /** Stringify payload. */
2986
+ data?: string;
2987
+ }
2988
+ interface IdentificationData extends IdentificationDataIdOneOf {
2989
+ /**
2990
+ * ID of a site visitor that has not logged in to the site.
2991
+ * @format GUID
2992
+ */
2993
+ anonymousVisitorId?: string;
2994
+ /**
2995
+ * ID of a site visitor that has logged in to the site.
2996
+ * @format GUID
2997
+ */
2998
+ memberId?: string;
2999
+ /**
3000
+ * ID of a Wix user (site owner, contributor, etc.).
3001
+ * @format GUID
3002
+ */
3003
+ wixUserId?: string;
3004
+ /**
3005
+ * ID of an app.
3006
+ * @format GUID
3007
+ */
3008
+ appId?: string;
3009
+ /** @readonly */
3010
+ identityType?: WebhookIdentityTypeWithLiterals;
3011
+ }
3012
+ /** @oneof */
3013
+ interface IdentificationDataIdOneOf {
3014
+ /**
3015
+ * ID of a site visitor that has not logged in to the site.
3016
+ * @format GUID
3017
+ */
3018
+ anonymousVisitorId?: string;
3019
+ /**
3020
+ * ID of a site visitor that has logged in to the site.
3021
+ * @format GUID
3022
+ */
3023
+ memberId?: string;
3024
+ /**
3025
+ * ID of a Wix user (site owner, contributor, etc.).
3026
+ * @format GUID
3027
+ */
3028
+ wixUserId?: string;
3029
+ /**
3030
+ * ID of an app.
3031
+ * @format GUID
3032
+ */
3033
+ appId?: string;
3034
+ }
3035
+ declare enum WebhookIdentityType {
3036
+ UNKNOWN = "UNKNOWN",
3037
+ ANONYMOUS_VISITOR = "ANONYMOUS_VISITOR",
3038
+ MEMBER = "MEMBER",
3039
+ WIX_USER = "WIX_USER",
3040
+ APP = "APP"
3041
+ }
3042
+ /** @enumType */
3043
+ type WebhookIdentityTypeWithLiterals = WebhookIdentityType | 'UNKNOWN' | 'ANONYMOUS_VISITOR' | 'MEMBER' | 'WIX_USER' | 'APP';
3044
+ /** @docsIgnore */
3045
+ type CreateCommentApplicationErrors = {
3046
+ code?: 'INVALID_CAPTCHA';
3047
+ description?: string;
3048
+ data?: Record<string, any>;
3049
+ };
3050
+ /** @docsIgnore */
3051
+ type UpdateCommentApplicationErrors = {
3052
+ code?: 'INVALID_CAPTCHA';
3053
+ description?: string;
3054
+ data?: Record<string, any>;
3055
+ };
3056
+ /** @docsIgnore */
3057
+ type CountCommentsApplicationErrors = {
3058
+ code?: 'TOO_MANY_TO_COUNT';
3059
+ description?: string;
3060
+ data?: Record<string, any>;
3061
+ };
2653
3062
 
2654
3063
  type __PublicMethodMetaInfo<K = string, M = unknown, T = unknown, S = unknown, Q = unknown, R = unknown> = {
2655
3064
  getUrl: (context: any) => string;
@@ -2698,4 +3107,4 @@ declare function bulkDeleteComment(): __PublicMethodMetaInfo<'PUT', {}, BulkDele
2698
3107
  declare function bulkModerateDraftContent(): __PublicMethodMetaInfo<'POST', {}, BulkModerateDraftContentRequest$1, BulkModerateDraftContentRequest, BulkModerateDraftContentResponse$1, BulkModerateDraftContentResponse>;
2699
3108
  declare function bulkMoveCommentByFilter(): __PublicMethodMetaInfo<'PUT', {}, BulkMoveCommentByFilterRequest$1, BulkMoveCommentByFilterRequest, BulkMoveCommentByFilterResponse$1, BulkMoveCommentByFilterResponse>;
2700
3109
 
2701
- export { type __PublicMethodMetaInfo, bulkDeleteComment, bulkHideComment, bulkModerateDraftContent, bulkMoveCommentByFilter, bulkPublishComment, countComments, createComment, deleteComment, getComment, getCommentThread, hideComment, listCommentsByResource, markComment, moderateDraftContent, publishComment, queryComments, unmarkComment, updateComment };
3110
+ export { type ActionEvent as ActionEventOriginal, Action as ActionOriginal, type ActionWithLiterals as ActionWithLiteralsOriginal, Alignment as AlignmentOriginal, type AlignmentWithLiterals as AlignmentWithLiteralsOriginal, type AnchorData as AnchorDataOriginal, type AppEmbedDataAppDataOneOf as AppEmbedDataAppDataOneOfOriginal, type AppEmbedData as AppEmbedDataOriginal, AppType as AppTypeOriginal, type AppTypeWithLiterals as AppTypeWithLiteralsOriginal, AspectRatio as AspectRatioOriginal, type AspectRatioWithLiterals as AspectRatioWithLiteralsOriginal, type AttachmentMediaOneOf as AttachmentMediaOneOfOriginal, type Attachment as AttachmentOriginal, type AudioData as AudioDataOriginal, type Audio as AudioOriginal, type BackgroundBackgroundOneOf as BackgroundBackgroundOneOfOriginal, type Background as BackgroundOriginal, BackgroundType as BackgroundTypeOriginal, type BackgroundTypeWithLiterals as BackgroundTypeWithLiteralsOriginal, type BlockquoteData as BlockquoteDataOriginal, type BookingData as BookingDataOriginal, type BorderColors as BorderColorsOriginal, type Border as BorderOriginal, type BulkDeleteCommentRequest as BulkDeleteCommentRequestOriginal, type BulkDeleteCommentResponse as BulkDeleteCommentResponseOriginal, type BulkHideCommentRequest as BulkHideCommentRequestOriginal, type BulkHideCommentResponse as BulkHideCommentResponseOriginal, type BulkModerateDraftContentRequest as BulkModerateDraftContentRequestOriginal, type BulkModerateDraftContentResponse as BulkModerateDraftContentResponseOriginal, type BulkMoveCommentByFilterRequest as BulkMoveCommentByFilterRequestOriginal, type BulkMoveCommentByFilterResponse as BulkMoveCommentByFilterResponseOriginal, type BulkPublishCommentRequest as BulkPublishCommentRequestOriginal, type BulkPublishCommentResponse as BulkPublishCommentResponseOriginal, type BulletedListData as BulletedListDataOriginal, type ButtonData as ButtonDataOriginal, ButtonDataType as ButtonDataTypeOriginal, type ButtonDataTypeWithLiterals as ButtonDataTypeWithLiteralsOriginal, type ButtonStyles as ButtonStylesOriginal, type CaptionData as CaptionDataOriginal, type CardStyles as CardStylesOriginal, type CellStyle as CellStyleOriginal, type CodeBlockData as CodeBlockDataOriginal, type CollapsibleListData as CollapsibleListDataOriginal, type ColorData as ColorDataOriginal, type Colors as ColorsOriginal, type CommentAuthorIdentityOneOf as CommentAuthorIdentityOneOfOriginal, type CommentAuthor as CommentAuthorOriginal, type CommentContentChanged as CommentContentChangedOriginal, type CommentContent as CommentContentOriginal, type CommentDeleted as CommentDeletedOriginal, type CommentHidden as CommentHiddenOriginal, type CommentMarked as CommentMarkedOriginal, type CommentModerated as CommentModeratedOriginal, type CommentMoved as CommentMovedOriginal, type Comment as CommentOriginal, type CommentPublished as CommentPublishedOriginal, type CommentReactionSummary as CommentReactionSummaryOriginal, type CommentSort as CommentSortOriginal, type CommentUnmarked as CommentUnmarkedOriginal, type ContactDetails as ContactDetailsOriginal, type ContentAuthorAuthorOneOf as ContentAuthorAuthorOneOfOriginal, type ContentAuthor as ContentAuthorOriginal, type CountCommentsApplicationErrors as CountCommentsApplicationErrorsOriginal, type CountCommentsRequest as CountCommentsRequestOriginal, type CountCommentsResponse as CountCommentsResponseOriginal, type CreateCommentApplicationErrors as CreateCommentApplicationErrorsOriginal, type CreateCommentRequest as CreateCommentRequestOriginal, type CreateCommentResponse as CreateCommentResponseOriginal, Crop as CropOriginal, type CropWithLiterals as CropWithLiteralsOriginal, type CursorPagingMetadata as CursorPagingMetadataOriginal, type CursorPaging as CursorPagingOriginal, type CursorQuery as CursorQueryOriginal, type CursorQueryPagingMethodOneOf as CursorQueryPagingMethodOneOfOriginal, type Cursors as CursorsOriginal, type DecorationDataOneOf as DecorationDataOneOfOriginal, type Decoration as DecorationOriginal, DecorationType as DecorationTypeOriginal, type DecorationTypeWithLiterals as DecorationTypeWithLiteralsOriginal, type DeleteByFilterOperation as DeleteByFilterOperationOriginal, type DeleteByIdsOperation as DeleteByIdsOperationOriginal, type DeleteCommentRequest as DeleteCommentRequestOriginal, type DeleteCommentResponse as DeleteCommentResponseOriginal, type Design as DesignOriginal, type Destination as DestinationOriginal, type Dimensions as DimensionsOriginal, Direction as DirectionOriginal, type DirectionWithLiterals as DirectionWithLiteralsOriginal, DividerDataAlignment as DividerDataAlignmentOriginal, type DividerDataAlignmentWithLiterals as DividerDataAlignmentWithLiteralsOriginal, type DividerData as DividerDataOriginal, type Document as DocumentOriginal, type DocumentStyle as DocumentStyleOriginal, type DomainEventBodyOneOf as DomainEventBodyOneOfOriginal, type DomainEvent as DomainEventOriginal, type EmbedData as EmbedDataOriginal, type EntityCreatedEvent as EntityCreatedEventOriginal, type EntityDeletedEvent as EntityDeletedEventOriginal, type EntityUpdatedEvent as EntityUpdatedEventOriginal, type EventData as EventDataOriginal, type FileData as FileDataOriginal, type FileSourceDataOneOf as FileSourceDataOneOfOriginal, type FileSource as FileSourceOriginal, type FontSizeData as FontSizeDataOriginal, FontType as FontTypeOriginal, type FontTypeWithLiterals as FontTypeWithLiteralsOriginal, type GIFData as GIFDataOriginal, type GIF as GIFOriginal, GIFType as GIFTypeOriginal, type GIFTypeWithLiterals as GIFTypeWithLiteralsOriginal, type GalleryData as GalleryDataOriginal, type GalleryOptionsLayout as GalleryOptionsLayoutOriginal, type GalleryOptions as GalleryOptionsOriginal, type GetCommentRequest as GetCommentRequestOriginal, type GetCommentResponse as GetCommentResponseOriginal, type GetCommentThreadRequest as GetCommentThreadRequestOriginal, type GetCommentThreadResponse as GetCommentThreadResponseOriginal, type Gradient as GradientOriginal, type HTMLDataDataOneOf as HTMLDataDataOneOfOriginal, type HTMLData as HTMLDataOriginal, type HeadingData as HeadingDataOriginal, type Height as HeightOriginal, type HideCommentRequest as HideCommentRequestOriginal, type HideCommentResponse as HideCommentResponseOriginal, type IdentificationDataIdOneOf as IdentificationDataIdOneOfOriginal, type IdentificationData as IdentificationDataOriginal, type ImageData as ImageDataOriginal, type ImageDataStyles as ImageDataStylesOriginal, type Image as ImageOriginal, type ImageStyles as ImageStylesOriginal, InitialExpandedItems as InitialExpandedItemsOriginal, type InitialExpandedItemsWithLiterals as InitialExpandedItemsWithLiteralsOriginal, type InternalDocument as InternalDocumentOriginal, type InternalDocumentUpdateByFilterOperation as InternalDocumentUpdateByFilterOperationOriginal, type InternalDocumentUpdateOperation as InternalDocumentUpdateOperationOriginal, type InternalUpdateExistingOperation as InternalUpdateExistingOperationOriginal, type ItemDataOneOf as ItemDataOneOfOriginal, type ItemImage as ItemImageOriginal, type Item as ItemOriginal, type ItemStyle as ItemStyleOriginal, type LayoutCellData as LayoutCellDataOriginal, Layout as LayoutOriginal, LayoutType as LayoutTypeOriginal, type LayoutTypeWithLiterals as LayoutTypeWithLiteralsOriginal, type LayoutWithLiterals as LayoutWithLiteralsOriginal, LineStyle as LineStyleOriginal, type LineStyleWithLiterals as LineStyleWithLiteralsOriginal, type LinkDataOneOf as LinkDataOneOfOriginal, type LinkData as LinkDataOriginal, type Link as LinkOriginal, type LinkPreviewData as LinkPreviewDataOriginal, type LinkPreviewDataStyles as LinkPreviewDataStylesOriginal, type ListCommentsByResourceCursorPaging as ListCommentsByResourceCursorPagingOriginal, type ListCommentsByResourceRequest as ListCommentsByResourceRequestOriginal, type ListCommentsByResourceResponse as ListCommentsByResourceResponseOriginal, type ListValue as ListValueOriginal, type MapData as MapDataOriginal, type MapSettings as MapSettingsOriginal, MapType as MapTypeOriginal, type MapTypeWithLiterals as MapTypeWithLiteralsOriginal, type MarkCommentRequest as MarkCommentRequestOriginal, type MarkCommentResponse as MarkCommentResponseOriginal, type Media as MediaOriginal, type MentionData as MentionDataOriginal, type MentionIdentityOneOf as MentionIdentityOneOfOriginal, type Mention as MentionOriginal, type MessageEnvelope as MessageEnvelopeOriginal, type Metadata as MetadataOriginal, type ModerateDraftContentRequest as ModerateDraftContentRequestOriginal, type ModerateDraftContentResponse as ModerateDraftContentResponseOriginal, type NodeDataOneOf as NodeDataOneOfOriginal, type Node as NodeOriginal, type NodeStyle as NodeStyleOriginal, NodeType as NodeTypeOriginal, type NodeTypeWithLiterals as NodeTypeWithLiteralsOriginal, NullValue as NullValueOriginal, type NullValueWithLiterals as NullValueWithLiteralsOriginal, type Oembed as OembedOriginal, type OptionDesign as OptionDesignOriginal, type OptionLayout as OptionLayoutOriginal, type Option as OptionOriginal, Order as OrderOriginal, type OrderWithLiterals as OrderWithLiteralsOriginal, type OrderedListData as OrderedListDataOriginal, Orientation as OrientationOriginal, type OrientationWithLiterals as OrientationWithLiteralsOriginal, type PDFSettings as PDFSettingsOriginal, type ParagraphData as ParagraphDataOriginal, type ParentComment as ParentCommentOriginal, type Permissions as PermissionsOriginal, Placement as PlacementOriginal, type PlacementWithLiterals as PlacementWithLiteralsOriginal, type PlaybackOptions as PlaybackOptionsOriginal, PluginContainerDataAlignment as PluginContainerDataAlignmentOriginal, type PluginContainerDataAlignmentWithLiterals as PluginContainerDataAlignmentWithLiteralsOriginal, type PluginContainerData as PluginContainerDataOriginal, type PluginContainerDataWidthDataOneOf as PluginContainerDataWidthDataOneOfOriginal, type PluginContainerDataWidth as PluginContainerDataWidthOriginal, type PollDataLayout as PollDataLayoutOriginal, type PollData as PollDataOriginal, type PollDesign as PollDesignOriginal, PollLayoutDirection as PollLayoutDirectionOriginal, type PollLayoutDirectionWithLiterals as PollLayoutDirectionWithLiteralsOriginal, type PollLayout as PollLayoutOriginal, PollLayoutType as PollLayoutTypeOriginal, type PollLayoutTypeWithLiterals as PollLayoutTypeWithLiteralsOriginal, type Poll as PollOriginal, Position as PositionOriginal, type PositionWithLiterals as PositionWithLiteralsOriginal, type PricingData as PricingDataOriginal, type PublishCommentRequest as PublishCommentRequestOriginal, type PublishCommentResponse as PublishCommentResponseOriginal, type QueryCommentsRequest as QueryCommentsRequestOriginal, type QueryCommentsResponse as QueryCommentsResponseOriginal, type Rel as RelOriginal, type RepliesListResponse as RepliesListResponseOriginal, ReplySortOrder as ReplySortOrderOriginal, type ReplySortOrderWithLiterals as ReplySortOrderWithLiteralsOriginal, type ReplySort as ReplySortOriginal, Resizing as ResizingOriginal, type ResizingWithLiterals as ResizingWithLiteralsOriginal, type ResourceCommentCountChanged as ResourceCommentCountChangedOriginal, type RestoreInfo as RestoreInfoOriginal, type RibbonStyles as RibbonStylesOriginal, type RichContent as RichContentOriginal, type Settings as SettingsOriginal, SortOrder as SortOrderOriginal, type SortOrderWithLiterals as SortOrderWithLiteralsOriginal, type Sorting as SortingOriginal, Source as SourceOriginal, type SourceWithLiterals as SourceWithLiteralsOriginal, type SpoilerData as SpoilerDataOriginal, type Spoiler as SpoilerOriginal, Status as StatusOriginal, type StatusWithLiterals as StatusWithLiteralsOriginal, type StylesBorder as StylesBorderOriginal, type Styles as StylesOriginal, StylesPosition as StylesPositionOriginal, type StylesPositionWithLiterals as StylesPositionWithLiteralsOriginal, type TableCellData as TableCellDataOriginal, type TableData as TableDataOriginal, Target as TargetOriginal, type TargetWithLiterals as TargetWithLiteralsOriginal, TextAlignment as TextAlignmentOriginal, type TextAlignmentWithLiterals as TextAlignmentWithLiteralsOriginal, type TextData as TextDataOriginal, type TextNodeStyle as TextNodeStyleOriginal, type TextStyle as TextStyleOriginal, ThumbnailsAlignment as ThumbnailsAlignmentOriginal, type ThumbnailsAlignmentWithLiterals as ThumbnailsAlignmentWithLiteralsOriginal, type Thumbnails as ThumbnailsOriginal, Type as TypeOriginal, type TypeWithLiterals as TypeWithLiteralsOriginal, type UnmarkCommentRequest as UnmarkCommentRequestOriginal, type UnmarkCommentResponse as UnmarkCommentResponseOriginal, type UpdateCommentApplicationErrors as UpdateCommentApplicationErrorsOriginal, type UpdateCommentRequest as UpdateCommentRequestOriginal, type UpdateCommentResponse as UpdateCommentResponseOriginal, type UpdateInternalDocumentsEventOperationOneOf as UpdateInternalDocumentsEventOperationOneOfOriginal, type UpdateInternalDocumentsEvent as UpdateInternalDocumentsEventOriginal, type VersionedDeleteByIdsOperation as VersionedDeleteByIdsOperationOriginal, type VersionedDocumentId as VersionedDocumentIdOriginal, type VersionedDocumentUpdateOperation as VersionedDocumentUpdateOperationOriginal, VersioningMode as VersioningModeOriginal, type VersioningModeWithLiterals as VersioningModeWithLiteralsOriginal, VerticalAlignment as VerticalAlignmentOriginal, type VerticalAlignmentWithLiterals as VerticalAlignmentWithLiteralsOriginal, type VideoData as VideoDataOriginal, type Video as VideoOriginal, type VideoResolution as VideoResolutionOriginal, type VideoV2 as VideoV2Original, ViewMode as ViewModeOriginal, type ViewModeWithLiterals as ViewModeWithLiteralsOriginal, ViewRole as ViewRoleOriginal, type ViewRoleWithLiterals as ViewRoleWithLiteralsOriginal, VoteRole as VoteRoleOriginal, type VoteRoleWithLiterals as VoteRoleWithLiteralsOriginal, type VoteSummary as VoteSummaryOriginal, WebhookIdentityType as WebhookIdentityTypeOriginal, type WebhookIdentityTypeWithLiterals as WebhookIdentityTypeWithLiteralsOriginal, Width as WidthOriginal, WidthType as WidthTypeOriginal, type WidthTypeWithLiterals as WidthTypeWithLiteralsOriginal, type WidthWithLiterals as WidthWithLiteralsOriginal, type __PublicMethodMetaInfo, bulkDeleteComment, bulkHideComment, bulkModerateDraftContent, bulkMoveCommentByFilter, bulkPublishComment, countComments, createComment, deleteComment, getComment, getCommentThread, hideComment, listCommentsByResource, markComment, moderateDraftContent, publishComment, queryComments, unmarkComment, updateComment };