@stream-io/node-sdk 0.4.11 → 0.4.12
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs.js +31 -7
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.es.mjs +31 -7
- package/dist/index.es.mjs.map +1 -1
- package/dist/src/gen/common/CommonApi.d.ts +8 -4
- package/dist/src/gen/models/index.d.ts +18 -1
- package/package.json +1 -1
- package/src/gen/common/CommonApi.ts +32 -22
- package/src/gen/model-decoders/index.ts +14 -0
- package/src/gen/models/index.ts +32 -2
- package/src/gen/moderation/ModerationApi.ts +1 -0
|
@@ -1,20 +1,24 @@
|
|
|
1
1
|
import { BaseApi } from '../../BaseApi';
|
|
2
2
|
import { StreamResponse } from '../../types';
|
|
3
|
-
import { BlockUsersRequest, BlockUsersResponse, CheckExternalStorageResponse, CheckPushRequest, CheckPushResponse, CheckSNSRequest, CheckSNSResponse, CheckSQSRequest, CheckSQSResponse, CreateBlockListRequest, CreateDeviceRequest, CreateExternalStorageRequest, CreateExternalStorageResponse, CreateGuestRequest, CreateGuestResponse, CreateImportRequest, CreateImportResponse, CreateImportURLRequest, CreateImportURLResponse, CreateRoleRequest, CreateRoleResponse, DeactivateUserRequest, DeactivateUserResponse, DeactivateUsersRequest, DeactivateUsersResponse, DeleteExternalStorageResponse, DeleteUsersRequest, DeleteUsersResponse, ExportUserResponse, ExportUsersRequest, ExportUsersResponse, GetApplicationResponse, GetBlockListResponse, GetBlockedUsersResponse, GetCustomPermissionResponse, GetImportResponse, GetOGResponse, GetRateLimitsResponse, GetTaskResponse, ListBlockListResponse, ListDevicesResponse, ListExternalStorageResponse, ListImportsResponse, ListPermissionsResponse, ListPushProvidersResponse, ListRolesResponse, QueryUsersPayload, QueryUsersResponse, ReactivateUserRequest, ReactivateUserResponse, ReactivateUsersRequest, ReactivateUsersResponse, Response, RestoreUsersRequest, UnblockUsersRequest, UnblockUsersResponse, UpdateAppRequest, UpdateBlockListRequest, UpdateExternalStorageRequest, UpdateExternalStorageResponse, UpdateUsersPartialRequest, UpdateUsersRequest, UpdateUsersResponse, UpsertPushProviderRequest, UpsertPushProviderResponse } from '../models';
|
|
3
|
+
import { BlockUsersRequest, BlockUsersResponse, CheckExternalStorageResponse, CheckPushRequest, CheckPushResponse, CheckSNSRequest, CheckSNSResponse, CheckSQSRequest, CheckSQSResponse, CreateBlockListRequest, CreateBlockListResponse, CreateDeviceRequest, CreateExternalStorageRequest, CreateExternalStorageResponse, CreateGuestRequest, CreateGuestResponse, CreateImportRequest, CreateImportResponse, CreateImportURLRequest, CreateImportURLResponse, CreateRoleRequest, CreateRoleResponse, DeactivateUserRequest, DeactivateUserResponse, DeactivateUsersRequest, DeactivateUsersResponse, DeleteExternalStorageResponse, DeleteUsersRequest, DeleteUsersResponse, ExportUserResponse, ExportUsersRequest, ExportUsersResponse, GetApplicationResponse, GetBlockListResponse, GetBlockedUsersResponse, GetCustomPermissionResponse, GetImportResponse, GetOGResponse, GetRateLimitsResponse, GetTaskResponse, ListBlockListResponse, ListDevicesResponse, ListExternalStorageResponse, ListImportsResponse, ListPermissionsResponse, ListPushProvidersResponse, ListRolesResponse, QueryUsersPayload, QueryUsersResponse, ReactivateUserRequest, ReactivateUserResponse, ReactivateUsersRequest, ReactivateUsersResponse, Response, RestoreUsersRequest, UnblockUsersRequest, UnblockUsersResponse, UpdateAppRequest, UpdateBlockListRequest, UpdateBlockListResponse, UpdateExternalStorageRequest, UpdateExternalStorageResponse, UpdateUsersPartialRequest, UpdateUsersRequest, UpdateUsersResponse, UpsertPushProviderRequest, UpsertPushProviderResponse } from '../models';
|
|
4
4
|
export declare class CommonApi extends BaseApi {
|
|
5
5
|
getApp: () => Promise<StreamResponse<GetApplicationResponse>>;
|
|
6
6
|
updateApp: (request?: UpdateAppRequest) => Promise<StreamResponse<Response>>;
|
|
7
|
-
listBlockLists: (
|
|
8
|
-
|
|
7
|
+
listBlockLists: (request?: {
|
|
8
|
+
team?: string;
|
|
9
|
+
}) => Promise<StreamResponse<ListBlockListResponse>>;
|
|
10
|
+
createBlockList: (request: CreateBlockListRequest) => Promise<StreamResponse<CreateBlockListResponse>>;
|
|
9
11
|
deleteBlockList: (request: {
|
|
10
12
|
name: string;
|
|
13
|
+
team?: string;
|
|
11
14
|
}) => Promise<StreamResponse<Response>>;
|
|
12
15
|
getBlockList: (request: {
|
|
13
16
|
name: string;
|
|
17
|
+
team?: string;
|
|
14
18
|
}) => Promise<StreamResponse<GetBlockListResponse>>;
|
|
15
19
|
updateBlockList: (request: UpdateBlockListRequest & {
|
|
16
20
|
name: string;
|
|
17
|
-
}) => Promise<StreamResponse<
|
|
21
|
+
}) => Promise<StreamResponse<UpdateBlockListResponse>>;
|
|
18
22
|
checkPush: (request?: CheckPushRequest) => Promise<StreamResponse<CheckPushResponse>>;
|
|
19
23
|
checkSNS: (request?: CheckSNSRequest) => Promise<StreamResponse<CheckSNSResponse>>;
|
|
20
24
|
checkSQS: (request?: CheckSQSRequest) => Promise<StreamResponse<CheckSQSResponse>>;
|
|
@@ -109,6 +109,7 @@ export interface AppResponseFields {
|
|
|
109
109
|
enforce_unique_usernames: string;
|
|
110
110
|
image_moderation_enabled: boolean;
|
|
111
111
|
moderation_enabled: boolean;
|
|
112
|
+
moderation_multitenant_blocklist_enabled: boolean;
|
|
112
113
|
moderation_webhook_url: string;
|
|
113
114
|
multi_tenant_enabled: boolean;
|
|
114
115
|
name: string;
|
|
@@ -301,11 +302,14 @@ export interface BlockListResponse {
|
|
|
301
302
|
type: string;
|
|
302
303
|
words: string[];
|
|
303
304
|
created_at?: Date;
|
|
305
|
+
id?: string;
|
|
306
|
+
team?: string;
|
|
304
307
|
updated_at?: Date;
|
|
305
308
|
}
|
|
306
309
|
export interface BlockListRule {
|
|
307
310
|
action: 'flag' | 'shadow' | 'remove' | 'bounce' | 'bounce_flag' | 'bounce_remove';
|
|
308
311
|
name: string;
|
|
312
|
+
team: string;
|
|
309
313
|
}
|
|
310
314
|
export interface BlockUserRequest {
|
|
311
315
|
user_id: string;
|
|
@@ -446,6 +450,7 @@ export interface CallHLSBroadcastingStartedEvent {
|
|
|
446
450
|
call_cid: string;
|
|
447
451
|
created_at: Date;
|
|
448
452
|
hls_playlist_url: string;
|
|
453
|
+
call: CallResponse;
|
|
449
454
|
type: string;
|
|
450
455
|
}
|
|
451
456
|
export interface CallHLSBroadcastingStoppedEvent {
|
|
@@ -1279,6 +1284,7 @@ export interface CheckRequest {
|
|
|
1279
1284
|
entity_creator_id: string;
|
|
1280
1285
|
entity_id: string;
|
|
1281
1286
|
entity_type: string;
|
|
1287
|
+
config_team?: string;
|
|
1282
1288
|
test_mode?: boolean;
|
|
1283
1289
|
user_id?: string;
|
|
1284
1290
|
moderation_payload?: ModerationPayload;
|
|
@@ -1385,8 +1391,13 @@ export interface Count {
|
|
|
1385
1391
|
export interface CreateBlockListRequest {
|
|
1386
1392
|
name: string;
|
|
1387
1393
|
words: string[];
|
|
1394
|
+
team?: string;
|
|
1388
1395
|
type?: 'regex' | 'domain' | 'email' | 'word';
|
|
1389
1396
|
}
|
|
1397
|
+
export interface CreateBlockListResponse {
|
|
1398
|
+
duration: string;
|
|
1399
|
+
blocklist?: BlockListResponse;
|
|
1400
|
+
}
|
|
1390
1401
|
export interface CreateCallTypeRequest {
|
|
1391
1402
|
name: string;
|
|
1392
1403
|
external_storage?: string;
|
|
@@ -3864,7 +3875,6 @@ export interface RecordSettingsResponse {
|
|
|
3864
3875
|
export interface ReportByHistogramBucket {
|
|
3865
3876
|
category: string;
|
|
3866
3877
|
count: number;
|
|
3867
|
-
mean: number;
|
|
3868
3878
|
sum: number;
|
|
3869
3879
|
lower_bound?: Bound;
|
|
3870
3880
|
upper_bound?: Bound;
|
|
@@ -3883,6 +3893,7 @@ export interface RestoreUsersRequest {
|
|
|
3883
3893
|
user_ids: string[];
|
|
3884
3894
|
}
|
|
3885
3895
|
export interface ReviewQueueItem {
|
|
3896
|
+
ai_text_severity: string;
|
|
3886
3897
|
bounce_count: number;
|
|
3887
3898
|
content_changed: boolean;
|
|
3888
3899
|
created_at: Date;
|
|
@@ -3912,6 +3923,7 @@ export interface ReviewQueueItem {
|
|
|
3912
3923
|
moderation_payload?: ModerationPayload;
|
|
3913
3924
|
}
|
|
3914
3925
|
export interface ReviewQueueItemResponse {
|
|
3926
|
+
ai_text_severity: string;
|
|
3915
3927
|
created_at: Date;
|
|
3916
3928
|
entity_id: string;
|
|
3917
3929
|
entity_type: string;
|
|
@@ -4513,8 +4525,13 @@ export interface UpdateAppRequest {
|
|
|
4513
4525
|
xiaomi_config?: XiaomiConfig;
|
|
4514
4526
|
}
|
|
4515
4527
|
export interface UpdateBlockListRequest {
|
|
4528
|
+
team?: string;
|
|
4516
4529
|
words?: string[];
|
|
4517
4530
|
}
|
|
4531
|
+
export interface UpdateBlockListResponse {
|
|
4532
|
+
duration: string;
|
|
4533
|
+
blocklist?: BlockListResponse;
|
|
4534
|
+
}
|
|
4518
4535
|
export interface UpdateCallMembersRequest {
|
|
4519
4536
|
remove_members?: string[];
|
|
4520
4537
|
update_members?: MemberRequest[];
|
package/package.json
CHANGED
|
@@ -11,6 +11,7 @@ import {
|
|
|
11
11
|
CheckSQSRequest,
|
|
12
12
|
CheckSQSResponse,
|
|
13
13
|
CreateBlockListRequest,
|
|
14
|
+
CreateBlockListResponse,
|
|
14
15
|
CreateDeviceRequest,
|
|
15
16
|
CreateExternalStorageRequest,
|
|
16
17
|
CreateExternalStorageResponse,
|
|
@@ -59,6 +60,7 @@ import {
|
|
|
59
60
|
UnblockUsersResponse,
|
|
60
61
|
UpdateAppRequest,
|
|
61
62
|
UpdateBlockListRequest,
|
|
63
|
+
UpdateBlockListResponse,
|
|
62
64
|
UpdateExternalStorageRequest,
|
|
63
65
|
UpdateExternalStorageResponse,
|
|
64
66
|
UpdateUsersPartialRequest,
|
|
@@ -141,10 +143,16 @@ export class CommonApi extends BaseApi {
|
|
|
141
143
|
return { ...response.body, metadata: response.metadata };
|
|
142
144
|
};
|
|
143
145
|
|
|
144
|
-
listBlockLists = async (
|
|
146
|
+
listBlockLists = async (request?: {
|
|
147
|
+
team?: string;
|
|
148
|
+
}): Promise<StreamResponse<ListBlockListResponse>> => {
|
|
149
|
+
const queryParams = {
|
|
150
|
+
team: request?.team,
|
|
151
|
+
};
|
|
152
|
+
|
|
145
153
|
const response = await this.sendRequest<
|
|
146
154
|
StreamResponse<ListBlockListResponse>
|
|
147
|
-
>('GET', '/api/v2/blocklists', undefined,
|
|
155
|
+
>('GET', '/api/v2/blocklists', undefined, queryParams);
|
|
148
156
|
|
|
149
157
|
decoders.ListBlockListResponse?.(response.body);
|
|
150
158
|
|
|
@@ -153,29 +161,30 @@ export class CommonApi extends BaseApi {
|
|
|
153
161
|
|
|
154
162
|
createBlockList = async (
|
|
155
163
|
request: CreateBlockListRequest,
|
|
156
|
-
): Promise<StreamResponse<
|
|
164
|
+
): Promise<StreamResponse<CreateBlockListResponse>> => {
|
|
157
165
|
const body = {
|
|
158
166
|
name: request?.name,
|
|
159
167
|
words: request?.words,
|
|
168
|
+
team: request?.team,
|
|
160
169
|
type: request?.type,
|
|
161
170
|
};
|
|
162
171
|
|
|
163
|
-
const response = await this.sendRequest<
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
undefined,
|
|
167
|
-
undefined,
|
|
168
|
-
body,
|
|
169
|
-
);
|
|
172
|
+
const response = await this.sendRequest<
|
|
173
|
+
StreamResponse<CreateBlockListResponse>
|
|
174
|
+
>('POST', '/api/v2/blocklists', undefined, undefined, body);
|
|
170
175
|
|
|
171
|
-
decoders.
|
|
176
|
+
decoders.CreateBlockListResponse?.(response.body);
|
|
172
177
|
|
|
173
178
|
return { ...response.body, metadata: response.metadata };
|
|
174
179
|
};
|
|
175
180
|
|
|
176
181
|
deleteBlockList = async (request: {
|
|
177
182
|
name: string;
|
|
183
|
+
team?: string;
|
|
178
184
|
}): Promise<StreamResponse<Response>> => {
|
|
185
|
+
const queryParams = {
|
|
186
|
+
team: request?.team,
|
|
187
|
+
};
|
|
179
188
|
const pathParams = {
|
|
180
189
|
name: request?.name,
|
|
181
190
|
};
|
|
@@ -184,7 +193,7 @@ export class CommonApi extends BaseApi {
|
|
|
184
193
|
'DELETE',
|
|
185
194
|
'/api/v2/blocklists/{name}',
|
|
186
195
|
pathParams,
|
|
187
|
-
|
|
196
|
+
queryParams,
|
|
188
197
|
);
|
|
189
198
|
|
|
190
199
|
decoders.Response?.(response.body);
|
|
@@ -194,14 +203,18 @@ export class CommonApi extends BaseApi {
|
|
|
194
203
|
|
|
195
204
|
getBlockList = async (request: {
|
|
196
205
|
name: string;
|
|
206
|
+
team?: string;
|
|
197
207
|
}): Promise<StreamResponse<GetBlockListResponse>> => {
|
|
208
|
+
const queryParams = {
|
|
209
|
+
team: request?.team,
|
|
210
|
+
};
|
|
198
211
|
const pathParams = {
|
|
199
212
|
name: request?.name,
|
|
200
213
|
};
|
|
201
214
|
|
|
202
215
|
const response = await this.sendRequest<
|
|
203
216
|
StreamResponse<GetBlockListResponse>
|
|
204
|
-
>('GET', '/api/v2/blocklists/{name}', pathParams,
|
|
217
|
+
>('GET', '/api/v2/blocklists/{name}', pathParams, queryParams);
|
|
205
218
|
|
|
206
219
|
decoders.GetBlockListResponse?.(response.body);
|
|
207
220
|
|
|
@@ -210,23 +223,20 @@ export class CommonApi extends BaseApi {
|
|
|
210
223
|
|
|
211
224
|
updateBlockList = async (
|
|
212
225
|
request: UpdateBlockListRequest & { name: string },
|
|
213
|
-
): Promise<StreamResponse<
|
|
226
|
+
): Promise<StreamResponse<UpdateBlockListResponse>> => {
|
|
214
227
|
const pathParams = {
|
|
215
228
|
name: request?.name,
|
|
216
229
|
};
|
|
217
230
|
const body = {
|
|
231
|
+
team: request?.team,
|
|
218
232
|
words: request?.words,
|
|
219
233
|
};
|
|
220
234
|
|
|
221
|
-
const response = await this.sendRequest<
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
pathParams,
|
|
225
|
-
undefined,
|
|
226
|
-
body,
|
|
227
|
-
);
|
|
235
|
+
const response = await this.sendRequest<
|
|
236
|
+
StreamResponse<UpdateBlockListResponse>
|
|
237
|
+
>('PUT', '/api/v2/blocklists/{name}', pathParams, undefined, body);
|
|
228
238
|
|
|
229
|
-
decoders.
|
|
239
|
+
decoders.UpdateBlockListResponse?.(response.body);
|
|
230
240
|
|
|
231
241
|
return { ...response.body, metadata: response.metadata };
|
|
232
242
|
};
|
|
@@ -505,6 +505,13 @@ decoders.ConfigResponse = (input?: Record<string, any>) => {
|
|
|
505
505
|
return decode(typeMappings, input);
|
|
506
506
|
};
|
|
507
507
|
|
|
508
|
+
decoders.CreateBlockListResponse = (input?: Record<string, any>) => {
|
|
509
|
+
const typeMappings: TypeMapping = {
|
|
510
|
+
blocklist: { type: 'BlockListResponse', isSingle: true },
|
|
511
|
+
};
|
|
512
|
+
return decode(typeMappings, input);
|
|
513
|
+
};
|
|
514
|
+
|
|
508
515
|
decoders.CreateCallTypeResponse = (input?: Record<string, any>) => {
|
|
509
516
|
const typeMappings: TypeMapping = {
|
|
510
517
|
created_at: { type: 'DatetimeType', isSingle: true },
|
|
@@ -1860,6 +1867,13 @@ decoders.UnreadCountsThread = (input?: Record<string, any>) => {
|
|
|
1860
1867
|
return decode(typeMappings, input);
|
|
1861
1868
|
};
|
|
1862
1869
|
|
|
1870
|
+
decoders.UpdateBlockListResponse = (input?: Record<string, any>) => {
|
|
1871
|
+
const typeMappings: TypeMapping = {
|
|
1872
|
+
blocklist: { type: 'BlockListResponse', isSingle: true },
|
|
1873
|
+
};
|
|
1874
|
+
return decode(typeMappings, input);
|
|
1875
|
+
};
|
|
1876
|
+
|
|
1863
1877
|
decoders.UpdateCallMembersResponse = (input?: Record<string, any>) => {
|
|
1864
1878
|
const typeMappings: TypeMapping = {
|
|
1865
1879
|
members: { type: 'MemberResponse', isSingle: false },
|
package/src/gen/models/index.ts
CHANGED
|
@@ -199,6 +199,8 @@ export interface AppResponseFields {
|
|
|
199
199
|
|
|
200
200
|
moderation_enabled: boolean;
|
|
201
201
|
|
|
202
|
+
moderation_multitenant_blocklist_enabled: boolean;
|
|
203
|
+
|
|
202
204
|
moderation_webhook_url: string;
|
|
203
205
|
|
|
204
206
|
multi_tenant_enabled: boolean;
|
|
@@ -543,6 +545,10 @@ export interface BlockListResponse {
|
|
|
543
545
|
|
|
544
546
|
created_at?: Date;
|
|
545
547
|
|
|
548
|
+
id?: string;
|
|
549
|
+
|
|
550
|
+
team?: string;
|
|
551
|
+
|
|
546
552
|
updated_at?: Date;
|
|
547
553
|
}
|
|
548
554
|
|
|
@@ -556,6 +562,8 @@ export interface BlockListRule {
|
|
|
556
562
|
| 'bounce_remove';
|
|
557
563
|
|
|
558
564
|
name: string;
|
|
565
|
+
|
|
566
|
+
team: string;
|
|
559
567
|
}
|
|
560
568
|
|
|
561
569
|
export interface BlockUserRequest {
|
|
@@ -797,6 +805,8 @@ export interface CallHLSBroadcastingStartedEvent {
|
|
|
797
805
|
|
|
798
806
|
hls_playlist_url: string;
|
|
799
807
|
|
|
808
|
+
call: CallResponse;
|
|
809
|
+
|
|
800
810
|
type: string;
|
|
801
811
|
}
|
|
802
812
|
|
|
@@ -2262,6 +2272,8 @@ export interface CheckRequest {
|
|
|
2262
2272
|
|
|
2263
2273
|
entity_type: string;
|
|
2264
2274
|
|
|
2275
|
+
config_team?: string;
|
|
2276
|
+
|
|
2265
2277
|
test_mode?: boolean;
|
|
2266
2278
|
|
|
2267
2279
|
user_id?: string;
|
|
@@ -2442,9 +2454,17 @@ export interface CreateBlockListRequest {
|
|
|
2442
2454
|
|
|
2443
2455
|
words: string[];
|
|
2444
2456
|
|
|
2457
|
+
team?: string;
|
|
2458
|
+
|
|
2445
2459
|
type?: 'regex' | 'domain' | 'email' | 'word';
|
|
2446
2460
|
}
|
|
2447
2461
|
|
|
2462
|
+
export interface CreateBlockListResponse {
|
|
2463
|
+
duration: string;
|
|
2464
|
+
|
|
2465
|
+
blocklist?: BlockListResponse;
|
|
2466
|
+
}
|
|
2467
|
+
|
|
2448
2468
|
export interface CreateCallTypeRequest {
|
|
2449
2469
|
name: string;
|
|
2450
2470
|
|
|
@@ -6746,8 +6766,6 @@ export interface ReportByHistogramBucket {
|
|
|
6746
6766
|
|
|
6747
6767
|
count: number;
|
|
6748
6768
|
|
|
6749
|
-
mean: number;
|
|
6750
|
-
|
|
6751
6769
|
sum: number;
|
|
6752
6770
|
|
|
6753
6771
|
lower_bound?: Bound;
|
|
@@ -6774,6 +6792,8 @@ export interface RestoreUsersRequest {
|
|
|
6774
6792
|
}
|
|
6775
6793
|
|
|
6776
6794
|
export interface ReviewQueueItem {
|
|
6795
|
+
ai_text_severity: string;
|
|
6796
|
+
|
|
6777
6797
|
bounce_count: number;
|
|
6778
6798
|
|
|
6779
6799
|
content_changed: boolean;
|
|
@@ -6830,6 +6850,8 @@ export interface ReviewQueueItem {
|
|
|
6830
6850
|
}
|
|
6831
6851
|
|
|
6832
6852
|
export interface ReviewQueueItemResponse {
|
|
6853
|
+
ai_text_severity: string;
|
|
6854
|
+
|
|
6833
6855
|
created_at: Date;
|
|
6834
6856
|
|
|
6835
6857
|
entity_id: string;
|
|
@@ -7985,9 +8007,17 @@ export interface UpdateAppRequest {
|
|
|
7985
8007
|
}
|
|
7986
8008
|
|
|
7987
8009
|
export interface UpdateBlockListRequest {
|
|
8010
|
+
team?: string;
|
|
8011
|
+
|
|
7988
8012
|
words?: string[];
|
|
7989
8013
|
}
|
|
7990
8014
|
|
|
8015
|
+
export interface UpdateBlockListResponse {
|
|
8016
|
+
duration: string;
|
|
8017
|
+
|
|
8018
|
+
blocklist?: BlockListResponse;
|
|
8019
|
+
}
|
|
8020
|
+
|
|
7991
8021
|
export interface UpdateCallMembersRequest {
|
|
7992
8022
|
remove_members?: string[];
|
|
7993
8023
|
|
|
@@ -74,6 +74,7 @@ export class ModerationApi extends BaseApi {
|
|
|
74
74
|
entity_creator_id: request?.entity_creator_id,
|
|
75
75
|
entity_id: request?.entity_id,
|
|
76
76
|
entity_type: request?.entity_type,
|
|
77
|
+
config_team: request?.config_team,
|
|
77
78
|
test_mode: request?.test_mode,
|
|
78
79
|
user_id: request?.user_id,
|
|
79
80
|
moderation_payload: request?.moderation_payload,
|