@wix/auto_sdk_feedback_comments 1.0.0

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.
@@ -0,0 +1,607 @@
1
+ import { GetCommentRequest as GetCommentRequest$1, GetCommentResponse as GetCommentResponse$1, QueryCommentsRequest as QueryCommentsRequest$1, QueryCommentsResponse as QueryCommentsResponse$1, UpdateCommentStatusRequest as UpdateCommentStatusRequest$1, UpdateCommentStatusResponse as UpdateCommentStatusResponse$1, DeleteCommentRequest as DeleteCommentRequest$1, DeleteCommentResponse as DeleteCommentResponse$1, CreateCommentReplyRequest as CreateCommentReplyRequest$1, CreateCommentReplyResponse as CreateCommentReplyResponse$1, UpdateCommentReplyRequest as UpdateCommentReplyRequest$1, UpdateCommentReplyResponse as UpdateCommentReplyResponse$1, DeleteCommentReplyRequest as DeleteCommentReplyRequest$1, DeleteCommentReplyResponse as DeleteCommentReplyResponse$1 } from './index.typings.js';
2
+ import '@wix/sdk-types';
3
+
4
+ /**
5
+ * A Comment is a note left on a specific location of a site page as part of a feedback session.
6
+ *
7
+ * Site visitors leave comments while reviewing a site; the site owner reads them, triages them by
8
+ * `status`, replies to them, and deletes them.
9
+ */
10
+ interface Comment {
11
+ /**
12
+ * Comment ID.
13
+ * @format GUID
14
+ * @readonly
15
+ */
16
+ id?: string;
17
+ /**
18
+ * Revision number, which increments by 1 each time the Comment is updated.
19
+ * To prevent conflicting changes,
20
+ * the current revision must be passed when updating the Comment.
21
+ *
22
+ * Ignored when creating a Comment.
23
+ * @readonly
24
+ */
25
+ revision?: string | null;
26
+ /**
27
+ * Date and time the Comment was created.
28
+ * @readonly
29
+ */
30
+ createdDate?: Date | null;
31
+ /**
32
+ * Date and time the Comment was last updated.
33
+ * @readonly
34
+ */
35
+ updatedDate?: Date | null;
36
+ /**
37
+ * ID of the feedback session the Comment belongs to.
38
+ * @format GUID
39
+ * @readonly
40
+ */
41
+ feedbackId?: string;
42
+ /**
43
+ * ID of the site the Comment was left on.
44
+ * @format GUID
45
+ * @readonly
46
+ */
47
+ metaSiteId?: string;
48
+ /**
49
+ * ID of the Wix user or site visitor who left the Comment.
50
+ * @format GUID
51
+ * @readonly
52
+ */
53
+ commenterId?: string;
54
+ /**
55
+ * Text of the Comment.
56
+ * @minLength 2
57
+ * @maxLength 2000
58
+ */
59
+ message?: string;
60
+ /**
61
+ * Triage status of the Comment.
62
+ *
63
+ * Read-only: the site owner changes it with Update Comment Status, and no other flow may set it.
64
+ * @readonly
65
+ */
66
+ status?: StatusWithLiterals;
67
+ /** Where on the page the Comment is anchored. */
68
+ commentLocation?: CommentLocation;
69
+ /**
70
+ * Replies to the Comment, ordered oldest first.
71
+ *
72
+ * A reply is addressed by its index in this list, so indexes shift when a reply is deleted.
73
+ * Pass the Comment's current `revision` when updating or deleting a reply to be sure the index
74
+ * you're addressing is still the one you read.
75
+ * @readonly
76
+ * @maxSize 1000
77
+ */
78
+ replies?: CommentReply[];
79
+ /**
80
+ * Whether the Comment was migrated from the legacy feedback server.
81
+ * @internal
82
+ * @readonly
83
+ */
84
+ migrated?: boolean;
85
+ }
86
+ /** Triage status of a comment. */
87
+ declare enum Status {
88
+ /** The comment hasn't been read yet. */
89
+ NEW = "NEW",
90
+ /** The comment has been read but isn't resolved. */
91
+ OPEN = "OPEN",
92
+ /** The comment has been dealt with. */
93
+ RESOLVED = "RESOLVED"
94
+ }
95
+ /** @enumType */
96
+ type StatusWithLiterals = Status | 'NEW' | 'OPEN' | 'RESOLVED';
97
+ /** Where on a site page a Comment is anchored. */
98
+ interface CommentLocation {
99
+ /**
100
+ * ID of the editor page the Comment was left on.
101
+ * @maxLength 100
102
+ */
103
+ pageId?: string;
104
+ /** Horizontal position of the Comment on the page. */
105
+ x?: number;
106
+ /** Vertical position of the Comment on the page. */
107
+ y?: number;
108
+ /** Responsive-design breakpoint the Comment was left at. */
109
+ breakpoint?: Breakpoint;
110
+ /**
111
+ * Inner path of the Wix dynamic page the Comment was left on.
112
+ * @maxLength 2048
113
+ */
114
+ innerPath?: string;
115
+ /** Position of the Comment relative to the element it's attached to. */
116
+ position?: Position;
117
+ }
118
+ /** Responsive-design breakpoint a Comment was left at. */
119
+ interface Breakpoint {
120
+ /**
121
+ * Breakpoint ID.
122
+ * @maxLength 100
123
+ */
124
+ id?: string;
125
+ /** Lowest viewport width the breakpoint applies to, in pixels. */
126
+ minWidth?: number;
127
+ /** Highest viewport width the breakpoint applies to, in pixels. */
128
+ maxWidth?: number;
129
+ }
130
+ /** Position of a Comment relative to the page element it's attached to. */
131
+ interface Position {
132
+ /**
133
+ * DOM selector of the target element.
134
+ * @maxLength 1024
135
+ */
136
+ selector?: string;
137
+ /** Horizontal offset within the element, as a percentage of its width. */
138
+ offsetXPct?: number;
139
+ /** Vertical offset within the element, as a percentage of its height. */
140
+ offsetYPct?: number;
141
+ /**
142
+ * Inner path of the Wix dynamic page the element is on.
143
+ * @maxLength 2048
144
+ */
145
+ innerPath?: string;
146
+ }
147
+ /** A reply to a Comment. */
148
+ interface CommentReply {
149
+ /**
150
+ * ID of the Wix user or site visitor who wrote the reply.
151
+ * @format GUID
152
+ * @readonly
153
+ */
154
+ replierId?: string;
155
+ /**
156
+ * Text of the reply.
157
+ * @minLength 1
158
+ * @maxLength 2000
159
+ */
160
+ message?: string;
161
+ /**
162
+ * Date and time the reply was created.
163
+ * @readonly
164
+ */
165
+ createdDate?: Date | null;
166
+ }
167
+ interface GetCommentRequest {
168
+ /**
169
+ * ID of the Comment to retrieve.
170
+ * @format GUID
171
+ */
172
+ commentId: string;
173
+ }
174
+ interface GetCommentResponse {
175
+ /** The requested Comment. */
176
+ comment?: Comment;
177
+ }
178
+ interface QueryCommentsRequest {
179
+ /** Query options. */
180
+ query?: CursorQuery;
181
+ }
182
+ interface CursorQuery extends CursorQueryPagingMethodOneOf {
183
+ /**
184
+ * Cursor paging options.
185
+ *
186
+ * Learn more about [cursor paging](https://dev.wix.com/docs/rest/articles/getting-started/api-query-language#cursor-paging).
187
+ */
188
+ cursorPaging?: CursorPaging;
189
+ /**
190
+ * Filter object.
191
+ *
192
+ * Learn more about the [filter section](https://dev.wix.com/docs/rest/articles/getting-started/api-query-language#the-filter-section).
193
+ */
194
+ filter?: Record<string, any> | null;
195
+ /**
196
+ * Sort object.
197
+ *
198
+ * Learn more about the [sort section](https://dev.wix.com/docs/rest/articles/getting-started/api-query-language#the-sort-section).
199
+ * @maxSize 5
200
+ */
201
+ sort?: Sorting[];
202
+ }
203
+ /** @oneof */
204
+ interface CursorQueryPagingMethodOneOf {
205
+ /**
206
+ * Cursor paging options.
207
+ *
208
+ * Learn more about [cursor paging](https://dev.wix.com/docs/rest/articles/getting-started/api-query-language#cursor-paging).
209
+ */
210
+ cursorPaging?: CursorPaging;
211
+ }
212
+ interface Sorting {
213
+ /**
214
+ * Name of the field to sort by.
215
+ * @maxLength 512
216
+ */
217
+ fieldName?: string;
218
+ /** Sort order. */
219
+ order?: SortOrderWithLiterals;
220
+ }
221
+ declare enum SortOrder {
222
+ ASC = "ASC",
223
+ DESC = "DESC"
224
+ }
225
+ /** @enumType */
226
+ type SortOrderWithLiterals = SortOrder | 'ASC' | 'DESC';
227
+ interface CursorPaging {
228
+ /**
229
+ * Maximum number of items to return in the results.
230
+ * @max 100
231
+ */
232
+ limit?: number | null;
233
+ /**
234
+ * Pointer to the next or previous page in the list of results.
235
+ *
236
+ * Pass the relevant cursor token from the `pagingMetadata` object in the previous call's response.
237
+ * Not relevant for the first request.
238
+ * @maxLength 16000
239
+ */
240
+ cursor?: string | null;
241
+ }
242
+ interface QueryCommentsResponse {
243
+ /** The retrieved Comments. */
244
+ comments?: Comment[];
245
+ /** Paging metadata. */
246
+ pagingMetadata?: CursorPagingMetadata;
247
+ }
248
+ interface CursorPagingMetadata {
249
+ /** Number of items returned in current page. */
250
+ count?: number | null;
251
+ /** Cursor strings that point to the next page, previous page, or both. */
252
+ cursors?: Cursors;
253
+ /**
254
+ * Whether there are more pages to retrieve following the current page.
255
+ *
256
+ * + `true`: Another page of results can be retrieved.
257
+ * + `false`: This is the last page.
258
+ */
259
+ hasNext?: boolean | null;
260
+ }
261
+ interface Cursors {
262
+ /**
263
+ * Cursor string pointing to the next page in the list of results.
264
+ * @maxLength 16000
265
+ */
266
+ next?: string | null;
267
+ /**
268
+ * Cursor pointing to the previous page in the list of results.
269
+ * @maxLength 16000
270
+ */
271
+ prev?: string | null;
272
+ }
273
+ interface UpdateCommentStatusRequest {
274
+ /**
275
+ * ID of the Comment to triage.
276
+ * @format GUID
277
+ */
278
+ commentId: string;
279
+ /** Status to set on the Comment. */
280
+ status: StatusWithLiterals;
281
+ /** Current revision of the Comment. */
282
+ revision: string | null;
283
+ }
284
+ interface UpdateCommentStatusResponse {
285
+ /** The updated Comment. */
286
+ comment?: Comment;
287
+ }
288
+ interface DeleteCommentRequest {
289
+ /**
290
+ * ID of the Comment to delete.
291
+ * @format GUID
292
+ */
293
+ commentId: string;
294
+ }
295
+ interface DeleteCommentResponse {
296
+ }
297
+ interface CreateCommentReplyRequest {
298
+ /**
299
+ * ID of the Comment to reply to.
300
+ * @format GUID
301
+ */
302
+ commentId: string;
303
+ /** The reply to add. Only `message` is honored. */
304
+ reply: CommentReply;
305
+ /** Current revision of the Comment. */
306
+ revision: string | null;
307
+ }
308
+ interface CreateCommentReplyResponse {
309
+ /** The Comment, including the new reply. */
310
+ comment?: Comment;
311
+ }
312
+ interface UpdateCommentReplyRequest {
313
+ /**
314
+ * ID of the Comment the reply belongs to.
315
+ * @format GUID
316
+ */
317
+ commentId: string;
318
+ /** Position of the reply in the Comment's `replies` list. */
319
+ replyIndex: number;
320
+ /**
321
+ * New text for the reply.
322
+ * @minLength 1
323
+ * @maxLength 2000
324
+ */
325
+ message: string;
326
+ /** Current revision of the Comment. */
327
+ revision: string | null;
328
+ }
329
+ interface UpdateCommentReplyResponse {
330
+ /** The Comment, including the updated reply. */
331
+ comment?: Comment;
332
+ }
333
+ interface DeleteCommentReplyRequest {
334
+ /**
335
+ * ID of the Comment the reply belongs to.
336
+ * @format GUID
337
+ */
338
+ commentId: string;
339
+ /** Position of the reply in the Comment's `replies` list. */
340
+ replyIndex: number;
341
+ /** Current revision of the Comment. */
342
+ revision: string | null;
343
+ }
344
+ interface DeleteCommentReplyResponse {
345
+ /** The Comment, without the deleted reply. */
346
+ comment?: Comment;
347
+ }
348
+ interface DomainEvent extends DomainEventBodyOneOf {
349
+ createdEvent?: EntityCreatedEvent;
350
+ updatedEvent?: EntityUpdatedEvent;
351
+ deletedEvent?: EntityDeletedEvent;
352
+ actionEvent?: ActionEvent;
353
+ /** Event ID. With this ID you can easily spot duplicated events and ignore them. */
354
+ id?: string;
355
+ /**
356
+ * Fully Qualified Domain Name of an entity. This is a unique identifier assigned to the API main business entities.
357
+ * For example, `wix.stores.catalog.product`, `wix.bookings.session`, `wix.payments.transaction`.
358
+ */
359
+ entityFqdn?: string;
360
+ /**
361
+ * Event action name, placed at the top level to make it easier for users to dispatch messages.
362
+ * For example: `created`/`updated`/`deleted`/`started`/`completed`/`email_opened`.
363
+ */
364
+ slug?: string;
365
+ /** ID of the entity associated with the event. */
366
+ entityId?: string;
367
+ /** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example, `2020-04-26T13:57:50.699Z`. */
368
+ eventTime?: Date | null;
369
+ /**
370
+ * Whether the event was triggered as a result of a privacy regulation application
371
+ * (for example, GDPR).
372
+ */
373
+ triggeredByAnonymizeRequest?: boolean | null;
374
+ /** If present, indicates the action that triggered the event. */
375
+ originatedFrom?: string | null;
376
+ /**
377
+ * 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.
378
+ * 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.
379
+ */
380
+ entityEventSequence?: string | null;
381
+ }
382
+ /** @oneof */
383
+ interface DomainEventBodyOneOf {
384
+ createdEvent?: EntityCreatedEvent;
385
+ updatedEvent?: EntityUpdatedEvent;
386
+ deletedEvent?: EntityDeletedEvent;
387
+ actionEvent?: ActionEvent;
388
+ }
389
+ interface EntityCreatedEvent {
390
+ entityAsJson?: string;
391
+ /**
392
+ * Indicates the event was triggered by a restore-from-trashbin operation for a previously deleted entity
393
+ * @internal
394
+ */
395
+ triggeredByUndelete?: boolean | null;
396
+ /** Indicates the event was triggered by a restore-from-trashbin operation for a previously deleted entity */
397
+ restoreInfo?: RestoreInfo;
398
+ /**
399
+ * Optional domain-specific metadata defined by the API owner, encoded as JSON.
400
+ * @internal
401
+ */
402
+ additionalMetadataAsJson?: string | null;
403
+ }
404
+ interface RestoreInfo {
405
+ deletedDate?: Date | null;
406
+ }
407
+ interface EntityUpdatedEvent {
408
+ /**
409
+ * Since platformized APIs only expose PATCH and not PUT we can't assume that the fields sent from the client are the actual diff.
410
+ * This means that to generate a list of changed fields (as opposed to sent fields) one needs to traverse both objects.
411
+ * We don't want to impose this on all developers and so we leave this traversal to the notification recipients which need it.
412
+ */
413
+ currentEntityAsJson?: string;
414
+ /**
415
+ * This field is currently part of the of the EntityUpdatedEvent msg, but scala/node libraries which implements the domain events standard
416
+ * wont populate it / have any reference to it in the API.
417
+ * The main reason for it is that fetching the old entity from the DB will have a performance hit on an update operation so unless truly needed,
418
+ * the developer should send only the new (current) entity.
419
+ * An additional reason is not wanting to send this additional entity over the wire (kafka) since in some cases it can be really big
420
+ * Developers that must reflect the old entity will have to implement their own domain event sender mechanism which will follow the DomainEvent proto message.
421
+ * @internal
422
+ * @deprecated
423
+ */
424
+ previousEntityAsJson?: string | null;
425
+ /**
426
+ * Map of fully qualified field paths to their previous values for fields that changed.
427
+ * For more details please see [AIP](https://dev.wix.com/docs/rnd-general/articles/p13n-guidelines-aips/guidance-aips/design-patterns/7016-events#modified-fields-format)
428
+ * @internal
429
+ */
430
+ modifiedFields?: Record<string, any>;
431
+ /**
432
+ * Optional domain-specific metadata defined by the API owner, encoded as JSON.
433
+ * @internal
434
+ */
435
+ additionalMetadataAsJson?: string | null;
436
+ }
437
+ interface EntityDeletedEvent {
438
+ /**
439
+ * Indicates if the entity is sent to trash-bin. only available when trash-bin is enabled
440
+ * @internal
441
+ */
442
+ movedToTrash?: boolean | null;
443
+ /** Entity that was deleted. */
444
+ deletedEntityAsJson?: string | null;
445
+ /**
446
+ * Optional domain-specific metadata defined by the API owner, encoded as JSON.
447
+ * @internal
448
+ */
449
+ additionalMetadataAsJson?: string | null;
450
+ }
451
+ interface ActionEvent {
452
+ bodyAsJson?: string;
453
+ }
454
+ interface MessageEnvelope {
455
+ /**
456
+ * App instance ID.
457
+ * @format GUID
458
+ */
459
+ instanceId?: string | null;
460
+ /**
461
+ * Event type.
462
+ * @maxLength 150
463
+ */
464
+ eventType?: string;
465
+ /** The identification type and identity data. */
466
+ identity?: IdentificationData;
467
+ /** Stringify payload. */
468
+ data?: string;
469
+ /** Details related to the account */
470
+ accountInfo?: AccountInfo;
471
+ }
472
+ interface IdentificationData extends IdentificationDataIdOneOf {
473
+ /**
474
+ * ID of a site visitor that has not logged in to the site.
475
+ * @format GUID
476
+ */
477
+ anonymousVisitorId?: string;
478
+ /**
479
+ * ID of a site visitor that has logged in to the site.
480
+ * @format GUID
481
+ */
482
+ memberId?: string;
483
+ /**
484
+ * ID of a Wix user (site owner, contributor, etc.).
485
+ * @format GUID
486
+ */
487
+ wixUserId?: string;
488
+ /**
489
+ * ID of an app.
490
+ * @format GUID
491
+ */
492
+ appId?: string;
493
+ /** @readonly */
494
+ identityType?: WebhookIdentityTypeWithLiterals;
495
+ }
496
+ /** @oneof */
497
+ interface IdentificationDataIdOneOf {
498
+ /**
499
+ * ID of a site visitor that has not logged in to the site.
500
+ * @format GUID
501
+ */
502
+ anonymousVisitorId?: string;
503
+ /**
504
+ * ID of a site visitor that has logged in to the site.
505
+ * @format GUID
506
+ */
507
+ memberId?: string;
508
+ /**
509
+ * ID of a Wix user (site owner, contributor, etc.).
510
+ * @format GUID
511
+ */
512
+ wixUserId?: string;
513
+ /**
514
+ * ID of an app.
515
+ * @format GUID
516
+ */
517
+ appId?: string;
518
+ }
519
+ declare enum WebhookIdentityType {
520
+ UNKNOWN = "UNKNOWN",
521
+ ANONYMOUS_VISITOR = "ANONYMOUS_VISITOR",
522
+ MEMBER = "MEMBER",
523
+ WIX_USER = "WIX_USER",
524
+ APP = "APP"
525
+ }
526
+ /** @enumType */
527
+ type WebhookIdentityTypeWithLiterals = WebhookIdentityType | 'UNKNOWN' | 'ANONYMOUS_VISITOR' | 'MEMBER' | 'WIX_USER' | 'APP';
528
+ interface AccountInfo {
529
+ /**
530
+ * ID of the Wix account associated with the event.
531
+ * @format GUID
532
+ */
533
+ accountId?: string | null;
534
+ /**
535
+ * ID of the parent Wix account. Only included when accountId belongs to a child account.
536
+ * @format GUID
537
+ */
538
+ parentAccountId?: string | null;
539
+ /**
540
+ * ID of the Wix site associated with the event. Only included when the event is tied to a specific site.
541
+ * @format GUID
542
+ */
543
+ siteId?: string | null;
544
+ }
545
+ interface CreateCommentRequest {
546
+ /**
547
+ * ID of the feedback session to leave the Comment on.
548
+ * @format GUID
549
+ */
550
+ feedbackId?: string;
551
+ /** The Comment to leave. */
552
+ comment?: Comment;
553
+ }
554
+ interface CreateCommentResponse {
555
+ /** The created Comment. */
556
+ comment?: Comment;
557
+ }
558
+ interface UpdateCommentRequest {
559
+ /**
560
+ * The Comment to update, carrying its `id`, its current `revision`, and the new values for the
561
+ * fields named in `field_mask`.
562
+ */
563
+ comment?: Comment;
564
+ /**
565
+ * Fields to update: `message`, `comment_location`, or both.
566
+ * @internal
567
+ */
568
+ fieldMask?: string[];
569
+ }
570
+ interface UpdateCommentResponse {
571
+ /** The updated Comment. */
572
+ comment?: Comment;
573
+ }
574
+
575
+ type __PublicMethodMetaInfo<K = string, M = unknown, T = unknown, S = unknown, Q = unknown, R = unknown> = {
576
+ getUrl: (context: any) => string;
577
+ httpMethod: K;
578
+ path: string;
579
+ pathParams: M;
580
+ __requestType: T;
581
+ __originalRequestType: S;
582
+ __responseType: Q;
583
+ __originalResponseType: R;
584
+ };
585
+ declare function getComment(): __PublicMethodMetaInfo<'GET', {
586
+ commentId: string;
587
+ }, GetCommentRequest$1, GetCommentRequest, GetCommentResponse$1, GetCommentResponse>;
588
+ declare function queryComments(): __PublicMethodMetaInfo<'GET', {}, QueryCommentsRequest$1, QueryCommentsRequest, QueryCommentsResponse$1, QueryCommentsResponse>;
589
+ declare function updateCommentStatus(): __PublicMethodMetaInfo<'POST', {
590
+ commentId: string;
591
+ }, UpdateCommentStatusRequest$1, UpdateCommentStatusRequest, UpdateCommentStatusResponse$1, UpdateCommentStatusResponse>;
592
+ declare function deleteComment(): __PublicMethodMetaInfo<'DELETE', {
593
+ commentId: string;
594
+ }, DeleteCommentRequest$1, DeleteCommentRequest, DeleteCommentResponse$1, DeleteCommentResponse>;
595
+ declare function createCommentReply(): __PublicMethodMetaInfo<'POST', {
596
+ commentId: string;
597
+ }, CreateCommentReplyRequest$1, CreateCommentReplyRequest, CreateCommentReplyResponse$1, CreateCommentReplyResponse>;
598
+ declare function updateCommentReply(): __PublicMethodMetaInfo<'PATCH', {
599
+ commentId: string;
600
+ replyIndex: string;
601
+ }, UpdateCommentReplyRequest$1, UpdateCommentReplyRequest, UpdateCommentReplyResponse$1, UpdateCommentReplyResponse>;
602
+ declare function deleteCommentReply(): __PublicMethodMetaInfo<'DELETE', {
603
+ commentId: string;
604
+ replyIndex: string;
605
+ }, DeleteCommentReplyRequest$1, DeleteCommentReplyRequest, DeleteCommentReplyResponse$1, DeleteCommentReplyResponse>;
606
+
607
+ export { type AccountInfo as AccountInfoOriginal, type ActionEvent as ActionEventOriginal, type Breakpoint as BreakpointOriginal, type CommentLocation as CommentLocationOriginal, type Comment as CommentOriginal, type CommentReply as CommentReplyOriginal, type CreateCommentReplyRequest as CreateCommentReplyRequestOriginal, type CreateCommentReplyResponse as CreateCommentReplyResponseOriginal, type CreateCommentRequest as CreateCommentRequestOriginal, type CreateCommentResponse as CreateCommentResponseOriginal, type CursorPagingMetadata as CursorPagingMetadataOriginal, type CursorPaging as CursorPagingOriginal, type CursorQuery as CursorQueryOriginal, type CursorQueryPagingMethodOneOf as CursorQueryPagingMethodOneOfOriginal, type Cursors as CursorsOriginal, type DeleteCommentReplyRequest as DeleteCommentReplyRequestOriginal, type DeleteCommentReplyResponse as DeleteCommentReplyResponseOriginal, type DeleteCommentRequest as DeleteCommentRequestOriginal, type DeleteCommentResponse as DeleteCommentResponseOriginal, type DomainEventBodyOneOf as DomainEventBodyOneOfOriginal, type DomainEvent as DomainEventOriginal, type EntityCreatedEvent as EntityCreatedEventOriginal, type EntityDeletedEvent as EntityDeletedEventOriginal, type EntityUpdatedEvent as EntityUpdatedEventOriginal, type GetCommentRequest as GetCommentRequestOriginal, type GetCommentResponse as GetCommentResponseOriginal, type IdentificationDataIdOneOf as IdentificationDataIdOneOfOriginal, type IdentificationData as IdentificationDataOriginal, type MessageEnvelope as MessageEnvelopeOriginal, type Position as PositionOriginal, type QueryCommentsRequest as QueryCommentsRequestOriginal, type QueryCommentsResponse as QueryCommentsResponseOriginal, type RestoreInfo as RestoreInfoOriginal, SortOrder as SortOrderOriginal, type SortOrderWithLiterals as SortOrderWithLiteralsOriginal, type Sorting as SortingOriginal, Status as StatusOriginal, type StatusWithLiterals as StatusWithLiteralsOriginal, type UpdateCommentReplyRequest as UpdateCommentReplyRequestOriginal, type UpdateCommentReplyResponse as UpdateCommentReplyResponseOriginal, type UpdateCommentRequest as UpdateCommentRequestOriginal, type UpdateCommentResponse as UpdateCommentResponseOriginal, type UpdateCommentStatusRequest as UpdateCommentStatusRequestOriginal, type UpdateCommentStatusResponse as UpdateCommentStatusResponseOriginal, WebhookIdentityType as WebhookIdentityTypeOriginal, type WebhookIdentityTypeWithLiterals as WebhookIdentityTypeWithLiteralsOriginal, type __PublicMethodMetaInfo, createCommentReply, deleteComment, deleteCommentReply, getComment, queryComments, updateCommentReply, updateCommentStatus };