@@ -264,6 +264,60 @@ export interface AppResponseFields {
264264 datadog_info ?: DataDogInfo ;
265265}
266266
267+ export interface AsyncExportChannelsEvent {
268+ created_at : Date ;
269+
270+ finished_at : Date ;
271+
272+ started_at : Date ;
273+
274+ task_id : string ;
275+
276+ url : string ;
277+
278+ custom : Record < string , any > ;
279+
280+ type : string ;
281+
282+ received_at ?: Date ;
283+ }
284+
285+ export interface AsyncExportErrorEvent {
286+ created_at : Date ;
287+
288+ error : string ;
289+
290+ finished_at : Date ;
291+
292+ started_at : Date ;
293+
294+ task_id : string ;
295+
296+ custom : Record < string , any > ;
297+
298+ type : string ;
299+
300+ received_at ?: Date ;
301+ }
302+
303+ export interface AsyncExportUsersEvent {
304+ created_at : Date ;
305+
306+ finished_at : Date ;
307+
308+ started_at : Date ;
309+
310+ task_id : string ;
311+
312+ url : string ;
313+
314+ custom : Record < string , any > ;
315+
316+ type : string ;
317+
318+ received_at ?: Date ;
319+ }
320+
267321export interface AsyncModerationCallbackConfig {
268322 mode ?: 'CALLBACK_MODE_NONE' | 'CALLBACK_MODE_REST' | 'CALLBACK_MODE_TWIRP' ;
269323
@@ -1007,6 +1061,8 @@ export interface CallRecording {
10071061
10081062 filename : string ;
10091063
1064+ session_id : string ;
1065+
10101066 start_time : Date ;
10111067
10121068 url : string ;
@@ -3283,6 +3339,8 @@ export interface EntityCreatorResponse {
32833339
32843340 deleted_content_count : number ;
32853341
3342+ flagged_count : number ;
3343+
32863344 id : string ;
32873345
32883346 invisible : boolean ;
@@ -3376,14 +3434,6 @@ export interface ExportChannelsResponse {
33763434 task_id : string ;
33773435}
33783436
3379- export interface ExportChannelsResult {
3380- url : string ;
3381-
3382- path ?: string ;
3383-
3384- s3_bucket_name ?: string ;
3385- }
3386-
33873437export interface ExportUserResponse {
33883438 duration : string ;
33893439
@@ -3962,28 +4012,6 @@ export interface GetEdgesResponse {
39624012 edges : EdgeResponse [ ] ;
39634013}
39644014
3965- export interface GetExportChannelsStatusResponse {
3966- created_at : Date ;
3967-
3968- duration : string ;
3969-
3970- status :
3971- | 'waiting'
3972- | 'pending'
3973- | 'running'
3974- | 'completed'
3975- | 'failed'
3976- | 'canceled' ;
3977-
3978- task_id : string ;
3979-
3980- updated_at : Date ;
3981-
3982- error ?: ErrorResult ;
3983-
3984- result ?: ExportChannelsResult ;
3985- }
3986-
39874015export interface GetImportResponse {
39884016 duration : string ;
39894017
@@ -4173,8 +4201,6 @@ export interface GoLiveRequest {
41734201
41744202 start_recording ?: boolean ;
41754203
4176- start_rtmp_broadcasts ?: boolean ;
4177-
41784204 start_transcription ?: boolean ;
41794205
41804206 transcription_storage_name ?: string ;
@@ -5181,8 +5207,6 @@ export interface ModerationAnalytics {
51815207
51825208 sla_metrics : Array < Record < string , any > > ;
51835209
5184- usage_metrics : Array < Record < string , any > > ;
5185-
51865210 action_distribution_over_time : Record < string , Record < string , any > > ;
51875211
51885212 detection_by_engine_over_time : Record < string , Record < string , any > > ;
@@ -7388,6 +7412,8 @@ export interface SessionSettingsResponse {
73887412 inactivity_timeout_seconds : number ;
73897413}
73907414
7415+ export interface ShadowBlockActionRequest { }
7416+
73917417export interface ShowChannelRequest {
73927418 user_id ?: string ;
73937419
@@ -7549,7 +7575,8 @@ export interface SubmitActionRequest {
75497575 | 'unban'
75507576 | 'restore'
75517577 | 'delete_user'
7552- | 'unblock' ;
7578+ | 'unblock'
7579+ | 'shadow_block' ;
75537580
75547581 item_id : string ;
75557582
@@ -9225,6 +9252,8 @@ export interface UserUpdatedEvent {
92259252export interface VelocityFilterConfig {
92269253 cascading_actions : boolean ;
92279254
9255+ cids_per_user : number ;
9256+
92289257 enabled : boolean ;
92299258
92309259 first_message_only : boolean ;
0 commit comments