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