@stream-io/video-client 1.19.3 → 1.20.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.
@@ -68,25 +68,6 @@ export interface AcceptCallResponse {
68
68
  */
69
69
  duration: string;
70
70
  }
71
- /**
72
- *
73
- * @export
74
- * @interface AggregatedStats
75
- */
76
- export interface AggregatedStats {
77
- /**
78
- *
79
- * @type {PublisherAggregateStats}
80
- * @memberof AggregatedStats
81
- */
82
- publisher_aggregate_stats?: PublisherAggregateStats;
83
- /**
84
- *
85
- * @type {TURNAggregatedStats}
86
- * @memberof AggregatedStats
87
- */
88
- turn?: TURNAggregatedStats;
89
- }
90
71
  /**
91
72
  *
92
73
  * @export
@@ -653,73 +634,6 @@ export interface CallEndedEvent {
653
634
  */
654
635
  user?: UserResponse;
655
636
  }
656
- /**
657
- *
658
- * @export
659
- * @interface CallEvent
660
- */
661
- export interface CallEvent {
662
- /**
663
- *
664
- * @type {string}
665
- * @memberof CallEvent
666
- */
667
- category?: string;
668
- /**
669
- *
670
- * @type {string}
671
- * @memberof CallEvent
672
- */
673
- component?: string;
674
- /**
675
- *
676
- * @type {string}
677
- * @memberof CallEvent
678
- */
679
- description: string;
680
- /**
681
- *
682
- * @type {number}
683
- * @memberof CallEvent
684
- */
685
- end_timestamp: number;
686
- /**
687
- *
688
- * @type {boolean}
689
- * @memberof CallEvent
690
- */
691
- internal: boolean;
692
- /**
693
- *
694
- * @type {Array<string>}
695
- * @memberof CallEvent
696
- */
697
- issue_tags?: Array<string>;
698
- /**
699
- *
700
- * @type {string}
701
- * @memberof CallEvent
702
- */
703
- kind: string;
704
- /**
705
- *
706
- * @type {number}
707
- * @memberof CallEvent
708
- */
709
- severity: number;
710
- /**
711
- *
712
- * @type {number}
713
- * @memberof CallEvent
714
- */
715
- timestamp: number;
716
- /**
717
- *
718
- * @type {string}
719
- * @memberof CallEvent
720
- */
721
- type: string;
722
- }
723
637
  /**
724
638
  * This event is sent when frame recording has failed
725
639
  * @export
@@ -1583,6 +1497,31 @@ export interface CallRejectedEvent {
1583
1497
  */
1584
1498
  user: UserResponse;
1585
1499
  }
1500
+ /**
1501
+ *
1502
+ * @export
1503
+ * @interface CallReportResponse
1504
+ */
1505
+ export interface CallReportResponse {
1506
+ /**
1507
+ *
1508
+ * @type {string}
1509
+ * @memberof CallReportResponse
1510
+ */
1511
+ ended_at?: string;
1512
+ /**
1513
+ *
1514
+ * @type {number}
1515
+ * @memberof CallReportResponse
1516
+ */
1517
+ score: number;
1518
+ /**
1519
+ *
1520
+ * @type {string}
1521
+ * @memberof CallReportResponse
1522
+ */
1523
+ started_at?: string;
1524
+ }
1586
1525
  /**
1587
1526
  * CallRequest is the payload for creating a call.
1588
1527
  * @export
@@ -2459,19 +2398,6 @@ export interface CallStatsReportSummaryResponse {
2459
2398
  */
2460
2399
  quality_score?: number;
2461
2400
  }
2462
- /**
2463
- *
2464
- * @export
2465
- * @interface CallTimeline
2466
- */
2467
- export interface CallTimeline {
2468
- /**
2469
- *
2470
- * @type {Array<CallEvent>}
2471
- * @memberof CallTimeline
2472
- */
2473
- events: Array<CallEvent>;
2474
- }
2475
2401
  /**
2476
2402
  * CallTranscription represents a transcription of a call.
2477
2403
  * @export
@@ -2736,6 +2662,19 @@ export interface CallsPerDayReportResponse {
2736
2662
  */
2737
2663
  daily: Array<DailyAggregateCallsPerDayReportResponse>;
2738
2664
  }
2665
+ /**
2666
+ *
2667
+ * @export
2668
+ * @interface ChatActivityStatsResponse
2669
+ */
2670
+ export interface ChatActivityStatsResponse {
2671
+ /**
2672
+ *
2673
+ * @type {MessageStatsResponse}
2674
+ * @memberof ChatActivityStatsResponse
2675
+ */
2676
+ Messages?: MessageStatsResponse;
2677
+ }
2739
2678
  /**
2740
2679
  * This event is sent when closed captions are being sent in a call, clients should use this to show the closed captions in the call screen
2741
2680
  * @export
@@ -2941,40 +2880,21 @@ export interface ConnectionErrorEvent {
2941
2880
  /**
2942
2881
  *
2943
2882
  * @export
2944
- * @interface Coordinates
2883
+ * @interface CountByMinuteResponse
2945
2884
  */
2946
- export interface Coordinates {
2947
- /**
2948
- *
2949
- * @type {number}
2950
- * @memberof Coordinates
2951
- */
2952
- latitude: number;
2885
+ export interface CountByMinuteResponse {
2953
2886
  /**
2954
2887
  *
2955
2888
  * @type {number}
2956
- * @memberof Coordinates
2957
- */
2958
- longitude: number;
2959
- }
2960
- /**
2961
- *
2962
- * @export
2963
- * @interface Count
2964
- */
2965
- export interface Count {
2966
- /**
2967
- *
2968
- * @type {boolean}
2969
- * @memberof Count
2889
+ * @memberof CountByMinuteResponse
2970
2890
  */
2971
- approximate: boolean;
2891
+ count: number;
2972
2892
  /**
2973
2893
  *
2974
- * @type {number}
2975
- * @memberof Count
2894
+ * @type {string}
2895
+ * @memberof CountByMinuteResponse
2976
2896
  */
2977
- value: number;
2897
+ start_ts: string;
2978
2898
  }
2979
2899
  /**
2980
2900
  * Create device request
@@ -3513,25 +3433,6 @@ export interface EndCallResponse {
3513
3433
  */
3514
3434
  duration: string;
3515
3435
  }
3516
- /**
3517
- *
3518
- * @export
3519
- * @interface FPSStats
3520
- */
3521
- export interface FPSStats {
3522
- /**
3523
- *
3524
- * @type {number}
3525
- * @memberof FPSStats
3526
- */
3527
- average_fps: number;
3528
- /**
3529
- *
3530
- * @type {number}
3531
- * @memberof FPSStats
3532
- */
3533
- tracked: number;
3534
- }
3535
3436
  /**
3536
3437
  *
3537
3438
  * @export
@@ -3650,73 +3551,6 @@ export interface GeofenceSettingsResponse {
3650
3551
  */
3651
3552
  names: Array<string>;
3652
3553
  }
3653
- /**
3654
- *
3655
- * @export
3656
- * @interface GeolocationResult
3657
- */
3658
- export interface GeolocationResult {
3659
- /**
3660
- *
3661
- * @type {number}
3662
- * @memberof GeolocationResult
3663
- */
3664
- accuracy_radius: number;
3665
- /**
3666
- *
3667
- * @type {string}
3668
- * @memberof GeolocationResult
3669
- */
3670
- city: string;
3671
- /**
3672
- *
3673
- * @type {string}
3674
- * @memberof GeolocationResult
3675
- */
3676
- continent: string;
3677
- /**
3678
- *
3679
- * @type {string}
3680
- * @memberof GeolocationResult
3681
- */
3682
- continent_code: string;
3683
- /**
3684
- *
3685
- * @type {string}
3686
- * @memberof GeolocationResult
3687
- */
3688
- country: string;
3689
- /**
3690
- *
3691
- * @type {string}
3692
- * @memberof GeolocationResult
3693
- */
3694
- country_iso_code: string;
3695
- /**
3696
- *
3697
- * @type {number}
3698
- * @memberof GeolocationResult
3699
- */
3700
- latitude: number;
3701
- /**
3702
- *
3703
- * @type {number}
3704
- * @memberof GeolocationResult
3705
- */
3706
- longitude: number;
3707
- /**
3708
- *
3709
- * @type {string}
3710
- * @memberof GeolocationResult
3711
- */
3712
- subdivision: string;
3713
- /**
3714
- *
3715
- * @type {string}
3716
- * @memberof GeolocationResult
3717
- */
3718
- subdivision_iso_code: string;
3719
- }
3720
3554
  /**
3721
3555
  *
3722
3556
  * @export
@@ -3757,111 +3591,33 @@ export interface GetCallResponse {
3757
3591
  /**
3758
3592
  * Basic response information
3759
3593
  * @export
3760
- * @interface GetCallStatsResponse
3594
+ * @interface GetCallReportResponse
3761
3595
  */
3762
- export interface GetCallStatsResponse {
3763
- /**
3764
- *
3765
- * @type {AggregatedStats}
3766
- * @memberof GetCallStatsResponse
3767
- */
3768
- aggregated?: AggregatedStats;
3769
- /**
3770
- *
3771
- * @type {number}
3772
- * @memberof GetCallStatsResponse
3773
- */
3774
- average_connection_time?: number;
3775
- /**
3776
- *
3777
- * @type {number}
3778
- * @memberof GetCallStatsResponse
3779
- */
3780
- call_duration_seconds: number;
3781
- /**
3782
- *
3783
- * @type {string}
3784
- * @memberof GetCallStatsResponse
3785
- */
3786
- call_status: string;
3596
+ export interface GetCallReportResponse {
3787
3597
  /**
3788
3598
  *
3789
- * @type {CallTimeline}
3790
- * @memberof GetCallStatsResponse
3599
+ * @type {ChatActivityStatsResponse}
3600
+ * @memberof GetCallReportResponse
3791
3601
  */
3792
- call_timeline?: CallTimeline;
3602
+ chat_activity?: ChatActivityStatsResponse;
3793
3603
  /**
3794
3604
  * Duration of the request in milliseconds
3795
3605
  * @type {string}
3796
- * @memberof GetCallStatsResponse
3606
+ * @memberof GetCallReportResponse
3797
3607
  */
3798
3608
  duration: string;
3799
3609
  /**
3800
3610
  *
3801
- * @type {boolean}
3802
- * @memberof GetCallStatsResponse
3803
- */
3804
- is_truncated_report: boolean;
3805
- /**
3806
- *
3807
- * @type {TimeStats}
3808
- * @memberof GetCallStatsResponse
3809
- */
3810
- jitter?: TimeStats;
3811
- /**
3812
- *
3813
- * @type {TimeStats}
3814
- * @memberof GetCallStatsResponse
3815
- */
3816
- latency?: TimeStats;
3817
- /**
3818
- *
3819
- * @type {number}
3820
- * @memberof GetCallStatsResponse
3821
- */
3822
- max_freezes_duration_seconds: number;
3823
- /**
3824
- *
3825
- * @type {number}
3826
- * @memberof GetCallStatsResponse
3827
- */
3828
- max_participants: number;
3829
- /**
3830
- *
3831
- * @type {number}
3832
- * @memberof GetCallStatsResponse
3833
- */
3834
- max_total_quality_limitation_duration_seconds: number;
3835
- /**
3836
- *
3837
- * @type {Array<UserStats>}
3838
- * @memberof GetCallStatsResponse
3839
- */
3840
- participant_report: Array<UserStats>;
3841
- /**
3842
- *
3843
- * @type {number}
3844
- * @memberof GetCallStatsResponse
3845
- */
3846
- publishing_participants: number;
3847
- /**
3848
- *
3849
- * @type {number}
3850
- * @memberof GetCallStatsResponse
3851
- */
3852
- quality_score: number;
3853
- /**
3854
- *
3855
- * @type {number}
3856
- * @memberof GetCallStatsResponse
3611
+ * @type {ReportResponse}
3612
+ * @memberof GetCallReportResponse
3857
3613
  */
3858
- sfu_count: number;
3614
+ report: ReportResponse;
3859
3615
  /**
3860
3616
  *
3861
- * @type {Array<SFULocationResponse>}
3862
- * @memberof GetCallStatsResponse
3617
+ * @type {string}
3618
+ * @memberof GetCallReportResponse
3863
3619
  */
3864
- sfus: Array<SFULocationResponse>;
3620
+ session_id: string;
3865
3621
  }
3866
3622
  /**
3867
3623
  * Basic response information
@@ -4030,6 +3786,25 @@ export interface GoLiveResponse {
4030
3786
  */
4031
3787
  duration: string;
4032
3788
  }
3789
+ /**
3790
+ *
3791
+ * @export
3792
+ * @interface GroupedStatsResponse
3793
+ */
3794
+ export interface GroupedStatsResponse {
3795
+ /**
3796
+ *
3797
+ * @type {string}
3798
+ * @memberof GroupedStatsResponse
3799
+ */
3800
+ name: string;
3801
+ /**
3802
+ *
3803
+ * @type {number}
3804
+ * @memberof GroupedStatsResponse
3805
+ */
3806
+ unique: number;
3807
+ }
4033
3808
  /**
4034
3809
  *
4035
3810
  * @export
@@ -4431,50 +4206,19 @@ export interface Location {
4431
4206
  subdivision_iso_code: string;
4432
4207
  }
4433
4208
  /**
4434
- *
4209
+ * MemberRequest is the payload for adding a member to a call.
4435
4210
  * @export
4436
- * @interface MediaPubSubHint
4211
+ * @interface MemberRequest
4437
4212
  */
4438
- export interface MediaPubSubHint {
4213
+ export interface MemberRequest {
4439
4214
  /**
4440
- *
4441
- * @type {boolean}
4442
- * @memberof MediaPubSubHint
4215
+ * Custom data for this object
4216
+ * @type {{ [key: string]: any; }}
4217
+ * @memberof MemberRequest
4443
4218
  */
4444
- audio_published: boolean;
4445
- /**
4446
- *
4447
- * @type {boolean}
4448
- * @memberof MediaPubSubHint
4449
- */
4450
- audio_subscribed: boolean;
4451
- /**
4452
- *
4453
- * @type {boolean}
4454
- * @memberof MediaPubSubHint
4455
- */
4456
- video_published: boolean;
4457
- /**
4458
- *
4459
- * @type {boolean}
4460
- * @memberof MediaPubSubHint
4461
- */
4462
- video_subscribed: boolean;
4463
- }
4464
- /**
4465
- * MemberRequest is the payload for adding a member to a call.
4466
- * @export
4467
- * @interface MemberRequest
4468
- */
4469
- export interface MemberRequest {
4470
- /**
4471
- * Custom data for this object
4472
- * @type {{ [key: string]: any; }}
4473
- * @memberof MemberRequest
4474
- */
4475
- custom?: {
4476
- [key: string]: any;
4477
- };
4219
+ custom?: {
4220
+ [key: string]: any;
4221
+ };
4478
4222
  /**
4479
4223
  *
4480
4224
  * @type {string}
@@ -4539,6 +4283,19 @@ export interface MemberResponse {
4539
4283
  */
4540
4284
  user_id: string;
4541
4285
  }
4286
+ /**
4287
+ *
4288
+ * @export
4289
+ * @interface MessageStatsResponse
4290
+ */
4291
+ export interface MessageStatsResponse {
4292
+ /**
4293
+ *
4294
+ * @type {Array<CountByMinuteResponse>}
4295
+ * @memberof MessageStatsResponse
4296
+ */
4297
+ count_over_time?: Array<CountByMinuteResponse>;
4298
+ }
4542
4299
  /**
4543
4300
  *
4544
4301
  * @export
@@ -4796,6 +4553,123 @@ export interface OwnUserResponse {
4796
4553
  */
4797
4554
  updated_at: string;
4798
4555
  }
4556
+ /**
4557
+ *
4558
+ * @export
4559
+ * @interface ParticipantCountByMinuteResponse
4560
+ */
4561
+ export interface ParticipantCountByMinuteResponse {
4562
+ /**
4563
+ *
4564
+ * @type {number}
4565
+ * @memberof ParticipantCountByMinuteResponse
4566
+ */
4567
+ first: number;
4568
+ /**
4569
+ *
4570
+ * @type {number}
4571
+ * @memberof ParticipantCountByMinuteResponse
4572
+ */
4573
+ last: number;
4574
+ /**
4575
+ *
4576
+ * @type {number}
4577
+ * @memberof ParticipantCountByMinuteResponse
4578
+ */
4579
+ max: number;
4580
+ /**
4581
+ *
4582
+ * @type {number}
4583
+ * @memberof ParticipantCountByMinuteResponse
4584
+ */
4585
+ min: number;
4586
+ /**
4587
+ *
4588
+ * @type {string}
4589
+ * @memberof ParticipantCountByMinuteResponse
4590
+ */
4591
+ start_ts: string;
4592
+ }
4593
+ /**
4594
+ *
4595
+ * @export
4596
+ * @interface ParticipantCountOverTimeResponse
4597
+ */
4598
+ export interface ParticipantCountOverTimeResponse {
4599
+ /**
4600
+ *
4601
+ * @type {Array<ParticipantCountByMinuteResponse>}
4602
+ * @memberof ParticipantCountOverTimeResponse
4603
+ */
4604
+ by_minute?: Array<ParticipantCountByMinuteResponse>;
4605
+ }
4606
+ /**
4607
+ *
4608
+ * @export
4609
+ * @interface ParticipantReportResponse
4610
+ */
4611
+ export interface ParticipantReportResponse {
4612
+ /**
4613
+ *
4614
+ * @type {Array<GroupedStatsResponse>}
4615
+ * @memberof ParticipantReportResponse
4616
+ */
4617
+ by_browser?: Array<GroupedStatsResponse>;
4618
+ /**
4619
+ *
4620
+ * @type {Array<GroupedStatsResponse>}
4621
+ * @memberof ParticipantReportResponse
4622
+ */
4623
+ by_country?: Array<GroupedStatsResponse>;
4624
+ /**
4625
+ *
4626
+ * @type {Array<GroupedStatsResponse>}
4627
+ * @memberof ParticipantReportResponse
4628
+ */
4629
+ by_device?: Array<GroupedStatsResponse>;
4630
+ /**
4631
+ *
4632
+ * @type {Array<GroupedStatsResponse>}
4633
+ * @memberof ParticipantReportResponse
4634
+ */
4635
+ by_operating_system?: Array<GroupedStatsResponse>;
4636
+ /**
4637
+ *
4638
+ * @type {ParticipantCountOverTimeResponse}
4639
+ * @memberof ParticipantReportResponse
4640
+ */
4641
+ count_over_time?: ParticipantCountOverTimeResponse;
4642
+ /**
4643
+ *
4644
+ * @type {number}
4645
+ * @memberof ParticipantReportResponse
4646
+ */
4647
+ max_concurrent?: number;
4648
+ /**
4649
+ *
4650
+ * @type {PublisherStatsResponse}
4651
+ * @memberof ParticipantReportResponse
4652
+ */
4653
+ publishers?: PublisherStatsResponse;
4654
+ /**
4655
+ *
4656
+ * @type {SubscriberStatsResponse}
4657
+ * @memberof ParticipantReportResponse
4658
+ */
4659
+ subscribers?: SubscriberStatsResponse;
4660
+ /**
4661
+ *
4662
+ * @type {number}
4663
+ * @memberof ParticipantReportResponse
4664
+ */
4665
+ sum: number;
4666
+ /**
4667
+ *
4668
+ * @type {number}
4669
+ * @memberof ParticipantReportResponse
4670
+ */
4671
+ unique: number;
4672
+ }
4799
4673
  /**
4800
4674
  *
4801
4675
  * @export
@@ -4890,48 +4764,27 @@ export interface PinResponse {
4890
4764
  /**
4891
4765
  *
4892
4766
  * @export
4893
- * @interface PublishedTrackInfo
4767
+ * @interface PublisherStatsResponse
4894
4768
  */
4895
- export interface PublishedTrackInfo {
4769
+ export interface PublisherStatsResponse {
4896
4770
  /**
4897
4771
  *
4898
- * @type {string}
4899
- * @memberof PublishedTrackInfo
4772
+ * @type {Array<TrackStatsResponse>}
4773
+ * @memberof PublisherStatsResponse
4900
4774
  */
4901
- codec_mime_type?: string;
4775
+ by_track?: Array<TrackStatsResponse>;
4902
4776
  /**
4903
4777
  *
4904
4778
  * @type {number}
4905
- * @memberof PublishedTrackInfo
4906
- */
4907
- duration_seconds?: number;
4908
- /**
4909
- *
4910
- * @type {string}
4911
- * @memberof PublishedTrackInfo
4912
- */
4913
- track_type?: string;
4914
- }
4915
- /**
4916
- *
4917
- * @export
4918
- * @interface PublisherAggregateStats
4919
- */
4920
- export interface PublisherAggregateStats {
4921
- /**
4922
- *
4923
- * @type {{ [key: string]: Count; }}
4924
- * @memberof PublisherAggregateStats
4779
+ * @memberof PublisherStatsResponse
4925
4780
  */
4926
- by_track_type?: {
4927
- [key: string]: Count;
4928
- };
4781
+ total: number;
4929
4782
  /**
4930
4783
  *
4931
- * @type {Count}
4932
- * @memberof PublisherAggregateStats
4784
+ * @type {number}
4785
+ * @memberof PublisherStatsResponse
4933
4786
  */
4934
- total?: Count;
4787
+ unique: number;
4935
4788
  }
4936
4789
  /**
4937
4790
  *
@@ -5292,6 +5145,31 @@ export interface QueryCallsResponse {
5292
5145
  */
5293
5146
  prev?: string;
5294
5147
  }
5148
+ /**
5149
+ *
5150
+ * @export
5151
+ * @interface ReportResponse
5152
+ */
5153
+ export interface ReportResponse {
5154
+ /**
5155
+ *
5156
+ * @type {CallReportResponse}
5157
+ * @memberof ReportResponse
5158
+ */
5159
+ call: CallReportResponse;
5160
+ /**
5161
+ *
5162
+ * @type {ParticipantReportResponse}
5163
+ * @memberof ReportResponse
5164
+ */
5165
+ participants: ParticipantReportResponse;
5166
+ /**
5167
+ *
5168
+ * @type {UserRatingReportResponse}
5169
+ * @memberof ReportResponse
5170
+ */
5171
+ user_ratings: UserRatingReportResponse;
5172
+ }
5295
5173
  /**
5296
5174
  * RTMPBroadcastRequest is the payload for starting an RTMP broadcast.
5297
5175
  * @export
@@ -5700,37 +5578,6 @@ export interface SDKUsageReportResponse {
5700
5578
  */
5701
5579
  daily: Array<DailyAggregateSDKUsageReportResponse>;
5702
5580
  }
5703
- /**
5704
- *
5705
- * @export
5706
- * @interface SFULocationResponse
5707
- */
5708
- export interface SFULocationResponse {
5709
- /**
5710
- *
5711
- * @type {Coordinates}
5712
- * @memberof SFULocationResponse
5713
- */
5714
- coordinates: Coordinates;
5715
- /**
5716
- *
5717
- * @type {string}
5718
- * @memberof SFULocationResponse
5719
- */
5720
- datacenter: string;
5721
- /**
5722
- *
5723
- * @type {string}
5724
- * @memberof SFULocationResponse
5725
- */
5726
- id: string;
5727
- /**
5728
- *
5729
- * @type {Location}
5730
- * @memberof SFULocationResponse
5731
- */
5732
- location: Location;
5733
- }
5734
5581
  /**
5735
5582
  *
5736
5583
  * @export
@@ -6293,52 +6140,27 @@ export interface StopTranscriptionResponse {
6293
6140
  /**
6294
6141
  *
6295
6142
  * @export
6296
- * @interface Subsession
6143
+ * @interface SubscriberStatsResponse
6297
6144
  */
6298
- export interface Subsession {
6145
+ export interface SubscriberStatsResponse {
6299
6146
  /**
6300
6147
  *
6301
6148
  * @type {number}
6302
- * @memberof Subsession
6149
+ * @memberof SubscriberStatsResponse
6303
6150
  */
6304
- ended_at: number;
6151
+ total: number;
6305
6152
  /**
6306
6153
  *
6307
6154
  * @type {number}
6308
- * @memberof Subsession
6309
- */
6310
- joined_at: number;
6311
- /**
6312
- *
6313
- * @type {MediaPubSubHint}
6314
- * @memberof Subsession
6155
+ * @memberof SubscriberStatsResponse
6315
6156
  */
6316
- pub_sub_hint?: MediaPubSubHint;
6157
+ total_subscribed_duration_seconds: number;
6317
6158
  /**
6318
6159
  *
6319
- * @type {string}
6320
- * @memberof Subsession
6321
- */
6322
- sfu_id: string;
6323
- }
6324
- /**
6325
- *
6326
- * @export
6327
- * @interface TURNAggregatedStats
6328
- */
6329
- export interface TURNAggregatedStats {
6330
- /**
6331
- *
6332
- * @type {Count}
6333
- * @memberof TURNAggregatedStats
6334
- */
6335
- tcp?: Count;
6336
- /**
6337
- *
6338
- * @type {Count}
6339
- * @memberof TURNAggregatedStats
6160
+ * @type {number}
6161
+ * @memberof SubscriberStatsResponse
6340
6162
  */
6341
- total?: Count;
6163
+ unique: number;
6342
6164
  }
6343
6165
  /**
6344
6166
  *
@@ -6407,21 +6229,21 @@ export interface ThumbnailsSettingsResponse {
6407
6229
  /**
6408
6230
  *
6409
6231
  * @export
6410
- * @interface TimeStats
6232
+ * @interface TrackStatsResponse
6411
6233
  */
6412
- export interface TimeStats {
6234
+ export interface TrackStatsResponse {
6413
6235
  /**
6414
6236
  *
6415
6237
  * @type {number}
6416
- * @memberof TimeStats
6238
+ * @memberof TrackStatsResponse
6417
6239
  */
6418
- average_seconds: number;
6240
+ duration_seconds: number;
6419
6241
  /**
6420
6242
  *
6421
- * @type {number}
6422
- * @memberof TimeStats
6243
+ * @type {string}
6244
+ * @memberof TrackStatsResponse
6423
6245
  */
6424
- max_seconds: number;
6246
+ track_type: string;
6425
6247
  }
6426
6248
  /**
6427
6249
  *
@@ -6891,41 +6713,21 @@ export interface UserFeedbackReportResponse {
6891
6713
  /**
6892
6714
  *
6893
6715
  * @export
6894
- * @interface UserInfoResponse
6716
+ * @interface UserRatingReportResponse
6895
6717
  */
6896
- export interface UserInfoResponse {
6897
- /**
6898
- *
6899
- * @type {{ [key: string]: any; }}
6900
- * @memberof UserInfoResponse
6901
- */
6902
- custom: {
6903
- [key: string]: any;
6904
- };
6905
- /**
6906
- *
6907
- * @type {string}
6908
- * @memberof UserInfoResponse
6909
- */
6910
- id: string;
6718
+ export interface UserRatingReportResponse {
6911
6719
  /**
6912
6720
  *
6913
- * @type {string}
6914
- * @memberof UserInfoResponse
6915
- */
6916
- image: string;
6917
- /**
6918
- *
6919
- * @type {string}
6920
- * @memberof UserInfoResponse
6721
+ * @type {number}
6722
+ * @memberof UserRatingReportResponse
6921
6723
  */
6922
- name: string;
6724
+ average: number;
6923
6725
  /**
6924
6726
  *
6925
- * @type {Array<string>}
6926
- * @memberof UserInfoResponse
6727
+ * @type {number}
6728
+ * @memberof UserRatingReportResponse
6927
6729
  */
6928
- roles: Array<string>;
6730
+ count: number;
6929
6731
  }
6930
6732
  /**
6931
6733
  * User request object
@@ -7176,370 +6978,6 @@ export interface UserResponsePrivacyFields {
7176
6978
  */
7177
6979
  updated_at: string;
7178
6980
  }
7179
- /**
7180
- *
7181
- * @export
7182
- * @interface UserSessionStats
7183
- */
7184
- export interface UserSessionStats {
7185
- /**
7186
- *
7187
- * @type {number}
7188
- * @memberof UserSessionStats
7189
- */
7190
- average_connection_time?: number;
7191
- /**
7192
- *
7193
- * @type {string}
7194
- * @memberof UserSessionStats
7195
- */
7196
- browser?: string;
7197
- /**
7198
- *
7199
- * @type {string}
7200
- * @memberof UserSessionStats
7201
- */
7202
- browser_version?: string;
7203
- /**
7204
- *
7205
- * @type {string}
7206
- * @memberof UserSessionStats
7207
- */
7208
- current_ip?: string;
7209
- /**
7210
- *
7211
- * @type {string}
7212
- * @memberof UserSessionStats
7213
- */
7214
- current_sfu?: string;
7215
- /**
7216
- *
7217
- * @type {string}
7218
- * @memberof UserSessionStats
7219
- */
7220
- device_model?: string;
7221
- /**
7222
- *
7223
- * @type {string}
7224
- * @memberof UserSessionStats
7225
- */
7226
- device_version?: string;
7227
- /**
7228
- *
7229
- * @type {number}
7230
- * @memberof UserSessionStats
7231
- */
7232
- distance_to_sfu_kilometers?: number;
7233
- /**
7234
- *
7235
- * @type {FPSStats}
7236
- * @memberof UserSessionStats
7237
- */
7238
- fps?: FPSStats;
7239
- /**
7240
- *
7241
- * @type {number}
7242
- * @memberof UserSessionStats
7243
- */
7244
- freeze_duration_seconds: number;
7245
- /**
7246
- *
7247
- * @type {GeolocationResult}
7248
- * @memberof UserSessionStats
7249
- */
7250
- geolocation?: GeolocationResult;
7251
- /**
7252
- *
7253
- * @type {string}
7254
- * @memberof UserSessionStats
7255
- */
7256
- group: string;
7257
- /**
7258
- *
7259
- * @type {TimeStats}
7260
- * @memberof UserSessionStats
7261
- */
7262
- jitter?: TimeStats;
7263
- /**
7264
- *
7265
- * @type {TimeStats}
7266
- * @memberof UserSessionStats
7267
- */
7268
- latency?: TimeStats;
7269
- /**
7270
- *
7271
- * @type {number}
7272
- * @memberof UserSessionStats
7273
- */
7274
- max_fir_per_second?: number;
7275
- /**
7276
- *
7277
- * @type {number}
7278
- * @memberof UserSessionStats
7279
- */
7280
- max_freeze_fraction: number;
7281
- /**
7282
- *
7283
- * @type {number}
7284
- * @memberof UserSessionStats
7285
- */
7286
- max_freezes_duration_seconds: number;
7287
- /**
7288
- *
7289
- * @type {number}
7290
- * @memberof UserSessionStats
7291
- */
7292
- max_freezes_per_second?: number;
7293
- /**
7294
- *
7295
- * @type {number}
7296
- * @memberof UserSessionStats
7297
- */
7298
- max_nack_per_second?: number;
7299
- /**
7300
- *
7301
- * @type {number}
7302
- * @memberof UserSessionStats
7303
- */
7304
- max_pli_per_second?: number;
7305
- /**
7306
- *
7307
- * @type {VideoQuality}
7308
- * @memberof UserSessionStats
7309
- */
7310
- max_publishing_video_quality?: VideoQuality;
7311
- /**
7312
- *
7313
- * @type {VideoQuality}
7314
- * @memberof UserSessionStats
7315
- */
7316
- max_receiving_video_quality?: VideoQuality;
7317
- /**
7318
- *
7319
- * @type {number}
7320
- * @memberof UserSessionStats
7321
- */
7322
- min_event_ts: number;
7323
- /**
7324
- *
7325
- * @type {string}
7326
- * @memberof UserSessionStats
7327
- */
7328
- os?: string;
7329
- /**
7330
- *
7331
- * @type {string}
7332
- * @memberof UserSessionStats
7333
- */
7334
- os_version?: string;
7335
- /**
7336
- *
7337
- * @type {number}
7338
- * @memberof UserSessionStats
7339
- */
7340
- packet_loss_fraction: number;
7341
- /**
7342
- *
7343
- * @type {MediaPubSubHint}
7344
- * @memberof UserSessionStats
7345
- */
7346
- pub_sub_hints?: MediaPubSubHint;
7347
- /**
7348
- *
7349
- * @type {Array<PublishedTrackInfo>}
7350
- * @memberof UserSessionStats
7351
- */
7352
- published_tracks?: Array<PublishedTrackInfo>;
7353
- /**
7354
- *
7355
- * @type {TimeStats}
7356
- * @memberof UserSessionStats
7357
- */
7358
- publisher_jitter?: TimeStats;
7359
- /**
7360
- *
7361
- * @type {TimeStats}
7362
- * @memberof UserSessionStats
7363
- */
7364
- publisher_latency?: TimeStats;
7365
- /**
7366
- *
7367
- * @type {number}
7368
- * @memberof UserSessionStats
7369
- */
7370
- publisher_noise_cancellation_seconds?: number;
7371
- /**
7372
- *
7373
- * @type {number}
7374
- * @memberof UserSessionStats
7375
- */
7376
- publisher_packet_loss_fraction: number;
7377
- /**
7378
- *
7379
- * @type {number}
7380
- * @memberof UserSessionStats
7381
- */
7382
- publisher_quality_limitation_fraction?: number;
7383
- /**
7384
- *
7385
- * @type {{ [key: string]: number; }}
7386
- * @memberof UserSessionStats
7387
- */
7388
- publisher_video_quality_limitation_duration_seconds?: {
7389
- [key: string]: number;
7390
- };
7391
- /**
7392
- *
7393
- * @type {string}
7394
- * @memberof UserSessionStats
7395
- */
7396
- publishing_audio_codec?: string;
7397
- /**
7398
- *
7399
- * @type {number}
7400
- * @memberof UserSessionStats
7401
- */
7402
- publishing_duration_seconds: number;
7403
- /**
7404
- *
7405
- * @type {string}
7406
- * @memberof UserSessionStats
7407
- */
7408
- publishing_video_codec?: string;
7409
- /**
7410
- *
7411
- * @type {number}
7412
- * @memberof UserSessionStats
7413
- */
7414
- quality_score: number;
7415
- /**
7416
- *
7417
- * @type {string}
7418
- * @memberof UserSessionStats
7419
- */
7420
- receiving_audio_codec?: string;
7421
- /**
7422
- *
7423
- * @type {number}
7424
- * @memberof UserSessionStats
7425
- */
7426
- receiving_duration_seconds: number;
7427
- /**
7428
- *
7429
- * @type {string}
7430
- * @memberof UserSessionStats
7431
- */
7432
- receiving_video_codec?: string;
7433
- /**
7434
- *
7435
- * @type {string}
7436
- * @memberof UserSessionStats
7437
- */
7438
- sdk?: string;
7439
- /**
7440
- *
7441
- * @type {string}
7442
- * @memberof UserSessionStats
7443
- */
7444
- sdk_version?: string;
7445
- /**
7446
- *
7447
- * @type {string}
7448
- * @memberof UserSessionStats
7449
- */
7450
- session_id: string;
7451
- /**
7452
- *
7453
- * @type {TimeStats}
7454
- * @memberof UserSessionStats
7455
- */
7456
- subscriber_jitter?: TimeStats;
7457
- /**
7458
- *
7459
- * @type {TimeStats}
7460
- * @memberof UserSessionStats
7461
- */
7462
- subscriber_latency?: TimeStats;
7463
- /**
7464
- *
7465
- * @type {number}
7466
- * @memberof UserSessionStats
7467
- */
7468
- subscriber_video_quality_throttled_duration_seconds?: number;
7469
- /**
7470
- *
7471
- * @type {Array<Subsession>}
7472
- * @memberof UserSessionStats
7473
- */
7474
- subsessions?: Array<Subsession>;
7475
- /**
7476
- *
7477
- * @type {CallTimeline}
7478
- * @memberof UserSessionStats
7479
- */
7480
- timeline?: CallTimeline;
7481
- /**
7482
- *
7483
- * @type {number}
7484
- * @memberof UserSessionStats
7485
- */
7486
- total_pixels_in: number;
7487
- /**
7488
- *
7489
- * @type {number}
7490
- * @memberof UserSessionStats
7491
- */
7492
- total_pixels_out: number;
7493
- /**
7494
- *
7495
- * @type {boolean}
7496
- * @memberof UserSessionStats
7497
- */
7498
- truncated?: boolean;
7499
- /**
7500
- *
7501
- * @type {string}
7502
- * @memberof UserSessionStats
7503
- */
7504
- webrtc_version?: string;
7505
- }
7506
- /**
7507
- *
7508
- * @export
7509
- * @interface UserStats
7510
- */
7511
- export interface UserStats {
7512
- /**
7513
- *
7514
- * @type {string}
7515
- * @memberof UserStats
7516
- */
7517
- feedback?: string;
7518
- /**
7519
- *
7520
- * @type {UserInfoResponse}
7521
- * @memberof UserStats
7522
- */
7523
- info: UserInfoResponse;
7524
- /**
7525
- *
7526
- * @type {number}
7527
- * @memberof UserStats
7528
- */
7529
- min_event_ts: number;
7530
- /**
7531
- *
7532
- * @type {number}
7533
- * @memberof UserStats
7534
- */
7535
- rating?: number;
7536
- /**
7537
- *
7538
- * @type {Array<UserSessionStats>}
7539
- * @memberof UserStats
7540
- */
7541
- session_stats: Array<UserSessionStats>;
7542
- }
7543
6981
  /**
7544
6982
  * This event is sent when a user gets updated. The event contains information about the updated user.
7545
6983
  * @export