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