@wix/auto_sdk_members_member-report 1.0.0 → 1.0.2

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.
@@ -1,10 +1,14 @@
1
1
  export interface MemberReport {
2
2
  /**
3
3
  * Report ID.
4
+ * @format GUID
4
5
  * @readonly
5
6
  */
6
7
  id?: string | null;
7
- /** ID of the reported member. */
8
+ /**
9
+ * ID of the reported member.
10
+ * @format GUID
11
+ */
8
12
  reportedMemberId?: string;
9
13
  /**
10
14
  * ID of the member who created the report.
@@ -50,7 +54,10 @@ export interface ReportedMemberCreated {
50
54
  }
51
55
  /** Reported member details. */
52
56
  export interface ReportedMember {
53
- /** ID of the reported member. */
57
+ /**
58
+ * ID of the reported member.
59
+ * @format GUID
60
+ */
54
61
  reportedMemberId?: string;
55
62
  /** Number of reports for this member. */
56
63
  reportCount?: string;
@@ -63,11 +70,17 @@ export interface ReportedMember {
63
70
  lastReportDate?: Date | null;
64
71
  }
65
72
  export interface SelfReportingForbiddenError {
66
- /** ID of the member that is reported. */
73
+ /**
74
+ * ID of the member that is reported.
75
+ * @format GUID
76
+ */
67
77
  memberId?: string;
68
78
  }
69
79
  export interface CannotReportBlockedMemberError {
70
- /** ID of the member that is reported. */
80
+ /**
81
+ * ID of the member that is reported.
82
+ * @format GUID
83
+ */
71
84
  memberId?: string;
72
85
  }
73
86
  export interface QueryMemberReportsRequest {
@@ -95,7 +108,10 @@ export interface QueryV2 {
95
108
  paging?: CursorPaging;
96
109
  }
97
110
  export interface Sorting {
98
- /** Name of the field to sort by. */
111
+ /**
112
+ * Name of the field to sort by.
113
+ * @maxLength 512
114
+ */
99
115
  fieldName?: string;
100
116
  /** Sort order. */
101
117
  order?: SortOrder;
@@ -108,6 +124,7 @@ export interface CursorPaging {
108
124
  /**
109
125
  * The number of items to load.
110
126
  * Default: `100`
127
+ * @max 1000
111
128
  */
112
129
  limit?: number | null;
113
130
  /** Cursor token pointing to a page of results. Not used in the first request. Following requests use the cursor token and not `filter` or `sort`. */
@@ -132,13 +149,22 @@ export interface PagingMetadataV2 {
132
149
  cursors?: Cursors;
133
150
  }
134
151
  export interface Cursors {
135
- /** Cursor string pointing to the next page in the list of results. */
152
+ /**
153
+ * Cursor string pointing to the next page in the list of results.
154
+ * @maxLength 16000
155
+ */
136
156
  next?: string | null;
137
- /** Cursor pointing to the previous page in the list of results. */
157
+ /**
158
+ * Cursor pointing to the previous page in the list of results.
159
+ * @maxLength 16000
160
+ */
138
161
  prev?: string | null;
139
162
  }
140
163
  export interface MarkMemberReportsAsReviewedRequest {
141
- /** ID of the member whose reports are to be marked as reviewed. */
164
+ /**
165
+ * ID of the member whose reports are to be marked as reviewed.
166
+ * @format GUID
167
+ */
142
168
  memberId?: string;
143
169
  }
144
170
  export interface MarkMemberReportsAsReviewedResponse {
@@ -155,7 +181,10 @@ export interface ListReportedMembersRequestPagingMethodOneOf {
155
181
  cursorPaging?: CursorPaging;
156
182
  }
157
183
  export interface Paging {
158
- /** Number of items to load. */
184
+ /**
185
+ * Number of items to load.
186
+ * @max 100
187
+ */
159
188
  limit?: number | null;
160
189
  /** Number of items to skip in the current sort order. */
161
190
  offset?: number | null;
@@ -177,12 +206,16 @@ export interface QueryReportedMembersResponse {
177
206
  pagingMetadata?: PagingMetadataV2;
178
207
  }
179
208
  export interface DeleteMemberReportsRequest {
180
- /** ID of the member whose reports to be deleted. */
209
+ /**
210
+ * ID of the member whose reports to be deleted.
211
+ * @format GUID
212
+ */
181
213
  memberId: string;
182
214
  }
183
215
  export interface DeleteMemberReportsResponse {
184
216
  }
185
217
  export interface ReportedMemberDeleted {
218
+ /** @format GUID */
186
219
  reportedMemberId?: string;
187
220
  }
188
221
  export interface DomainEvent extends DomainEventBodyOneOf {
@@ -260,9 +293,15 @@ export interface ActionEvent {
260
293
  export interface Empty {
261
294
  }
262
295
  export interface MessageEnvelope {
263
- /** App instance ID. */
296
+ /**
297
+ * App instance ID.
298
+ * @format GUID
299
+ */
264
300
  instanceId?: string | null;
265
- /** Event type. */
301
+ /**
302
+ * Event type.
303
+ * @maxLength 150
304
+ */
266
305
  eventType?: string;
267
306
  /** The identification type and identity data. */
268
307
  identity?: IdentificationData;
@@ -270,26 +309,50 @@ export interface MessageEnvelope {
270
309
  data?: string;
271
310
  }
272
311
  export interface IdentificationData extends IdentificationDataIdOneOf {
273
- /** ID of a site visitor that has not logged in to the site. */
312
+ /**
313
+ * ID of a site visitor that has not logged in to the site.
314
+ * @format GUID
315
+ */
274
316
  anonymousVisitorId?: string;
275
- /** ID of a site visitor that has logged in to the site. */
317
+ /**
318
+ * ID of a site visitor that has logged in to the site.
319
+ * @format GUID
320
+ */
276
321
  memberId?: string;
277
- /** ID of a Wix user (site owner, contributor, etc.). */
322
+ /**
323
+ * ID of a Wix user (site owner, contributor, etc.).
324
+ * @format GUID
325
+ */
278
326
  wixUserId?: string;
279
- /** ID of an app. */
327
+ /**
328
+ * ID of an app.
329
+ * @format GUID
330
+ */
280
331
  appId?: string;
281
332
  /** @readonly */
282
333
  identityType?: WebhookIdentityType;
283
334
  }
284
335
  /** @oneof */
285
336
  export interface IdentificationDataIdOneOf {
286
- /** ID of a site visitor that has not logged in to the site. */
337
+ /**
338
+ * ID of a site visitor that has not logged in to the site.
339
+ * @format GUID
340
+ */
287
341
  anonymousVisitorId?: string;
288
- /** ID of a site visitor that has logged in to the site. */
342
+ /**
343
+ * ID of a site visitor that has logged in to the site.
344
+ * @format GUID
345
+ */
289
346
  memberId?: string;
290
- /** ID of a Wix user (site owner, contributor, etc.). */
347
+ /**
348
+ * ID of a Wix user (site owner, contributor, etc.).
349
+ * @format GUID
350
+ */
291
351
  wixUserId?: string;
292
- /** ID of an app. */
352
+ /**
353
+ * ID of an app.
354
+ * @format GUID
355
+ */
293
356
  appId?: string;
294
357
  }
295
358
  export declare enum WebhookIdentityType {
@@ -1 +1 @@
1
- {"version":3,"file":"members-v1-member-report-member-report.types.js","sourceRoot":"","sources":["../../../src/members-v1-member-report-member-report.types.ts"],"names":[],"mappings":";;;AA6BA,IAAY,QAWX;AAXD,WAAY,QAAQ;IAClB,6CAA6C;IAC7C,+BAAmB,CAAA;IACnB,uCAAuC;IACvC,yBAAa,CAAA;IACb,gDAAgD;IAChD,2CAA+B,CAAA;IAC/B,6CAA6C;IAC7C,qCAAyB,CAAA;IACzB,gDAAgD;IAChD,2BAAe,CAAA;AACjB,CAAC,EAXW,QAAQ,wBAAR,QAAQ,QAWnB;AA0ED,IAAY,SAGX;AAHD,WAAY,SAAS;IACnB,wBAAW,CAAA;IACX,0BAAa,CAAA;AACf,CAAC,EAHW,SAAS,yBAAT,SAAS,QAGpB;AAuND,IAAY,mBAMX;AAND,WAAY,mBAAmB;IAC7B,0CAAmB,CAAA;IACnB,8DAAuC,CAAA;IACvC,wCAAiB,CAAA;IACjB,4CAAqB,CAAA;IACrB,kCAAW,CAAA;AACb,CAAC,EANW,mBAAmB,mCAAnB,mBAAmB,QAM9B"}
1
+ {"version":3,"file":"members-v1-member-report-member-report.types.js","sourceRoot":"","sources":["../../../src/members-v1-member-report-member-report.types.ts"],"names":[],"mappings":";;;AAiCA,IAAY,QAWX;AAXD,WAAY,QAAQ;IAClB,6CAA6C;IAC7C,+BAAmB,CAAA;IACnB,uCAAuC;IACvC,yBAAa,CAAA;IACb,gDAAgD;IAChD,2CAA+B,CAAA;IAC/B,6CAA6C;IAC7C,qCAAyB,CAAA;IACzB,gDAAgD;IAChD,2BAAe,CAAA;AACjB,CAAC,EAXW,QAAQ,wBAAR,QAAQ,QAWnB;AAsFD,IAAY,SAGX;AAHD,WAAY,SAAS;IACnB,wBAAW,CAAA;IACX,0BAAa,CAAA;AACf,CAAC,EAHW,SAAS,yBAAT,SAAS,QAGpB;AAsQD,IAAY,mBAMX;AAND,WAAY,mBAAmB;IAC7B,0CAAmB,CAAA;IACnB,8DAAuC,CAAA;IACvC,wCAAiB,CAAA;IACjB,4CAAqB,CAAA;IACrB,kCAAW,CAAA;AACb,CAAC,EANW,mBAAmB,mCAAnB,mBAAmB,QAM9B"}
@@ -1,10 +1,14 @@
1
1
  export interface MemberReport {
2
2
  /**
3
3
  * Report ID.
4
+ * @format GUID
4
5
  * @readonly
5
6
  */
6
7
  _id?: string | null;
7
- /** ID of the reported member. */
8
+ /**
9
+ * ID of the reported member.
10
+ * @format GUID
11
+ */
8
12
  reportedMemberId?: string;
9
13
  /**
10
14
  * ID of the member who created the report.
@@ -50,7 +54,10 @@ export interface ReportedMemberCreated {
50
54
  }
51
55
  /** Reported member details. */
52
56
  export interface ReportedMember {
53
- /** ID of the reported member. */
57
+ /**
58
+ * ID of the reported member.
59
+ * @format GUID
60
+ */
54
61
  reportedMemberId?: string;
55
62
  /** Number of reports for this member. */
56
63
  reportCount?: string;
@@ -63,11 +70,17 @@ export interface ReportedMember {
63
70
  lastReportDate?: Date | null;
64
71
  }
65
72
  export interface SelfReportingForbiddenError {
66
- /** ID of the member that is reported. */
73
+ /**
74
+ * ID of the member that is reported.
75
+ * @format GUID
76
+ */
67
77
  memberId?: string;
68
78
  }
69
79
  export interface CannotReportBlockedMemberError {
70
- /** ID of the member that is reported. */
80
+ /**
81
+ * ID of the member that is reported.
82
+ * @format GUID
83
+ */
71
84
  memberId?: string;
72
85
  }
73
86
  export interface QueryMemberReportsRequest {
@@ -95,7 +108,10 @@ export interface QueryV2 {
95
108
  paging?: CursorPaging;
96
109
  }
97
110
  export interface Sorting {
98
- /** Name of the field to sort by. */
111
+ /**
112
+ * Name of the field to sort by.
113
+ * @maxLength 512
114
+ */
99
115
  fieldName?: string;
100
116
  /** Sort order. */
101
117
  order?: SortOrder;
@@ -108,6 +124,7 @@ export interface CursorPaging {
108
124
  /**
109
125
  * The number of items to load.
110
126
  * Default: `100`
127
+ * @max 1000
111
128
  */
112
129
  limit?: number | null;
113
130
  /** Cursor token pointing to a page of results. Not used in the first request. Following requests use the cursor token and not `filter` or `sort`. */
@@ -132,13 +149,22 @@ export interface PagingMetadataV2 {
132
149
  cursors?: Cursors;
133
150
  }
134
151
  export interface Cursors {
135
- /** Cursor string pointing to the next page in the list of results. */
152
+ /**
153
+ * Cursor string pointing to the next page in the list of results.
154
+ * @maxLength 16000
155
+ */
136
156
  next?: string | null;
137
- /** Cursor pointing to the previous page in the list of results. */
157
+ /**
158
+ * Cursor pointing to the previous page in the list of results.
159
+ * @maxLength 16000
160
+ */
138
161
  prev?: string | null;
139
162
  }
140
163
  export interface MarkMemberReportsAsReviewedRequest {
141
- /** ID of the member whose reports are to be marked as reviewed. */
164
+ /**
165
+ * ID of the member whose reports are to be marked as reviewed.
166
+ * @format GUID
167
+ */
142
168
  memberId?: string;
143
169
  }
144
170
  export interface MarkMemberReportsAsReviewedResponse {
@@ -155,7 +181,10 @@ export interface ListReportedMembersRequestPagingMethodOneOf {
155
181
  cursorPaging?: CursorPaging;
156
182
  }
157
183
  export interface Paging {
158
- /** Number of items to load. */
184
+ /**
185
+ * Number of items to load.
186
+ * @max 100
187
+ */
159
188
  limit?: number | null;
160
189
  /** Number of items to skip in the current sort order. */
161
190
  offset?: number | null;
@@ -177,12 +206,16 @@ export interface QueryReportedMembersResponse {
177
206
  pagingMetadata?: PagingMetadataV2;
178
207
  }
179
208
  export interface DeleteMemberReportsRequest {
180
- /** ID of the member whose reports to be deleted. */
209
+ /**
210
+ * ID of the member whose reports to be deleted.
211
+ * @format GUID
212
+ */
181
213
  memberId: string;
182
214
  }
183
215
  export interface DeleteMemberReportsResponse {
184
216
  }
185
217
  export interface ReportedMemberDeleted {
218
+ /** @format GUID */
186
219
  reportedMemberId?: string;
187
220
  }
188
221
  export interface DomainEvent extends DomainEventBodyOneOf {
@@ -258,9 +291,15 @@ export interface ActionEvent {
258
291
  export interface Empty {
259
292
  }
260
293
  export interface MessageEnvelope {
261
- /** App instance ID. */
294
+ /**
295
+ * App instance ID.
296
+ * @format GUID
297
+ */
262
298
  instanceId?: string | null;
263
- /** Event type. */
299
+ /**
300
+ * Event type.
301
+ * @maxLength 150
302
+ */
264
303
  eventType?: string;
265
304
  /** The identification type and identity data. */
266
305
  identity?: IdentificationData;
@@ -268,26 +307,50 @@ export interface MessageEnvelope {
268
307
  data?: string;
269
308
  }
270
309
  export interface IdentificationData extends IdentificationDataIdOneOf {
271
- /** ID of a site visitor that has not logged in to the site. */
310
+ /**
311
+ * ID of a site visitor that has not logged in to the site.
312
+ * @format GUID
313
+ */
272
314
  anonymousVisitorId?: string;
273
- /** ID of a site visitor that has logged in to the site. */
315
+ /**
316
+ * ID of a site visitor that has logged in to the site.
317
+ * @format GUID
318
+ */
274
319
  memberId?: string;
275
- /** ID of a Wix user (site owner, contributor, etc.). */
320
+ /**
321
+ * ID of a Wix user (site owner, contributor, etc.).
322
+ * @format GUID
323
+ */
276
324
  wixUserId?: string;
277
- /** ID of an app. */
325
+ /**
326
+ * ID of an app.
327
+ * @format GUID
328
+ */
278
329
  appId?: string;
279
330
  /** @readonly */
280
331
  identityType?: WebhookIdentityType;
281
332
  }
282
333
  /** @oneof */
283
334
  export interface IdentificationDataIdOneOf {
284
- /** ID of a site visitor that has not logged in to the site. */
335
+ /**
336
+ * ID of a site visitor that has not logged in to the site.
337
+ * @format GUID
338
+ */
285
339
  anonymousVisitorId?: string;
286
- /** ID of a site visitor that has logged in to the site. */
340
+ /**
341
+ * ID of a site visitor that has logged in to the site.
342
+ * @format GUID
343
+ */
287
344
  memberId?: string;
288
- /** ID of a Wix user (site owner, contributor, etc.). */
345
+ /**
346
+ * ID of a Wix user (site owner, contributor, etc.).
347
+ * @format GUID
348
+ */
289
349
  wixUserId?: string;
290
- /** ID of an app. */
350
+ /**
351
+ * ID of an app.
352
+ * @format GUID
353
+ */
291
354
  appId?: string;
292
355
  }
293
356
  export declare enum WebhookIdentityType {
@@ -322,9 +385,15 @@ export interface QueryReportedMembersResponseNonNullableFields {
322
385
  reportedMembers: ReportedMemberNonNullableFields[];
323
386
  }
324
387
  export interface BaseEventMetadata {
325
- /** App instance ID. */
388
+ /**
389
+ * App instance ID.
390
+ * @format GUID
391
+ */
326
392
  instanceId?: string | null;
327
- /** Event type. */
393
+ /**
394
+ * Event type.
395
+ * @maxLength 150
396
+ */
328
397
  eventType?: string;
329
398
  /** The identification type and identity data. */
330
399
  identity?: IdentificationData;
@@ -378,6 +447,8 @@ export interface MemberReportCreatedEnvelope {
378
447
  * @permissionId MEMBERS.REPORTS_READ
379
448
  * @webhook
380
449
  * @eventType wix.members.v1.member_report_created
450
+ * @serviceIdentifier com.wixpress.members.memberreports.MemberReports
451
+ * @slug created
381
452
  * @documentationMaturity preview
382
453
  */
383
454
  export declare function onMemberReportCreated(handler: (event: MemberReportCreatedEnvelope) => void | Promise<void>): void;
@@ -391,6 +462,8 @@ export interface MemberReportDeletedEnvelope {
391
462
  * @permissionId MEMBERS.REPORTS_READ
392
463
  * @webhook
393
464
  * @eventType wix.members.v1.member_report_deleted
465
+ * @serviceIdentifier com.wixpress.members.memberreports.MemberReports
466
+ * @slug deleted
394
467
  * @documentationMaturity preview
395
468
  */
396
469
  export declare function onMemberReportDeleted(handler: (event: MemberReportDeletedEnvelope) => void | Promise<void>): void;
@@ -403,6 +476,8 @@ export interface MemberReportReportedMemberCreatedEnvelope {
403
476
  * @permissionId MEMBERS.REPORTS_READ
404
477
  * @webhook
405
478
  * @eventType wix.members.v1.member_report_reported_member_created
479
+ * @serviceIdentifier com.wixpress.members.memberreports.MemberReports
480
+ * @slug reported_member_created
406
481
  * @documentationMaturity preview
407
482
  */
408
483
  export declare function onMemberReportReportedMemberCreated(handler: (event: MemberReportReportedMemberCreatedEnvelope) => void | Promise<void>): void;
@@ -415,6 +490,8 @@ export interface MemberReportReportedMemberDeletedEnvelope {
415
490
  * @permissionId MEMBERS.REPORTS_READ
416
491
  * @webhook
417
492
  * @eventType wix.members.v1.member_report_reported_member_deleted
493
+ * @serviceIdentifier com.wixpress.members.memberreports.MemberReports
494
+ * @slug reported_member_deleted
418
495
  * @documentationMaturity preview
419
496
  */
420
497
  export declare function onMemberReportReportedMemberDeleted(handler: (event: MemberReportReportedMemberDeletedEnvelope) => void | Promise<void>): void;
@@ -537,7 +614,12 @@ export interface MemberReportsQueryBuilder {
537
614
  * @targetRemovalDate 2025-01-31
538
615
  */
539
616
  export declare function listReportedMembers(options?: ListReportedMembersOptions): Promise<ListReportedMembersResponse & ListReportedMembersResponseNonNullableFields>;
540
- export interface ListReportedMembersOptions extends ListReportedMembersRequestPagingMethodOneOf {
617
+ export interface ListReportedMembersOptions extends ListReportedMembersOptionsPagingMethodOneOf {
618
+ /** Cursor token pointing to a page of results. Not used in the first request. Following requests use the cursor token and not `filter` or `sort`. */
619
+ cursorPaging?: CursorPaging;
620
+ }
621
+ /** @oneof */
622
+ interface ListReportedMembersOptionsPagingMethodOneOf {
541
623
  /** Cursor token pointing to a page of results. Not used in the first request. Following requests use the cursor token and not `filter` or `sort`. */
542
624
  cursorPaging?: CursorPaging;
543
625
  }
@@ -1 +1 @@
1
- {"version":3,"file":"members-v1-member-report-member-report.universal.js","sourceRoot":"","sources":["../../../src/members-v1-member-report-member-report.universal.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"members-v1-member-report-member-report.universal.js","sourceRoot":"","sources":["../../../src/members-v1-member-report-member-report.universal.ts"],"names":[],"mappings":"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"}
@@ -1,10 +1,14 @@
1
1
  export interface MemberReport {
2
2
  /**
3
3
  * Report ID.
4
+ * @format GUID
4
5
  * @readonly
5
6
  */
6
7
  id?: string | null;
7
- /** ID of the reported member. */
8
+ /**
9
+ * ID of the reported member.
10
+ * @format GUID
11
+ */
8
12
  reportedMemberId?: string;
9
13
  /**
10
14
  * ID of the member who created the report.
@@ -50,7 +54,10 @@ export interface ReportedMemberCreated {
50
54
  }
51
55
  /** Reported member details. */
52
56
  export interface ReportedMember {
53
- /** ID of the reported member. */
57
+ /**
58
+ * ID of the reported member.
59
+ * @format GUID
60
+ */
54
61
  reportedMemberId?: string;
55
62
  /** Number of reports for this member. */
56
63
  reportCount?: string;
@@ -63,11 +70,17 @@ export interface ReportedMember {
63
70
  lastReportDate?: Date | null;
64
71
  }
65
72
  export interface SelfReportingForbiddenError {
66
- /** ID of the member that is reported. */
73
+ /**
74
+ * ID of the member that is reported.
75
+ * @format GUID
76
+ */
67
77
  memberId?: string;
68
78
  }
69
79
  export interface CannotReportBlockedMemberError {
70
- /** ID of the member that is reported. */
80
+ /**
81
+ * ID of the member that is reported.
82
+ * @format GUID
83
+ */
71
84
  memberId?: string;
72
85
  }
73
86
  export interface QueryMemberReportsRequest {
@@ -95,7 +108,10 @@ export interface QueryV2 {
95
108
  paging?: CursorPaging;
96
109
  }
97
110
  export interface Sorting {
98
- /** Name of the field to sort by. */
111
+ /**
112
+ * Name of the field to sort by.
113
+ * @maxLength 512
114
+ */
99
115
  fieldName?: string;
100
116
  /** Sort order. */
101
117
  order?: SortOrder;
@@ -108,6 +124,7 @@ export interface CursorPaging {
108
124
  /**
109
125
  * The number of items to load.
110
126
  * Default: `100`
127
+ * @max 1000
111
128
  */
112
129
  limit?: number | null;
113
130
  /** Cursor token pointing to a page of results. Not used in the first request. Following requests use the cursor token and not `filter` or `sort`. */
@@ -132,13 +149,22 @@ export interface PagingMetadataV2 {
132
149
  cursors?: Cursors;
133
150
  }
134
151
  export interface Cursors {
135
- /** Cursor string pointing to the next page in the list of results. */
152
+ /**
153
+ * Cursor string pointing to the next page in the list of results.
154
+ * @maxLength 16000
155
+ */
136
156
  next?: string | null;
137
- /** Cursor pointing to the previous page in the list of results. */
157
+ /**
158
+ * Cursor pointing to the previous page in the list of results.
159
+ * @maxLength 16000
160
+ */
138
161
  prev?: string | null;
139
162
  }
140
163
  export interface MarkMemberReportsAsReviewedRequest {
141
- /** ID of the member whose reports are to be marked as reviewed. */
164
+ /**
165
+ * ID of the member whose reports are to be marked as reviewed.
166
+ * @format GUID
167
+ */
142
168
  memberId?: string;
143
169
  }
144
170
  export interface MarkMemberReportsAsReviewedResponse {
@@ -155,7 +181,10 @@ export interface ListReportedMembersRequestPagingMethodOneOf {
155
181
  cursorPaging?: CursorPaging;
156
182
  }
157
183
  export interface Paging {
158
- /** Number of items to load. */
184
+ /**
185
+ * Number of items to load.
186
+ * @max 100
187
+ */
159
188
  limit?: number | null;
160
189
  /** Number of items to skip in the current sort order. */
161
190
  offset?: number | null;
@@ -177,12 +206,16 @@ export interface QueryReportedMembersResponse {
177
206
  pagingMetadata?: PagingMetadataV2;
178
207
  }
179
208
  export interface DeleteMemberReportsRequest {
180
- /** ID of the member whose reports to be deleted. */
209
+ /**
210
+ * ID of the member whose reports to be deleted.
211
+ * @format GUID
212
+ */
181
213
  memberId: string;
182
214
  }
183
215
  export interface DeleteMemberReportsResponse {
184
216
  }
185
217
  export interface ReportedMemberDeleted {
218
+ /** @format GUID */
186
219
  reportedMemberId?: string;
187
220
  }
188
221
  export interface DomainEvent extends DomainEventBodyOneOf {
@@ -260,9 +293,15 @@ export interface ActionEvent {
260
293
  export interface Empty {
261
294
  }
262
295
  export interface MessageEnvelope {
263
- /** App instance ID. */
296
+ /**
297
+ * App instance ID.
298
+ * @format GUID
299
+ */
264
300
  instanceId?: string | null;
265
- /** Event type. */
301
+ /**
302
+ * Event type.
303
+ * @maxLength 150
304
+ */
266
305
  eventType?: string;
267
306
  /** The identification type and identity data. */
268
307
  identity?: IdentificationData;
@@ -270,26 +309,50 @@ export interface MessageEnvelope {
270
309
  data?: string;
271
310
  }
272
311
  export interface IdentificationData extends IdentificationDataIdOneOf {
273
- /** ID of a site visitor that has not logged in to the site. */
312
+ /**
313
+ * ID of a site visitor that has not logged in to the site.
314
+ * @format GUID
315
+ */
274
316
  anonymousVisitorId?: string;
275
- /** ID of a site visitor that has logged in to the site. */
317
+ /**
318
+ * ID of a site visitor that has logged in to the site.
319
+ * @format GUID
320
+ */
276
321
  memberId?: string;
277
- /** ID of a Wix user (site owner, contributor, etc.). */
322
+ /**
323
+ * ID of a Wix user (site owner, contributor, etc.).
324
+ * @format GUID
325
+ */
278
326
  wixUserId?: string;
279
- /** ID of an app. */
327
+ /**
328
+ * ID of an app.
329
+ * @format GUID
330
+ */
280
331
  appId?: string;
281
332
  /** @readonly */
282
333
  identityType?: WebhookIdentityType;
283
334
  }
284
335
  /** @oneof */
285
336
  export interface IdentificationDataIdOneOf {
286
- /** ID of a site visitor that has not logged in to the site. */
337
+ /**
338
+ * ID of a site visitor that has not logged in to the site.
339
+ * @format GUID
340
+ */
287
341
  anonymousVisitorId?: string;
288
- /** ID of a site visitor that has logged in to the site. */
342
+ /**
343
+ * ID of a site visitor that has logged in to the site.
344
+ * @format GUID
345
+ */
289
346
  memberId?: string;
290
- /** ID of a Wix user (site owner, contributor, etc.). */
347
+ /**
348
+ * ID of a Wix user (site owner, contributor, etc.).
349
+ * @format GUID
350
+ */
291
351
  wixUserId?: string;
292
- /** ID of an app. */
352
+ /**
353
+ * ID of an app.
354
+ * @format GUID
355
+ */
293
356
  appId?: string;
294
357
  }
295
358
  export declare enum WebhookIdentityType {