@stream-io/node-sdk 0.3.1 → 0.4.1
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 +4136 -9282
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.d.ts +2 -3
- package/dist/index.es.js +4136 -9206
- package/dist/index.es.js.map +1 -1
- package/dist/src/BaseApi.d.ts +10 -0
- package/dist/src/StreamCall.d.ts +5 -37
- package/dist/src/StreamChannel.d.ts +7 -34
- package/dist/src/StreamChatClient.d.ts +2 -25
- package/dist/src/StreamClient.d.ts +51 -59
- package/dist/src/StreamModerationClient.d.ts +3 -0
- package/dist/src/StreamVideoClient.d.ts +2 -18
- package/dist/src/gen/chat/ChannelApi.d.ts +33 -0
- package/dist/src/gen/chat/ChatApi.d.ts +241 -0
- package/dist/src/gen/common/CommonApi.d.ts +99 -0
- package/dist/src/gen/model-decoders/index.d.ts +3 -0
- package/dist/src/gen/models/index.d.ts +3881 -0
- package/dist/src/gen/moderation/ModerationApi.d.ts +38 -0
- package/dist/src/gen/video/CallApi.d.ts +56 -0
- package/dist/src/gen/video/VideoApi.d.ts +151 -0
- package/dist/src/types.d.ts +25 -0
- package/dist/src/utils/create-token.d.ts +2 -0
- package/dist/src/utils/rate-limit.d.ts +2 -0
- package/index.ts +2 -3
- package/package.json +5 -4
- package/src/BaseApi.ts +115 -0
- package/src/StreamCall.ts +9 -199
- package/src/StreamChannel.ts +23 -246
- package/src/StreamChatClient.ts +3 -122
- package/src/StreamClient.ts +101 -345
- package/src/StreamModerationClient.ts +3 -0
- package/src/StreamVideoClient.ts +3 -95
- package/src/gen/chat/ChannelApi.ts +270 -0
- package/src/gen/chat/ChatApi.ts +1857 -0
- package/src/gen/common/CommonApi.ts +1004 -0
- package/src/gen/model-decoders/index.ts +1897 -0
- package/src/gen/models/index.ts +6794 -0
- package/src/gen/moderation/ModerationApi.ts +476 -0
- package/src/gen/video/CallApi.ts +309 -0
- package/src/gen/video/VideoApi.ts +1007 -0
- package/src/types.ts +35 -0
- package/src/utils/create-token.ts +6 -1
- package/src/utils/rate-limit.ts +21 -0
- package/dist/src/gen/chat/apis/ProductchatApi.d.ts +0 -1750
- package/dist/src/gen/chat/apis/index.d.ts +0 -1
- package/dist/src/gen/chat/index.d.ts +0 -3
- package/dist/src/gen/chat/models/index.d.ts +0 -14865
- package/dist/src/gen/chat/runtime.d.ts +0 -180
- package/dist/src/gen/video/apis/ProductvideoApi.d.ts +0 -648
- package/dist/src/gen/video/apis/index.d.ts +0 -1
- package/dist/src/gen/video/index.d.ts +0 -3
- package/dist/src/gen/video/models/index.d.ts +0 -5011
- package/dist/src/gen/video/runtime.d.ts +0 -180
- package/src/gen/chat/.openapi-generator/FILES +0 -6
- package/src/gen/chat/.openapi-generator/VERSION +0 -1
- package/src/gen/chat/.openapi-generator-ignore +0 -23
- package/src/gen/chat/apis/ProductchatApi.ts +0 -7007
- package/src/gen/chat/apis/index.ts +0 -3
- package/src/gen/chat/index.ts +0 -5
- package/src/gen/chat/models/index.ts +0 -14766
- package/src/gen/chat/runtime.ts +0 -415
- package/src/gen/video/.openapi-generator/FILES +0 -6
- package/src/gen/video/.openapi-generator/VERSION +0 -1
- package/src/gen/video/.openapi-generator-ignore +0 -23
- package/src/gen/video/apis/ProductvideoApi.ts +0 -2575
- package/src/gen/video/apis/index.ts +0 -3
- package/src/gen/video/index.ts +0 -5
- package/src/gen/video/models/index.ts +0 -5000
- package/src/gen/video/runtime.ts +0 -415
|
@@ -1,5000 +0,0 @@
|
|
|
1
|
-
/* tslint:disable */
|
|
2
|
-
/* eslint-disable */
|
|
3
|
-
/**
|
|
4
|
-
*
|
|
5
|
-
* @export
|
|
6
|
-
* @interface VideoAPIError
|
|
7
|
-
*/
|
|
8
|
-
export interface VideoAPIError {
|
|
9
|
-
/**
|
|
10
|
-
* Response HTTP status code
|
|
11
|
-
* @type {number}
|
|
12
|
-
* @memberof VideoAPIError
|
|
13
|
-
*/
|
|
14
|
-
StatusCode: number;
|
|
15
|
-
/**
|
|
16
|
-
* API error code
|
|
17
|
-
* @type {number}
|
|
18
|
-
* @memberof VideoAPIError
|
|
19
|
-
*/
|
|
20
|
-
code: number;
|
|
21
|
-
/**
|
|
22
|
-
* Additional error-specific information
|
|
23
|
-
* @type {Array<number>}
|
|
24
|
-
* @memberof VideoAPIError
|
|
25
|
-
*/
|
|
26
|
-
details: Array<number>;
|
|
27
|
-
/**
|
|
28
|
-
* Request duration
|
|
29
|
-
* @type {string}
|
|
30
|
-
* @memberof VideoAPIError
|
|
31
|
-
*/
|
|
32
|
-
duration: string;
|
|
33
|
-
/**
|
|
34
|
-
* Additional error info
|
|
35
|
-
* @type {{ [key: string]: string; }}
|
|
36
|
-
* @memberof VideoAPIError
|
|
37
|
-
*/
|
|
38
|
-
exception_fields?: { [key: string]: string; };
|
|
39
|
-
/**
|
|
40
|
-
* Message describing an error
|
|
41
|
-
* @type {string}
|
|
42
|
-
* @memberof VideoAPIError
|
|
43
|
-
*/
|
|
44
|
-
message: string;
|
|
45
|
-
/**
|
|
46
|
-
* URL with additional information
|
|
47
|
-
* @type {string}
|
|
48
|
-
* @memberof VideoAPIError
|
|
49
|
-
*/
|
|
50
|
-
more_info: string;
|
|
51
|
-
}
|
|
52
|
-
/**
|
|
53
|
-
*
|
|
54
|
-
* @export
|
|
55
|
-
* @interface VideoAPNS
|
|
56
|
-
*/
|
|
57
|
-
export interface VideoAPNS {
|
|
58
|
-
/**
|
|
59
|
-
*
|
|
60
|
-
* @type {string}
|
|
61
|
-
* @memberof VideoAPNS
|
|
62
|
-
*/
|
|
63
|
-
body?: string;
|
|
64
|
-
/**
|
|
65
|
-
*
|
|
66
|
-
* @type {string}
|
|
67
|
-
* @memberof VideoAPNS
|
|
68
|
-
*/
|
|
69
|
-
title?: string;
|
|
70
|
-
}
|
|
71
|
-
/**
|
|
72
|
-
*
|
|
73
|
-
* @export
|
|
74
|
-
* @interface VideoAggregatedStats
|
|
75
|
-
*/
|
|
76
|
-
export interface VideoAggregatedStats {
|
|
77
|
-
/**
|
|
78
|
-
*
|
|
79
|
-
* @type {{ [key: string]: VideoCountrywiseAggregateStats; }}
|
|
80
|
-
* @memberof VideoAggregatedStats
|
|
81
|
-
*/
|
|
82
|
-
countrywise_aggregate_stats?: { [key: string]: VideoCountrywiseAggregateStats; };
|
|
83
|
-
/**
|
|
84
|
-
*
|
|
85
|
-
* @type {VideoPublisherAggregateStats}
|
|
86
|
-
* @memberof VideoAggregatedStats
|
|
87
|
-
*/
|
|
88
|
-
publisher_aggregate_stats?: VideoPublisherAggregateStats;
|
|
89
|
-
/**
|
|
90
|
-
*
|
|
91
|
-
* @type {VideoTURNAggregatedStats}
|
|
92
|
-
* @memberof VideoAggregatedStats
|
|
93
|
-
*/
|
|
94
|
-
turn?: VideoTURNAggregatedStats;
|
|
95
|
-
}
|
|
96
|
-
/**
|
|
97
|
-
*
|
|
98
|
-
* @export
|
|
99
|
-
* @interface VideoAudioSettingsRequest
|
|
100
|
-
*/
|
|
101
|
-
export interface VideoAudioSettingsRequest {
|
|
102
|
-
/**
|
|
103
|
-
*
|
|
104
|
-
* @type {boolean}
|
|
105
|
-
* @memberof VideoAudioSettingsRequest
|
|
106
|
-
*/
|
|
107
|
-
access_request_enabled?: boolean;
|
|
108
|
-
/**
|
|
109
|
-
*
|
|
110
|
-
* @type {string}
|
|
111
|
-
* @memberof VideoAudioSettingsRequest
|
|
112
|
-
*/
|
|
113
|
-
default_device: VideoAudioSettingsRequestDefaultDeviceEnum;
|
|
114
|
-
/**
|
|
115
|
-
*
|
|
116
|
-
* @type {boolean}
|
|
117
|
-
* @memberof VideoAudioSettingsRequest
|
|
118
|
-
*/
|
|
119
|
-
mic_default_on?: boolean;
|
|
120
|
-
/**
|
|
121
|
-
*
|
|
122
|
-
* @type {VideoNoiseCancellationSettings}
|
|
123
|
-
* @memberof VideoAudioSettingsRequest
|
|
124
|
-
*/
|
|
125
|
-
noise_cancellation?: VideoNoiseCancellationSettings;
|
|
126
|
-
/**
|
|
127
|
-
*
|
|
128
|
-
* @type {boolean}
|
|
129
|
-
* @memberof VideoAudioSettingsRequest
|
|
130
|
-
*/
|
|
131
|
-
opus_dtx_enabled?: boolean;
|
|
132
|
-
/**
|
|
133
|
-
*
|
|
134
|
-
* @type {boolean}
|
|
135
|
-
* @memberof VideoAudioSettingsRequest
|
|
136
|
-
*/
|
|
137
|
-
redundant_coding_enabled?: boolean;
|
|
138
|
-
/**
|
|
139
|
-
*
|
|
140
|
-
* @type {boolean}
|
|
141
|
-
* @memberof VideoAudioSettingsRequest
|
|
142
|
-
*/
|
|
143
|
-
speaker_default_on?: boolean;
|
|
144
|
-
}
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
/**
|
|
148
|
-
* @export
|
|
149
|
-
*/
|
|
150
|
-
export const VideoAudioSettingsRequestDefaultDeviceEnum = {
|
|
151
|
-
SPEAKER: 'speaker',
|
|
152
|
-
EARPIECE: 'earpiece'
|
|
153
|
-
} as const;
|
|
154
|
-
export type VideoAudioSettingsRequestDefaultDeviceEnum = typeof VideoAudioSettingsRequestDefaultDeviceEnum[keyof typeof VideoAudioSettingsRequestDefaultDeviceEnum];
|
|
155
|
-
|
|
156
|
-
/**
|
|
157
|
-
*
|
|
158
|
-
* @export
|
|
159
|
-
* @interface VideoAudioSettingsResponse
|
|
160
|
-
*/
|
|
161
|
-
export interface VideoAudioSettingsResponse {
|
|
162
|
-
/**
|
|
163
|
-
*
|
|
164
|
-
* @type {boolean}
|
|
165
|
-
* @memberof VideoAudioSettingsResponse
|
|
166
|
-
*/
|
|
167
|
-
access_request_enabled: boolean;
|
|
168
|
-
/**
|
|
169
|
-
*
|
|
170
|
-
* @type {string}
|
|
171
|
-
* @memberof VideoAudioSettingsResponse
|
|
172
|
-
*/
|
|
173
|
-
default_device: VideoAudioSettingsResponseDefaultDeviceEnum;
|
|
174
|
-
/**
|
|
175
|
-
*
|
|
176
|
-
* @type {boolean}
|
|
177
|
-
* @memberof VideoAudioSettingsResponse
|
|
178
|
-
*/
|
|
179
|
-
mic_default_on: boolean;
|
|
180
|
-
/**
|
|
181
|
-
*
|
|
182
|
-
* @type {VideoNoiseCancellationSettings}
|
|
183
|
-
* @memberof VideoAudioSettingsResponse
|
|
184
|
-
*/
|
|
185
|
-
noise_cancellation?: VideoNoiseCancellationSettings;
|
|
186
|
-
/**
|
|
187
|
-
*
|
|
188
|
-
* @type {boolean}
|
|
189
|
-
* @memberof VideoAudioSettingsResponse
|
|
190
|
-
*/
|
|
191
|
-
opus_dtx_enabled: boolean;
|
|
192
|
-
/**
|
|
193
|
-
*
|
|
194
|
-
* @type {boolean}
|
|
195
|
-
* @memberof VideoAudioSettingsResponse
|
|
196
|
-
*/
|
|
197
|
-
redundant_coding_enabled: boolean;
|
|
198
|
-
/**
|
|
199
|
-
*
|
|
200
|
-
* @type {boolean}
|
|
201
|
-
* @memberof VideoAudioSettingsResponse
|
|
202
|
-
*/
|
|
203
|
-
speaker_default_on: boolean;
|
|
204
|
-
}
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
/**
|
|
208
|
-
* @export
|
|
209
|
-
*/
|
|
210
|
-
export const VideoAudioSettingsResponseDefaultDeviceEnum = {
|
|
211
|
-
SPEAKER: 'speaker',
|
|
212
|
-
EARPIECE: 'earpiece'
|
|
213
|
-
} as const;
|
|
214
|
-
export type VideoAudioSettingsResponseDefaultDeviceEnum = typeof VideoAudioSettingsResponseDefaultDeviceEnum[keyof typeof VideoAudioSettingsResponseDefaultDeviceEnum];
|
|
215
|
-
|
|
216
|
-
/**
|
|
217
|
-
*
|
|
218
|
-
* @export
|
|
219
|
-
* @interface VideoAzureRequest
|
|
220
|
-
*/
|
|
221
|
-
export interface VideoAzureRequest {
|
|
222
|
-
/**
|
|
223
|
-
*
|
|
224
|
-
* @type {string}
|
|
225
|
-
* @memberof VideoAzureRequest
|
|
226
|
-
*/
|
|
227
|
-
abs_account_name: string;
|
|
228
|
-
/**
|
|
229
|
-
*
|
|
230
|
-
* @type {string}
|
|
231
|
-
* @memberof VideoAzureRequest
|
|
232
|
-
*/
|
|
233
|
-
abs_client_id: string;
|
|
234
|
-
/**
|
|
235
|
-
*
|
|
236
|
-
* @type {string}
|
|
237
|
-
* @memberof VideoAzureRequest
|
|
238
|
-
*/
|
|
239
|
-
abs_client_secret: string;
|
|
240
|
-
/**
|
|
241
|
-
*
|
|
242
|
-
* @type {string}
|
|
243
|
-
* @memberof VideoAzureRequest
|
|
244
|
-
*/
|
|
245
|
-
abs_tenant_id: string;
|
|
246
|
-
}
|
|
247
|
-
/**
|
|
248
|
-
*
|
|
249
|
-
* @export
|
|
250
|
-
* @interface VideoBackstageSettingsRequest
|
|
251
|
-
*/
|
|
252
|
-
export interface VideoBackstageSettingsRequest {
|
|
253
|
-
/**
|
|
254
|
-
*
|
|
255
|
-
* @type {boolean}
|
|
256
|
-
* @memberof VideoBackstageSettingsRequest
|
|
257
|
-
*/
|
|
258
|
-
enabled?: boolean;
|
|
259
|
-
/**
|
|
260
|
-
*
|
|
261
|
-
* @type {number}
|
|
262
|
-
* @memberof VideoBackstageSettingsRequest
|
|
263
|
-
*/
|
|
264
|
-
join_ahead_time_seconds?: number;
|
|
265
|
-
}
|
|
266
|
-
/**
|
|
267
|
-
*
|
|
268
|
-
* @export
|
|
269
|
-
* @interface VideoBackstageSettingsResponse
|
|
270
|
-
*/
|
|
271
|
-
export interface VideoBackstageSettingsResponse {
|
|
272
|
-
/**
|
|
273
|
-
*
|
|
274
|
-
* @type {boolean}
|
|
275
|
-
* @memberof VideoBackstageSettingsResponse
|
|
276
|
-
*/
|
|
277
|
-
enabled: boolean;
|
|
278
|
-
/**
|
|
279
|
-
*
|
|
280
|
-
* @type {number}
|
|
281
|
-
* @memberof VideoBackstageSettingsResponse
|
|
282
|
-
*/
|
|
283
|
-
join_ahead_time_seconds?: number;
|
|
284
|
-
}
|
|
285
|
-
/**
|
|
286
|
-
*
|
|
287
|
-
* @export
|
|
288
|
-
* @interface VideoBlockUserRequest
|
|
289
|
-
*/
|
|
290
|
-
export interface VideoBlockUserRequest {
|
|
291
|
-
/**
|
|
292
|
-
* the user to block
|
|
293
|
-
* @type {string}
|
|
294
|
-
* @memberof VideoBlockUserRequest
|
|
295
|
-
*/
|
|
296
|
-
user_id: string;
|
|
297
|
-
}
|
|
298
|
-
/**
|
|
299
|
-
*
|
|
300
|
-
* @export
|
|
301
|
-
* @interface VideoBlockUserResponse
|
|
302
|
-
*/
|
|
303
|
-
export interface VideoBlockUserResponse {
|
|
304
|
-
/**
|
|
305
|
-
* Duration of the request in human-readable format
|
|
306
|
-
* @type {string}
|
|
307
|
-
* @memberof VideoBlockUserResponse
|
|
308
|
-
*/
|
|
309
|
-
duration: string;
|
|
310
|
-
}
|
|
311
|
-
/**
|
|
312
|
-
*
|
|
313
|
-
* @export
|
|
314
|
-
* @interface VideoBroadcastSettingsRequest
|
|
315
|
-
*/
|
|
316
|
-
export interface VideoBroadcastSettingsRequest {
|
|
317
|
-
/**
|
|
318
|
-
*
|
|
319
|
-
* @type {boolean}
|
|
320
|
-
* @memberof VideoBroadcastSettingsRequest
|
|
321
|
-
*/
|
|
322
|
-
enabled?: boolean;
|
|
323
|
-
/**
|
|
324
|
-
*
|
|
325
|
-
* @type {VideoHLSSettingsRequest}
|
|
326
|
-
* @memberof VideoBroadcastSettingsRequest
|
|
327
|
-
*/
|
|
328
|
-
hls?: VideoHLSSettingsRequest;
|
|
329
|
-
}
|
|
330
|
-
/**
|
|
331
|
-
*
|
|
332
|
-
* @export
|
|
333
|
-
* @interface VideoBroadcastSettingsResponse
|
|
334
|
-
*/
|
|
335
|
-
export interface VideoBroadcastSettingsResponse {
|
|
336
|
-
/**
|
|
337
|
-
*
|
|
338
|
-
* @type {boolean}
|
|
339
|
-
* @memberof VideoBroadcastSettingsResponse
|
|
340
|
-
*/
|
|
341
|
-
enabled: boolean;
|
|
342
|
-
/**
|
|
343
|
-
*
|
|
344
|
-
* @type {VideoHLSSettingsResponse}
|
|
345
|
-
* @memberof VideoBroadcastSettingsResponse
|
|
346
|
-
*/
|
|
347
|
-
hls: VideoHLSSettingsResponse;
|
|
348
|
-
}
|
|
349
|
-
/**
|
|
350
|
-
*
|
|
351
|
-
* @export
|
|
352
|
-
* @interface VideoCallEvent
|
|
353
|
-
*/
|
|
354
|
-
export interface VideoCallEvent {
|
|
355
|
-
/**
|
|
356
|
-
*
|
|
357
|
-
* @type {{ [key: string]: any; }}
|
|
358
|
-
* @memberof VideoCallEvent
|
|
359
|
-
*/
|
|
360
|
-
additional?: { [key: string]: any; };
|
|
361
|
-
/**
|
|
362
|
-
*
|
|
363
|
-
* @type {string}
|
|
364
|
-
* @memberof VideoCallEvent
|
|
365
|
-
*/
|
|
366
|
-
component?: string;
|
|
367
|
-
/**
|
|
368
|
-
*
|
|
369
|
-
* @type {string}
|
|
370
|
-
* @memberof VideoCallEvent
|
|
371
|
-
*/
|
|
372
|
-
description: string;
|
|
373
|
-
/**
|
|
374
|
-
*
|
|
375
|
-
* @type {number}
|
|
376
|
-
* @memberof VideoCallEvent
|
|
377
|
-
*/
|
|
378
|
-
end_timestamp: number;
|
|
379
|
-
/**
|
|
380
|
-
*
|
|
381
|
-
* @type {number}
|
|
382
|
-
* @memberof VideoCallEvent
|
|
383
|
-
*/
|
|
384
|
-
severity: number;
|
|
385
|
-
/**
|
|
386
|
-
*
|
|
387
|
-
* @type {number}
|
|
388
|
-
* @memberof VideoCallEvent
|
|
389
|
-
*/
|
|
390
|
-
timestamp: number;
|
|
391
|
-
/**
|
|
392
|
-
*
|
|
393
|
-
* @type {string}
|
|
394
|
-
* @memberof VideoCallEvent
|
|
395
|
-
*/
|
|
396
|
-
type: string;
|
|
397
|
-
}
|
|
398
|
-
/**
|
|
399
|
-
*
|
|
400
|
-
* @export
|
|
401
|
-
* @interface VideoCallIngressResponse
|
|
402
|
-
*/
|
|
403
|
-
export interface VideoCallIngressResponse {
|
|
404
|
-
/**
|
|
405
|
-
*
|
|
406
|
-
* @type {VideoRTMPIngress}
|
|
407
|
-
* @memberof VideoCallIngressResponse
|
|
408
|
-
*/
|
|
409
|
-
rtmp: VideoRTMPIngress;
|
|
410
|
-
}
|
|
411
|
-
/**
|
|
412
|
-
*
|
|
413
|
-
* @export
|
|
414
|
-
* @interface VideoCallParticipantResponse
|
|
415
|
-
*/
|
|
416
|
-
export interface VideoCallParticipantResponse {
|
|
417
|
-
/**
|
|
418
|
-
*
|
|
419
|
-
* @type {string}
|
|
420
|
-
* @memberof VideoCallParticipantResponse
|
|
421
|
-
*/
|
|
422
|
-
joined_at: string;
|
|
423
|
-
/**
|
|
424
|
-
*
|
|
425
|
-
* @type {string}
|
|
426
|
-
* @memberof VideoCallParticipantResponse
|
|
427
|
-
*/
|
|
428
|
-
role: string;
|
|
429
|
-
/**
|
|
430
|
-
*
|
|
431
|
-
* @type {VideoUserResponse}
|
|
432
|
-
* @memberof VideoCallParticipantResponse
|
|
433
|
-
*/
|
|
434
|
-
user: VideoUserResponse;
|
|
435
|
-
/**
|
|
436
|
-
*
|
|
437
|
-
* @type {string}
|
|
438
|
-
* @memberof VideoCallParticipantResponse
|
|
439
|
-
*/
|
|
440
|
-
user_session_id: string;
|
|
441
|
-
}
|
|
442
|
-
/**
|
|
443
|
-
* CallRecording represents a recording of a call.
|
|
444
|
-
* @export
|
|
445
|
-
* @interface VideoCallRecording
|
|
446
|
-
*/
|
|
447
|
-
export interface VideoCallRecording {
|
|
448
|
-
/**
|
|
449
|
-
*
|
|
450
|
-
* @type {string}
|
|
451
|
-
* @memberof VideoCallRecording
|
|
452
|
-
*/
|
|
453
|
-
end_time: string;
|
|
454
|
-
/**
|
|
455
|
-
*
|
|
456
|
-
* @type {string}
|
|
457
|
-
* @memberof VideoCallRecording
|
|
458
|
-
*/
|
|
459
|
-
filename: string;
|
|
460
|
-
/**
|
|
461
|
-
*
|
|
462
|
-
* @type {string}
|
|
463
|
-
* @memberof VideoCallRecording
|
|
464
|
-
*/
|
|
465
|
-
start_time: string;
|
|
466
|
-
/**
|
|
467
|
-
*
|
|
468
|
-
* @type {string}
|
|
469
|
-
* @memberof VideoCallRecording
|
|
470
|
-
*/
|
|
471
|
-
url: string;
|
|
472
|
-
}
|
|
473
|
-
/**
|
|
474
|
-
*
|
|
475
|
-
* @export
|
|
476
|
-
* @interface VideoCallRequest
|
|
477
|
-
*/
|
|
478
|
-
export interface VideoCallRequest {
|
|
479
|
-
/**
|
|
480
|
-
*
|
|
481
|
-
* @type {VideoUserRequest}
|
|
482
|
-
* @memberof VideoCallRequest
|
|
483
|
-
*/
|
|
484
|
-
created_by?: VideoUserRequest;
|
|
485
|
-
/**
|
|
486
|
-
*
|
|
487
|
-
* @type {string}
|
|
488
|
-
* @memberof VideoCallRequest
|
|
489
|
-
*/
|
|
490
|
-
created_by_id?: string;
|
|
491
|
-
/**
|
|
492
|
-
*
|
|
493
|
-
* @type {{ [key: string]: any; }}
|
|
494
|
-
* @memberof VideoCallRequest
|
|
495
|
-
*/
|
|
496
|
-
custom?: { [key: string]: any; };
|
|
497
|
-
/**
|
|
498
|
-
*
|
|
499
|
-
* @type {Array<VideoMemberRequest>}
|
|
500
|
-
* @memberof VideoCallRequest
|
|
501
|
-
*/
|
|
502
|
-
members?: Array<VideoMemberRequest>;
|
|
503
|
-
/**
|
|
504
|
-
*
|
|
505
|
-
* @type {VideoCallSettingsRequest}
|
|
506
|
-
* @memberof VideoCallRequest
|
|
507
|
-
*/
|
|
508
|
-
settings_override?: VideoCallSettingsRequest;
|
|
509
|
-
/**
|
|
510
|
-
*
|
|
511
|
-
* @type {string}
|
|
512
|
-
* @memberof VideoCallRequest
|
|
513
|
-
*/
|
|
514
|
-
starts_at?: string;
|
|
515
|
-
/**
|
|
516
|
-
*
|
|
517
|
-
* @type {string}
|
|
518
|
-
* @memberof VideoCallRequest
|
|
519
|
-
*/
|
|
520
|
-
team?: string;
|
|
521
|
-
}
|
|
522
|
-
/**
|
|
523
|
-
* Represents a call
|
|
524
|
-
* @export
|
|
525
|
-
* @interface VideoCallResponse
|
|
526
|
-
*/
|
|
527
|
-
export interface VideoCallResponse {
|
|
528
|
-
/**
|
|
529
|
-
*
|
|
530
|
-
* @type {boolean}
|
|
531
|
-
* @memberof VideoCallResponse
|
|
532
|
-
*/
|
|
533
|
-
backstage: boolean;
|
|
534
|
-
/**
|
|
535
|
-
*
|
|
536
|
-
* @type {Array<string>}
|
|
537
|
-
* @memberof VideoCallResponse
|
|
538
|
-
*/
|
|
539
|
-
blocked_user_ids: Array<string>;
|
|
540
|
-
/**
|
|
541
|
-
* The unique identifier for a call (<type>:<id>)
|
|
542
|
-
* @type {string}
|
|
543
|
-
* @memberof VideoCallResponse
|
|
544
|
-
*/
|
|
545
|
-
cid: string;
|
|
546
|
-
/**
|
|
547
|
-
* Date/time of creation
|
|
548
|
-
* @type {string}
|
|
549
|
-
* @memberof VideoCallResponse
|
|
550
|
-
*/
|
|
551
|
-
created_at: string;
|
|
552
|
-
/**
|
|
553
|
-
*
|
|
554
|
-
* @type {VideoUserResponse}
|
|
555
|
-
* @memberof VideoCallResponse
|
|
556
|
-
*/
|
|
557
|
-
created_by: VideoUserResponse;
|
|
558
|
-
/**
|
|
559
|
-
*
|
|
560
|
-
* @type {string}
|
|
561
|
-
* @memberof VideoCallResponse
|
|
562
|
-
*/
|
|
563
|
-
current_session_id: string;
|
|
564
|
-
/**
|
|
565
|
-
* Custom data for this object
|
|
566
|
-
* @type {{ [key: string]: any; }}
|
|
567
|
-
* @memberof VideoCallResponse
|
|
568
|
-
*/
|
|
569
|
-
custom: { [key: string]: any; };
|
|
570
|
-
/**
|
|
571
|
-
*
|
|
572
|
-
* @type {VideoEgressResponse}
|
|
573
|
-
* @memberof VideoCallResponse
|
|
574
|
-
*/
|
|
575
|
-
egress: VideoEgressResponse;
|
|
576
|
-
/**
|
|
577
|
-
* Date/time when the call ended
|
|
578
|
-
* @type {string}
|
|
579
|
-
* @memberof VideoCallResponse
|
|
580
|
-
*/
|
|
581
|
-
ended_at?: string;
|
|
582
|
-
/**
|
|
583
|
-
* Call ID
|
|
584
|
-
* @type {string}
|
|
585
|
-
* @memberof VideoCallResponse
|
|
586
|
-
*/
|
|
587
|
-
id: string;
|
|
588
|
-
/**
|
|
589
|
-
*
|
|
590
|
-
* @type {VideoCallIngressResponse}
|
|
591
|
-
* @memberof VideoCallResponse
|
|
592
|
-
*/
|
|
593
|
-
ingress: VideoCallIngressResponse;
|
|
594
|
-
/**
|
|
595
|
-
*
|
|
596
|
-
* @type {number}
|
|
597
|
-
* @memberof VideoCallResponse
|
|
598
|
-
*/
|
|
599
|
-
join_ahead_time_seconds?: number;
|
|
600
|
-
/**
|
|
601
|
-
*
|
|
602
|
-
* @type {boolean}
|
|
603
|
-
* @memberof VideoCallResponse
|
|
604
|
-
*/
|
|
605
|
-
recording: boolean;
|
|
606
|
-
/**
|
|
607
|
-
*
|
|
608
|
-
* @type {VideoCallSessionResponse}
|
|
609
|
-
* @memberof VideoCallResponse
|
|
610
|
-
*/
|
|
611
|
-
session?: VideoCallSessionResponse;
|
|
612
|
-
/**
|
|
613
|
-
*
|
|
614
|
-
* @type {VideoCallSettingsResponse}
|
|
615
|
-
* @memberof VideoCallResponse
|
|
616
|
-
*/
|
|
617
|
-
settings: VideoCallSettingsResponse;
|
|
618
|
-
/**
|
|
619
|
-
* Date/time when the call will start
|
|
620
|
-
* @type {string}
|
|
621
|
-
* @memberof VideoCallResponse
|
|
622
|
-
*/
|
|
623
|
-
starts_at?: string;
|
|
624
|
-
/**
|
|
625
|
-
*
|
|
626
|
-
* @type {string}
|
|
627
|
-
* @memberof VideoCallResponse
|
|
628
|
-
*/
|
|
629
|
-
team?: string;
|
|
630
|
-
/**
|
|
631
|
-
*
|
|
632
|
-
* @type {VideoThumbnailResponse}
|
|
633
|
-
* @memberof VideoCallResponse
|
|
634
|
-
*/
|
|
635
|
-
thumbnails?: VideoThumbnailResponse;
|
|
636
|
-
/**
|
|
637
|
-
*
|
|
638
|
-
* @type {boolean}
|
|
639
|
-
* @memberof VideoCallResponse
|
|
640
|
-
*/
|
|
641
|
-
transcribing: boolean;
|
|
642
|
-
/**
|
|
643
|
-
* The type of call
|
|
644
|
-
* @type {string}
|
|
645
|
-
* @memberof VideoCallResponse
|
|
646
|
-
*/
|
|
647
|
-
type: string;
|
|
648
|
-
/**
|
|
649
|
-
* Date/time of the last update
|
|
650
|
-
* @type {string}
|
|
651
|
-
* @memberof VideoCallResponse
|
|
652
|
-
*/
|
|
653
|
-
updated_at: string;
|
|
654
|
-
}
|
|
655
|
-
/**
|
|
656
|
-
*
|
|
657
|
-
* @export
|
|
658
|
-
* @interface VideoCallSessionResponse
|
|
659
|
-
*/
|
|
660
|
-
export interface VideoCallSessionResponse {
|
|
661
|
-
/**
|
|
662
|
-
*
|
|
663
|
-
* @type {{ [key: string]: string; }}
|
|
664
|
-
* @memberof VideoCallSessionResponse
|
|
665
|
-
*/
|
|
666
|
-
accepted_by: { [key: string]: string; };
|
|
667
|
-
/**
|
|
668
|
-
*
|
|
669
|
-
* @type {string}
|
|
670
|
-
* @memberof VideoCallSessionResponse
|
|
671
|
-
*/
|
|
672
|
-
ended_at?: string;
|
|
673
|
-
/**
|
|
674
|
-
*
|
|
675
|
-
* @type {string}
|
|
676
|
-
* @memberof VideoCallSessionResponse
|
|
677
|
-
*/
|
|
678
|
-
id: string;
|
|
679
|
-
/**
|
|
680
|
-
*
|
|
681
|
-
* @type {string}
|
|
682
|
-
* @memberof VideoCallSessionResponse
|
|
683
|
-
*/
|
|
684
|
-
live_ended_at?: string;
|
|
685
|
-
/**
|
|
686
|
-
*
|
|
687
|
-
* @type {string}
|
|
688
|
-
* @memberof VideoCallSessionResponse
|
|
689
|
-
*/
|
|
690
|
-
live_started_at?: string;
|
|
691
|
-
/**
|
|
692
|
-
*
|
|
693
|
-
* @type {{ [key: string]: string; }}
|
|
694
|
-
* @memberof VideoCallSessionResponse
|
|
695
|
-
*/
|
|
696
|
-
missed_by: { [key: string]: string; };
|
|
697
|
-
/**
|
|
698
|
-
*
|
|
699
|
-
* @type {Array<VideoCallParticipantResponse>}
|
|
700
|
-
* @memberof VideoCallSessionResponse
|
|
701
|
-
*/
|
|
702
|
-
participants: Array<VideoCallParticipantResponse>;
|
|
703
|
-
/**
|
|
704
|
-
*
|
|
705
|
-
* @type {{ [key: string]: number; }}
|
|
706
|
-
* @memberof VideoCallSessionResponse
|
|
707
|
-
*/
|
|
708
|
-
participants_count_by_role: { [key: string]: number; };
|
|
709
|
-
/**
|
|
710
|
-
*
|
|
711
|
-
* @type {{ [key: string]: string; }}
|
|
712
|
-
* @memberof VideoCallSessionResponse
|
|
713
|
-
*/
|
|
714
|
-
rejected_by: { [key: string]: string; };
|
|
715
|
-
/**
|
|
716
|
-
*
|
|
717
|
-
* @type {string}
|
|
718
|
-
* @memberof VideoCallSessionResponse
|
|
719
|
-
*/
|
|
720
|
-
started_at?: string;
|
|
721
|
-
/**
|
|
722
|
-
*
|
|
723
|
-
* @type {string}
|
|
724
|
-
* @memberof VideoCallSessionResponse
|
|
725
|
-
*/
|
|
726
|
-
timer_ends_at?: string;
|
|
727
|
-
}
|
|
728
|
-
/**
|
|
729
|
-
*
|
|
730
|
-
* @export
|
|
731
|
-
* @interface VideoCallSettingsRequest
|
|
732
|
-
*/
|
|
733
|
-
export interface VideoCallSettingsRequest {
|
|
734
|
-
/**
|
|
735
|
-
*
|
|
736
|
-
* @type {VideoAudioSettingsRequest}
|
|
737
|
-
* @memberof VideoCallSettingsRequest
|
|
738
|
-
*/
|
|
739
|
-
audio?: VideoAudioSettingsRequest;
|
|
740
|
-
/**
|
|
741
|
-
*
|
|
742
|
-
* @type {VideoBackstageSettingsRequest}
|
|
743
|
-
* @memberof VideoCallSettingsRequest
|
|
744
|
-
*/
|
|
745
|
-
backstage?: VideoBackstageSettingsRequest;
|
|
746
|
-
/**
|
|
747
|
-
*
|
|
748
|
-
* @type {VideoBroadcastSettingsRequest}
|
|
749
|
-
* @memberof VideoCallSettingsRequest
|
|
750
|
-
*/
|
|
751
|
-
broadcasting?: VideoBroadcastSettingsRequest;
|
|
752
|
-
/**
|
|
753
|
-
*
|
|
754
|
-
* @type {VideoGeofenceSettingsRequest}
|
|
755
|
-
* @memberof VideoCallSettingsRequest
|
|
756
|
-
*/
|
|
757
|
-
geofencing?: VideoGeofenceSettingsRequest;
|
|
758
|
-
/**
|
|
759
|
-
*
|
|
760
|
-
* @type {VideoLimitsSettingsRequest}
|
|
761
|
-
* @memberof VideoCallSettingsRequest
|
|
762
|
-
*/
|
|
763
|
-
limits?: VideoLimitsSettingsRequest;
|
|
764
|
-
/**
|
|
765
|
-
*
|
|
766
|
-
* @type {VideoRecordSettingsRequest}
|
|
767
|
-
* @memberof VideoCallSettingsRequest
|
|
768
|
-
*/
|
|
769
|
-
recording?: VideoRecordSettingsRequest;
|
|
770
|
-
/**
|
|
771
|
-
*
|
|
772
|
-
* @type {VideoRingSettingsRequest}
|
|
773
|
-
* @memberof VideoCallSettingsRequest
|
|
774
|
-
*/
|
|
775
|
-
ring?: VideoRingSettingsRequest;
|
|
776
|
-
/**
|
|
777
|
-
*
|
|
778
|
-
* @type {VideoScreensharingSettingsRequest}
|
|
779
|
-
* @memberof VideoCallSettingsRequest
|
|
780
|
-
*/
|
|
781
|
-
screensharing?: VideoScreensharingSettingsRequest;
|
|
782
|
-
/**
|
|
783
|
-
*
|
|
784
|
-
* @type {VideoThumbnailsSettingsRequest}
|
|
785
|
-
* @memberof VideoCallSettingsRequest
|
|
786
|
-
*/
|
|
787
|
-
thumbnails?: VideoThumbnailsSettingsRequest;
|
|
788
|
-
/**
|
|
789
|
-
*
|
|
790
|
-
* @type {VideoTranscriptionSettingsRequest}
|
|
791
|
-
* @memberof VideoCallSettingsRequest
|
|
792
|
-
*/
|
|
793
|
-
transcription?: VideoTranscriptionSettingsRequest;
|
|
794
|
-
/**
|
|
795
|
-
*
|
|
796
|
-
* @type {VideoVideoSettingsRequest}
|
|
797
|
-
* @memberof VideoCallSettingsRequest
|
|
798
|
-
*/
|
|
799
|
-
video?: VideoVideoSettingsRequest;
|
|
800
|
-
}
|
|
801
|
-
/**
|
|
802
|
-
*
|
|
803
|
-
* @export
|
|
804
|
-
* @interface VideoCallSettingsResponse
|
|
805
|
-
*/
|
|
806
|
-
export interface VideoCallSettingsResponse {
|
|
807
|
-
/**
|
|
808
|
-
*
|
|
809
|
-
* @type {VideoAudioSettingsResponse}
|
|
810
|
-
* @memberof VideoCallSettingsResponse
|
|
811
|
-
*/
|
|
812
|
-
audio: VideoAudioSettingsResponse;
|
|
813
|
-
/**
|
|
814
|
-
*
|
|
815
|
-
* @type {VideoBackstageSettingsResponse}
|
|
816
|
-
* @memberof VideoCallSettingsResponse
|
|
817
|
-
*/
|
|
818
|
-
backstage: VideoBackstageSettingsResponse;
|
|
819
|
-
/**
|
|
820
|
-
*
|
|
821
|
-
* @type {VideoBroadcastSettingsResponse}
|
|
822
|
-
* @memberof VideoCallSettingsResponse
|
|
823
|
-
*/
|
|
824
|
-
broadcasting: VideoBroadcastSettingsResponse;
|
|
825
|
-
/**
|
|
826
|
-
*
|
|
827
|
-
* @type {VideoGeofenceSettingsResponse}
|
|
828
|
-
* @memberof VideoCallSettingsResponse
|
|
829
|
-
*/
|
|
830
|
-
geofencing: VideoGeofenceSettingsResponse;
|
|
831
|
-
/**
|
|
832
|
-
*
|
|
833
|
-
* @type {VideoLimitsSettingsResponse}
|
|
834
|
-
* @memberof VideoCallSettingsResponse
|
|
835
|
-
*/
|
|
836
|
-
limits: VideoLimitsSettingsResponse;
|
|
837
|
-
/**
|
|
838
|
-
*
|
|
839
|
-
* @type {VideoRecordSettingsResponse}
|
|
840
|
-
* @memberof VideoCallSettingsResponse
|
|
841
|
-
*/
|
|
842
|
-
recording: VideoRecordSettingsResponse;
|
|
843
|
-
/**
|
|
844
|
-
*
|
|
845
|
-
* @type {VideoRingSettingsResponse}
|
|
846
|
-
* @memberof VideoCallSettingsResponse
|
|
847
|
-
*/
|
|
848
|
-
ring: VideoRingSettingsResponse;
|
|
849
|
-
/**
|
|
850
|
-
*
|
|
851
|
-
* @type {VideoScreensharingSettingsResponse}
|
|
852
|
-
* @memberof VideoCallSettingsResponse
|
|
853
|
-
*/
|
|
854
|
-
screensharing: VideoScreensharingSettingsResponse;
|
|
855
|
-
/**
|
|
856
|
-
*
|
|
857
|
-
* @type {VideoThumbnailsSettingsResponse}
|
|
858
|
-
* @memberof VideoCallSettingsResponse
|
|
859
|
-
*/
|
|
860
|
-
thumbnails: VideoThumbnailsSettingsResponse;
|
|
861
|
-
/**
|
|
862
|
-
*
|
|
863
|
-
* @type {VideoTranscriptionSettingsResponse}
|
|
864
|
-
* @memberof VideoCallSettingsResponse
|
|
865
|
-
*/
|
|
866
|
-
transcription: VideoTranscriptionSettingsResponse;
|
|
867
|
-
/**
|
|
868
|
-
*
|
|
869
|
-
* @type {VideoVideoSettingsResponse}
|
|
870
|
-
* @memberof VideoCallSettingsResponse
|
|
871
|
-
*/
|
|
872
|
-
video: VideoVideoSettingsResponse;
|
|
873
|
-
}
|
|
874
|
-
/**
|
|
875
|
-
*
|
|
876
|
-
* @export
|
|
877
|
-
* @interface VideoCallStateResponseFields
|
|
878
|
-
*/
|
|
879
|
-
export interface VideoCallStateResponseFields {
|
|
880
|
-
/**
|
|
881
|
-
*
|
|
882
|
-
* @type {VideoCallResponse}
|
|
883
|
-
* @memberof VideoCallStateResponseFields
|
|
884
|
-
*/
|
|
885
|
-
call: VideoCallResponse;
|
|
886
|
-
/**
|
|
887
|
-
* List of call members
|
|
888
|
-
* @type {Array<VideoMemberResponse>}
|
|
889
|
-
* @memberof VideoCallStateResponseFields
|
|
890
|
-
*/
|
|
891
|
-
members: Array<VideoMemberResponse>;
|
|
892
|
-
/**
|
|
893
|
-
*
|
|
894
|
-
* @type {Array<VideoOwnCapability>}
|
|
895
|
-
* @memberof VideoCallStateResponseFields
|
|
896
|
-
*/
|
|
897
|
-
own_capabilities: Array<VideoOwnCapability>;
|
|
898
|
-
}
|
|
899
|
-
/**
|
|
900
|
-
*
|
|
901
|
-
* @export
|
|
902
|
-
* @interface VideoCallStatsReportSummaryResponse
|
|
903
|
-
*/
|
|
904
|
-
export interface VideoCallStatsReportSummaryResponse {
|
|
905
|
-
/**
|
|
906
|
-
*
|
|
907
|
-
* @type {string}
|
|
908
|
-
* @memberof VideoCallStatsReportSummaryResponse
|
|
909
|
-
*/
|
|
910
|
-
call_cid: string;
|
|
911
|
-
/**
|
|
912
|
-
*
|
|
913
|
-
* @type {number}
|
|
914
|
-
* @memberof VideoCallStatsReportSummaryResponse
|
|
915
|
-
*/
|
|
916
|
-
call_duration_seconds: number;
|
|
917
|
-
/**
|
|
918
|
-
*
|
|
919
|
-
* @type {string}
|
|
920
|
-
* @memberof VideoCallStatsReportSummaryResponse
|
|
921
|
-
*/
|
|
922
|
-
call_session_id: string;
|
|
923
|
-
/**
|
|
924
|
-
*
|
|
925
|
-
* @type {string}
|
|
926
|
-
* @memberof VideoCallStatsReportSummaryResponse
|
|
927
|
-
*/
|
|
928
|
-
call_status: string;
|
|
929
|
-
/**
|
|
930
|
-
*
|
|
931
|
-
* @type {string}
|
|
932
|
-
* @memberof VideoCallStatsReportSummaryResponse
|
|
933
|
-
*/
|
|
934
|
-
created_at?: string;
|
|
935
|
-
/**
|
|
936
|
-
*
|
|
937
|
-
* @type {string}
|
|
938
|
-
* @memberof VideoCallStatsReportSummaryResponse
|
|
939
|
-
*/
|
|
940
|
-
first_stats_time: string;
|
|
941
|
-
/**
|
|
942
|
-
*
|
|
943
|
-
* @type {number}
|
|
944
|
-
* @memberof VideoCallStatsReportSummaryResponse
|
|
945
|
-
*/
|
|
946
|
-
quality_score?: number;
|
|
947
|
-
}
|
|
948
|
-
/**
|
|
949
|
-
*
|
|
950
|
-
* @export
|
|
951
|
-
* @interface VideoCallTimeline
|
|
952
|
-
*/
|
|
953
|
-
export interface VideoCallTimeline {
|
|
954
|
-
/**
|
|
955
|
-
*
|
|
956
|
-
* @type {Array<VideoCallEvent>}
|
|
957
|
-
* @memberof VideoCallTimeline
|
|
958
|
-
*/
|
|
959
|
-
events: Array<VideoCallEvent>;
|
|
960
|
-
}
|
|
961
|
-
/**
|
|
962
|
-
* CallTranscription represents a transcription of a call.
|
|
963
|
-
* @export
|
|
964
|
-
* @interface VideoCallTranscription
|
|
965
|
-
*/
|
|
966
|
-
export interface VideoCallTranscription {
|
|
967
|
-
/**
|
|
968
|
-
*
|
|
969
|
-
* @type {string}
|
|
970
|
-
* @memberof VideoCallTranscription
|
|
971
|
-
*/
|
|
972
|
-
end_time: string;
|
|
973
|
-
/**
|
|
974
|
-
*
|
|
975
|
-
* @type {string}
|
|
976
|
-
* @memberof VideoCallTranscription
|
|
977
|
-
*/
|
|
978
|
-
filename: string;
|
|
979
|
-
/**
|
|
980
|
-
*
|
|
981
|
-
* @type {string}
|
|
982
|
-
* @memberof VideoCallTranscription
|
|
983
|
-
*/
|
|
984
|
-
start_time: string;
|
|
985
|
-
/**
|
|
986
|
-
*
|
|
987
|
-
* @type {string}
|
|
988
|
-
* @memberof VideoCallTranscription
|
|
989
|
-
*/
|
|
990
|
-
url: string;
|
|
991
|
-
}
|
|
992
|
-
/**
|
|
993
|
-
*
|
|
994
|
-
* @export
|
|
995
|
-
* @interface VideoCallTypeResponse
|
|
996
|
-
*/
|
|
997
|
-
export interface VideoCallTypeResponse {
|
|
998
|
-
/**
|
|
999
|
-
*
|
|
1000
|
-
* @type {string}
|
|
1001
|
-
* @memberof VideoCallTypeResponse
|
|
1002
|
-
*/
|
|
1003
|
-
created_at: string;
|
|
1004
|
-
/**
|
|
1005
|
-
*
|
|
1006
|
-
* @type {string}
|
|
1007
|
-
* @memberof VideoCallTypeResponse
|
|
1008
|
-
*/
|
|
1009
|
-
external_storage?: string;
|
|
1010
|
-
/**
|
|
1011
|
-
*
|
|
1012
|
-
* @type {{ [key: string]: Array<string>; }}
|
|
1013
|
-
* @memberof VideoCallTypeResponse
|
|
1014
|
-
*/
|
|
1015
|
-
grants: { [key: string]: Array<string>; };
|
|
1016
|
-
/**
|
|
1017
|
-
*
|
|
1018
|
-
* @type {string}
|
|
1019
|
-
* @memberof VideoCallTypeResponse
|
|
1020
|
-
*/
|
|
1021
|
-
name: string;
|
|
1022
|
-
/**
|
|
1023
|
-
*
|
|
1024
|
-
* @type {VideoNotificationSettings}
|
|
1025
|
-
* @memberof VideoCallTypeResponse
|
|
1026
|
-
*/
|
|
1027
|
-
notification_settings: VideoNotificationSettings;
|
|
1028
|
-
/**
|
|
1029
|
-
*
|
|
1030
|
-
* @type {VideoCallSettingsResponse}
|
|
1031
|
-
* @memberof VideoCallTypeResponse
|
|
1032
|
-
*/
|
|
1033
|
-
settings: VideoCallSettingsResponse;
|
|
1034
|
-
/**
|
|
1035
|
-
*
|
|
1036
|
-
* @type {string}
|
|
1037
|
-
* @memberof VideoCallTypeResponse
|
|
1038
|
-
*/
|
|
1039
|
-
updated_at: string;
|
|
1040
|
-
}
|
|
1041
|
-
/**
|
|
1042
|
-
*
|
|
1043
|
-
* @export
|
|
1044
|
-
* @interface VideoCheckExternalStorageResponse
|
|
1045
|
-
*/
|
|
1046
|
-
export interface VideoCheckExternalStorageResponse {
|
|
1047
|
-
/**
|
|
1048
|
-
* Duration of the request in human-readable format
|
|
1049
|
-
* @type {string}
|
|
1050
|
-
* @memberof VideoCheckExternalStorageResponse
|
|
1051
|
-
*/
|
|
1052
|
-
duration: string;
|
|
1053
|
-
/**
|
|
1054
|
-
*
|
|
1055
|
-
* @type {string}
|
|
1056
|
-
* @memberof VideoCheckExternalStorageResponse
|
|
1057
|
-
*/
|
|
1058
|
-
file_url: string;
|
|
1059
|
-
}
|
|
1060
|
-
/**
|
|
1061
|
-
*
|
|
1062
|
-
* @export
|
|
1063
|
-
* @interface VideoCollectUserFeedbackRequest
|
|
1064
|
-
*/
|
|
1065
|
-
export interface VideoCollectUserFeedbackRequest {
|
|
1066
|
-
/**
|
|
1067
|
-
*
|
|
1068
|
-
* @type {{ [key: string]: any; }}
|
|
1069
|
-
* @memberof VideoCollectUserFeedbackRequest
|
|
1070
|
-
*/
|
|
1071
|
-
custom?: { [key: string]: any; };
|
|
1072
|
-
/**
|
|
1073
|
-
*
|
|
1074
|
-
* @type {number}
|
|
1075
|
-
* @memberof VideoCollectUserFeedbackRequest
|
|
1076
|
-
*/
|
|
1077
|
-
rating: number;
|
|
1078
|
-
/**
|
|
1079
|
-
*
|
|
1080
|
-
* @type {string}
|
|
1081
|
-
* @memberof VideoCollectUserFeedbackRequest
|
|
1082
|
-
*/
|
|
1083
|
-
reason?: string;
|
|
1084
|
-
/**
|
|
1085
|
-
*
|
|
1086
|
-
* @type {string}
|
|
1087
|
-
* @memberof VideoCollectUserFeedbackRequest
|
|
1088
|
-
*/
|
|
1089
|
-
sdk: string;
|
|
1090
|
-
/**
|
|
1091
|
-
*
|
|
1092
|
-
* @type {string}
|
|
1093
|
-
* @memberof VideoCollectUserFeedbackRequest
|
|
1094
|
-
*/
|
|
1095
|
-
sdk_version: string;
|
|
1096
|
-
/**
|
|
1097
|
-
*
|
|
1098
|
-
* @type {string}
|
|
1099
|
-
* @memberof VideoCollectUserFeedbackRequest
|
|
1100
|
-
*/
|
|
1101
|
-
user_session_id: string;
|
|
1102
|
-
}
|
|
1103
|
-
/**
|
|
1104
|
-
*
|
|
1105
|
-
* @export
|
|
1106
|
-
* @interface VideoCollectUserFeedbackResponse
|
|
1107
|
-
*/
|
|
1108
|
-
export interface VideoCollectUserFeedbackResponse {
|
|
1109
|
-
/**
|
|
1110
|
-
* Duration of the request in human-readable format
|
|
1111
|
-
* @type {string}
|
|
1112
|
-
* @memberof VideoCollectUserFeedbackResponse
|
|
1113
|
-
*/
|
|
1114
|
-
duration: string;
|
|
1115
|
-
}
|
|
1116
|
-
/**
|
|
1117
|
-
*
|
|
1118
|
-
* @export
|
|
1119
|
-
* @interface VideoCoordinates
|
|
1120
|
-
*/
|
|
1121
|
-
export interface VideoCoordinates {
|
|
1122
|
-
/**
|
|
1123
|
-
*
|
|
1124
|
-
* @type {number}
|
|
1125
|
-
* @memberof VideoCoordinates
|
|
1126
|
-
*/
|
|
1127
|
-
latitude: number;
|
|
1128
|
-
/**
|
|
1129
|
-
*
|
|
1130
|
-
* @type {number}
|
|
1131
|
-
* @memberof VideoCoordinates
|
|
1132
|
-
*/
|
|
1133
|
-
longitude: number;
|
|
1134
|
-
}
|
|
1135
|
-
/**
|
|
1136
|
-
*
|
|
1137
|
-
* @export
|
|
1138
|
-
* @interface VideoCount
|
|
1139
|
-
*/
|
|
1140
|
-
export interface VideoCount {
|
|
1141
|
-
/**
|
|
1142
|
-
*
|
|
1143
|
-
* @type {boolean}
|
|
1144
|
-
* @memberof VideoCount
|
|
1145
|
-
*/
|
|
1146
|
-
approximate: boolean;
|
|
1147
|
-
/**
|
|
1148
|
-
*
|
|
1149
|
-
* @type {number}
|
|
1150
|
-
* @memberof VideoCount
|
|
1151
|
-
*/
|
|
1152
|
-
value: number;
|
|
1153
|
-
}
|
|
1154
|
-
/**
|
|
1155
|
-
*
|
|
1156
|
-
* @export
|
|
1157
|
-
* @interface VideoCountrywiseAggregateStats
|
|
1158
|
-
*/
|
|
1159
|
-
export interface VideoCountrywiseAggregateStats {
|
|
1160
|
-
/**
|
|
1161
|
-
*
|
|
1162
|
-
* @type {VideoCount}
|
|
1163
|
-
* @memberof VideoCountrywiseAggregateStats
|
|
1164
|
-
*/
|
|
1165
|
-
participant_count?: VideoCount;
|
|
1166
|
-
/**
|
|
1167
|
-
*
|
|
1168
|
-
* @type {VideoTimeStats}
|
|
1169
|
-
* @memberof VideoCountrywiseAggregateStats
|
|
1170
|
-
*/
|
|
1171
|
-
publisher_jitter?: VideoTimeStats;
|
|
1172
|
-
/**
|
|
1173
|
-
*
|
|
1174
|
-
* @type {VideoTimeStats}
|
|
1175
|
-
* @memberof VideoCountrywiseAggregateStats
|
|
1176
|
-
*/
|
|
1177
|
-
publisher_latency?: VideoTimeStats;
|
|
1178
|
-
/**
|
|
1179
|
-
*
|
|
1180
|
-
* @type {VideoTimeStats}
|
|
1181
|
-
* @memberof VideoCountrywiseAggregateStats
|
|
1182
|
-
*/
|
|
1183
|
-
subscriber_jitter?: VideoTimeStats;
|
|
1184
|
-
/**
|
|
1185
|
-
*
|
|
1186
|
-
* @type {VideoTimeStats}
|
|
1187
|
-
* @memberof VideoCountrywiseAggregateStats
|
|
1188
|
-
*/
|
|
1189
|
-
subscriber_latency?: VideoTimeStats;
|
|
1190
|
-
}
|
|
1191
|
-
/**
|
|
1192
|
-
*
|
|
1193
|
-
* @export
|
|
1194
|
-
* @interface VideoCreateCallTypeRequest
|
|
1195
|
-
*/
|
|
1196
|
-
export interface VideoCreateCallTypeRequest {
|
|
1197
|
-
/**
|
|
1198
|
-
*
|
|
1199
|
-
* @type {string}
|
|
1200
|
-
* @memberof VideoCreateCallTypeRequest
|
|
1201
|
-
*/
|
|
1202
|
-
external_storage?: string;
|
|
1203
|
-
/**
|
|
1204
|
-
*
|
|
1205
|
-
* @type {{ [key: string]: Array<string>; }}
|
|
1206
|
-
* @memberof VideoCreateCallTypeRequest
|
|
1207
|
-
*/
|
|
1208
|
-
grants?: { [key: string]: Array<string>; };
|
|
1209
|
-
/**
|
|
1210
|
-
*
|
|
1211
|
-
* @type {string}
|
|
1212
|
-
* @memberof VideoCreateCallTypeRequest
|
|
1213
|
-
*/
|
|
1214
|
-
name: string;
|
|
1215
|
-
/**
|
|
1216
|
-
*
|
|
1217
|
-
* @type {VideoNotificationSettings}
|
|
1218
|
-
* @memberof VideoCreateCallTypeRequest
|
|
1219
|
-
*/
|
|
1220
|
-
notification_settings?: VideoNotificationSettings;
|
|
1221
|
-
/**
|
|
1222
|
-
*
|
|
1223
|
-
* @type {VideoCallSettingsRequest}
|
|
1224
|
-
* @memberof VideoCreateCallTypeRequest
|
|
1225
|
-
*/
|
|
1226
|
-
settings?: VideoCallSettingsRequest;
|
|
1227
|
-
}
|
|
1228
|
-
/**
|
|
1229
|
-
*
|
|
1230
|
-
* @export
|
|
1231
|
-
* @interface VideoCreateCallTypeResponse
|
|
1232
|
-
*/
|
|
1233
|
-
export interface VideoCreateCallTypeResponse {
|
|
1234
|
-
/**
|
|
1235
|
-
*
|
|
1236
|
-
* @type {string}
|
|
1237
|
-
* @memberof VideoCreateCallTypeResponse
|
|
1238
|
-
*/
|
|
1239
|
-
created_at: string;
|
|
1240
|
-
/**
|
|
1241
|
-
*
|
|
1242
|
-
* @type {string}
|
|
1243
|
-
* @memberof VideoCreateCallTypeResponse
|
|
1244
|
-
*/
|
|
1245
|
-
duration: string;
|
|
1246
|
-
/**
|
|
1247
|
-
*
|
|
1248
|
-
* @type {string}
|
|
1249
|
-
* @memberof VideoCreateCallTypeResponse
|
|
1250
|
-
*/
|
|
1251
|
-
external_storage?: string;
|
|
1252
|
-
/**
|
|
1253
|
-
*
|
|
1254
|
-
* @type {{ [key: string]: Array<string>; }}
|
|
1255
|
-
* @memberof VideoCreateCallTypeResponse
|
|
1256
|
-
*/
|
|
1257
|
-
grants: { [key: string]: Array<string>; };
|
|
1258
|
-
/**
|
|
1259
|
-
*
|
|
1260
|
-
* @type {string}
|
|
1261
|
-
* @memberof VideoCreateCallTypeResponse
|
|
1262
|
-
*/
|
|
1263
|
-
name: string;
|
|
1264
|
-
/**
|
|
1265
|
-
*
|
|
1266
|
-
* @type {VideoNotificationSettings}
|
|
1267
|
-
* @memberof VideoCreateCallTypeResponse
|
|
1268
|
-
*/
|
|
1269
|
-
notification_settings: VideoNotificationSettings;
|
|
1270
|
-
/**
|
|
1271
|
-
*
|
|
1272
|
-
* @type {VideoCallSettingsResponse}
|
|
1273
|
-
* @memberof VideoCreateCallTypeResponse
|
|
1274
|
-
*/
|
|
1275
|
-
settings: VideoCallSettingsResponse;
|
|
1276
|
-
/**
|
|
1277
|
-
*
|
|
1278
|
-
* @type {string}
|
|
1279
|
-
* @memberof VideoCreateCallTypeResponse
|
|
1280
|
-
*/
|
|
1281
|
-
updated_at: string;
|
|
1282
|
-
}
|
|
1283
|
-
/**
|
|
1284
|
-
*
|
|
1285
|
-
* @export
|
|
1286
|
-
* @interface VideoCreateDeviceRequest
|
|
1287
|
-
*/
|
|
1288
|
-
export interface VideoCreateDeviceRequest {
|
|
1289
|
-
/**
|
|
1290
|
-
*
|
|
1291
|
-
* @type {string}
|
|
1292
|
-
* @memberof VideoCreateDeviceRequest
|
|
1293
|
-
*/
|
|
1294
|
-
id: string;
|
|
1295
|
-
/**
|
|
1296
|
-
*
|
|
1297
|
-
* @type {string}
|
|
1298
|
-
* @memberof VideoCreateDeviceRequest
|
|
1299
|
-
*/
|
|
1300
|
-
push_provider: VideoCreateDeviceRequestPushProviderEnum;
|
|
1301
|
-
/**
|
|
1302
|
-
*
|
|
1303
|
-
* @type {string}
|
|
1304
|
-
* @memberof VideoCreateDeviceRequest
|
|
1305
|
-
*/
|
|
1306
|
-
push_provider_name?: string;
|
|
1307
|
-
/**
|
|
1308
|
-
*
|
|
1309
|
-
* @type {VideoUserRequest}
|
|
1310
|
-
* @memberof VideoCreateDeviceRequest
|
|
1311
|
-
*/
|
|
1312
|
-
user?: VideoUserRequest;
|
|
1313
|
-
/**
|
|
1314
|
-
*
|
|
1315
|
-
* @type {string}
|
|
1316
|
-
* @memberof VideoCreateDeviceRequest
|
|
1317
|
-
*/
|
|
1318
|
-
user_id?: string;
|
|
1319
|
-
/**
|
|
1320
|
-
*
|
|
1321
|
-
* @type {boolean}
|
|
1322
|
-
* @memberof VideoCreateDeviceRequest
|
|
1323
|
-
*/
|
|
1324
|
-
voip_token?: boolean;
|
|
1325
|
-
}
|
|
1326
|
-
|
|
1327
|
-
|
|
1328
|
-
/**
|
|
1329
|
-
* @export
|
|
1330
|
-
*/
|
|
1331
|
-
export const VideoCreateDeviceRequestPushProviderEnum = {
|
|
1332
|
-
FIREBASE: 'firebase',
|
|
1333
|
-
APN: 'apn',
|
|
1334
|
-
HUAWEI: 'huawei',
|
|
1335
|
-
XIAOMI: 'xiaomi'
|
|
1336
|
-
} as const;
|
|
1337
|
-
export type VideoCreateDeviceRequestPushProviderEnum = typeof VideoCreateDeviceRequestPushProviderEnum[keyof typeof VideoCreateDeviceRequestPushProviderEnum];
|
|
1338
|
-
|
|
1339
|
-
/**
|
|
1340
|
-
*
|
|
1341
|
-
* @export
|
|
1342
|
-
* @interface VideoCreateExternalStorageRequest
|
|
1343
|
-
*/
|
|
1344
|
-
export interface VideoCreateExternalStorageRequest {
|
|
1345
|
-
/**
|
|
1346
|
-
*
|
|
1347
|
-
* @type {VideoS3Request}
|
|
1348
|
-
* @memberof VideoCreateExternalStorageRequest
|
|
1349
|
-
*/
|
|
1350
|
-
aws_s3?: VideoS3Request;
|
|
1351
|
-
/**
|
|
1352
|
-
*
|
|
1353
|
-
* @type {VideoAzureRequest}
|
|
1354
|
-
* @memberof VideoCreateExternalStorageRequest
|
|
1355
|
-
*/
|
|
1356
|
-
azure_blob?: VideoAzureRequest;
|
|
1357
|
-
/**
|
|
1358
|
-
*
|
|
1359
|
-
* @type {string}
|
|
1360
|
-
* @memberof VideoCreateExternalStorageRequest
|
|
1361
|
-
*/
|
|
1362
|
-
bucket: string;
|
|
1363
|
-
/**
|
|
1364
|
-
*
|
|
1365
|
-
* @type {string}
|
|
1366
|
-
* @memberof VideoCreateExternalStorageRequest
|
|
1367
|
-
*/
|
|
1368
|
-
gcs_credentials?: string;
|
|
1369
|
-
/**
|
|
1370
|
-
*
|
|
1371
|
-
* @type {string}
|
|
1372
|
-
* @memberof VideoCreateExternalStorageRequest
|
|
1373
|
-
*/
|
|
1374
|
-
name: string;
|
|
1375
|
-
/**
|
|
1376
|
-
*
|
|
1377
|
-
* @type {string}
|
|
1378
|
-
* @memberof VideoCreateExternalStorageRequest
|
|
1379
|
-
*/
|
|
1380
|
-
path?: string;
|
|
1381
|
-
/**
|
|
1382
|
-
*
|
|
1383
|
-
* @type {string}
|
|
1384
|
-
* @memberof VideoCreateExternalStorageRequest
|
|
1385
|
-
*/
|
|
1386
|
-
storage_type: VideoCreateExternalStorageRequestStorageTypeEnum;
|
|
1387
|
-
}
|
|
1388
|
-
|
|
1389
|
-
|
|
1390
|
-
/**
|
|
1391
|
-
* @export
|
|
1392
|
-
*/
|
|
1393
|
-
export const VideoCreateExternalStorageRequestStorageTypeEnum = {
|
|
1394
|
-
S3: 's3',
|
|
1395
|
-
GCS: 'gcs',
|
|
1396
|
-
ABS: 'abs'
|
|
1397
|
-
} as const;
|
|
1398
|
-
export type VideoCreateExternalStorageRequestStorageTypeEnum = typeof VideoCreateExternalStorageRequestStorageTypeEnum[keyof typeof VideoCreateExternalStorageRequestStorageTypeEnum];
|
|
1399
|
-
|
|
1400
|
-
/**
|
|
1401
|
-
*
|
|
1402
|
-
* @export
|
|
1403
|
-
* @interface VideoCreateExternalStorageResponse
|
|
1404
|
-
*/
|
|
1405
|
-
export interface VideoCreateExternalStorageResponse {
|
|
1406
|
-
/**
|
|
1407
|
-
* Duration of the request in human-readable format
|
|
1408
|
-
* @type {string}
|
|
1409
|
-
* @memberof VideoCreateExternalStorageResponse
|
|
1410
|
-
*/
|
|
1411
|
-
duration: string;
|
|
1412
|
-
}
|
|
1413
|
-
/**
|
|
1414
|
-
*
|
|
1415
|
-
* @export
|
|
1416
|
-
* @interface VideoCreateGuestRequest
|
|
1417
|
-
*/
|
|
1418
|
-
export interface VideoCreateGuestRequest {
|
|
1419
|
-
/**
|
|
1420
|
-
*
|
|
1421
|
-
* @type {VideoUserRequest}
|
|
1422
|
-
* @memberof VideoCreateGuestRequest
|
|
1423
|
-
*/
|
|
1424
|
-
user: VideoUserRequest;
|
|
1425
|
-
}
|
|
1426
|
-
/**
|
|
1427
|
-
*
|
|
1428
|
-
* @export
|
|
1429
|
-
* @interface VideoCreateGuestResponse
|
|
1430
|
-
*/
|
|
1431
|
-
export interface VideoCreateGuestResponse {
|
|
1432
|
-
/**
|
|
1433
|
-
* the access token to authenticate the user
|
|
1434
|
-
* @type {string}
|
|
1435
|
-
* @memberof VideoCreateGuestResponse
|
|
1436
|
-
*/
|
|
1437
|
-
access_token: string;
|
|
1438
|
-
/**
|
|
1439
|
-
*
|
|
1440
|
-
* @type {string}
|
|
1441
|
-
* @memberof VideoCreateGuestResponse
|
|
1442
|
-
*/
|
|
1443
|
-
duration: string;
|
|
1444
|
-
/**
|
|
1445
|
-
*
|
|
1446
|
-
* @type {VideoUserResponse}
|
|
1447
|
-
* @memberof VideoCreateGuestResponse
|
|
1448
|
-
*/
|
|
1449
|
-
user: VideoUserResponse;
|
|
1450
|
-
}
|
|
1451
|
-
/**
|
|
1452
|
-
*
|
|
1453
|
-
* @export
|
|
1454
|
-
* @interface VideoDeleteCallRequest
|
|
1455
|
-
*/
|
|
1456
|
-
export interface VideoDeleteCallRequest {
|
|
1457
|
-
/**
|
|
1458
|
-
* if true the call will be hard deleted along with all related data
|
|
1459
|
-
* @type {boolean}
|
|
1460
|
-
* @memberof VideoDeleteCallRequest
|
|
1461
|
-
*/
|
|
1462
|
-
hard?: boolean;
|
|
1463
|
-
}
|
|
1464
|
-
/**
|
|
1465
|
-
*
|
|
1466
|
-
* @export
|
|
1467
|
-
* @interface VideoDeleteCallResponse
|
|
1468
|
-
*/
|
|
1469
|
-
export interface VideoDeleteCallResponse {
|
|
1470
|
-
/**
|
|
1471
|
-
*
|
|
1472
|
-
* @type {VideoCallResponse}
|
|
1473
|
-
* @memberof VideoDeleteCallResponse
|
|
1474
|
-
*/
|
|
1475
|
-
call: VideoCallResponse;
|
|
1476
|
-
/**
|
|
1477
|
-
* Duration of the request in human-readable format
|
|
1478
|
-
* @type {string}
|
|
1479
|
-
* @memberof VideoDeleteCallResponse
|
|
1480
|
-
*/
|
|
1481
|
-
duration: string;
|
|
1482
|
-
/**
|
|
1483
|
-
*
|
|
1484
|
-
* @type {string}
|
|
1485
|
-
* @memberof VideoDeleteCallResponse
|
|
1486
|
-
*/
|
|
1487
|
-
task_id?: string;
|
|
1488
|
-
}
|
|
1489
|
-
/**
|
|
1490
|
-
*
|
|
1491
|
-
* @export
|
|
1492
|
-
* @interface VideoDeleteExternalStorageResponse
|
|
1493
|
-
*/
|
|
1494
|
-
export interface VideoDeleteExternalStorageResponse {
|
|
1495
|
-
/**
|
|
1496
|
-
* Duration of the request in human-readable format
|
|
1497
|
-
* @type {string}
|
|
1498
|
-
* @memberof VideoDeleteExternalStorageResponse
|
|
1499
|
-
*/
|
|
1500
|
-
duration: string;
|
|
1501
|
-
}
|
|
1502
|
-
/**
|
|
1503
|
-
*
|
|
1504
|
-
* @export
|
|
1505
|
-
* @interface VideoDeleteRecordingResponse
|
|
1506
|
-
*/
|
|
1507
|
-
export interface VideoDeleteRecordingResponse {
|
|
1508
|
-
/**
|
|
1509
|
-
*
|
|
1510
|
-
* @type {string}
|
|
1511
|
-
* @memberof VideoDeleteRecordingResponse
|
|
1512
|
-
*/
|
|
1513
|
-
duration: string;
|
|
1514
|
-
}
|
|
1515
|
-
/**
|
|
1516
|
-
*
|
|
1517
|
-
* @export
|
|
1518
|
-
* @interface VideoDeleteTranscriptionResponse
|
|
1519
|
-
*/
|
|
1520
|
-
export interface VideoDeleteTranscriptionResponse {
|
|
1521
|
-
/**
|
|
1522
|
-
*
|
|
1523
|
-
* @type {string}
|
|
1524
|
-
* @memberof VideoDeleteTranscriptionResponse
|
|
1525
|
-
*/
|
|
1526
|
-
duration: string;
|
|
1527
|
-
}
|
|
1528
|
-
/**
|
|
1529
|
-
*
|
|
1530
|
-
* @export
|
|
1531
|
-
* @interface VideoDevice
|
|
1532
|
-
*/
|
|
1533
|
-
export interface VideoDevice {
|
|
1534
|
-
/**
|
|
1535
|
-
*
|
|
1536
|
-
* @type {string}
|
|
1537
|
-
* @memberof VideoDevice
|
|
1538
|
-
*/
|
|
1539
|
-
created_at: string;
|
|
1540
|
-
/**
|
|
1541
|
-
*
|
|
1542
|
-
* @type {boolean}
|
|
1543
|
-
* @memberof VideoDevice
|
|
1544
|
-
*/
|
|
1545
|
-
disabled?: boolean;
|
|
1546
|
-
/**
|
|
1547
|
-
*
|
|
1548
|
-
* @type {string}
|
|
1549
|
-
* @memberof VideoDevice
|
|
1550
|
-
*/
|
|
1551
|
-
disabled_reason?: string;
|
|
1552
|
-
/**
|
|
1553
|
-
* Device ID
|
|
1554
|
-
* @type {string}
|
|
1555
|
-
* @memberof VideoDevice
|
|
1556
|
-
*/
|
|
1557
|
-
id: string;
|
|
1558
|
-
/**
|
|
1559
|
-
*
|
|
1560
|
-
* @type {string}
|
|
1561
|
-
* @memberof VideoDevice
|
|
1562
|
-
*/
|
|
1563
|
-
push_provider: VideoDevicePushProviderEnum;
|
|
1564
|
-
/**
|
|
1565
|
-
* Name of the push provider configuration
|
|
1566
|
-
* @type {string}
|
|
1567
|
-
* @memberof VideoDevice
|
|
1568
|
-
*/
|
|
1569
|
-
push_provider_name?: string;
|
|
1570
|
-
/**
|
|
1571
|
-
*
|
|
1572
|
-
* @type {string}
|
|
1573
|
-
* @memberof VideoDevice
|
|
1574
|
-
*/
|
|
1575
|
-
user_id: string;
|
|
1576
|
-
/**
|
|
1577
|
-
*
|
|
1578
|
-
* @type {boolean}
|
|
1579
|
-
* @memberof VideoDevice
|
|
1580
|
-
*/
|
|
1581
|
-
voip?: boolean;
|
|
1582
|
-
}
|
|
1583
|
-
|
|
1584
|
-
|
|
1585
|
-
/**
|
|
1586
|
-
* @export
|
|
1587
|
-
*/
|
|
1588
|
-
export const VideoDevicePushProviderEnum = {
|
|
1589
|
-
FIREBASE: 'firebase',
|
|
1590
|
-
APN: 'apn',
|
|
1591
|
-
HUAWEI: 'huawei',
|
|
1592
|
-
XIAOMI: 'xiaomi'
|
|
1593
|
-
} as const;
|
|
1594
|
-
export type VideoDevicePushProviderEnum = typeof VideoDevicePushProviderEnum[keyof typeof VideoDevicePushProviderEnum];
|
|
1595
|
-
|
|
1596
|
-
/**
|
|
1597
|
-
*
|
|
1598
|
-
* @export
|
|
1599
|
-
* @interface VideoEdgeResponse
|
|
1600
|
-
*/
|
|
1601
|
-
export interface VideoEdgeResponse {
|
|
1602
|
-
/**
|
|
1603
|
-
*
|
|
1604
|
-
* @type {string}
|
|
1605
|
-
* @memberof VideoEdgeResponse
|
|
1606
|
-
*/
|
|
1607
|
-
continent_code: string;
|
|
1608
|
-
/**
|
|
1609
|
-
*
|
|
1610
|
-
* @type {string}
|
|
1611
|
-
* @memberof VideoEdgeResponse
|
|
1612
|
-
*/
|
|
1613
|
-
country_iso_code: string;
|
|
1614
|
-
/**
|
|
1615
|
-
*
|
|
1616
|
-
* @type {number}
|
|
1617
|
-
* @memberof VideoEdgeResponse
|
|
1618
|
-
*/
|
|
1619
|
-
green: number;
|
|
1620
|
-
/**
|
|
1621
|
-
*
|
|
1622
|
-
* @type {string}
|
|
1623
|
-
* @memberof VideoEdgeResponse
|
|
1624
|
-
*/
|
|
1625
|
-
id: string;
|
|
1626
|
-
/**
|
|
1627
|
-
*
|
|
1628
|
-
* @type {string}
|
|
1629
|
-
* @memberof VideoEdgeResponse
|
|
1630
|
-
*/
|
|
1631
|
-
latency_test_url: string;
|
|
1632
|
-
/**
|
|
1633
|
-
*
|
|
1634
|
-
* @type {number}
|
|
1635
|
-
* @memberof VideoEdgeResponse
|
|
1636
|
-
*/
|
|
1637
|
-
latitude: number;
|
|
1638
|
-
/**
|
|
1639
|
-
*
|
|
1640
|
-
* @type {number}
|
|
1641
|
-
* @memberof VideoEdgeResponse
|
|
1642
|
-
*/
|
|
1643
|
-
longitude: number;
|
|
1644
|
-
/**
|
|
1645
|
-
*
|
|
1646
|
-
* @type {number}
|
|
1647
|
-
* @memberof VideoEdgeResponse
|
|
1648
|
-
*/
|
|
1649
|
-
red: number;
|
|
1650
|
-
/**
|
|
1651
|
-
*
|
|
1652
|
-
* @type {string}
|
|
1653
|
-
* @memberof VideoEdgeResponse
|
|
1654
|
-
*/
|
|
1655
|
-
subdivision_iso_code: string;
|
|
1656
|
-
/**
|
|
1657
|
-
*
|
|
1658
|
-
* @type {number}
|
|
1659
|
-
* @memberof VideoEdgeResponse
|
|
1660
|
-
*/
|
|
1661
|
-
yellow: number;
|
|
1662
|
-
}
|
|
1663
|
-
/**
|
|
1664
|
-
*
|
|
1665
|
-
* @export
|
|
1666
|
-
* @interface VideoEgressHLSResponse
|
|
1667
|
-
*/
|
|
1668
|
-
export interface VideoEgressHLSResponse {
|
|
1669
|
-
/**
|
|
1670
|
-
*
|
|
1671
|
-
* @type {string}
|
|
1672
|
-
* @memberof VideoEgressHLSResponse
|
|
1673
|
-
*/
|
|
1674
|
-
playlist_url: string;
|
|
1675
|
-
}
|
|
1676
|
-
/**
|
|
1677
|
-
*
|
|
1678
|
-
* @export
|
|
1679
|
-
* @interface VideoEgressRTMPResponse
|
|
1680
|
-
*/
|
|
1681
|
-
export interface VideoEgressRTMPResponse {
|
|
1682
|
-
/**
|
|
1683
|
-
*
|
|
1684
|
-
* @type {string}
|
|
1685
|
-
* @memberof VideoEgressRTMPResponse
|
|
1686
|
-
*/
|
|
1687
|
-
name: string;
|
|
1688
|
-
/**
|
|
1689
|
-
*
|
|
1690
|
-
* @type {string}
|
|
1691
|
-
* @memberof VideoEgressRTMPResponse
|
|
1692
|
-
*/
|
|
1693
|
-
stream_key: string;
|
|
1694
|
-
/**
|
|
1695
|
-
*
|
|
1696
|
-
* @type {string}
|
|
1697
|
-
* @memberof VideoEgressRTMPResponse
|
|
1698
|
-
*/
|
|
1699
|
-
url: string;
|
|
1700
|
-
}
|
|
1701
|
-
/**
|
|
1702
|
-
*
|
|
1703
|
-
* @export
|
|
1704
|
-
* @interface VideoEgressResponse
|
|
1705
|
-
*/
|
|
1706
|
-
export interface VideoEgressResponse {
|
|
1707
|
-
/**
|
|
1708
|
-
*
|
|
1709
|
-
* @type {boolean}
|
|
1710
|
-
* @memberof VideoEgressResponse
|
|
1711
|
-
*/
|
|
1712
|
-
broadcasting: boolean;
|
|
1713
|
-
/**
|
|
1714
|
-
*
|
|
1715
|
-
* @type {VideoEgressHLSResponse}
|
|
1716
|
-
* @memberof VideoEgressResponse
|
|
1717
|
-
*/
|
|
1718
|
-
hls?: VideoEgressHLSResponse;
|
|
1719
|
-
/**
|
|
1720
|
-
*
|
|
1721
|
-
* @type {Array<VideoEgressRTMPResponse>}
|
|
1722
|
-
* @memberof VideoEgressResponse
|
|
1723
|
-
*/
|
|
1724
|
-
rtmps: Array<VideoEgressRTMPResponse>;
|
|
1725
|
-
}
|
|
1726
|
-
/**
|
|
1727
|
-
*
|
|
1728
|
-
* @export
|
|
1729
|
-
* @interface VideoEndCallResponse
|
|
1730
|
-
*/
|
|
1731
|
-
export interface VideoEndCallResponse {
|
|
1732
|
-
/**
|
|
1733
|
-
*
|
|
1734
|
-
* @type {string}
|
|
1735
|
-
* @memberof VideoEndCallResponse
|
|
1736
|
-
*/
|
|
1737
|
-
duration: string;
|
|
1738
|
-
}
|
|
1739
|
-
/**
|
|
1740
|
-
*
|
|
1741
|
-
* @export
|
|
1742
|
-
* @interface VideoEventNotificationSettings
|
|
1743
|
-
*/
|
|
1744
|
-
export interface VideoEventNotificationSettings {
|
|
1745
|
-
/**
|
|
1746
|
-
*
|
|
1747
|
-
* @type {VideoAPNS}
|
|
1748
|
-
* @memberof VideoEventNotificationSettings
|
|
1749
|
-
*/
|
|
1750
|
-
apns?: VideoAPNS;
|
|
1751
|
-
/**
|
|
1752
|
-
*
|
|
1753
|
-
* @type {boolean}
|
|
1754
|
-
* @memberof VideoEventNotificationSettings
|
|
1755
|
-
*/
|
|
1756
|
-
enabled?: boolean;
|
|
1757
|
-
}
|
|
1758
|
-
/**
|
|
1759
|
-
*
|
|
1760
|
-
* @export
|
|
1761
|
-
* @interface VideoExternalStorageResponse
|
|
1762
|
-
*/
|
|
1763
|
-
export interface VideoExternalStorageResponse {
|
|
1764
|
-
/**
|
|
1765
|
-
*
|
|
1766
|
-
* @type {string}
|
|
1767
|
-
* @memberof VideoExternalStorageResponse
|
|
1768
|
-
*/
|
|
1769
|
-
bucket: string;
|
|
1770
|
-
/**
|
|
1771
|
-
*
|
|
1772
|
-
* @type {string}
|
|
1773
|
-
* @memberof VideoExternalStorageResponse
|
|
1774
|
-
*/
|
|
1775
|
-
name: string;
|
|
1776
|
-
/**
|
|
1777
|
-
*
|
|
1778
|
-
* @type {string}
|
|
1779
|
-
* @memberof VideoExternalStorageResponse
|
|
1780
|
-
*/
|
|
1781
|
-
path: string;
|
|
1782
|
-
/**
|
|
1783
|
-
*
|
|
1784
|
-
* @type {string}
|
|
1785
|
-
* @memberof VideoExternalStorageResponse
|
|
1786
|
-
*/
|
|
1787
|
-
type: VideoExternalStorageResponseTypeEnum;
|
|
1788
|
-
}
|
|
1789
|
-
|
|
1790
|
-
|
|
1791
|
-
/**
|
|
1792
|
-
* @export
|
|
1793
|
-
*/
|
|
1794
|
-
export const VideoExternalStorageResponseTypeEnum = {
|
|
1795
|
-
S3: 's3',
|
|
1796
|
-
GCS: 'gcs',
|
|
1797
|
-
ABS: 'abs'
|
|
1798
|
-
} as const;
|
|
1799
|
-
export type VideoExternalStorageResponseTypeEnum = typeof VideoExternalStorageResponseTypeEnum[keyof typeof VideoExternalStorageResponseTypeEnum];
|
|
1800
|
-
|
|
1801
|
-
/**
|
|
1802
|
-
*
|
|
1803
|
-
* @export
|
|
1804
|
-
* @interface VideoGeofenceSettingsRequest
|
|
1805
|
-
*/
|
|
1806
|
-
export interface VideoGeofenceSettingsRequest {
|
|
1807
|
-
/**
|
|
1808
|
-
*
|
|
1809
|
-
* @type {Array<string>}
|
|
1810
|
-
* @memberof VideoGeofenceSettingsRequest
|
|
1811
|
-
*/
|
|
1812
|
-
names?: Array<string>;
|
|
1813
|
-
}
|
|
1814
|
-
/**
|
|
1815
|
-
*
|
|
1816
|
-
* @export
|
|
1817
|
-
* @interface VideoGeofenceSettingsResponse
|
|
1818
|
-
*/
|
|
1819
|
-
export interface VideoGeofenceSettingsResponse {
|
|
1820
|
-
/**
|
|
1821
|
-
*
|
|
1822
|
-
* @type {Array<string>}
|
|
1823
|
-
* @memberof VideoGeofenceSettingsResponse
|
|
1824
|
-
*/
|
|
1825
|
-
names: Array<string>;
|
|
1826
|
-
}
|
|
1827
|
-
/**
|
|
1828
|
-
*
|
|
1829
|
-
* @export
|
|
1830
|
-
* @interface VideoGeolocationResult
|
|
1831
|
-
*/
|
|
1832
|
-
export interface VideoGeolocationResult {
|
|
1833
|
-
/**
|
|
1834
|
-
*
|
|
1835
|
-
* @type {number}
|
|
1836
|
-
* @memberof VideoGeolocationResult
|
|
1837
|
-
*/
|
|
1838
|
-
accuracy_radius: number;
|
|
1839
|
-
/**
|
|
1840
|
-
*
|
|
1841
|
-
* @type {string}
|
|
1842
|
-
* @memberof VideoGeolocationResult
|
|
1843
|
-
*/
|
|
1844
|
-
city: string;
|
|
1845
|
-
/**
|
|
1846
|
-
*
|
|
1847
|
-
* @type {string}
|
|
1848
|
-
* @memberof VideoGeolocationResult
|
|
1849
|
-
*/
|
|
1850
|
-
continent: string;
|
|
1851
|
-
/**
|
|
1852
|
-
*
|
|
1853
|
-
* @type {string}
|
|
1854
|
-
* @memberof VideoGeolocationResult
|
|
1855
|
-
*/
|
|
1856
|
-
continent_code: string;
|
|
1857
|
-
/**
|
|
1858
|
-
*
|
|
1859
|
-
* @type {string}
|
|
1860
|
-
* @memberof VideoGeolocationResult
|
|
1861
|
-
*/
|
|
1862
|
-
country: string;
|
|
1863
|
-
/**
|
|
1864
|
-
*
|
|
1865
|
-
* @type {string}
|
|
1866
|
-
* @memberof VideoGeolocationResult
|
|
1867
|
-
*/
|
|
1868
|
-
country_iso_code: string;
|
|
1869
|
-
/**
|
|
1870
|
-
*
|
|
1871
|
-
* @type {number}
|
|
1872
|
-
* @memberof VideoGeolocationResult
|
|
1873
|
-
*/
|
|
1874
|
-
latitude: number;
|
|
1875
|
-
/**
|
|
1876
|
-
*
|
|
1877
|
-
* @type {number}
|
|
1878
|
-
* @memberof VideoGeolocationResult
|
|
1879
|
-
*/
|
|
1880
|
-
longitude: number;
|
|
1881
|
-
/**
|
|
1882
|
-
*
|
|
1883
|
-
* @type {string}
|
|
1884
|
-
* @memberof VideoGeolocationResult
|
|
1885
|
-
*/
|
|
1886
|
-
subdivision: string;
|
|
1887
|
-
/**
|
|
1888
|
-
*
|
|
1889
|
-
* @type {string}
|
|
1890
|
-
* @memberof VideoGeolocationResult
|
|
1891
|
-
*/
|
|
1892
|
-
subdivision_iso_code: string;
|
|
1893
|
-
}
|
|
1894
|
-
/**
|
|
1895
|
-
*
|
|
1896
|
-
* @export
|
|
1897
|
-
* @interface VideoGetCallResponse
|
|
1898
|
-
*/
|
|
1899
|
-
export interface VideoGetCallResponse {
|
|
1900
|
-
/**
|
|
1901
|
-
*
|
|
1902
|
-
* @type {VideoCallResponse}
|
|
1903
|
-
* @memberof VideoGetCallResponse
|
|
1904
|
-
*/
|
|
1905
|
-
call: VideoCallResponse;
|
|
1906
|
-
/**
|
|
1907
|
-
*
|
|
1908
|
-
* @type {string}
|
|
1909
|
-
* @memberof VideoGetCallResponse
|
|
1910
|
-
*/
|
|
1911
|
-
duration: string;
|
|
1912
|
-
/**
|
|
1913
|
-
*
|
|
1914
|
-
* @type {Array<VideoMemberResponse>}
|
|
1915
|
-
* @memberof VideoGetCallResponse
|
|
1916
|
-
*/
|
|
1917
|
-
members: Array<VideoMemberResponse>;
|
|
1918
|
-
/**
|
|
1919
|
-
*
|
|
1920
|
-
* @type {Array<VideoOwnCapability>}
|
|
1921
|
-
* @memberof VideoGetCallResponse
|
|
1922
|
-
*/
|
|
1923
|
-
own_capabilities: Array<VideoOwnCapability>;
|
|
1924
|
-
}
|
|
1925
|
-
/**
|
|
1926
|
-
*
|
|
1927
|
-
* @export
|
|
1928
|
-
* @interface VideoGetCallStatsResponse
|
|
1929
|
-
*/
|
|
1930
|
-
export interface VideoGetCallStatsResponse {
|
|
1931
|
-
/**
|
|
1932
|
-
*
|
|
1933
|
-
* @type {VideoAggregatedStats}
|
|
1934
|
-
* @memberof VideoGetCallStatsResponse
|
|
1935
|
-
*/
|
|
1936
|
-
aggregated?: VideoAggregatedStats;
|
|
1937
|
-
/**
|
|
1938
|
-
*
|
|
1939
|
-
* @type {number}
|
|
1940
|
-
* @memberof VideoGetCallStatsResponse
|
|
1941
|
-
*/
|
|
1942
|
-
call_duration_seconds: number;
|
|
1943
|
-
/**
|
|
1944
|
-
*
|
|
1945
|
-
* @type {string}
|
|
1946
|
-
* @memberof VideoGetCallStatsResponse
|
|
1947
|
-
*/
|
|
1948
|
-
call_status: string;
|
|
1949
|
-
/**
|
|
1950
|
-
*
|
|
1951
|
-
* @type {VideoCallTimeline}
|
|
1952
|
-
* @memberof VideoGetCallStatsResponse
|
|
1953
|
-
*/
|
|
1954
|
-
call_timeline?: VideoCallTimeline;
|
|
1955
|
-
/**
|
|
1956
|
-
* Duration of the request in human-readable format
|
|
1957
|
-
* @type {string}
|
|
1958
|
-
* @memberof VideoGetCallStatsResponse
|
|
1959
|
-
*/
|
|
1960
|
-
duration: string;
|
|
1961
|
-
/**
|
|
1962
|
-
*
|
|
1963
|
-
* @type {VideoTimeStats}
|
|
1964
|
-
* @memberof VideoGetCallStatsResponse
|
|
1965
|
-
*/
|
|
1966
|
-
jitter?: VideoTimeStats;
|
|
1967
|
-
/**
|
|
1968
|
-
*
|
|
1969
|
-
* @type {VideoTimeStats}
|
|
1970
|
-
* @memberof VideoGetCallStatsResponse
|
|
1971
|
-
*/
|
|
1972
|
-
latency?: VideoTimeStats;
|
|
1973
|
-
/**
|
|
1974
|
-
*
|
|
1975
|
-
* @type {number}
|
|
1976
|
-
* @memberof VideoGetCallStatsResponse
|
|
1977
|
-
*/
|
|
1978
|
-
max_freezes_duration_seconds: number;
|
|
1979
|
-
/**
|
|
1980
|
-
*
|
|
1981
|
-
* @type {number}
|
|
1982
|
-
* @memberof VideoGetCallStatsResponse
|
|
1983
|
-
*/
|
|
1984
|
-
max_participants: number;
|
|
1985
|
-
/**
|
|
1986
|
-
*
|
|
1987
|
-
* @type {number}
|
|
1988
|
-
* @memberof VideoGetCallStatsResponse
|
|
1989
|
-
*/
|
|
1990
|
-
max_total_quality_limitation_duration_seconds: number;
|
|
1991
|
-
/**
|
|
1992
|
-
*
|
|
1993
|
-
* @type {Array<VideoUserStats>}
|
|
1994
|
-
* @memberof VideoGetCallStatsResponse
|
|
1995
|
-
*/
|
|
1996
|
-
participant_report: Array<VideoUserStats>;
|
|
1997
|
-
/**
|
|
1998
|
-
*
|
|
1999
|
-
* @type {number}
|
|
2000
|
-
* @memberof VideoGetCallStatsResponse
|
|
2001
|
-
*/
|
|
2002
|
-
publishing_participants: number;
|
|
2003
|
-
/**
|
|
2004
|
-
*
|
|
2005
|
-
* @type {number}
|
|
2006
|
-
* @memberof VideoGetCallStatsResponse
|
|
2007
|
-
*/
|
|
2008
|
-
quality_score: number;
|
|
2009
|
-
/**
|
|
2010
|
-
*
|
|
2011
|
-
* @type {number}
|
|
2012
|
-
* @memberof VideoGetCallStatsResponse
|
|
2013
|
-
*/
|
|
2014
|
-
sfu_count: number;
|
|
2015
|
-
/**
|
|
2016
|
-
*
|
|
2017
|
-
* @type {Array<VideoSFULocationResponse>}
|
|
2018
|
-
* @memberof VideoGetCallStatsResponse
|
|
2019
|
-
*/
|
|
2020
|
-
sfus: Array<VideoSFULocationResponse>;
|
|
2021
|
-
}
|
|
2022
|
-
/**
|
|
2023
|
-
*
|
|
2024
|
-
* @export
|
|
2025
|
-
* @interface VideoGetCallTypeResponse
|
|
2026
|
-
*/
|
|
2027
|
-
export interface VideoGetCallTypeResponse {
|
|
2028
|
-
/**
|
|
2029
|
-
*
|
|
2030
|
-
* @type {string}
|
|
2031
|
-
* @memberof VideoGetCallTypeResponse
|
|
2032
|
-
*/
|
|
2033
|
-
created_at: string;
|
|
2034
|
-
/**
|
|
2035
|
-
*
|
|
2036
|
-
* @type {string}
|
|
2037
|
-
* @memberof VideoGetCallTypeResponse
|
|
2038
|
-
*/
|
|
2039
|
-
duration: string;
|
|
2040
|
-
/**
|
|
2041
|
-
*
|
|
2042
|
-
* @type {string}
|
|
2043
|
-
* @memberof VideoGetCallTypeResponse
|
|
2044
|
-
*/
|
|
2045
|
-
external_storage?: string;
|
|
2046
|
-
/**
|
|
2047
|
-
*
|
|
2048
|
-
* @type {{ [key: string]: Array<string>; }}
|
|
2049
|
-
* @memberof VideoGetCallTypeResponse
|
|
2050
|
-
*/
|
|
2051
|
-
grants: { [key: string]: Array<string>; };
|
|
2052
|
-
/**
|
|
2053
|
-
*
|
|
2054
|
-
* @type {string}
|
|
2055
|
-
* @memberof VideoGetCallTypeResponse
|
|
2056
|
-
*/
|
|
2057
|
-
name: string;
|
|
2058
|
-
/**
|
|
2059
|
-
*
|
|
2060
|
-
* @type {VideoNotificationSettings}
|
|
2061
|
-
* @memberof VideoGetCallTypeResponse
|
|
2062
|
-
*/
|
|
2063
|
-
notification_settings: VideoNotificationSettings;
|
|
2064
|
-
/**
|
|
2065
|
-
*
|
|
2066
|
-
* @type {VideoCallSettingsResponse}
|
|
2067
|
-
* @memberof VideoGetCallTypeResponse
|
|
2068
|
-
*/
|
|
2069
|
-
settings: VideoCallSettingsResponse;
|
|
2070
|
-
/**
|
|
2071
|
-
*
|
|
2072
|
-
* @type {string}
|
|
2073
|
-
* @memberof VideoGetCallTypeResponse
|
|
2074
|
-
*/
|
|
2075
|
-
updated_at: string;
|
|
2076
|
-
}
|
|
2077
|
-
/**
|
|
2078
|
-
*
|
|
2079
|
-
* @export
|
|
2080
|
-
* @interface VideoGetEdgesResponse
|
|
2081
|
-
*/
|
|
2082
|
-
export interface VideoGetEdgesResponse {
|
|
2083
|
-
/**
|
|
2084
|
-
* Duration of the request in human-readable format
|
|
2085
|
-
* @type {string}
|
|
2086
|
-
* @memberof VideoGetEdgesResponse
|
|
2087
|
-
*/
|
|
2088
|
-
duration: string;
|
|
2089
|
-
/**
|
|
2090
|
-
*
|
|
2091
|
-
* @type {Array<VideoEdgeResponse>}
|
|
2092
|
-
* @memberof VideoGetEdgesResponse
|
|
2093
|
-
*/
|
|
2094
|
-
edges: Array<VideoEdgeResponse>;
|
|
2095
|
-
}
|
|
2096
|
-
/**
|
|
2097
|
-
*
|
|
2098
|
-
* @export
|
|
2099
|
-
* @interface VideoGetOrCreateCallRequest
|
|
2100
|
-
*/
|
|
2101
|
-
export interface VideoGetOrCreateCallRequest {
|
|
2102
|
-
/**
|
|
2103
|
-
*
|
|
2104
|
-
* @type {VideoCallRequest}
|
|
2105
|
-
* @memberof VideoGetOrCreateCallRequest
|
|
2106
|
-
*/
|
|
2107
|
-
data?: VideoCallRequest;
|
|
2108
|
-
/**
|
|
2109
|
-
*
|
|
2110
|
-
* @type {number}
|
|
2111
|
-
* @memberof VideoGetOrCreateCallRequest
|
|
2112
|
-
*/
|
|
2113
|
-
members_limit?: number;
|
|
2114
|
-
/**
|
|
2115
|
-
* if provided it sends a notification event to the members for this call
|
|
2116
|
-
* @type {boolean}
|
|
2117
|
-
* @memberof VideoGetOrCreateCallRequest
|
|
2118
|
-
*/
|
|
2119
|
-
notify?: boolean;
|
|
2120
|
-
/**
|
|
2121
|
-
* if provided it sends a ring event to the members for this call
|
|
2122
|
-
* @type {boolean}
|
|
2123
|
-
* @memberof VideoGetOrCreateCallRequest
|
|
2124
|
-
*/
|
|
2125
|
-
ring?: boolean;
|
|
2126
|
-
}
|
|
2127
|
-
/**
|
|
2128
|
-
*
|
|
2129
|
-
* @export
|
|
2130
|
-
* @interface VideoGetOrCreateCallResponse
|
|
2131
|
-
*/
|
|
2132
|
-
export interface VideoGetOrCreateCallResponse {
|
|
2133
|
-
/**
|
|
2134
|
-
*
|
|
2135
|
-
* @type {VideoCallResponse}
|
|
2136
|
-
* @memberof VideoGetOrCreateCallResponse
|
|
2137
|
-
*/
|
|
2138
|
-
call: VideoCallResponse;
|
|
2139
|
-
/**
|
|
2140
|
-
*
|
|
2141
|
-
* @type {boolean}
|
|
2142
|
-
* @memberof VideoGetOrCreateCallResponse
|
|
2143
|
-
*/
|
|
2144
|
-
created: boolean;
|
|
2145
|
-
/**
|
|
2146
|
-
*
|
|
2147
|
-
* @type {string}
|
|
2148
|
-
* @memberof VideoGetOrCreateCallResponse
|
|
2149
|
-
*/
|
|
2150
|
-
duration: string;
|
|
2151
|
-
/**
|
|
2152
|
-
*
|
|
2153
|
-
* @type {Array<VideoMemberResponse>}
|
|
2154
|
-
* @memberof VideoGetOrCreateCallResponse
|
|
2155
|
-
*/
|
|
2156
|
-
members: Array<VideoMemberResponse>;
|
|
2157
|
-
/**
|
|
2158
|
-
*
|
|
2159
|
-
* @type {Array<VideoOwnCapability>}
|
|
2160
|
-
* @memberof VideoGetOrCreateCallResponse
|
|
2161
|
-
*/
|
|
2162
|
-
own_capabilities: Array<VideoOwnCapability>;
|
|
2163
|
-
}
|
|
2164
|
-
/**
|
|
2165
|
-
*
|
|
2166
|
-
* @export
|
|
2167
|
-
* @interface VideoGoLiveRequest
|
|
2168
|
-
*/
|
|
2169
|
-
export interface VideoGoLiveRequest {
|
|
2170
|
-
/**
|
|
2171
|
-
*
|
|
2172
|
-
* @type {string}
|
|
2173
|
-
* @memberof VideoGoLiveRequest
|
|
2174
|
-
*/
|
|
2175
|
-
recording_storage_name?: string;
|
|
2176
|
-
/**
|
|
2177
|
-
*
|
|
2178
|
-
* @type {boolean}
|
|
2179
|
-
* @memberof VideoGoLiveRequest
|
|
2180
|
-
*/
|
|
2181
|
-
start_hls?: boolean;
|
|
2182
|
-
/**
|
|
2183
|
-
*
|
|
2184
|
-
* @type {boolean}
|
|
2185
|
-
* @memberof VideoGoLiveRequest
|
|
2186
|
-
*/
|
|
2187
|
-
start_recording?: boolean;
|
|
2188
|
-
/**
|
|
2189
|
-
*
|
|
2190
|
-
* @type {boolean}
|
|
2191
|
-
* @memberof VideoGoLiveRequest
|
|
2192
|
-
*/
|
|
2193
|
-
start_transcription?: boolean;
|
|
2194
|
-
/**
|
|
2195
|
-
*
|
|
2196
|
-
* @type {string}
|
|
2197
|
-
* @memberof VideoGoLiveRequest
|
|
2198
|
-
*/
|
|
2199
|
-
transcription_storage_name?: string;
|
|
2200
|
-
}
|
|
2201
|
-
/**
|
|
2202
|
-
*
|
|
2203
|
-
* @export
|
|
2204
|
-
* @interface VideoGoLiveResponse
|
|
2205
|
-
*/
|
|
2206
|
-
export interface VideoGoLiveResponse {
|
|
2207
|
-
/**
|
|
2208
|
-
*
|
|
2209
|
-
* @type {VideoCallResponse}
|
|
2210
|
-
* @memberof VideoGoLiveResponse
|
|
2211
|
-
*/
|
|
2212
|
-
call: VideoCallResponse;
|
|
2213
|
-
/**
|
|
2214
|
-
* Duration of the request in human-readable format
|
|
2215
|
-
* @type {string}
|
|
2216
|
-
* @memberof VideoGoLiveResponse
|
|
2217
|
-
*/
|
|
2218
|
-
duration: string;
|
|
2219
|
-
}
|
|
2220
|
-
/**
|
|
2221
|
-
*
|
|
2222
|
-
* @export
|
|
2223
|
-
* @interface VideoHLSSettingsRequest
|
|
2224
|
-
*/
|
|
2225
|
-
export interface VideoHLSSettingsRequest {
|
|
2226
|
-
/**
|
|
2227
|
-
*
|
|
2228
|
-
* @type {boolean}
|
|
2229
|
-
* @memberof VideoHLSSettingsRequest
|
|
2230
|
-
*/
|
|
2231
|
-
auto_on?: boolean;
|
|
2232
|
-
/**
|
|
2233
|
-
*
|
|
2234
|
-
* @type {boolean}
|
|
2235
|
-
* @memberof VideoHLSSettingsRequest
|
|
2236
|
-
*/
|
|
2237
|
-
enabled?: boolean;
|
|
2238
|
-
/**
|
|
2239
|
-
*
|
|
2240
|
-
* @type {VideoLayoutSettingsRequest}
|
|
2241
|
-
* @memberof VideoHLSSettingsRequest
|
|
2242
|
-
*/
|
|
2243
|
-
layout?: VideoLayoutSettingsRequest;
|
|
2244
|
-
/**
|
|
2245
|
-
*
|
|
2246
|
-
* @type {Array<string>}
|
|
2247
|
-
* @memberof VideoHLSSettingsRequest
|
|
2248
|
-
*/
|
|
2249
|
-
quality_tracks: Array<string>;
|
|
2250
|
-
}
|
|
2251
|
-
/**
|
|
2252
|
-
*
|
|
2253
|
-
* @export
|
|
2254
|
-
* @interface VideoHLSSettingsResponse
|
|
2255
|
-
*/
|
|
2256
|
-
export interface VideoHLSSettingsResponse {
|
|
2257
|
-
/**
|
|
2258
|
-
*
|
|
2259
|
-
* @type {boolean}
|
|
2260
|
-
* @memberof VideoHLSSettingsResponse
|
|
2261
|
-
*/
|
|
2262
|
-
auto_on: boolean;
|
|
2263
|
-
/**
|
|
2264
|
-
*
|
|
2265
|
-
* @type {boolean}
|
|
2266
|
-
* @memberof VideoHLSSettingsResponse
|
|
2267
|
-
*/
|
|
2268
|
-
enabled: boolean;
|
|
2269
|
-
/**
|
|
2270
|
-
*
|
|
2271
|
-
* @type {VideoLayoutSettingsResponse}
|
|
2272
|
-
* @memberof VideoHLSSettingsResponse
|
|
2273
|
-
*/
|
|
2274
|
-
layout: VideoLayoutSettingsResponse;
|
|
2275
|
-
/**
|
|
2276
|
-
*
|
|
2277
|
-
* @type {Array<string>}
|
|
2278
|
-
* @memberof VideoHLSSettingsResponse
|
|
2279
|
-
*/
|
|
2280
|
-
quality_tracks: Array<string>;
|
|
2281
|
-
}
|
|
2282
|
-
/**
|
|
2283
|
-
*
|
|
2284
|
-
* @export
|
|
2285
|
-
* @interface VideoLayoutSettingsRequest
|
|
2286
|
-
*/
|
|
2287
|
-
export interface VideoLayoutSettingsRequest {
|
|
2288
|
-
/**
|
|
2289
|
-
*
|
|
2290
|
-
* @type {string}
|
|
2291
|
-
* @memberof VideoLayoutSettingsRequest
|
|
2292
|
-
*/
|
|
2293
|
-
external_app_url?: string;
|
|
2294
|
-
/**
|
|
2295
|
-
*
|
|
2296
|
-
* @type {string}
|
|
2297
|
-
* @memberof VideoLayoutSettingsRequest
|
|
2298
|
-
*/
|
|
2299
|
-
external_css_url?: string;
|
|
2300
|
-
/**
|
|
2301
|
-
*
|
|
2302
|
-
* @type {string}
|
|
2303
|
-
* @memberof VideoLayoutSettingsRequest
|
|
2304
|
-
*/
|
|
2305
|
-
name: VideoLayoutSettingsRequestNameEnum;
|
|
2306
|
-
/**
|
|
2307
|
-
*
|
|
2308
|
-
* @type {{ [key: string]: any; }}
|
|
2309
|
-
* @memberof VideoLayoutSettingsRequest
|
|
2310
|
-
*/
|
|
2311
|
-
options?: { [key: string]: any; };
|
|
2312
|
-
}
|
|
2313
|
-
|
|
2314
|
-
|
|
2315
|
-
/**
|
|
2316
|
-
* @export
|
|
2317
|
-
*/
|
|
2318
|
-
export const VideoLayoutSettingsRequestNameEnum = {
|
|
2319
|
-
SPOTLIGHT: 'spotlight',
|
|
2320
|
-
GRID: 'grid',
|
|
2321
|
-
SINGLE_PARTICIPANT: 'single-participant',
|
|
2322
|
-
MOBILE: 'mobile',
|
|
2323
|
-
CUSTOM: 'custom'
|
|
2324
|
-
} as const;
|
|
2325
|
-
export type VideoLayoutSettingsRequestNameEnum = typeof VideoLayoutSettingsRequestNameEnum[keyof typeof VideoLayoutSettingsRequestNameEnum];
|
|
2326
|
-
|
|
2327
|
-
/**
|
|
2328
|
-
*
|
|
2329
|
-
* @export
|
|
2330
|
-
* @interface VideoLayoutSettingsResponse
|
|
2331
|
-
*/
|
|
2332
|
-
export interface VideoLayoutSettingsResponse {
|
|
2333
|
-
/**
|
|
2334
|
-
*
|
|
2335
|
-
* @type {string}
|
|
2336
|
-
* @memberof VideoLayoutSettingsResponse
|
|
2337
|
-
*/
|
|
2338
|
-
external_app_url: string;
|
|
2339
|
-
/**
|
|
2340
|
-
*
|
|
2341
|
-
* @type {string}
|
|
2342
|
-
* @memberof VideoLayoutSettingsResponse
|
|
2343
|
-
*/
|
|
2344
|
-
external_css_url: string;
|
|
2345
|
-
/**
|
|
2346
|
-
*
|
|
2347
|
-
* @type {string}
|
|
2348
|
-
* @memberof VideoLayoutSettingsResponse
|
|
2349
|
-
*/
|
|
2350
|
-
name: VideoLayoutSettingsResponseNameEnum;
|
|
2351
|
-
/**
|
|
2352
|
-
*
|
|
2353
|
-
* @type {{ [key: string]: any; }}
|
|
2354
|
-
* @memberof VideoLayoutSettingsResponse
|
|
2355
|
-
*/
|
|
2356
|
-
options?: { [key: string]: any; };
|
|
2357
|
-
}
|
|
2358
|
-
|
|
2359
|
-
|
|
2360
|
-
/**
|
|
2361
|
-
* @export
|
|
2362
|
-
*/
|
|
2363
|
-
export const VideoLayoutSettingsResponseNameEnum = {
|
|
2364
|
-
SPOTLIGHT: 'spotlight',
|
|
2365
|
-
GRID: 'grid',
|
|
2366
|
-
SINGLE_PARTICIPANT: 'single-participant',
|
|
2367
|
-
MOBILE: 'mobile',
|
|
2368
|
-
CUSTOM: 'custom'
|
|
2369
|
-
} as const;
|
|
2370
|
-
export type VideoLayoutSettingsResponseNameEnum = typeof VideoLayoutSettingsResponseNameEnum[keyof typeof VideoLayoutSettingsResponseNameEnum];
|
|
2371
|
-
|
|
2372
|
-
/**
|
|
2373
|
-
*
|
|
2374
|
-
* @export
|
|
2375
|
-
* @interface VideoLimitsSettingsRequest
|
|
2376
|
-
*/
|
|
2377
|
-
export interface VideoLimitsSettingsRequest {
|
|
2378
|
-
/**
|
|
2379
|
-
*
|
|
2380
|
-
* @type {number}
|
|
2381
|
-
* @memberof VideoLimitsSettingsRequest
|
|
2382
|
-
*/
|
|
2383
|
-
max_duration_seconds?: number;
|
|
2384
|
-
/**
|
|
2385
|
-
*
|
|
2386
|
-
* @type {number}
|
|
2387
|
-
* @memberof VideoLimitsSettingsRequest
|
|
2388
|
-
*/
|
|
2389
|
-
max_participants?: number;
|
|
2390
|
-
}
|
|
2391
|
-
/**
|
|
2392
|
-
*
|
|
2393
|
-
* @export
|
|
2394
|
-
* @interface VideoLimitsSettingsResponse
|
|
2395
|
-
*/
|
|
2396
|
-
export interface VideoLimitsSettingsResponse {
|
|
2397
|
-
/**
|
|
2398
|
-
*
|
|
2399
|
-
* @type {number}
|
|
2400
|
-
* @memberof VideoLimitsSettingsResponse
|
|
2401
|
-
*/
|
|
2402
|
-
max_duration_seconds?: number;
|
|
2403
|
-
/**
|
|
2404
|
-
*
|
|
2405
|
-
* @type {number}
|
|
2406
|
-
* @memberof VideoLimitsSettingsResponse
|
|
2407
|
-
*/
|
|
2408
|
-
max_participants?: number;
|
|
2409
|
-
}
|
|
2410
|
-
/**
|
|
2411
|
-
*
|
|
2412
|
-
* @export
|
|
2413
|
-
* @interface VideoListCallTypeResponse
|
|
2414
|
-
*/
|
|
2415
|
-
export interface VideoListCallTypeResponse {
|
|
2416
|
-
/**
|
|
2417
|
-
*
|
|
2418
|
-
* @type {{ [key: string]: VideoCallTypeResponse; }}
|
|
2419
|
-
* @memberof VideoListCallTypeResponse
|
|
2420
|
-
*/
|
|
2421
|
-
call_types: { [key: string]: VideoCallTypeResponse; };
|
|
2422
|
-
/**
|
|
2423
|
-
*
|
|
2424
|
-
* @type {string}
|
|
2425
|
-
* @memberof VideoListCallTypeResponse
|
|
2426
|
-
*/
|
|
2427
|
-
duration: string;
|
|
2428
|
-
}
|
|
2429
|
-
/**
|
|
2430
|
-
*
|
|
2431
|
-
* @export
|
|
2432
|
-
* @interface VideoListDevicesResponse
|
|
2433
|
-
*/
|
|
2434
|
-
export interface VideoListDevicesResponse {
|
|
2435
|
-
/**
|
|
2436
|
-
* List of devices
|
|
2437
|
-
* @type {Array<VideoDevice>}
|
|
2438
|
-
* @memberof VideoListDevicesResponse
|
|
2439
|
-
*/
|
|
2440
|
-
devices: Array<VideoDevice>;
|
|
2441
|
-
/**
|
|
2442
|
-
*
|
|
2443
|
-
* @type {string}
|
|
2444
|
-
* @memberof VideoListDevicesResponse
|
|
2445
|
-
*/
|
|
2446
|
-
duration: string;
|
|
2447
|
-
}
|
|
2448
|
-
/**
|
|
2449
|
-
*
|
|
2450
|
-
* @export
|
|
2451
|
-
* @interface VideoListExternalStorageResponse
|
|
2452
|
-
*/
|
|
2453
|
-
export interface VideoListExternalStorageResponse {
|
|
2454
|
-
/**
|
|
2455
|
-
* Duration of the request in human-readable format
|
|
2456
|
-
* @type {string}
|
|
2457
|
-
* @memberof VideoListExternalStorageResponse
|
|
2458
|
-
*/
|
|
2459
|
-
duration: string;
|
|
2460
|
-
/**
|
|
2461
|
-
*
|
|
2462
|
-
* @type {{ [key: string]: VideoExternalStorageResponse; }}
|
|
2463
|
-
* @memberof VideoListExternalStorageResponse
|
|
2464
|
-
*/
|
|
2465
|
-
external_storages: { [key: string]: VideoExternalStorageResponse; };
|
|
2466
|
-
}
|
|
2467
|
-
/**
|
|
2468
|
-
*
|
|
2469
|
-
* @export
|
|
2470
|
-
* @interface VideoListRecordingsResponse
|
|
2471
|
-
*/
|
|
2472
|
-
export interface VideoListRecordingsResponse {
|
|
2473
|
-
/**
|
|
2474
|
-
*
|
|
2475
|
-
* @type {string}
|
|
2476
|
-
* @memberof VideoListRecordingsResponse
|
|
2477
|
-
*/
|
|
2478
|
-
duration: string;
|
|
2479
|
-
/**
|
|
2480
|
-
*
|
|
2481
|
-
* @type {Array<VideoCallRecording>}
|
|
2482
|
-
* @memberof VideoListRecordingsResponse
|
|
2483
|
-
*/
|
|
2484
|
-
recordings: Array<VideoCallRecording>;
|
|
2485
|
-
}
|
|
2486
|
-
/**
|
|
2487
|
-
*
|
|
2488
|
-
* @export
|
|
2489
|
-
* @interface VideoListTranscriptionsResponse
|
|
2490
|
-
*/
|
|
2491
|
-
export interface VideoListTranscriptionsResponse {
|
|
2492
|
-
/**
|
|
2493
|
-
*
|
|
2494
|
-
* @type {string}
|
|
2495
|
-
* @memberof VideoListTranscriptionsResponse
|
|
2496
|
-
*/
|
|
2497
|
-
duration: string;
|
|
2498
|
-
/**
|
|
2499
|
-
*
|
|
2500
|
-
* @type {Array<VideoCallTranscription>}
|
|
2501
|
-
* @memberof VideoListTranscriptionsResponse
|
|
2502
|
-
*/
|
|
2503
|
-
transcriptions: Array<VideoCallTranscription>;
|
|
2504
|
-
}
|
|
2505
|
-
/**
|
|
2506
|
-
*
|
|
2507
|
-
* @export
|
|
2508
|
-
* @interface VideoLocation
|
|
2509
|
-
*/
|
|
2510
|
-
export interface VideoLocation {
|
|
2511
|
-
/**
|
|
2512
|
-
*
|
|
2513
|
-
* @type {string}
|
|
2514
|
-
* @memberof VideoLocation
|
|
2515
|
-
*/
|
|
2516
|
-
continent_code: string;
|
|
2517
|
-
/**
|
|
2518
|
-
*
|
|
2519
|
-
* @type {string}
|
|
2520
|
-
* @memberof VideoLocation
|
|
2521
|
-
*/
|
|
2522
|
-
country_iso_code: string;
|
|
2523
|
-
/**
|
|
2524
|
-
*
|
|
2525
|
-
* @type {string}
|
|
2526
|
-
* @memberof VideoLocation
|
|
2527
|
-
*/
|
|
2528
|
-
subdivision_iso_code: string;
|
|
2529
|
-
}
|
|
2530
|
-
/**
|
|
2531
|
-
*
|
|
2532
|
-
* @export
|
|
2533
|
-
* @interface VideoMOSStats
|
|
2534
|
-
*/
|
|
2535
|
-
export interface VideoMOSStats {
|
|
2536
|
-
/**
|
|
2537
|
-
*
|
|
2538
|
-
* @type {number}
|
|
2539
|
-
* @memberof VideoMOSStats
|
|
2540
|
-
*/
|
|
2541
|
-
average_score: number;
|
|
2542
|
-
/**
|
|
2543
|
-
*
|
|
2544
|
-
* @type {Array<number>}
|
|
2545
|
-
* @memberof VideoMOSStats
|
|
2546
|
-
*/
|
|
2547
|
-
histogram_duration_seconds: Array<number>;
|
|
2548
|
-
/**
|
|
2549
|
-
*
|
|
2550
|
-
* @type {number}
|
|
2551
|
-
* @memberof VideoMOSStats
|
|
2552
|
-
*/
|
|
2553
|
-
max_score: number;
|
|
2554
|
-
/**
|
|
2555
|
-
*
|
|
2556
|
-
* @type {number}
|
|
2557
|
-
* @memberof VideoMOSStats
|
|
2558
|
-
*/
|
|
2559
|
-
min_score: number;
|
|
2560
|
-
}
|
|
2561
|
-
/**
|
|
2562
|
-
*
|
|
2563
|
-
* @export
|
|
2564
|
-
* @interface VideoMediaPubSubHint
|
|
2565
|
-
*/
|
|
2566
|
-
export interface VideoMediaPubSubHint {
|
|
2567
|
-
/**
|
|
2568
|
-
*
|
|
2569
|
-
* @type {boolean}
|
|
2570
|
-
* @memberof VideoMediaPubSubHint
|
|
2571
|
-
*/
|
|
2572
|
-
audio_published: boolean;
|
|
2573
|
-
/**
|
|
2574
|
-
*
|
|
2575
|
-
* @type {boolean}
|
|
2576
|
-
* @memberof VideoMediaPubSubHint
|
|
2577
|
-
*/
|
|
2578
|
-
audio_subscribed: boolean;
|
|
2579
|
-
/**
|
|
2580
|
-
*
|
|
2581
|
-
* @type {boolean}
|
|
2582
|
-
* @memberof VideoMediaPubSubHint
|
|
2583
|
-
*/
|
|
2584
|
-
video_published: boolean;
|
|
2585
|
-
/**
|
|
2586
|
-
*
|
|
2587
|
-
* @type {boolean}
|
|
2588
|
-
* @memberof VideoMediaPubSubHint
|
|
2589
|
-
*/
|
|
2590
|
-
video_subscribed: boolean;
|
|
2591
|
-
}
|
|
2592
|
-
/**
|
|
2593
|
-
*
|
|
2594
|
-
* @export
|
|
2595
|
-
* @interface VideoMemberRequest
|
|
2596
|
-
*/
|
|
2597
|
-
export interface VideoMemberRequest {
|
|
2598
|
-
/**
|
|
2599
|
-
* Custom data for this object
|
|
2600
|
-
* @type {{ [key: string]: any; }}
|
|
2601
|
-
* @memberof VideoMemberRequest
|
|
2602
|
-
*/
|
|
2603
|
-
custom?: { [key: string]: any; };
|
|
2604
|
-
/**
|
|
2605
|
-
*
|
|
2606
|
-
* @type {string}
|
|
2607
|
-
* @memberof VideoMemberRequest
|
|
2608
|
-
*/
|
|
2609
|
-
role?: string;
|
|
2610
|
-
/**
|
|
2611
|
-
*
|
|
2612
|
-
* @type {string}
|
|
2613
|
-
* @memberof VideoMemberRequest
|
|
2614
|
-
*/
|
|
2615
|
-
user_id: string;
|
|
2616
|
-
}
|
|
2617
|
-
/**
|
|
2618
|
-
*
|
|
2619
|
-
* @export
|
|
2620
|
-
* @interface VideoMemberResponse
|
|
2621
|
-
*/
|
|
2622
|
-
export interface VideoMemberResponse {
|
|
2623
|
-
/**
|
|
2624
|
-
* Date/time of creation
|
|
2625
|
-
* @type {string}
|
|
2626
|
-
* @memberof VideoMemberResponse
|
|
2627
|
-
*/
|
|
2628
|
-
created_at: string;
|
|
2629
|
-
/**
|
|
2630
|
-
* Custom member response data
|
|
2631
|
-
* @type {{ [key: string]: any; }}
|
|
2632
|
-
* @memberof VideoMemberResponse
|
|
2633
|
-
*/
|
|
2634
|
-
custom: { [key: string]: any; };
|
|
2635
|
-
/**
|
|
2636
|
-
* Date/time of deletion
|
|
2637
|
-
* @type {string}
|
|
2638
|
-
* @memberof VideoMemberResponse
|
|
2639
|
-
*/
|
|
2640
|
-
deleted_at?: string;
|
|
2641
|
-
/**
|
|
2642
|
-
*
|
|
2643
|
-
* @type {string}
|
|
2644
|
-
* @memberof VideoMemberResponse
|
|
2645
|
-
*/
|
|
2646
|
-
role?: string;
|
|
2647
|
-
/**
|
|
2648
|
-
* Date/time of the last update
|
|
2649
|
-
* @type {string}
|
|
2650
|
-
* @memberof VideoMemberResponse
|
|
2651
|
-
*/
|
|
2652
|
-
updated_at: string;
|
|
2653
|
-
/**
|
|
2654
|
-
*
|
|
2655
|
-
* @type {VideoUserResponse}
|
|
2656
|
-
* @memberof VideoMemberResponse
|
|
2657
|
-
*/
|
|
2658
|
-
user: VideoUserResponse;
|
|
2659
|
-
/**
|
|
2660
|
-
*
|
|
2661
|
-
* @type {string}
|
|
2662
|
-
* @memberof VideoMemberResponse
|
|
2663
|
-
*/
|
|
2664
|
-
user_id: string;
|
|
2665
|
-
}
|
|
2666
|
-
/**
|
|
2667
|
-
*
|
|
2668
|
-
* @export
|
|
2669
|
-
* @interface VideoMuteUsersRequest
|
|
2670
|
-
*/
|
|
2671
|
-
export interface VideoMuteUsersRequest {
|
|
2672
|
-
/**
|
|
2673
|
-
*
|
|
2674
|
-
* @type {boolean}
|
|
2675
|
-
* @memberof VideoMuteUsersRequest
|
|
2676
|
-
*/
|
|
2677
|
-
audio?: boolean;
|
|
2678
|
-
/**
|
|
2679
|
-
*
|
|
2680
|
-
* @type {boolean}
|
|
2681
|
-
* @memberof VideoMuteUsersRequest
|
|
2682
|
-
*/
|
|
2683
|
-
mute_all_users?: boolean;
|
|
2684
|
-
/**
|
|
2685
|
-
*
|
|
2686
|
-
* @type {VideoUserRequest}
|
|
2687
|
-
* @memberof VideoMuteUsersRequest
|
|
2688
|
-
*/
|
|
2689
|
-
muted_by?: VideoUserRequest;
|
|
2690
|
-
/**
|
|
2691
|
-
*
|
|
2692
|
-
* @type {string}
|
|
2693
|
-
* @memberof VideoMuteUsersRequest
|
|
2694
|
-
*/
|
|
2695
|
-
muted_by_id?: string;
|
|
2696
|
-
/**
|
|
2697
|
-
*
|
|
2698
|
-
* @type {boolean}
|
|
2699
|
-
* @memberof VideoMuteUsersRequest
|
|
2700
|
-
*/
|
|
2701
|
-
screenshare?: boolean;
|
|
2702
|
-
/**
|
|
2703
|
-
*
|
|
2704
|
-
* @type {boolean}
|
|
2705
|
-
* @memberof VideoMuteUsersRequest
|
|
2706
|
-
*/
|
|
2707
|
-
screenshare_audio?: boolean;
|
|
2708
|
-
/**
|
|
2709
|
-
*
|
|
2710
|
-
* @type {Array<string>}
|
|
2711
|
-
* @memberof VideoMuteUsersRequest
|
|
2712
|
-
*/
|
|
2713
|
-
user_ids?: Array<string>;
|
|
2714
|
-
/**
|
|
2715
|
-
*
|
|
2716
|
-
* @type {boolean}
|
|
2717
|
-
* @memberof VideoMuteUsersRequest
|
|
2718
|
-
*/
|
|
2719
|
-
video?: boolean;
|
|
2720
|
-
}
|
|
2721
|
-
/**
|
|
2722
|
-
*
|
|
2723
|
-
* @export
|
|
2724
|
-
* @interface VideoMuteUsersResponse
|
|
2725
|
-
*/
|
|
2726
|
-
export interface VideoMuteUsersResponse {
|
|
2727
|
-
/**
|
|
2728
|
-
* Duration of the request in human-readable format
|
|
2729
|
-
* @type {string}
|
|
2730
|
-
* @memberof VideoMuteUsersResponse
|
|
2731
|
-
*/
|
|
2732
|
-
duration: string;
|
|
2733
|
-
}
|
|
2734
|
-
/**
|
|
2735
|
-
*
|
|
2736
|
-
* @export
|
|
2737
|
-
* @interface VideoNoiseCancellationSettings
|
|
2738
|
-
*/
|
|
2739
|
-
export interface VideoNoiseCancellationSettings {
|
|
2740
|
-
/**
|
|
2741
|
-
*
|
|
2742
|
-
* @type {string}
|
|
2743
|
-
* @memberof VideoNoiseCancellationSettings
|
|
2744
|
-
*/
|
|
2745
|
-
mode: VideoNoiseCancellationSettingsModeEnum;
|
|
2746
|
-
}
|
|
2747
|
-
|
|
2748
|
-
|
|
2749
|
-
/**
|
|
2750
|
-
* @export
|
|
2751
|
-
*/
|
|
2752
|
-
export const VideoNoiseCancellationSettingsModeEnum = {
|
|
2753
|
-
AVAILABLE: 'available',
|
|
2754
|
-
DISABLED: 'disabled',
|
|
2755
|
-
AUTO_ON: 'auto-on'
|
|
2756
|
-
} as const;
|
|
2757
|
-
export type VideoNoiseCancellationSettingsModeEnum = typeof VideoNoiseCancellationSettingsModeEnum[keyof typeof VideoNoiseCancellationSettingsModeEnum];
|
|
2758
|
-
|
|
2759
|
-
/**
|
|
2760
|
-
*
|
|
2761
|
-
* @export
|
|
2762
|
-
* @interface VideoNotificationSettings
|
|
2763
|
-
*/
|
|
2764
|
-
export interface VideoNotificationSettings {
|
|
2765
|
-
/**
|
|
2766
|
-
*
|
|
2767
|
-
* @type {VideoEventNotificationSettings}
|
|
2768
|
-
* @memberof VideoNotificationSettings
|
|
2769
|
-
*/
|
|
2770
|
-
call_live_started?: VideoEventNotificationSettings;
|
|
2771
|
-
/**
|
|
2772
|
-
*
|
|
2773
|
-
* @type {VideoEventNotificationSettings}
|
|
2774
|
-
* @memberof VideoNotificationSettings
|
|
2775
|
-
*/
|
|
2776
|
-
call_missed?: VideoEventNotificationSettings;
|
|
2777
|
-
/**
|
|
2778
|
-
*
|
|
2779
|
-
* @type {VideoEventNotificationSettings}
|
|
2780
|
-
* @memberof VideoNotificationSettings
|
|
2781
|
-
*/
|
|
2782
|
-
call_notification?: VideoEventNotificationSettings;
|
|
2783
|
-
/**
|
|
2784
|
-
*
|
|
2785
|
-
* @type {VideoEventNotificationSettings}
|
|
2786
|
-
* @memberof VideoNotificationSettings
|
|
2787
|
-
*/
|
|
2788
|
-
call_ring?: VideoEventNotificationSettings;
|
|
2789
|
-
/**
|
|
2790
|
-
*
|
|
2791
|
-
* @type {boolean}
|
|
2792
|
-
* @memberof VideoNotificationSettings
|
|
2793
|
-
*/
|
|
2794
|
-
enabled?: boolean;
|
|
2795
|
-
/**
|
|
2796
|
-
*
|
|
2797
|
-
* @type {VideoEventNotificationSettings}
|
|
2798
|
-
* @memberof VideoNotificationSettings
|
|
2799
|
-
*/
|
|
2800
|
-
session_started?: VideoEventNotificationSettings;
|
|
2801
|
-
}
|
|
2802
|
-
/**
|
|
2803
|
-
*
|
|
2804
|
-
* @export
|
|
2805
|
-
* @interface VideoNullBool
|
|
2806
|
-
*/
|
|
2807
|
-
export interface VideoNullBool {
|
|
2808
|
-
/**
|
|
2809
|
-
*
|
|
2810
|
-
* @type {boolean}
|
|
2811
|
-
* @memberof VideoNullBool
|
|
2812
|
-
*/
|
|
2813
|
-
HasValue?: boolean;
|
|
2814
|
-
/**
|
|
2815
|
-
*
|
|
2816
|
-
* @type {boolean}
|
|
2817
|
-
* @memberof VideoNullBool
|
|
2818
|
-
*/
|
|
2819
|
-
Value?: boolean;
|
|
2820
|
-
}
|
|
2821
|
-
/**
|
|
2822
|
-
*
|
|
2823
|
-
* @export
|
|
2824
|
-
* @interface VideoNullTime
|
|
2825
|
-
*/
|
|
2826
|
-
export interface VideoNullTime {
|
|
2827
|
-
/**
|
|
2828
|
-
*
|
|
2829
|
-
* @type {boolean}
|
|
2830
|
-
* @memberof VideoNullTime
|
|
2831
|
-
*/
|
|
2832
|
-
HasValue?: boolean;
|
|
2833
|
-
/**
|
|
2834
|
-
*
|
|
2835
|
-
* @type {string}
|
|
2836
|
-
* @memberof VideoNullTime
|
|
2837
|
-
*/
|
|
2838
|
-
Value?: string;
|
|
2839
|
-
}
|
|
2840
|
-
|
|
2841
|
-
/**
|
|
2842
|
-
* All possibility of string to use
|
|
2843
|
-
* @export
|
|
2844
|
-
*/
|
|
2845
|
-
export const VideoOwnCapability = {
|
|
2846
|
-
BLOCK_USERS: 'block-users',
|
|
2847
|
-
CHANGE_MAX_DURATION: 'change-max-duration',
|
|
2848
|
-
CREATE_CALL: 'create-call',
|
|
2849
|
-
CREATE_REACTION: 'create-reaction',
|
|
2850
|
-
ENABLE_NOISE_CANCELLATION: 'enable-noise-cancellation',
|
|
2851
|
-
END_CALL: 'end-call',
|
|
2852
|
-
JOIN_BACKSTAGE: 'join-backstage',
|
|
2853
|
-
JOIN_CALL: 'join-call',
|
|
2854
|
-
JOIN_ENDED_CALL: 'join-ended-call',
|
|
2855
|
-
MUTE_USERS: 'mute-users',
|
|
2856
|
-
PIN_FOR_EVERYONE: 'pin-for-everyone',
|
|
2857
|
-
READ_CALL: 'read-call',
|
|
2858
|
-
REMOVE_CALL_MEMBER: 'remove-call-member',
|
|
2859
|
-
SCREENSHARE: 'screenshare',
|
|
2860
|
-
SEND_AUDIO: 'send-audio',
|
|
2861
|
-
SEND_VIDEO: 'send-video',
|
|
2862
|
-
START_BROADCAST_CALL: 'start-broadcast-call',
|
|
2863
|
-
START_RECORD_CALL: 'start-record-call',
|
|
2864
|
-
START_TRANSCRIPTION_CALL: 'start-transcription-call',
|
|
2865
|
-
STOP_BROADCAST_CALL: 'stop-broadcast-call',
|
|
2866
|
-
STOP_RECORD_CALL: 'stop-record-call',
|
|
2867
|
-
STOP_TRANSCRIPTION_CALL: 'stop-transcription-call',
|
|
2868
|
-
UPDATE_CALL: 'update-call',
|
|
2869
|
-
UPDATE_CALL_MEMBER: 'update-call-member',
|
|
2870
|
-
UPDATE_CALL_PERMISSIONS: 'update-call-permissions',
|
|
2871
|
-
UPDATE_CALL_SETTINGS: 'update-call-settings'
|
|
2872
|
-
} as const;
|
|
2873
|
-
export type VideoOwnCapability = typeof VideoOwnCapability[keyof typeof VideoOwnCapability];
|
|
2874
|
-
|
|
2875
|
-
/**
|
|
2876
|
-
*
|
|
2877
|
-
* @export
|
|
2878
|
-
* @interface VideoPinRequest
|
|
2879
|
-
*/
|
|
2880
|
-
export interface VideoPinRequest {
|
|
2881
|
-
/**
|
|
2882
|
-
*
|
|
2883
|
-
* @type {string}
|
|
2884
|
-
* @memberof VideoPinRequest
|
|
2885
|
-
*/
|
|
2886
|
-
session_id: string;
|
|
2887
|
-
/**
|
|
2888
|
-
*
|
|
2889
|
-
* @type {string}
|
|
2890
|
-
* @memberof VideoPinRequest
|
|
2891
|
-
*/
|
|
2892
|
-
user_id: string;
|
|
2893
|
-
}
|
|
2894
|
-
/**
|
|
2895
|
-
*
|
|
2896
|
-
* @export
|
|
2897
|
-
* @interface VideoPinResponse
|
|
2898
|
-
*/
|
|
2899
|
-
export interface VideoPinResponse {
|
|
2900
|
-
/**
|
|
2901
|
-
* Duration of the request in human-readable format
|
|
2902
|
-
* @type {string}
|
|
2903
|
-
* @memberof VideoPinResponse
|
|
2904
|
-
*/
|
|
2905
|
-
duration: string;
|
|
2906
|
-
}
|
|
2907
|
-
/**
|
|
2908
|
-
*
|
|
2909
|
-
* @export
|
|
2910
|
-
* @interface VideoPrivacySettings
|
|
2911
|
-
*/
|
|
2912
|
-
export interface VideoPrivacySettings {
|
|
2913
|
-
/**
|
|
2914
|
-
*
|
|
2915
|
-
* @type {VideoReadReceipts}
|
|
2916
|
-
* @memberof VideoPrivacySettings
|
|
2917
|
-
*/
|
|
2918
|
-
read_receipts?: VideoReadReceipts;
|
|
2919
|
-
/**
|
|
2920
|
-
*
|
|
2921
|
-
* @type {VideoTypingIndicators}
|
|
2922
|
-
* @memberof VideoPrivacySettings
|
|
2923
|
-
*/
|
|
2924
|
-
typing_indicators?: VideoTypingIndicators;
|
|
2925
|
-
}
|
|
2926
|
-
/**
|
|
2927
|
-
*
|
|
2928
|
-
* @export
|
|
2929
|
-
* @interface VideoPublishedTrackInfo
|
|
2930
|
-
*/
|
|
2931
|
-
export interface VideoPublishedTrackInfo {
|
|
2932
|
-
/**
|
|
2933
|
-
*
|
|
2934
|
-
* @type {string}
|
|
2935
|
-
* @memberof VideoPublishedTrackInfo
|
|
2936
|
-
*/
|
|
2937
|
-
codec_mime_type?: string;
|
|
2938
|
-
/**
|
|
2939
|
-
*
|
|
2940
|
-
* @type {number}
|
|
2941
|
-
* @memberof VideoPublishedTrackInfo
|
|
2942
|
-
*/
|
|
2943
|
-
duration_seconds?: number;
|
|
2944
|
-
/**
|
|
2945
|
-
*
|
|
2946
|
-
* @type {string}
|
|
2947
|
-
* @memberof VideoPublishedTrackInfo
|
|
2948
|
-
*/
|
|
2949
|
-
track_type?: string;
|
|
2950
|
-
}
|
|
2951
|
-
/**
|
|
2952
|
-
*
|
|
2953
|
-
* @export
|
|
2954
|
-
* @interface VideoPublisherAggregateStats
|
|
2955
|
-
*/
|
|
2956
|
-
export interface VideoPublisherAggregateStats {
|
|
2957
|
-
/**
|
|
2958
|
-
*
|
|
2959
|
-
* @type {{ [key: string]: VideoCount; }}
|
|
2960
|
-
* @memberof VideoPublisherAggregateStats
|
|
2961
|
-
*/
|
|
2962
|
-
by_track_type?: { [key: string]: VideoCount; };
|
|
2963
|
-
/**
|
|
2964
|
-
*
|
|
2965
|
-
* @type {VideoCount}
|
|
2966
|
-
* @memberof VideoPublisherAggregateStats
|
|
2967
|
-
*/
|
|
2968
|
-
total?: VideoCount;
|
|
2969
|
-
}
|
|
2970
|
-
/**
|
|
2971
|
-
*
|
|
2972
|
-
* @export
|
|
2973
|
-
* @interface VideoPushNotificationSettings
|
|
2974
|
-
*/
|
|
2975
|
-
export interface VideoPushNotificationSettings {
|
|
2976
|
-
/**
|
|
2977
|
-
*
|
|
2978
|
-
* @type {boolean}
|
|
2979
|
-
* @memberof VideoPushNotificationSettings
|
|
2980
|
-
*/
|
|
2981
|
-
disabled?: boolean;
|
|
2982
|
-
/**
|
|
2983
|
-
*
|
|
2984
|
-
* @type {string}
|
|
2985
|
-
* @memberof VideoPushNotificationSettings
|
|
2986
|
-
*/
|
|
2987
|
-
disabled_until?: string;
|
|
2988
|
-
}
|
|
2989
|
-
/**
|
|
2990
|
-
*
|
|
2991
|
-
* @export
|
|
2992
|
-
* @interface VideoPushNotificationSettingsInput
|
|
2993
|
-
*/
|
|
2994
|
-
export interface VideoPushNotificationSettingsInput {
|
|
2995
|
-
/**
|
|
2996
|
-
*
|
|
2997
|
-
* @type {VideoNullBool}
|
|
2998
|
-
* @memberof VideoPushNotificationSettingsInput
|
|
2999
|
-
*/
|
|
3000
|
-
disabled?: VideoNullBool;
|
|
3001
|
-
/**
|
|
3002
|
-
*
|
|
3003
|
-
* @type {VideoNullTime}
|
|
3004
|
-
* @memberof VideoPushNotificationSettingsInput
|
|
3005
|
-
*/
|
|
3006
|
-
disabled_until?: VideoNullTime;
|
|
3007
|
-
}
|
|
3008
|
-
/**
|
|
3009
|
-
*
|
|
3010
|
-
* @export
|
|
3011
|
-
* @interface VideoQueryCallMembersRequest
|
|
3012
|
-
*/
|
|
3013
|
-
export interface VideoQueryCallMembersRequest {
|
|
3014
|
-
/**
|
|
3015
|
-
*
|
|
3016
|
-
* @type {{ [key: string]: any; }}
|
|
3017
|
-
* @memberof VideoQueryCallMembersRequest
|
|
3018
|
-
*/
|
|
3019
|
-
filter_conditions?: { [key: string]: any; };
|
|
3020
|
-
/**
|
|
3021
|
-
*
|
|
3022
|
-
* @type {string}
|
|
3023
|
-
* @memberof VideoQueryCallMembersRequest
|
|
3024
|
-
*/
|
|
3025
|
-
id: string;
|
|
3026
|
-
/**
|
|
3027
|
-
*
|
|
3028
|
-
* @type {number}
|
|
3029
|
-
* @memberof VideoQueryCallMembersRequest
|
|
3030
|
-
*/
|
|
3031
|
-
limit?: number;
|
|
3032
|
-
/**
|
|
3033
|
-
*
|
|
3034
|
-
* @type {string}
|
|
3035
|
-
* @memberof VideoQueryCallMembersRequest
|
|
3036
|
-
*/
|
|
3037
|
-
next?: string;
|
|
3038
|
-
/**
|
|
3039
|
-
*
|
|
3040
|
-
* @type {string}
|
|
3041
|
-
* @memberof VideoQueryCallMembersRequest
|
|
3042
|
-
*/
|
|
3043
|
-
prev?: string;
|
|
3044
|
-
/**
|
|
3045
|
-
*
|
|
3046
|
-
* @type {Array<VideoSortParam>}
|
|
3047
|
-
* @memberof VideoQueryCallMembersRequest
|
|
3048
|
-
*/
|
|
3049
|
-
sort?: Array<VideoSortParam>;
|
|
3050
|
-
/**
|
|
3051
|
-
*
|
|
3052
|
-
* @type {string}
|
|
3053
|
-
* @memberof VideoQueryCallMembersRequest
|
|
3054
|
-
*/
|
|
3055
|
-
type: string;
|
|
3056
|
-
}
|
|
3057
|
-
/**
|
|
3058
|
-
*
|
|
3059
|
-
* @export
|
|
3060
|
-
* @interface VideoQueryCallMembersResponse
|
|
3061
|
-
*/
|
|
3062
|
-
export interface VideoQueryCallMembersResponse {
|
|
3063
|
-
/**
|
|
3064
|
-
* Duration of the request in human-readable format
|
|
3065
|
-
* @type {string}
|
|
3066
|
-
* @memberof VideoQueryCallMembersResponse
|
|
3067
|
-
*/
|
|
3068
|
-
duration: string;
|
|
3069
|
-
/**
|
|
3070
|
-
*
|
|
3071
|
-
* @type {Array<VideoMemberResponse>}
|
|
3072
|
-
* @memberof VideoQueryCallMembersResponse
|
|
3073
|
-
*/
|
|
3074
|
-
members: Array<VideoMemberResponse>;
|
|
3075
|
-
/**
|
|
3076
|
-
*
|
|
3077
|
-
* @type {string}
|
|
3078
|
-
* @memberof VideoQueryCallMembersResponse
|
|
3079
|
-
*/
|
|
3080
|
-
next?: string;
|
|
3081
|
-
/**
|
|
3082
|
-
*
|
|
3083
|
-
* @type {string}
|
|
3084
|
-
* @memberof VideoQueryCallMembersResponse
|
|
3085
|
-
*/
|
|
3086
|
-
prev?: string;
|
|
3087
|
-
}
|
|
3088
|
-
/**
|
|
3089
|
-
*
|
|
3090
|
-
* @export
|
|
3091
|
-
* @interface VideoQueryCallStatsRequest
|
|
3092
|
-
*/
|
|
3093
|
-
export interface VideoQueryCallStatsRequest {
|
|
3094
|
-
/**
|
|
3095
|
-
*
|
|
3096
|
-
* @type {{ [key: string]: any; }}
|
|
3097
|
-
* @memberof VideoQueryCallStatsRequest
|
|
3098
|
-
*/
|
|
3099
|
-
filter_conditions?: { [key: string]: any; };
|
|
3100
|
-
/**
|
|
3101
|
-
*
|
|
3102
|
-
* @type {number}
|
|
3103
|
-
* @memberof VideoQueryCallStatsRequest
|
|
3104
|
-
*/
|
|
3105
|
-
limit?: number;
|
|
3106
|
-
/**
|
|
3107
|
-
*
|
|
3108
|
-
* @type {string}
|
|
3109
|
-
* @memberof VideoQueryCallStatsRequest
|
|
3110
|
-
*/
|
|
3111
|
-
next?: string;
|
|
3112
|
-
/**
|
|
3113
|
-
*
|
|
3114
|
-
* @type {string}
|
|
3115
|
-
* @memberof VideoQueryCallStatsRequest
|
|
3116
|
-
*/
|
|
3117
|
-
prev?: string;
|
|
3118
|
-
/**
|
|
3119
|
-
*
|
|
3120
|
-
* @type {Array<VideoSortParam>}
|
|
3121
|
-
* @memberof VideoQueryCallStatsRequest
|
|
3122
|
-
*/
|
|
3123
|
-
sort?: Array<VideoSortParam>;
|
|
3124
|
-
}
|
|
3125
|
-
/**
|
|
3126
|
-
*
|
|
3127
|
-
* @export
|
|
3128
|
-
* @interface VideoQueryCallStatsResponse
|
|
3129
|
-
*/
|
|
3130
|
-
export interface VideoQueryCallStatsResponse {
|
|
3131
|
-
/**
|
|
3132
|
-
* Duration of the request in human-readable format
|
|
3133
|
-
* @type {string}
|
|
3134
|
-
* @memberof VideoQueryCallStatsResponse
|
|
3135
|
-
*/
|
|
3136
|
-
duration: string;
|
|
3137
|
-
/**
|
|
3138
|
-
*
|
|
3139
|
-
* @type {string}
|
|
3140
|
-
* @memberof VideoQueryCallStatsResponse
|
|
3141
|
-
*/
|
|
3142
|
-
next?: string;
|
|
3143
|
-
/**
|
|
3144
|
-
*
|
|
3145
|
-
* @type {string}
|
|
3146
|
-
* @memberof VideoQueryCallStatsResponse
|
|
3147
|
-
*/
|
|
3148
|
-
prev?: string;
|
|
3149
|
-
/**
|
|
3150
|
-
*
|
|
3151
|
-
* @type {Array<VideoCallStatsReportSummaryResponse>}
|
|
3152
|
-
* @memberof VideoQueryCallStatsResponse
|
|
3153
|
-
*/
|
|
3154
|
-
reports: Array<VideoCallStatsReportSummaryResponse>;
|
|
3155
|
-
}
|
|
3156
|
-
/**
|
|
3157
|
-
*
|
|
3158
|
-
* @export
|
|
3159
|
-
* @interface VideoQueryCallsRequest
|
|
3160
|
-
*/
|
|
3161
|
-
export interface VideoQueryCallsRequest {
|
|
3162
|
-
/**
|
|
3163
|
-
*
|
|
3164
|
-
* @type {{ [key: string]: any; }}
|
|
3165
|
-
* @memberof VideoQueryCallsRequest
|
|
3166
|
-
*/
|
|
3167
|
-
filter_conditions?: { [key: string]: any; };
|
|
3168
|
-
/**
|
|
3169
|
-
*
|
|
3170
|
-
* @type {number}
|
|
3171
|
-
* @memberof VideoQueryCallsRequest
|
|
3172
|
-
*/
|
|
3173
|
-
limit?: number;
|
|
3174
|
-
/**
|
|
3175
|
-
*
|
|
3176
|
-
* @type {string}
|
|
3177
|
-
* @memberof VideoQueryCallsRequest
|
|
3178
|
-
*/
|
|
3179
|
-
next?: string;
|
|
3180
|
-
/**
|
|
3181
|
-
*
|
|
3182
|
-
* @type {string}
|
|
3183
|
-
* @memberof VideoQueryCallsRequest
|
|
3184
|
-
*/
|
|
3185
|
-
prev?: string;
|
|
3186
|
-
/**
|
|
3187
|
-
*
|
|
3188
|
-
* @type {Array<VideoSortParam>}
|
|
3189
|
-
* @memberof VideoQueryCallsRequest
|
|
3190
|
-
*/
|
|
3191
|
-
sort?: Array<VideoSortParam>;
|
|
3192
|
-
}
|
|
3193
|
-
/**
|
|
3194
|
-
*
|
|
3195
|
-
* @export
|
|
3196
|
-
* @interface VideoQueryCallsResponse
|
|
3197
|
-
*/
|
|
3198
|
-
export interface VideoQueryCallsResponse {
|
|
3199
|
-
/**
|
|
3200
|
-
*
|
|
3201
|
-
* @type {Array<VideoCallStateResponseFields>}
|
|
3202
|
-
* @memberof VideoQueryCallsResponse
|
|
3203
|
-
*/
|
|
3204
|
-
calls: Array<VideoCallStateResponseFields>;
|
|
3205
|
-
/**
|
|
3206
|
-
*
|
|
3207
|
-
* @type {string}
|
|
3208
|
-
* @memberof VideoQueryCallsResponse
|
|
3209
|
-
*/
|
|
3210
|
-
duration: string;
|
|
3211
|
-
/**
|
|
3212
|
-
*
|
|
3213
|
-
* @type {string}
|
|
3214
|
-
* @memberof VideoQueryCallsResponse
|
|
3215
|
-
*/
|
|
3216
|
-
next?: string;
|
|
3217
|
-
/**
|
|
3218
|
-
*
|
|
3219
|
-
* @type {string}
|
|
3220
|
-
* @memberof VideoQueryCallsResponse
|
|
3221
|
-
*/
|
|
3222
|
-
prev?: string;
|
|
3223
|
-
}
|
|
3224
|
-
/**
|
|
3225
|
-
* RTMP input settings
|
|
3226
|
-
* @export
|
|
3227
|
-
* @interface VideoRTMPIngress
|
|
3228
|
-
*/
|
|
3229
|
-
export interface VideoRTMPIngress {
|
|
3230
|
-
/**
|
|
3231
|
-
*
|
|
3232
|
-
* @type {string}
|
|
3233
|
-
* @memberof VideoRTMPIngress
|
|
3234
|
-
*/
|
|
3235
|
-
address: string;
|
|
3236
|
-
}
|
|
3237
|
-
/**
|
|
3238
|
-
*
|
|
3239
|
-
* @export
|
|
3240
|
-
* @interface VideoReadReceipts
|
|
3241
|
-
*/
|
|
3242
|
-
export interface VideoReadReceipts {
|
|
3243
|
-
/**
|
|
3244
|
-
*
|
|
3245
|
-
* @type {boolean}
|
|
3246
|
-
* @memberof VideoReadReceipts
|
|
3247
|
-
*/
|
|
3248
|
-
enabled?: boolean;
|
|
3249
|
-
}
|
|
3250
|
-
/**
|
|
3251
|
-
*
|
|
3252
|
-
* @export
|
|
3253
|
-
* @interface VideoRecordSettingsRequest
|
|
3254
|
-
*/
|
|
3255
|
-
export interface VideoRecordSettingsRequest {
|
|
3256
|
-
/**
|
|
3257
|
-
*
|
|
3258
|
-
* @type {boolean}
|
|
3259
|
-
* @memberof VideoRecordSettingsRequest
|
|
3260
|
-
*/
|
|
3261
|
-
audio_only?: boolean;
|
|
3262
|
-
/**
|
|
3263
|
-
*
|
|
3264
|
-
* @type {VideoLayoutSettingsRequest}
|
|
3265
|
-
* @memberof VideoRecordSettingsRequest
|
|
3266
|
-
*/
|
|
3267
|
-
layout?: VideoLayoutSettingsRequest;
|
|
3268
|
-
/**
|
|
3269
|
-
*
|
|
3270
|
-
* @type {string}
|
|
3271
|
-
* @memberof VideoRecordSettingsRequest
|
|
3272
|
-
*/
|
|
3273
|
-
mode: VideoRecordSettingsRequestModeEnum;
|
|
3274
|
-
/**
|
|
3275
|
-
*
|
|
3276
|
-
* @type {string}
|
|
3277
|
-
* @memberof VideoRecordSettingsRequest
|
|
3278
|
-
*/
|
|
3279
|
-
quality?: VideoRecordSettingsRequestQualityEnum;
|
|
3280
|
-
}
|
|
3281
|
-
|
|
3282
|
-
|
|
3283
|
-
/**
|
|
3284
|
-
* @export
|
|
3285
|
-
*/
|
|
3286
|
-
export const VideoRecordSettingsRequestModeEnum = {
|
|
3287
|
-
AVAILABLE: 'available',
|
|
3288
|
-
DISABLED: 'disabled',
|
|
3289
|
-
AUTO_ON: 'auto-on'
|
|
3290
|
-
} as const;
|
|
3291
|
-
export type VideoRecordSettingsRequestModeEnum = typeof VideoRecordSettingsRequestModeEnum[keyof typeof VideoRecordSettingsRequestModeEnum];
|
|
3292
|
-
|
|
3293
|
-
/**
|
|
3294
|
-
* @export
|
|
3295
|
-
*/
|
|
3296
|
-
export const VideoRecordSettingsRequestQualityEnum = {
|
|
3297
|
-
_360P: '360p',
|
|
3298
|
-
_480P: '480p',
|
|
3299
|
-
_720P: '720p',
|
|
3300
|
-
_1080P: '1080p',
|
|
3301
|
-
_1440P: '1440p',
|
|
3302
|
-
PORTRAIT_360X640: 'portrait-360x640',
|
|
3303
|
-
PORTRAIT_480X854: 'portrait-480x854',
|
|
3304
|
-
PORTRAIT_720X1280: 'portrait-720x1280',
|
|
3305
|
-
PORTRAIT_1080X1920: 'portrait-1080x1920',
|
|
3306
|
-
PORTRAIT_1440X2560: 'portrait-1440x2560'
|
|
3307
|
-
} as const;
|
|
3308
|
-
export type VideoRecordSettingsRequestQualityEnum = typeof VideoRecordSettingsRequestQualityEnum[keyof typeof VideoRecordSettingsRequestQualityEnum];
|
|
3309
|
-
|
|
3310
|
-
/**
|
|
3311
|
-
*
|
|
3312
|
-
* @export
|
|
3313
|
-
* @interface VideoRecordSettingsResponse
|
|
3314
|
-
*/
|
|
3315
|
-
export interface VideoRecordSettingsResponse {
|
|
3316
|
-
/**
|
|
3317
|
-
*
|
|
3318
|
-
* @type {boolean}
|
|
3319
|
-
* @memberof VideoRecordSettingsResponse
|
|
3320
|
-
*/
|
|
3321
|
-
audio_only: boolean;
|
|
3322
|
-
/**
|
|
3323
|
-
*
|
|
3324
|
-
* @type {VideoLayoutSettingsResponse}
|
|
3325
|
-
* @memberof VideoRecordSettingsResponse
|
|
3326
|
-
*/
|
|
3327
|
-
layout: VideoLayoutSettingsResponse;
|
|
3328
|
-
/**
|
|
3329
|
-
*
|
|
3330
|
-
* @type {string}
|
|
3331
|
-
* @memberof VideoRecordSettingsResponse
|
|
3332
|
-
*/
|
|
3333
|
-
mode: string;
|
|
3334
|
-
/**
|
|
3335
|
-
*
|
|
3336
|
-
* @type {string}
|
|
3337
|
-
* @memberof VideoRecordSettingsResponse
|
|
3338
|
-
*/
|
|
3339
|
-
quality: string;
|
|
3340
|
-
}
|
|
3341
|
-
/**
|
|
3342
|
-
*
|
|
3343
|
-
* @export
|
|
3344
|
-
* @interface VideoResponse
|
|
3345
|
-
*/
|
|
3346
|
-
export interface VideoResponse {
|
|
3347
|
-
/**
|
|
3348
|
-
* Duration of the request in human-readable format
|
|
3349
|
-
* @type {string}
|
|
3350
|
-
* @memberof VideoResponse
|
|
3351
|
-
*/
|
|
3352
|
-
duration: string;
|
|
3353
|
-
}
|
|
3354
|
-
/**
|
|
3355
|
-
*
|
|
3356
|
-
* @export
|
|
3357
|
-
* @interface VideoRingSettingsRequest
|
|
3358
|
-
*/
|
|
3359
|
-
export interface VideoRingSettingsRequest {
|
|
3360
|
-
/**
|
|
3361
|
-
*
|
|
3362
|
-
* @type {number}
|
|
3363
|
-
* @memberof VideoRingSettingsRequest
|
|
3364
|
-
*/
|
|
3365
|
-
auto_cancel_timeout_ms: number;
|
|
3366
|
-
/**
|
|
3367
|
-
*
|
|
3368
|
-
* @type {number}
|
|
3369
|
-
* @memberof VideoRingSettingsRequest
|
|
3370
|
-
*/
|
|
3371
|
-
incoming_call_timeout_ms: number;
|
|
3372
|
-
/**
|
|
3373
|
-
*
|
|
3374
|
-
* @type {number}
|
|
3375
|
-
* @memberof VideoRingSettingsRequest
|
|
3376
|
-
*/
|
|
3377
|
-
missed_call_timeout_ms?: number;
|
|
3378
|
-
}
|
|
3379
|
-
/**
|
|
3380
|
-
*
|
|
3381
|
-
* @export
|
|
3382
|
-
* @interface VideoRingSettingsResponse
|
|
3383
|
-
*/
|
|
3384
|
-
export interface VideoRingSettingsResponse {
|
|
3385
|
-
/**
|
|
3386
|
-
*
|
|
3387
|
-
* @type {number}
|
|
3388
|
-
* @memberof VideoRingSettingsResponse
|
|
3389
|
-
*/
|
|
3390
|
-
auto_cancel_timeout_ms: number;
|
|
3391
|
-
/**
|
|
3392
|
-
*
|
|
3393
|
-
* @type {number}
|
|
3394
|
-
* @memberof VideoRingSettingsResponse
|
|
3395
|
-
*/
|
|
3396
|
-
incoming_call_timeout_ms: number;
|
|
3397
|
-
/**
|
|
3398
|
-
*
|
|
3399
|
-
* @type {number}
|
|
3400
|
-
* @memberof VideoRingSettingsResponse
|
|
3401
|
-
*/
|
|
3402
|
-
missed_call_timeout_ms: number;
|
|
3403
|
-
}
|
|
3404
|
-
/**
|
|
3405
|
-
*
|
|
3406
|
-
* @export
|
|
3407
|
-
* @interface VideoS3Request
|
|
3408
|
-
*/
|
|
3409
|
-
export interface VideoS3Request {
|
|
3410
|
-
/**
|
|
3411
|
-
*
|
|
3412
|
-
* @type {string}
|
|
3413
|
-
* @memberof VideoS3Request
|
|
3414
|
-
*/
|
|
3415
|
-
s3_api_key?: string;
|
|
3416
|
-
/**
|
|
3417
|
-
*
|
|
3418
|
-
* @type {string}
|
|
3419
|
-
* @memberof VideoS3Request
|
|
3420
|
-
*/
|
|
3421
|
-
s3_region: string;
|
|
3422
|
-
/**
|
|
3423
|
-
*
|
|
3424
|
-
* @type {string}
|
|
3425
|
-
* @memberof VideoS3Request
|
|
3426
|
-
*/
|
|
3427
|
-
s3_secret?: string;
|
|
3428
|
-
}
|
|
3429
|
-
/**
|
|
3430
|
-
*
|
|
3431
|
-
* @export
|
|
3432
|
-
* @interface VideoSFULocationResponse
|
|
3433
|
-
*/
|
|
3434
|
-
export interface VideoSFULocationResponse {
|
|
3435
|
-
/**
|
|
3436
|
-
*
|
|
3437
|
-
* @type {VideoCoordinates}
|
|
3438
|
-
* @memberof VideoSFULocationResponse
|
|
3439
|
-
*/
|
|
3440
|
-
coordinates: VideoCoordinates;
|
|
3441
|
-
/**
|
|
3442
|
-
*
|
|
3443
|
-
* @type {string}
|
|
3444
|
-
* @memberof VideoSFULocationResponse
|
|
3445
|
-
*/
|
|
3446
|
-
datacenter: string;
|
|
3447
|
-
/**
|
|
3448
|
-
*
|
|
3449
|
-
* @type {string}
|
|
3450
|
-
* @memberof VideoSFULocationResponse
|
|
3451
|
-
*/
|
|
3452
|
-
id: string;
|
|
3453
|
-
/**
|
|
3454
|
-
*
|
|
3455
|
-
* @type {VideoLocation}
|
|
3456
|
-
* @memberof VideoSFULocationResponse
|
|
3457
|
-
*/
|
|
3458
|
-
location: VideoLocation;
|
|
3459
|
-
}
|
|
3460
|
-
/**
|
|
3461
|
-
*
|
|
3462
|
-
* @export
|
|
3463
|
-
* @interface VideoScreensharingSettingsRequest
|
|
3464
|
-
*/
|
|
3465
|
-
export interface VideoScreensharingSettingsRequest {
|
|
3466
|
-
/**
|
|
3467
|
-
*
|
|
3468
|
-
* @type {boolean}
|
|
3469
|
-
* @memberof VideoScreensharingSettingsRequest
|
|
3470
|
-
*/
|
|
3471
|
-
access_request_enabled?: boolean;
|
|
3472
|
-
/**
|
|
3473
|
-
*
|
|
3474
|
-
* @type {boolean}
|
|
3475
|
-
* @memberof VideoScreensharingSettingsRequest
|
|
3476
|
-
*/
|
|
3477
|
-
enabled?: boolean;
|
|
3478
|
-
/**
|
|
3479
|
-
*
|
|
3480
|
-
* @type {VideoTargetResolution}
|
|
3481
|
-
* @memberof VideoScreensharingSettingsRequest
|
|
3482
|
-
*/
|
|
3483
|
-
target_resolution?: VideoTargetResolution;
|
|
3484
|
-
}
|
|
3485
|
-
/**
|
|
3486
|
-
*
|
|
3487
|
-
* @export
|
|
3488
|
-
* @interface VideoScreensharingSettingsResponse
|
|
3489
|
-
*/
|
|
3490
|
-
export interface VideoScreensharingSettingsResponse {
|
|
3491
|
-
/**
|
|
3492
|
-
*
|
|
3493
|
-
* @type {boolean}
|
|
3494
|
-
* @memberof VideoScreensharingSettingsResponse
|
|
3495
|
-
*/
|
|
3496
|
-
access_request_enabled: boolean;
|
|
3497
|
-
/**
|
|
3498
|
-
*
|
|
3499
|
-
* @type {boolean}
|
|
3500
|
-
* @memberof VideoScreensharingSettingsResponse
|
|
3501
|
-
*/
|
|
3502
|
-
enabled: boolean;
|
|
3503
|
-
/**
|
|
3504
|
-
*
|
|
3505
|
-
* @type {VideoTargetResolution}
|
|
3506
|
-
* @memberof VideoScreensharingSettingsResponse
|
|
3507
|
-
*/
|
|
3508
|
-
target_resolution?: VideoTargetResolution;
|
|
3509
|
-
}
|
|
3510
|
-
/**
|
|
3511
|
-
*
|
|
3512
|
-
* @export
|
|
3513
|
-
* @interface VideoSendCallEventRequest
|
|
3514
|
-
*/
|
|
3515
|
-
export interface VideoSendCallEventRequest {
|
|
3516
|
-
/**
|
|
3517
|
-
*
|
|
3518
|
-
* @type {{ [key: string]: any; }}
|
|
3519
|
-
* @memberof VideoSendCallEventRequest
|
|
3520
|
-
*/
|
|
3521
|
-
custom?: { [key: string]: any; };
|
|
3522
|
-
/**
|
|
3523
|
-
*
|
|
3524
|
-
* @type {VideoUserRequest}
|
|
3525
|
-
* @memberof VideoSendCallEventRequest
|
|
3526
|
-
*/
|
|
3527
|
-
user?: VideoUserRequest;
|
|
3528
|
-
/**
|
|
3529
|
-
*
|
|
3530
|
-
* @type {string}
|
|
3531
|
-
* @memberof VideoSendCallEventRequest
|
|
3532
|
-
*/
|
|
3533
|
-
user_id?: string;
|
|
3534
|
-
}
|
|
3535
|
-
/**
|
|
3536
|
-
*
|
|
3537
|
-
* @export
|
|
3538
|
-
* @interface VideoSendCallEventResponse
|
|
3539
|
-
*/
|
|
3540
|
-
export interface VideoSendCallEventResponse {
|
|
3541
|
-
/**
|
|
3542
|
-
*
|
|
3543
|
-
* @type {string}
|
|
3544
|
-
* @memberof VideoSendCallEventResponse
|
|
3545
|
-
*/
|
|
3546
|
-
duration: string;
|
|
3547
|
-
}
|
|
3548
|
-
/**
|
|
3549
|
-
*
|
|
3550
|
-
* @export
|
|
3551
|
-
* @interface VideoSortParam
|
|
3552
|
-
*/
|
|
3553
|
-
export interface VideoSortParam {
|
|
3554
|
-
/**
|
|
3555
|
-
* Direction of sorting, -1 for descending, 1 for ascending
|
|
3556
|
-
* @type {number}
|
|
3557
|
-
* @memberof VideoSortParam
|
|
3558
|
-
*/
|
|
3559
|
-
direction?: number;
|
|
3560
|
-
/**
|
|
3561
|
-
* Name of field to sort by
|
|
3562
|
-
* @type {string}
|
|
3563
|
-
* @memberof VideoSortParam
|
|
3564
|
-
*/
|
|
3565
|
-
field?: string;
|
|
3566
|
-
}
|
|
3567
|
-
/**
|
|
3568
|
-
*
|
|
3569
|
-
* @export
|
|
3570
|
-
* @interface VideoStartHLSBroadcastingResponse
|
|
3571
|
-
*/
|
|
3572
|
-
export interface VideoStartHLSBroadcastingResponse {
|
|
3573
|
-
/**
|
|
3574
|
-
* Duration of the request in human-readable format
|
|
3575
|
-
* @type {string}
|
|
3576
|
-
* @memberof VideoStartHLSBroadcastingResponse
|
|
3577
|
-
*/
|
|
3578
|
-
duration: string;
|
|
3579
|
-
/**
|
|
3580
|
-
*
|
|
3581
|
-
* @type {string}
|
|
3582
|
-
* @memberof VideoStartHLSBroadcastingResponse
|
|
3583
|
-
*/
|
|
3584
|
-
playlist_url: string;
|
|
3585
|
-
}
|
|
3586
|
-
/**
|
|
3587
|
-
*
|
|
3588
|
-
* @export
|
|
3589
|
-
* @interface VideoStartRecordingRequest
|
|
3590
|
-
*/
|
|
3591
|
-
export interface VideoStartRecordingRequest {
|
|
3592
|
-
/**
|
|
3593
|
-
*
|
|
3594
|
-
* @type {string}
|
|
3595
|
-
* @memberof VideoStartRecordingRequest
|
|
3596
|
-
*/
|
|
3597
|
-
recording_external_storage?: string;
|
|
3598
|
-
}
|
|
3599
|
-
/**
|
|
3600
|
-
*
|
|
3601
|
-
* @export
|
|
3602
|
-
* @interface VideoStartRecordingResponse
|
|
3603
|
-
*/
|
|
3604
|
-
export interface VideoStartRecordingResponse {
|
|
3605
|
-
/**
|
|
3606
|
-
*
|
|
3607
|
-
* @type {string}
|
|
3608
|
-
* @memberof VideoStartRecordingResponse
|
|
3609
|
-
*/
|
|
3610
|
-
duration: string;
|
|
3611
|
-
}
|
|
3612
|
-
/**
|
|
3613
|
-
*
|
|
3614
|
-
* @export
|
|
3615
|
-
* @interface VideoStartTranscriptionRequest
|
|
3616
|
-
*/
|
|
3617
|
-
export interface VideoStartTranscriptionRequest {
|
|
3618
|
-
/**
|
|
3619
|
-
*
|
|
3620
|
-
* @type {string}
|
|
3621
|
-
* @memberof VideoStartTranscriptionRequest
|
|
3622
|
-
*/
|
|
3623
|
-
transcription_external_storage?: string;
|
|
3624
|
-
}
|
|
3625
|
-
/**
|
|
3626
|
-
*
|
|
3627
|
-
* @export
|
|
3628
|
-
* @interface VideoStartTranscriptionResponse
|
|
3629
|
-
*/
|
|
3630
|
-
export interface VideoStartTranscriptionResponse {
|
|
3631
|
-
/**
|
|
3632
|
-
*
|
|
3633
|
-
* @type {string}
|
|
3634
|
-
* @memberof VideoStartTranscriptionResponse
|
|
3635
|
-
*/
|
|
3636
|
-
duration: string;
|
|
3637
|
-
}
|
|
3638
|
-
/**
|
|
3639
|
-
*
|
|
3640
|
-
* @export
|
|
3641
|
-
* @interface VideoStopHLSBroadcastingResponse
|
|
3642
|
-
*/
|
|
3643
|
-
export interface VideoStopHLSBroadcastingResponse {
|
|
3644
|
-
/**
|
|
3645
|
-
* Duration of the request in human-readable format
|
|
3646
|
-
* @type {string}
|
|
3647
|
-
* @memberof VideoStopHLSBroadcastingResponse
|
|
3648
|
-
*/
|
|
3649
|
-
duration: string;
|
|
3650
|
-
}
|
|
3651
|
-
/**
|
|
3652
|
-
*
|
|
3653
|
-
* @export
|
|
3654
|
-
* @interface VideoStopLiveResponse
|
|
3655
|
-
*/
|
|
3656
|
-
export interface VideoStopLiveResponse {
|
|
3657
|
-
/**
|
|
3658
|
-
*
|
|
3659
|
-
* @type {VideoCallResponse}
|
|
3660
|
-
* @memberof VideoStopLiveResponse
|
|
3661
|
-
*/
|
|
3662
|
-
call: VideoCallResponse;
|
|
3663
|
-
/**
|
|
3664
|
-
* Duration of the request in human-readable format
|
|
3665
|
-
* @type {string}
|
|
3666
|
-
* @memberof VideoStopLiveResponse
|
|
3667
|
-
*/
|
|
3668
|
-
duration: string;
|
|
3669
|
-
}
|
|
3670
|
-
/**
|
|
3671
|
-
*
|
|
3672
|
-
* @export
|
|
3673
|
-
* @interface VideoStopRecordingResponse
|
|
3674
|
-
*/
|
|
3675
|
-
export interface VideoStopRecordingResponse {
|
|
3676
|
-
/**
|
|
3677
|
-
* Duration of the request in human-readable format
|
|
3678
|
-
* @type {string}
|
|
3679
|
-
* @memberof VideoStopRecordingResponse
|
|
3680
|
-
*/
|
|
3681
|
-
duration: string;
|
|
3682
|
-
}
|
|
3683
|
-
/**
|
|
3684
|
-
*
|
|
3685
|
-
* @export
|
|
3686
|
-
* @interface VideoStopTranscriptionResponse
|
|
3687
|
-
*/
|
|
3688
|
-
export interface VideoStopTranscriptionResponse {
|
|
3689
|
-
/**
|
|
3690
|
-
* Duration of the request in human-readable format
|
|
3691
|
-
* @type {string}
|
|
3692
|
-
* @memberof VideoStopTranscriptionResponse
|
|
3693
|
-
*/
|
|
3694
|
-
duration: string;
|
|
3695
|
-
}
|
|
3696
|
-
/**
|
|
3697
|
-
*
|
|
3698
|
-
* @export
|
|
3699
|
-
* @interface VideoSubsession
|
|
3700
|
-
*/
|
|
3701
|
-
export interface VideoSubsession {
|
|
3702
|
-
/**
|
|
3703
|
-
*
|
|
3704
|
-
* @type {number}
|
|
3705
|
-
* @memberof VideoSubsession
|
|
3706
|
-
*/
|
|
3707
|
-
ended_at: number;
|
|
3708
|
-
/**
|
|
3709
|
-
*
|
|
3710
|
-
* @type {number}
|
|
3711
|
-
* @memberof VideoSubsession
|
|
3712
|
-
*/
|
|
3713
|
-
joined_at: number;
|
|
3714
|
-
/**
|
|
3715
|
-
*
|
|
3716
|
-
* @type {VideoMediaPubSubHint}
|
|
3717
|
-
* @memberof VideoSubsession
|
|
3718
|
-
*/
|
|
3719
|
-
pub_sub_hint?: VideoMediaPubSubHint;
|
|
3720
|
-
/**
|
|
3721
|
-
*
|
|
3722
|
-
* @type {string}
|
|
3723
|
-
* @memberof VideoSubsession
|
|
3724
|
-
*/
|
|
3725
|
-
sfu_id: string;
|
|
3726
|
-
}
|
|
3727
|
-
/**
|
|
3728
|
-
*
|
|
3729
|
-
* @export
|
|
3730
|
-
* @interface VideoTURNAggregatedStats
|
|
3731
|
-
*/
|
|
3732
|
-
export interface VideoTURNAggregatedStats {
|
|
3733
|
-
/**
|
|
3734
|
-
*
|
|
3735
|
-
* @type {VideoCount}
|
|
3736
|
-
* @memberof VideoTURNAggregatedStats
|
|
3737
|
-
*/
|
|
3738
|
-
tcp?: VideoCount;
|
|
3739
|
-
/**
|
|
3740
|
-
*
|
|
3741
|
-
* @type {VideoCount}
|
|
3742
|
-
* @memberof VideoTURNAggregatedStats
|
|
3743
|
-
*/
|
|
3744
|
-
total?: VideoCount;
|
|
3745
|
-
}
|
|
3746
|
-
/**
|
|
3747
|
-
*
|
|
3748
|
-
* @export
|
|
3749
|
-
* @interface VideoTargetResolution
|
|
3750
|
-
*/
|
|
3751
|
-
export interface VideoTargetResolution {
|
|
3752
|
-
/**
|
|
3753
|
-
*
|
|
3754
|
-
* @type {number}
|
|
3755
|
-
* @memberof VideoTargetResolution
|
|
3756
|
-
*/
|
|
3757
|
-
bitrate?: number;
|
|
3758
|
-
/**
|
|
3759
|
-
*
|
|
3760
|
-
* @type {number}
|
|
3761
|
-
* @memberof VideoTargetResolution
|
|
3762
|
-
*/
|
|
3763
|
-
height: number;
|
|
3764
|
-
/**
|
|
3765
|
-
*
|
|
3766
|
-
* @type {number}
|
|
3767
|
-
* @memberof VideoTargetResolution
|
|
3768
|
-
*/
|
|
3769
|
-
width: number;
|
|
3770
|
-
}
|
|
3771
|
-
/**
|
|
3772
|
-
*
|
|
3773
|
-
* @export
|
|
3774
|
-
* @interface VideoThumbnailResponse
|
|
3775
|
-
*/
|
|
3776
|
-
export interface VideoThumbnailResponse {
|
|
3777
|
-
/**
|
|
3778
|
-
*
|
|
3779
|
-
* @type {string}
|
|
3780
|
-
* @memberof VideoThumbnailResponse
|
|
3781
|
-
*/
|
|
3782
|
-
image_url: string;
|
|
3783
|
-
}
|
|
3784
|
-
/**
|
|
3785
|
-
*
|
|
3786
|
-
* @export
|
|
3787
|
-
* @interface VideoThumbnailsSettingsRequest
|
|
3788
|
-
*/
|
|
3789
|
-
export interface VideoThumbnailsSettingsRequest {
|
|
3790
|
-
/**
|
|
3791
|
-
*
|
|
3792
|
-
* @type {boolean}
|
|
3793
|
-
* @memberof VideoThumbnailsSettingsRequest
|
|
3794
|
-
*/
|
|
3795
|
-
enabled?: boolean;
|
|
3796
|
-
}
|
|
3797
|
-
/**
|
|
3798
|
-
*
|
|
3799
|
-
* @export
|
|
3800
|
-
* @interface VideoThumbnailsSettingsResponse
|
|
3801
|
-
*/
|
|
3802
|
-
export interface VideoThumbnailsSettingsResponse {
|
|
3803
|
-
/**
|
|
3804
|
-
*
|
|
3805
|
-
* @type {boolean}
|
|
3806
|
-
* @memberof VideoThumbnailsSettingsResponse
|
|
3807
|
-
*/
|
|
3808
|
-
enabled: boolean;
|
|
3809
|
-
}
|
|
3810
|
-
/**
|
|
3811
|
-
*
|
|
3812
|
-
* @export
|
|
3813
|
-
* @interface VideoTimeStats
|
|
3814
|
-
*/
|
|
3815
|
-
export interface VideoTimeStats {
|
|
3816
|
-
/**
|
|
3817
|
-
*
|
|
3818
|
-
* @type {number}
|
|
3819
|
-
* @memberof VideoTimeStats
|
|
3820
|
-
*/
|
|
3821
|
-
average_seconds: number;
|
|
3822
|
-
/**
|
|
3823
|
-
*
|
|
3824
|
-
* @type {number}
|
|
3825
|
-
* @memberof VideoTimeStats
|
|
3826
|
-
*/
|
|
3827
|
-
max_seconds: number;
|
|
3828
|
-
}
|
|
3829
|
-
/**
|
|
3830
|
-
*
|
|
3831
|
-
* @export
|
|
3832
|
-
* @interface VideoTranscriptionSettingsRequest
|
|
3833
|
-
*/
|
|
3834
|
-
export interface VideoTranscriptionSettingsRequest {
|
|
3835
|
-
/**
|
|
3836
|
-
*
|
|
3837
|
-
* @type {string}
|
|
3838
|
-
* @memberof VideoTranscriptionSettingsRequest
|
|
3839
|
-
*/
|
|
3840
|
-
closed_caption_mode?: string;
|
|
3841
|
-
/**
|
|
3842
|
-
*
|
|
3843
|
-
* @type {Array<string>}
|
|
3844
|
-
* @memberof VideoTranscriptionSettingsRequest
|
|
3845
|
-
*/
|
|
3846
|
-
languages?: Array<string>;
|
|
3847
|
-
/**
|
|
3848
|
-
*
|
|
3849
|
-
* @type {string}
|
|
3850
|
-
* @memberof VideoTranscriptionSettingsRequest
|
|
3851
|
-
*/
|
|
3852
|
-
mode: VideoTranscriptionSettingsRequestModeEnum;
|
|
3853
|
-
}
|
|
3854
|
-
|
|
3855
|
-
|
|
3856
|
-
/**
|
|
3857
|
-
* @export
|
|
3858
|
-
*/
|
|
3859
|
-
export const VideoTranscriptionSettingsRequestModeEnum = {
|
|
3860
|
-
AVAILABLE: 'available',
|
|
3861
|
-
DISABLED: 'disabled',
|
|
3862
|
-
AUTO_ON: 'auto-on'
|
|
3863
|
-
} as const;
|
|
3864
|
-
export type VideoTranscriptionSettingsRequestModeEnum = typeof VideoTranscriptionSettingsRequestModeEnum[keyof typeof VideoTranscriptionSettingsRequestModeEnum];
|
|
3865
|
-
|
|
3866
|
-
/**
|
|
3867
|
-
*
|
|
3868
|
-
* @export
|
|
3869
|
-
* @interface VideoTranscriptionSettingsResponse
|
|
3870
|
-
*/
|
|
3871
|
-
export interface VideoTranscriptionSettingsResponse {
|
|
3872
|
-
/**
|
|
3873
|
-
*
|
|
3874
|
-
* @type {string}
|
|
3875
|
-
* @memberof VideoTranscriptionSettingsResponse
|
|
3876
|
-
*/
|
|
3877
|
-
closed_caption_mode: string;
|
|
3878
|
-
/**
|
|
3879
|
-
*
|
|
3880
|
-
* @type {Array<string>}
|
|
3881
|
-
* @memberof VideoTranscriptionSettingsResponse
|
|
3882
|
-
*/
|
|
3883
|
-
languages: Array<string>;
|
|
3884
|
-
/**
|
|
3885
|
-
*
|
|
3886
|
-
* @type {string}
|
|
3887
|
-
* @memberof VideoTranscriptionSettingsResponse
|
|
3888
|
-
*/
|
|
3889
|
-
mode: VideoTranscriptionSettingsResponseModeEnum;
|
|
3890
|
-
}
|
|
3891
|
-
|
|
3892
|
-
|
|
3893
|
-
/**
|
|
3894
|
-
* @export
|
|
3895
|
-
*/
|
|
3896
|
-
export const VideoTranscriptionSettingsResponseModeEnum = {
|
|
3897
|
-
AVAILABLE: 'available',
|
|
3898
|
-
DISABLED: 'disabled',
|
|
3899
|
-
AUTO_ON: 'auto-on'
|
|
3900
|
-
} as const;
|
|
3901
|
-
export type VideoTranscriptionSettingsResponseModeEnum = typeof VideoTranscriptionSettingsResponseModeEnum[keyof typeof VideoTranscriptionSettingsResponseModeEnum];
|
|
3902
|
-
|
|
3903
|
-
/**
|
|
3904
|
-
*
|
|
3905
|
-
* @export
|
|
3906
|
-
* @interface VideoTypingIndicators
|
|
3907
|
-
*/
|
|
3908
|
-
export interface VideoTypingIndicators {
|
|
3909
|
-
/**
|
|
3910
|
-
*
|
|
3911
|
-
* @type {boolean}
|
|
3912
|
-
* @memberof VideoTypingIndicators
|
|
3913
|
-
*/
|
|
3914
|
-
enabled?: boolean;
|
|
3915
|
-
}
|
|
3916
|
-
/**
|
|
3917
|
-
*
|
|
3918
|
-
* @export
|
|
3919
|
-
* @interface VideoUnblockUserRequest
|
|
3920
|
-
*/
|
|
3921
|
-
export interface VideoUnblockUserRequest {
|
|
3922
|
-
/**
|
|
3923
|
-
* the user to unblock
|
|
3924
|
-
* @type {string}
|
|
3925
|
-
* @memberof VideoUnblockUserRequest
|
|
3926
|
-
*/
|
|
3927
|
-
user_id: string;
|
|
3928
|
-
}
|
|
3929
|
-
/**
|
|
3930
|
-
*
|
|
3931
|
-
* @export
|
|
3932
|
-
* @interface VideoUnblockUserResponse
|
|
3933
|
-
*/
|
|
3934
|
-
export interface VideoUnblockUserResponse {
|
|
3935
|
-
/**
|
|
3936
|
-
* Duration of the request in human-readable format
|
|
3937
|
-
* @type {string}
|
|
3938
|
-
* @memberof VideoUnblockUserResponse
|
|
3939
|
-
*/
|
|
3940
|
-
duration: string;
|
|
3941
|
-
}
|
|
3942
|
-
/**
|
|
3943
|
-
*
|
|
3944
|
-
* @export
|
|
3945
|
-
* @interface VideoUnpinRequest
|
|
3946
|
-
*/
|
|
3947
|
-
export interface VideoUnpinRequest {
|
|
3948
|
-
/**
|
|
3949
|
-
*
|
|
3950
|
-
* @type {string}
|
|
3951
|
-
* @memberof VideoUnpinRequest
|
|
3952
|
-
*/
|
|
3953
|
-
session_id: string;
|
|
3954
|
-
/**
|
|
3955
|
-
*
|
|
3956
|
-
* @type {string}
|
|
3957
|
-
* @memberof VideoUnpinRequest
|
|
3958
|
-
*/
|
|
3959
|
-
user_id: string;
|
|
3960
|
-
}
|
|
3961
|
-
/**
|
|
3962
|
-
*
|
|
3963
|
-
* @export
|
|
3964
|
-
* @interface VideoUnpinResponse
|
|
3965
|
-
*/
|
|
3966
|
-
export interface VideoUnpinResponse {
|
|
3967
|
-
/**
|
|
3968
|
-
* Duration of the request in human-readable format
|
|
3969
|
-
* @type {string}
|
|
3970
|
-
* @memberof VideoUnpinResponse
|
|
3971
|
-
*/
|
|
3972
|
-
duration: string;
|
|
3973
|
-
}
|
|
3974
|
-
/**
|
|
3975
|
-
*
|
|
3976
|
-
* @export
|
|
3977
|
-
* @interface VideoUpdateCallMembersRequest
|
|
3978
|
-
*/
|
|
3979
|
-
export interface VideoUpdateCallMembersRequest {
|
|
3980
|
-
/**
|
|
3981
|
-
* List of userID to remove
|
|
3982
|
-
* @type {Array<string>}
|
|
3983
|
-
* @memberof VideoUpdateCallMembersRequest
|
|
3984
|
-
*/
|
|
3985
|
-
remove_members?: Array<string>;
|
|
3986
|
-
/**
|
|
3987
|
-
* List of members to update or insert
|
|
3988
|
-
* @type {Array<VideoMemberRequest>}
|
|
3989
|
-
* @memberof VideoUpdateCallMembersRequest
|
|
3990
|
-
*/
|
|
3991
|
-
update_members?: Array<VideoMemberRequest>;
|
|
3992
|
-
}
|
|
3993
|
-
/**
|
|
3994
|
-
*
|
|
3995
|
-
* @export
|
|
3996
|
-
* @interface VideoUpdateCallMembersResponse
|
|
3997
|
-
*/
|
|
3998
|
-
export interface VideoUpdateCallMembersResponse {
|
|
3999
|
-
/**
|
|
4000
|
-
* Duration of the request in human-readable format
|
|
4001
|
-
* @type {string}
|
|
4002
|
-
* @memberof VideoUpdateCallMembersResponse
|
|
4003
|
-
*/
|
|
4004
|
-
duration: string;
|
|
4005
|
-
/**
|
|
4006
|
-
*
|
|
4007
|
-
* @type {Array<VideoMemberResponse>}
|
|
4008
|
-
* @memberof VideoUpdateCallMembersResponse
|
|
4009
|
-
*/
|
|
4010
|
-
members: Array<VideoMemberResponse>;
|
|
4011
|
-
}
|
|
4012
|
-
/**
|
|
4013
|
-
*
|
|
4014
|
-
* @export
|
|
4015
|
-
* @interface VideoUpdateCallRequest
|
|
4016
|
-
*/
|
|
4017
|
-
export interface VideoUpdateCallRequest {
|
|
4018
|
-
/**
|
|
4019
|
-
* Custom data for this object
|
|
4020
|
-
* @type {{ [key: string]: any; }}
|
|
4021
|
-
* @memberof VideoUpdateCallRequest
|
|
4022
|
-
*/
|
|
4023
|
-
custom?: { [key: string]: any; };
|
|
4024
|
-
/**
|
|
4025
|
-
*
|
|
4026
|
-
* @type {VideoCallSettingsRequest}
|
|
4027
|
-
* @memberof VideoUpdateCallRequest
|
|
4028
|
-
*/
|
|
4029
|
-
settings_override?: VideoCallSettingsRequest;
|
|
4030
|
-
/**
|
|
4031
|
-
* the time the call is scheduled to start
|
|
4032
|
-
* @type {string}
|
|
4033
|
-
* @memberof VideoUpdateCallRequest
|
|
4034
|
-
*/
|
|
4035
|
-
starts_at?: string;
|
|
4036
|
-
}
|
|
4037
|
-
/**
|
|
4038
|
-
* Represents a call
|
|
4039
|
-
* @export
|
|
4040
|
-
* @interface VideoUpdateCallResponse
|
|
4041
|
-
*/
|
|
4042
|
-
export interface VideoUpdateCallResponse {
|
|
4043
|
-
/**
|
|
4044
|
-
*
|
|
4045
|
-
* @type {VideoCallResponse}
|
|
4046
|
-
* @memberof VideoUpdateCallResponse
|
|
4047
|
-
*/
|
|
4048
|
-
call: VideoCallResponse;
|
|
4049
|
-
/**
|
|
4050
|
-
*
|
|
4051
|
-
* @type {string}
|
|
4052
|
-
* @memberof VideoUpdateCallResponse
|
|
4053
|
-
*/
|
|
4054
|
-
duration: string;
|
|
4055
|
-
/**
|
|
4056
|
-
*
|
|
4057
|
-
* @type {Array<VideoMemberResponse>}
|
|
4058
|
-
* @memberof VideoUpdateCallResponse
|
|
4059
|
-
*/
|
|
4060
|
-
members: Array<VideoMemberResponse>;
|
|
4061
|
-
/**
|
|
4062
|
-
*
|
|
4063
|
-
* @type {Array<VideoOwnCapability>}
|
|
4064
|
-
* @memberof VideoUpdateCallResponse
|
|
4065
|
-
*/
|
|
4066
|
-
own_capabilities: Array<VideoOwnCapability>;
|
|
4067
|
-
}
|
|
4068
|
-
/**
|
|
4069
|
-
*
|
|
4070
|
-
* @export
|
|
4071
|
-
* @interface VideoUpdateCallTypeRequest
|
|
4072
|
-
*/
|
|
4073
|
-
export interface VideoUpdateCallTypeRequest {
|
|
4074
|
-
/**
|
|
4075
|
-
*
|
|
4076
|
-
* @type {string}
|
|
4077
|
-
* @memberof VideoUpdateCallTypeRequest
|
|
4078
|
-
*/
|
|
4079
|
-
external_storage?: string;
|
|
4080
|
-
/**
|
|
4081
|
-
*
|
|
4082
|
-
* @type {{ [key: string]: Array<string>; }}
|
|
4083
|
-
* @memberof VideoUpdateCallTypeRequest
|
|
4084
|
-
*/
|
|
4085
|
-
grants?: { [key: string]: Array<string>; };
|
|
4086
|
-
/**
|
|
4087
|
-
*
|
|
4088
|
-
* @type {VideoNotificationSettings}
|
|
4089
|
-
* @memberof VideoUpdateCallTypeRequest
|
|
4090
|
-
*/
|
|
4091
|
-
notification_settings?: VideoNotificationSettings;
|
|
4092
|
-
/**
|
|
4093
|
-
*
|
|
4094
|
-
* @type {VideoCallSettingsRequest}
|
|
4095
|
-
* @memberof VideoUpdateCallTypeRequest
|
|
4096
|
-
*/
|
|
4097
|
-
settings?: VideoCallSettingsRequest;
|
|
4098
|
-
}
|
|
4099
|
-
/**
|
|
4100
|
-
*
|
|
4101
|
-
* @export
|
|
4102
|
-
* @interface VideoUpdateCallTypeResponse
|
|
4103
|
-
*/
|
|
4104
|
-
export interface VideoUpdateCallTypeResponse {
|
|
4105
|
-
/**
|
|
4106
|
-
*
|
|
4107
|
-
* @type {string}
|
|
4108
|
-
* @memberof VideoUpdateCallTypeResponse
|
|
4109
|
-
*/
|
|
4110
|
-
created_at: string;
|
|
4111
|
-
/**
|
|
4112
|
-
*
|
|
4113
|
-
* @type {string}
|
|
4114
|
-
* @memberof VideoUpdateCallTypeResponse
|
|
4115
|
-
*/
|
|
4116
|
-
duration: string;
|
|
4117
|
-
/**
|
|
4118
|
-
*
|
|
4119
|
-
* @type {string}
|
|
4120
|
-
* @memberof VideoUpdateCallTypeResponse
|
|
4121
|
-
*/
|
|
4122
|
-
external_storage?: string;
|
|
4123
|
-
/**
|
|
4124
|
-
*
|
|
4125
|
-
* @type {{ [key: string]: Array<string>; }}
|
|
4126
|
-
* @memberof VideoUpdateCallTypeResponse
|
|
4127
|
-
*/
|
|
4128
|
-
grants: { [key: string]: Array<string>; };
|
|
4129
|
-
/**
|
|
4130
|
-
*
|
|
4131
|
-
* @type {string}
|
|
4132
|
-
* @memberof VideoUpdateCallTypeResponse
|
|
4133
|
-
*/
|
|
4134
|
-
name: string;
|
|
4135
|
-
/**
|
|
4136
|
-
*
|
|
4137
|
-
* @type {VideoNotificationSettings}
|
|
4138
|
-
* @memberof VideoUpdateCallTypeResponse
|
|
4139
|
-
*/
|
|
4140
|
-
notification_settings: VideoNotificationSettings;
|
|
4141
|
-
/**
|
|
4142
|
-
*
|
|
4143
|
-
* @type {VideoCallSettingsResponse}
|
|
4144
|
-
* @memberof VideoUpdateCallTypeResponse
|
|
4145
|
-
*/
|
|
4146
|
-
settings: VideoCallSettingsResponse;
|
|
4147
|
-
/**
|
|
4148
|
-
*
|
|
4149
|
-
* @type {string}
|
|
4150
|
-
* @memberof VideoUpdateCallTypeResponse
|
|
4151
|
-
*/
|
|
4152
|
-
updated_at: string;
|
|
4153
|
-
}
|
|
4154
|
-
/**
|
|
4155
|
-
*
|
|
4156
|
-
* @export
|
|
4157
|
-
* @interface VideoUpdateExternalStorageRequest
|
|
4158
|
-
*/
|
|
4159
|
-
export interface VideoUpdateExternalStorageRequest {
|
|
4160
|
-
/**
|
|
4161
|
-
*
|
|
4162
|
-
* @type {VideoS3Request}
|
|
4163
|
-
* @memberof VideoUpdateExternalStorageRequest
|
|
4164
|
-
*/
|
|
4165
|
-
aws_s3?: VideoS3Request;
|
|
4166
|
-
/**
|
|
4167
|
-
*
|
|
4168
|
-
* @type {VideoAzureRequest}
|
|
4169
|
-
* @memberof VideoUpdateExternalStorageRequest
|
|
4170
|
-
*/
|
|
4171
|
-
azure_blob?: VideoAzureRequest;
|
|
4172
|
-
/**
|
|
4173
|
-
*
|
|
4174
|
-
* @type {string}
|
|
4175
|
-
* @memberof VideoUpdateExternalStorageRequest
|
|
4176
|
-
*/
|
|
4177
|
-
bucket: string;
|
|
4178
|
-
/**
|
|
4179
|
-
*
|
|
4180
|
-
* @type {string}
|
|
4181
|
-
* @memberof VideoUpdateExternalStorageRequest
|
|
4182
|
-
*/
|
|
4183
|
-
gcs_credentials?: string;
|
|
4184
|
-
/**
|
|
4185
|
-
*
|
|
4186
|
-
* @type {string}
|
|
4187
|
-
* @memberof VideoUpdateExternalStorageRequest
|
|
4188
|
-
*/
|
|
4189
|
-
path?: string;
|
|
4190
|
-
/**
|
|
4191
|
-
*
|
|
4192
|
-
* @type {string}
|
|
4193
|
-
* @memberof VideoUpdateExternalStorageRequest
|
|
4194
|
-
*/
|
|
4195
|
-
storage_type: VideoUpdateExternalStorageRequestStorageTypeEnum;
|
|
4196
|
-
}
|
|
4197
|
-
|
|
4198
|
-
|
|
4199
|
-
/**
|
|
4200
|
-
* @export
|
|
4201
|
-
*/
|
|
4202
|
-
export const VideoUpdateExternalStorageRequestStorageTypeEnum = {
|
|
4203
|
-
S3: 's3',
|
|
4204
|
-
GCS: 'gcs',
|
|
4205
|
-
ABS: 'abs'
|
|
4206
|
-
} as const;
|
|
4207
|
-
export type VideoUpdateExternalStorageRequestStorageTypeEnum = typeof VideoUpdateExternalStorageRequestStorageTypeEnum[keyof typeof VideoUpdateExternalStorageRequestStorageTypeEnum];
|
|
4208
|
-
|
|
4209
|
-
/**
|
|
4210
|
-
*
|
|
4211
|
-
* @export
|
|
4212
|
-
* @interface VideoUpdateExternalStorageResponse
|
|
4213
|
-
*/
|
|
4214
|
-
export interface VideoUpdateExternalStorageResponse {
|
|
4215
|
-
/**
|
|
4216
|
-
*
|
|
4217
|
-
* @type {string}
|
|
4218
|
-
* @memberof VideoUpdateExternalStorageResponse
|
|
4219
|
-
*/
|
|
4220
|
-
bucket: string;
|
|
4221
|
-
/**
|
|
4222
|
-
* Duration of the request in human-readable format
|
|
4223
|
-
* @type {string}
|
|
4224
|
-
* @memberof VideoUpdateExternalStorageResponse
|
|
4225
|
-
*/
|
|
4226
|
-
duration: string;
|
|
4227
|
-
/**
|
|
4228
|
-
*
|
|
4229
|
-
* @type {string}
|
|
4230
|
-
* @memberof VideoUpdateExternalStorageResponse
|
|
4231
|
-
*/
|
|
4232
|
-
name: string;
|
|
4233
|
-
/**
|
|
4234
|
-
*
|
|
4235
|
-
* @type {string}
|
|
4236
|
-
* @memberof VideoUpdateExternalStorageResponse
|
|
4237
|
-
*/
|
|
4238
|
-
path: string;
|
|
4239
|
-
/**
|
|
4240
|
-
*
|
|
4241
|
-
* @type {string}
|
|
4242
|
-
* @memberof VideoUpdateExternalStorageResponse
|
|
4243
|
-
*/
|
|
4244
|
-
type: VideoUpdateExternalStorageResponseTypeEnum;
|
|
4245
|
-
}
|
|
4246
|
-
|
|
4247
|
-
|
|
4248
|
-
/**
|
|
4249
|
-
* @export
|
|
4250
|
-
*/
|
|
4251
|
-
export const VideoUpdateExternalStorageResponseTypeEnum = {
|
|
4252
|
-
S3: 's3',
|
|
4253
|
-
GCS: 'gcs',
|
|
4254
|
-
ABS: 'abs'
|
|
4255
|
-
} as const;
|
|
4256
|
-
export type VideoUpdateExternalStorageResponseTypeEnum = typeof VideoUpdateExternalStorageResponseTypeEnum[keyof typeof VideoUpdateExternalStorageResponseTypeEnum];
|
|
4257
|
-
|
|
4258
|
-
/**
|
|
4259
|
-
*
|
|
4260
|
-
* @export
|
|
4261
|
-
* @interface VideoUpdateUserPermissionsRequest
|
|
4262
|
-
*/
|
|
4263
|
-
export interface VideoUpdateUserPermissionsRequest {
|
|
4264
|
-
/**
|
|
4265
|
-
*
|
|
4266
|
-
* @type {Array<string>}
|
|
4267
|
-
* @memberof VideoUpdateUserPermissionsRequest
|
|
4268
|
-
*/
|
|
4269
|
-
grant_permissions?: Array<string>;
|
|
4270
|
-
/**
|
|
4271
|
-
*
|
|
4272
|
-
* @type {Array<string>}
|
|
4273
|
-
* @memberof VideoUpdateUserPermissionsRequest
|
|
4274
|
-
*/
|
|
4275
|
-
revoke_permissions?: Array<string>;
|
|
4276
|
-
/**
|
|
4277
|
-
*
|
|
4278
|
-
* @type {string}
|
|
4279
|
-
* @memberof VideoUpdateUserPermissionsRequest
|
|
4280
|
-
*/
|
|
4281
|
-
user_id: string;
|
|
4282
|
-
}
|
|
4283
|
-
/**
|
|
4284
|
-
*
|
|
4285
|
-
* @export
|
|
4286
|
-
* @interface VideoUpdateUserPermissionsResponse
|
|
4287
|
-
*/
|
|
4288
|
-
export interface VideoUpdateUserPermissionsResponse {
|
|
4289
|
-
/**
|
|
4290
|
-
* Duration of the request in human-readable format
|
|
4291
|
-
* @type {string}
|
|
4292
|
-
* @memberof VideoUpdateUserPermissionsResponse
|
|
4293
|
-
*/
|
|
4294
|
-
duration: string;
|
|
4295
|
-
}
|
|
4296
|
-
/**
|
|
4297
|
-
*
|
|
4298
|
-
* @export
|
|
4299
|
-
* @interface VideoUserInfoResponse
|
|
4300
|
-
*/
|
|
4301
|
-
export interface VideoUserInfoResponse {
|
|
4302
|
-
/**
|
|
4303
|
-
*
|
|
4304
|
-
* @type {{ [key: string]: any; }}
|
|
4305
|
-
* @memberof VideoUserInfoResponse
|
|
4306
|
-
*/
|
|
4307
|
-
custom: { [key: string]: any; };
|
|
4308
|
-
/**
|
|
4309
|
-
*
|
|
4310
|
-
* @type {string}
|
|
4311
|
-
* @memberof VideoUserInfoResponse
|
|
4312
|
-
*/
|
|
4313
|
-
image: string;
|
|
4314
|
-
/**
|
|
4315
|
-
*
|
|
4316
|
-
* @type {string}
|
|
4317
|
-
* @memberof VideoUserInfoResponse
|
|
4318
|
-
*/
|
|
4319
|
-
name: string;
|
|
4320
|
-
/**
|
|
4321
|
-
*
|
|
4322
|
-
* @type {Array<string>}
|
|
4323
|
-
* @memberof VideoUserInfoResponse
|
|
4324
|
-
*/
|
|
4325
|
-
roles: Array<string>;
|
|
4326
|
-
}
|
|
4327
|
-
/**
|
|
4328
|
-
*
|
|
4329
|
-
* @export
|
|
4330
|
-
* @interface VideoUserRequest
|
|
4331
|
-
*/
|
|
4332
|
-
export interface VideoUserRequest {
|
|
4333
|
-
/**
|
|
4334
|
-
*
|
|
4335
|
-
* @type {{ [key: string]: any; }}
|
|
4336
|
-
* @memberof VideoUserRequest
|
|
4337
|
-
*/
|
|
4338
|
-
custom?: { [key: string]: any; };
|
|
4339
|
-
/**
|
|
4340
|
-
* User ID
|
|
4341
|
-
* @type {string}
|
|
4342
|
-
* @memberof VideoUserRequest
|
|
4343
|
-
*/
|
|
4344
|
-
id: string;
|
|
4345
|
-
/**
|
|
4346
|
-
*
|
|
4347
|
-
* @type {string}
|
|
4348
|
-
* @memberof VideoUserRequest
|
|
4349
|
-
*/
|
|
4350
|
-
image?: string;
|
|
4351
|
-
/**
|
|
4352
|
-
*
|
|
4353
|
-
* @type {boolean}
|
|
4354
|
-
* @memberof VideoUserRequest
|
|
4355
|
-
*/
|
|
4356
|
-
invisible?: boolean;
|
|
4357
|
-
/**
|
|
4358
|
-
*
|
|
4359
|
-
* @type {string}
|
|
4360
|
-
* @memberof VideoUserRequest
|
|
4361
|
-
*/
|
|
4362
|
-
language?: string;
|
|
4363
|
-
/**
|
|
4364
|
-
* Optional name of user
|
|
4365
|
-
* @type {string}
|
|
4366
|
-
* @memberof VideoUserRequest
|
|
4367
|
-
*/
|
|
4368
|
-
name?: string;
|
|
4369
|
-
/**
|
|
4370
|
-
*
|
|
4371
|
-
* @type {VideoPrivacySettings}
|
|
4372
|
-
* @memberof VideoUserRequest
|
|
4373
|
-
*/
|
|
4374
|
-
privacy_settings?: VideoPrivacySettings;
|
|
4375
|
-
/**
|
|
4376
|
-
*
|
|
4377
|
-
* @type {VideoPushNotificationSettingsInput}
|
|
4378
|
-
* @memberof VideoUserRequest
|
|
4379
|
-
*/
|
|
4380
|
-
push_notifications?: VideoPushNotificationSettingsInput;
|
|
4381
|
-
/**
|
|
4382
|
-
*
|
|
4383
|
-
* @type {string}
|
|
4384
|
-
* @memberof VideoUserRequest
|
|
4385
|
-
*/
|
|
4386
|
-
role?: string;
|
|
4387
|
-
/**
|
|
4388
|
-
*
|
|
4389
|
-
* @type {Array<string>}
|
|
4390
|
-
* @memberof VideoUserRequest
|
|
4391
|
-
*/
|
|
4392
|
-
teams?: Array<string>;
|
|
4393
|
-
}
|
|
4394
|
-
/**
|
|
4395
|
-
*
|
|
4396
|
-
* @export
|
|
4397
|
-
* @interface VideoUserResponse
|
|
4398
|
-
*/
|
|
4399
|
-
export interface VideoUserResponse {
|
|
4400
|
-
/**
|
|
4401
|
-
*
|
|
4402
|
-
* @type {boolean}
|
|
4403
|
-
* @memberof VideoUserResponse
|
|
4404
|
-
*/
|
|
4405
|
-
banned: boolean;
|
|
4406
|
-
/**
|
|
4407
|
-
*
|
|
4408
|
-
* @type {Array<string>}
|
|
4409
|
-
* @memberof VideoUserResponse
|
|
4410
|
-
*/
|
|
4411
|
-
blocked_user_ids: Array<string>;
|
|
4412
|
-
/**
|
|
4413
|
-
* Date/time of creation
|
|
4414
|
-
* @type {string}
|
|
4415
|
-
* @memberof VideoUserResponse
|
|
4416
|
-
*/
|
|
4417
|
-
created_at: string;
|
|
4418
|
-
/**
|
|
4419
|
-
*
|
|
4420
|
-
* @type {{ [key: string]: any; }}
|
|
4421
|
-
* @memberof VideoUserResponse
|
|
4422
|
-
*/
|
|
4423
|
-
custom: { [key: string]: any; };
|
|
4424
|
-
/**
|
|
4425
|
-
*
|
|
4426
|
-
* @type {string}
|
|
4427
|
-
* @memberof VideoUserResponse
|
|
4428
|
-
*/
|
|
4429
|
-
deactivated_at?: string;
|
|
4430
|
-
/**
|
|
4431
|
-
* Date/time of deletion
|
|
4432
|
-
* @type {string}
|
|
4433
|
-
* @memberof VideoUserResponse
|
|
4434
|
-
*/
|
|
4435
|
-
deleted_at?: string;
|
|
4436
|
-
/**
|
|
4437
|
-
*
|
|
4438
|
-
* @type {Array<VideoDevice>}
|
|
4439
|
-
* @memberof VideoUserResponse
|
|
4440
|
-
*/
|
|
4441
|
-
devices: Array<VideoDevice>;
|
|
4442
|
-
/**
|
|
4443
|
-
*
|
|
4444
|
-
* @type {string}
|
|
4445
|
-
* @memberof VideoUserResponse
|
|
4446
|
-
*/
|
|
4447
|
-
id: string;
|
|
4448
|
-
/**
|
|
4449
|
-
*
|
|
4450
|
-
* @type {string}
|
|
4451
|
-
* @memberof VideoUserResponse
|
|
4452
|
-
*/
|
|
4453
|
-
image?: string;
|
|
4454
|
-
/**
|
|
4455
|
-
*
|
|
4456
|
-
* @type {boolean}
|
|
4457
|
-
* @memberof VideoUserResponse
|
|
4458
|
-
*/
|
|
4459
|
-
invisible: boolean;
|
|
4460
|
-
/**
|
|
4461
|
-
*
|
|
4462
|
-
* @type {string}
|
|
4463
|
-
* @memberof VideoUserResponse
|
|
4464
|
-
*/
|
|
4465
|
-
language: string;
|
|
4466
|
-
/**
|
|
4467
|
-
*
|
|
4468
|
-
* @type {string}
|
|
4469
|
-
* @memberof VideoUserResponse
|
|
4470
|
-
*/
|
|
4471
|
-
last_active?: string;
|
|
4472
|
-
/**
|
|
4473
|
-
*
|
|
4474
|
-
* @type {string}
|
|
4475
|
-
* @memberof VideoUserResponse
|
|
4476
|
-
*/
|
|
4477
|
-
name?: string;
|
|
4478
|
-
/**
|
|
4479
|
-
*
|
|
4480
|
-
* @type {boolean}
|
|
4481
|
-
* @memberof VideoUserResponse
|
|
4482
|
-
*/
|
|
4483
|
-
online: boolean;
|
|
4484
|
-
/**
|
|
4485
|
-
*
|
|
4486
|
-
* @type {VideoPushNotificationSettings}
|
|
4487
|
-
* @memberof VideoUserResponse
|
|
4488
|
-
*/
|
|
4489
|
-
push_notifications?: VideoPushNotificationSettings;
|
|
4490
|
-
/**
|
|
4491
|
-
*
|
|
4492
|
-
* @type {string}
|
|
4493
|
-
* @memberof VideoUserResponse
|
|
4494
|
-
*/
|
|
4495
|
-
revoke_tokens_issued_before?: string;
|
|
4496
|
-
/**
|
|
4497
|
-
*
|
|
4498
|
-
* @type {string}
|
|
4499
|
-
* @memberof VideoUserResponse
|
|
4500
|
-
*/
|
|
4501
|
-
role: string;
|
|
4502
|
-
/**
|
|
4503
|
-
*
|
|
4504
|
-
* @type {boolean}
|
|
4505
|
-
* @memberof VideoUserResponse
|
|
4506
|
-
*/
|
|
4507
|
-
shadow_banned: boolean;
|
|
4508
|
-
/**
|
|
4509
|
-
*
|
|
4510
|
-
* @type {Array<string>}
|
|
4511
|
-
* @memberof VideoUserResponse
|
|
4512
|
-
*/
|
|
4513
|
-
teams: Array<string>;
|
|
4514
|
-
/**
|
|
4515
|
-
* Date/time of the last update
|
|
4516
|
-
* @type {string}
|
|
4517
|
-
* @memberof VideoUserResponse
|
|
4518
|
-
*/
|
|
4519
|
-
updated_at: string;
|
|
4520
|
-
}
|
|
4521
|
-
/**
|
|
4522
|
-
*
|
|
4523
|
-
* @export
|
|
4524
|
-
* @interface VideoUserSessionStats
|
|
4525
|
-
*/
|
|
4526
|
-
export interface VideoUserSessionStats {
|
|
4527
|
-
/**
|
|
4528
|
-
*
|
|
4529
|
-
* @type {string}
|
|
4530
|
-
* @memberof VideoUserSessionStats
|
|
4531
|
-
*/
|
|
4532
|
-
browser?: string;
|
|
4533
|
-
/**
|
|
4534
|
-
*
|
|
4535
|
-
* @type {string}
|
|
4536
|
-
* @memberof VideoUserSessionStats
|
|
4537
|
-
*/
|
|
4538
|
-
browser_version?: string;
|
|
4539
|
-
/**
|
|
4540
|
-
*
|
|
4541
|
-
* @type {string}
|
|
4542
|
-
* @memberof VideoUserSessionStats
|
|
4543
|
-
*/
|
|
4544
|
-
current_ip?: string;
|
|
4545
|
-
/**
|
|
4546
|
-
*
|
|
4547
|
-
* @type {string}
|
|
4548
|
-
* @memberof VideoUserSessionStats
|
|
4549
|
-
*/
|
|
4550
|
-
current_sfu?: string;
|
|
4551
|
-
/**
|
|
4552
|
-
*
|
|
4553
|
-
* @type {string}
|
|
4554
|
-
* @memberof VideoUserSessionStats
|
|
4555
|
-
*/
|
|
4556
|
-
device_model?: string;
|
|
4557
|
-
/**
|
|
4558
|
-
*
|
|
4559
|
-
* @type {string}
|
|
4560
|
-
* @memberof VideoUserSessionStats
|
|
4561
|
-
*/
|
|
4562
|
-
device_version?: string;
|
|
4563
|
-
/**
|
|
4564
|
-
*
|
|
4565
|
-
* @type {number}
|
|
4566
|
-
* @memberof VideoUserSessionStats
|
|
4567
|
-
*/
|
|
4568
|
-
distance_to_sfu_kilometers?: number;
|
|
4569
|
-
/**
|
|
4570
|
-
*
|
|
4571
|
-
* @type {number}
|
|
4572
|
-
* @memberof VideoUserSessionStats
|
|
4573
|
-
*/
|
|
4574
|
-
freeze_duration_seconds: number;
|
|
4575
|
-
/**
|
|
4576
|
-
*
|
|
4577
|
-
* @type {VideoGeolocationResult}
|
|
4578
|
-
* @memberof VideoUserSessionStats
|
|
4579
|
-
*/
|
|
4580
|
-
geolocation?: VideoGeolocationResult;
|
|
4581
|
-
/**
|
|
4582
|
-
*
|
|
4583
|
-
* @type {VideoTimeStats}
|
|
4584
|
-
* @memberof VideoUserSessionStats
|
|
4585
|
-
*/
|
|
4586
|
-
jitter?: VideoTimeStats;
|
|
4587
|
-
/**
|
|
4588
|
-
*
|
|
4589
|
-
* @type {VideoTimeStats}
|
|
4590
|
-
* @memberof VideoUserSessionStats
|
|
4591
|
-
*/
|
|
4592
|
-
latency?: VideoTimeStats;
|
|
4593
|
-
/**
|
|
4594
|
-
*
|
|
4595
|
-
* @type {number}
|
|
4596
|
-
* @memberof VideoUserSessionStats
|
|
4597
|
-
*/
|
|
4598
|
-
max_fir_per_second?: number;
|
|
4599
|
-
/**
|
|
4600
|
-
*
|
|
4601
|
-
* @type {number}
|
|
4602
|
-
* @memberof VideoUserSessionStats
|
|
4603
|
-
*/
|
|
4604
|
-
max_freeze_fraction: number;
|
|
4605
|
-
/**
|
|
4606
|
-
*
|
|
4607
|
-
* @type {number}
|
|
4608
|
-
* @memberof VideoUserSessionStats
|
|
4609
|
-
*/
|
|
4610
|
-
max_freezes_duration_seconds: number;
|
|
4611
|
-
/**
|
|
4612
|
-
*
|
|
4613
|
-
* @type {number}
|
|
4614
|
-
* @memberof VideoUserSessionStats
|
|
4615
|
-
*/
|
|
4616
|
-
max_freezes_per_second?: number;
|
|
4617
|
-
/**
|
|
4618
|
-
*
|
|
4619
|
-
* @type {number}
|
|
4620
|
-
* @memberof VideoUserSessionStats
|
|
4621
|
-
*/
|
|
4622
|
-
max_nack_per_second?: number;
|
|
4623
|
-
/**
|
|
4624
|
-
*
|
|
4625
|
-
* @type {number}
|
|
4626
|
-
* @memberof VideoUserSessionStats
|
|
4627
|
-
*/
|
|
4628
|
-
max_pli_per_second?: number;
|
|
4629
|
-
/**
|
|
4630
|
-
*
|
|
4631
|
-
* @type {VideoVideoQuality}
|
|
4632
|
-
* @memberof VideoUserSessionStats
|
|
4633
|
-
*/
|
|
4634
|
-
max_publishing_video_quality?: VideoVideoQuality;
|
|
4635
|
-
/**
|
|
4636
|
-
*
|
|
4637
|
-
* @type {VideoVideoQuality}
|
|
4638
|
-
* @memberof VideoUserSessionStats
|
|
4639
|
-
*/
|
|
4640
|
-
max_receiving_video_quality?: VideoVideoQuality;
|
|
4641
|
-
/**
|
|
4642
|
-
*
|
|
4643
|
-
* @type {string}
|
|
4644
|
-
* @memberof VideoUserSessionStats
|
|
4645
|
-
*/
|
|
4646
|
-
os?: string;
|
|
4647
|
-
/**
|
|
4648
|
-
*
|
|
4649
|
-
* @type {string}
|
|
4650
|
-
* @memberof VideoUserSessionStats
|
|
4651
|
-
*/
|
|
4652
|
-
os_version?: string;
|
|
4653
|
-
/**
|
|
4654
|
-
*
|
|
4655
|
-
* @type {number}
|
|
4656
|
-
* @memberof VideoUserSessionStats
|
|
4657
|
-
*/
|
|
4658
|
-
packet_loss_fraction: number;
|
|
4659
|
-
/**
|
|
4660
|
-
*
|
|
4661
|
-
* @type {VideoMediaPubSubHint}
|
|
4662
|
-
* @memberof VideoUserSessionStats
|
|
4663
|
-
*/
|
|
4664
|
-
pub_sub_hints?: VideoMediaPubSubHint;
|
|
4665
|
-
/**
|
|
4666
|
-
*
|
|
4667
|
-
* @type {Array<VideoPublishedTrackInfo>}
|
|
4668
|
-
* @memberof VideoUserSessionStats
|
|
4669
|
-
*/
|
|
4670
|
-
published_tracks?: Array<VideoPublishedTrackInfo>;
|
|
4671
|
-
/**
|
|
4672
|
-
*
|
|
4673
|
-
* @type {VideoMOSStats}
|
|
4674
|
-
* @memberof VideoUserSessionStats
|
|
4675
|
-
*/
|
|
4676
|
-
publisher_audio_mos?: VideoMOSStats;
|
|
4677
|
-
/**
|
|
4678
|
-
*
|
|
4679
|
-
* @type {VideoTimeStats}
|
|
4680
|
-
* @memberof VideoUserSessionStats
|
|
4681
|
-
*/
|
|
4682
|
-
publisher_jitter?: VideoTimeStats;
|
|
4683
|
-
/**
|
|
4684
|
-
*
|
|
4685
|
-
* @type {VideoTimeStats}
|
|
4686
|
-
* @memberof VideoUserSessionStats
|
|
4687
|
-
*/
|
|
4688
|
-
publisher_latency?: VideoTimeStats;
|
|
4689
|
-
/**
|
|
4690
|
-
*
|
|
4691
|
-
* @type {number}
|
|
4692
|
-
* @memberof VideoUserSessionStats
|
|
4693
|
-
*/
|
|
4694
|
-
publisher_noise_cancellation_seconds?: number;
|
|
4695
|
-
/**
|
|
4696
|
-
*
|
|
4697
|
-
* @type {number}
|
|
4698
|
-
* @memberof VideoUserSessionStats
|
|
4699
|
-
*/
|
|
4700
|
-
publisher_packet_loss_fraction: number;
|
|
4701
|
-
/**
|
|
4702
|
-
*
|
|
4703
|
-
* @type {number}
|
|
4704
|
-
* @memberof VideoUserSessionStats
|
|
4705
|
-
*/
|
|
4706
|
-
publisher_quality_limitation_fraction?: number;
|
|
4707
|
-
/**
|
|
4708
|
-
*
|
|
4709
|
-
* @type {{ [key: string]: number; }}
|
|
4710
|
-
* @memberof VideoUserSessionStats
|
|
4711
|
-
*/
|
|
4712
|
-
publisher_video_quality_limitation_duration_seconds?: { [key: string]: number; };
|
|
4713
|
-
/**
|
|
4714
|
-
*
|
|
4715
|
-
* @type {string}
|
|
4716
|
-
* @memberof VideoUserSessionStats
|
|
4717
|
-
*/
|
|
4718
|
-
publishing_audio_codec?: string;
|
|
4719
|
-
/**
|
|
4720
|
-
*
|
|
4721
|
-
* @type {number}
|
|
4722
|
-
* @memberof VideoUserSessionStats
|
|
4723
|
-
*/
|
|
4724
|
-
publishing_duration_seconds: number;
|
|
4725
|
-
/**
|
|
4726
|
-
*
|
|
4727
|
-
* @type {string}
|
|
4728
|
-
* @memberof VideoUserSessionStats
|
|
4729
|
-
*/
|
|
4730
|
-
publishing_video_codec?: string;
|
|
4731
|
-
/**
|
|
4732
|
-
*
|
|
4733
|
-
* @type {number}
|
|
4734
|
-
* @memberof VideoUserSessionStats
|
|
4735
|
-
*/
|
|
4736
|
-
quality_score: number;
|
|
4737
|
-
/**
|
|
4738
|
-
*
|
|
4739
|
-
* @type {string}
|
|
4740
|
-
* @memberof VideoUserSessionStats
|
|
4741
|
-
*/
|
|
4742
|
-
receiving_audio_codec?: string;
|
|
4743
|
-
/**
|
|
4744
|
-
*
|
|
4745
|
-
* @type {number}
|
|
4746
|
-
* @memberof VideoUserSessionStats
|
|
4747
|
-
*/
|
|
4748
|
-
receiving_duration_seconds: number;
|
|
4749
|
-
/**
|
|
4750
|
-
*
|
|
4751
|
-
* @type {string}
|
|
4752
|
-
* @memberof VideoUserSessionStats
|
|
4753
|
-
*/
|
|
4754
|
-
receiving_video_codec?: string;
|
|
4755
|
-
/**
|
|
4756
|
-
*
|
|
4757
|
-
* @type {string}
|
|
4758
|
-
* @memberof VideoUserSessionStats
|
|
4759
|
-
*/
|
|
4760
|
-
sdk?: string;
|
|
4761
|
-
/**
|
|
4762
|
-
*
|
|
4763
|
-
* @type {string}
|
|
4764
|
-
* @memberof VideoUserSessionStats
|
|
4765
|
-
*/
|
|
4766
|
-
sdk_version?: string;
|
|
4767
|
-
/**
|
|
4768
|
-
*
|
|
4769
|
-
* @type {string}
|
|
4770
|
-
* @memberof VideoUserSessionStats
|
|
4771
|
-
*/
|
|
4772
|
-
session_id: string;
|
|
4773
|
-
/**
|
|
4774
|
-
*
|
|
4775
|
-
* @type {VideoMOSStats}
|
|
4776
|
-
* @memberof VideoUserSessionStats
|
|
4777
|
-
*/
|
|
4778
|
-
subscriber_audio_mos?: VideoMOSStats;
|
|
4779
|
-
/**
|
|
4780
|
-
*
|
|
4781
|
-
* @type {VideoTimeStats}
|
|
4782
|
-
* @memberof VideoUserSessionStats
|
|
4783
|
-
*/
|
|
4784
|
-
subscriber_jitter?: VideoTimeStats;
|
|
4785
|
-
/**
|
|
4786
|
-
*
|
|
4787
|
-
* @type {VideoTimeStats}
|
|
4788
|
-
* @memberof VideoUserSessionStats
|
|
4789
|
-
*/
|
|
4790
|
-
subscriber_latency?: VideoTimeStats;
|
|
4791
|
-
/**
|
|
4792
|
-
*
|
|
4793
|
-
* @type {number}
|
|
4794
|
-
* @memberof VideoUserSessionStats
|
|
4795
|
-
*/
|
|
4796
|
-
subscriber_video_quality_throttled_duration_seconds?: number;
|
|
4797
|
-
/**
|
|
4798
|
-
*
|
|
4799
|
-
* @type {Array<VideoSubsession>}
|
|
4800
|
-
* @memberof VideoUserSessionStats
|
|
4801
|
-
*/
|
|
4802
|
-
subsessions?: Array<VideoSubsession>;
|
|
4803
|
-
/**
|
|
4804
|
-
*
|
|
4805
|
-
* @type {VideoCallTimeline}
|
|
4806
|
-
* @memberof VideoUserSessionStats
|
|
4807
|
-
*/
|
|
4808
|
-
timeline?: VideoCallTimeline;
|
|
4809
|
-
/**
|
|
4810
|
-
*
|
|
4811
|
-
* @type {number}
|
|
4812
|
-
* @memberof VideoUserSessionStats
|
|
4813
|
-
*/
|
|
4814
|
-
total_pixels_in: number;
|
|
4815
|
-
/**
|
|
4816
|
-
*
|
|
4817
|
-
* @type {number}
|
|
4818
|
-
* @memberof VideoUserSessionStats
|
|
4819
|
-
*/
|
|
4820
|
-
total_pixels_out: number;
|
|
4821
|
-
/**
|
|
4822
|
-
*
|
|
4823
|
-
* @type {boolean}
|
|
4824
|
-
* @memberof VideoUserSessionStats
|
|
4825
|
-
*/
|
|
4826
|
-
truncated?: boolean;
|
|
4827
|
-
/**
|
|
4828
|
-
*
|
|
4829
|
-
* @type {string}
|
|
4830
|
-
* @memberof VideoUserSessionStats
|
|
4831
|
-
*/
|
|
4832
|
-
webrtc_version?: string;
|
|
4833
|
-
}
|
|
4834
|
-
/**
|
|
4835
|
-
*
|
|
4836
|
-
* @export
|
|
4837
|
-
* @interface VideoUserStats
|
|
4838
|
-
*/
|
|
4839
|
-
export interface VideoUserStats {
|
|
4840
|
-
/**
|
|
4841
|
-
*
|
|
4842
|
-
* @type {VideoUserInfoResponse}
|
|
4843
|
-
* @memberof VideoUserStats
|
|
4844
|
-
*/
|
|
4845
|
-
info: VideoUserInfoResponse;
|
|
4846
|
-
/**
|
|
4847
|
-
*
|
|
4848
|
-
* @type {number}
|
|
4849
|
-
* @memberof VideoUserStats
|
|
4850
|
-
*/
|
|
4851
|
-
min_event_ts: number;
|
|
4852
|
-
/**
|
|
4853
|
-
*
|
|
4854
|
-
* @type {number}
|
|
4855
|
-
* @memberof VideoUserStats
|
|
4856
|
-
*/
|
|
4857
|
-
rating?: number;
|
|
4858
|
-
/**
|
|
4859
|
-
*
|
|
4860
|
-
* @type {Array<VideoUserSessionStats>}
|
|
4861
|
-
* @memberof VideoUserStats
|
|
4862
|
-
*/
|
|
4863
|
-
session_stats: Array<VideoUserSessionStats>;
|
|
4864
|
-
}
|
|
4865
|
-
/**
|
|
4866
|
-
*
|
|
4867
|
-
* @export
|
|
4868
|
-
* @interface VideoVideoQuality
|
|
4869
|
-
*/
|
|
4870
|
-
export interface VideoVideoQuality {
|
|
4871
|
-
/**
|
|
4872
|
-
*
|
|
4873
|
-
* @type {VideoVideoResolution}
|
|
4874
|
-
* @memberof VideoVideoQuality
|
|
4875
|
-
*/
|
|
4876
|
-
resolution?: VideoVideoResolution;
|
|
4877
|
-
/**
|
|
4878
|
-
*
|
|
4879
|
-
* @type {string}
|
|
4880
|
-
* @memberof VideoVideoQuality
|
|
4881
|
-
*/
|
|
4882
|
-
usage_type?: string;
|
|
4883
|
-
}
|
|
4884
|
-
/**
|
|
4885
|
-
*
|
|
4886
|
-
* @export
|
|
4887
|
-
* @interface VideoVideoResolution
|
|
4888
|
-
*/
|
|
4889
|
-
export interface VideoVideoResolution {
|
|
4890
|
-
/**
|
|
4891
|
-
*
|
|
4892
|
-
* @type {number}
|
|
4893
|
-
* @memberof VideoVideoResolution
|
|
4894
|
-
*/
|
|
4895
|
-
height: number;
|
|
4896
|
-
/**
|
|
4897
|
-
*
|
|
4898
|
-
* @type {number}
|
|
4899
|
-
* @memberof VideoVideoResolution
|
|
4900
|
-
*/
|
|
4901
|
-
width: number;
|
|
4902
|
-
}
|
|
4903
|
-
/**
|
|
4904
|
-
*
|
|
4905
|
-
* @export
|
|
4906
|
-
* @interface VideoVideoSettingsRequest
|
|
4907
|
-
*/
|
|
4908
|
-
export interface VideoVideoSettingsRequest {
|
|
4909
|
-
/**
|
|
4910
|
-
*
|
|
4911
|
-
* @type {boolean}
|
|
4912
|
-
* @memberof VideoVideoSettingsRequest
|
|
4913
|
-
*/
|
|
4914
|
-
access_request_enabled?: boolean;
|
|
4915
|
-
/**
|
|
4916
|
-
*
|
|
4917
|
-
* @type {boolean}
|
|
4918
|
-
* @memberof VideoVideoSettingsRequest
|
|
4919
|
-
*/
|
|
4920
|
-
camera_default_on?: boolean;
|
|
4921
|
-
/**
|
|
4922
|
-
*
|
|
4923
|
-
* @type {string}
|
|
4924
|
-
* @memberof VideoVideoSettingsRequest
|
|
4925
|
-
*/
|
|
4926
|
-
camera_facing?: VideoVideoSettingsRequestCameraFacingEnum;
|
|
4927
|
-
/**
|
|
4928
|
-
*
|
|
4929
|
-
* @type {boolean}
|
|
4930
|
-
* @memberof VideoVideoSettingsRequest
|
|
4931
|
-
*/
|
|
4932
|
-
enabled?: boolean;
|
|
4933
|
-
/**
|
|
4934
|
-
*
|
|
4935
|
-
* @type {VideoTargetResolution}
|
|
4936
|
-
* @memberof VideoVideoSettingsRequest
|
|
4937
|
-
*/
|
|
4938
|
-
target_resolution?: VideoTargetResolution;
|
|
4939
|
-
}
|
|
4940
|
-
|
|
4941
|
-
|
|
4942
|
-
/**
|
|
4943
|
-
* @export
|
|
4944
|
-
*/
|
|
4945
|
-
export const VideoVideoSettingsRequestCameraFacingEnum = {
|
|
4946
|
-
FRONT: 'front',
|
|
4947
|
-
BACK: 'back',
|
|
4948
|
-
EXTERNAL: 'external'
|
|
4949
|
-
} as const;
|
|
4950
|
-
export type VideoVideoSettingsRequestCameraFacingEnum = typeof VideoVideoSettingsRequestCameraFacingEnum[keyof typeof VideoVideoSettingsRequestCameraFacingEnum];
|
|
4951
|
-
|
|
4952
|
-
/**
|
|
4953
|
-
*
|
|
4954
|
-
* @export
|
|
4955
|
-
* @interface VideoVideoSettingsResponse
|
|
4956
|
-
*/
|
|
4957
|
-
export interface VideoVideoSettingsResponse {
|
|
4958
|
-
/**
|
|
4959
|
-
*
|
|
4960
|
-
* @type {boolean}
|
|
4961
|
-
* @memberof VideoVideoSettingsResponse
|
|
4962
|
-
*/
|
|
4963
|
-
access_request_enabled: boolean;
|
|
4964
|
-
/**
|
|
4965
|
-
*
|
|
4966
|
-
* @type {boolean}
|
|
4967
|
-
* @memberof VideoVideoSettingsResponse
|
|
4968
|
-
*/
|
|
4969
|
-
camera_default_on: boolean;
|
|
4970
|
-
/**
|
|
4971
|
-
*
|
|
4972
|
-
* @type {string}
|
|
4973
|
-
* @memberof VideoVideoSettingsResponse
|
|
4974
|
-
*/
|
|
4975
|
-
camera_facing: VideoVideoSettingsResponseCameraFacingEnum;
|
|
4976
|
-
/**
|
|
4977
|
-
*
|
|
4978
|
-
* @type {boolean}
|
|
4979
|
-
* @memberof VideoVideoSettingsResponse
|
|
4980
|
-
*/
|
|
4981
|
-
enabled: boolean;
|
|
4982
|
-
/**
|
|
4983
|
-
*
|
|
4984
|
-
* @type {VideoTargetResolution}
|
|
4985
|
-
* @memberof VideoVideoSettingsResponse
|
|
4986
|
-
*/
|
|
4987
|
-
target_resolution: VideoTargetResolution;
|
|
4988
|
-
}
|
|
4989
|
-
|
|
4990
|
-
|
|
4991
|
-
/**
|
|
4992
|
-
* @export
|
|
4993
|
-
*/
|
|
4994
|
-
export const VideoVideoSettingsResponseCameraFacingEnum = {
|
|
4995
|
-
FRONT: 'front',
|
|
4996
|
-
BACK: 'back',
|
|
4997
|
-
EXTERNAL: 'external'
|
|
4998
|
-
} as const;
|
|
4999
|
-
export type VideoVideoSettingsResponseCameraFacingEnum = typeof VideoVideoSettingsResponseCameraFacingEnum[keyof typeof VideoVideoSettingsResponseCameraFacingEnum];
|
|
5000
|
-
|