@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
@@ -659,73 +640,6 @@ export interface CallEndedEvent {
659
640
  */
660
641
  user?: UserResponse;
661
642
  }
662
- /**
663
- *
664
- * @export
665
- * @interface CallEvent
666
- */
667
- export interface CallEvent {
668
- /**
669
- *
670
- * @type {string}
671
- * @memberof CallEvent
672
- */
673
- category?: string;
674
- /**
675
- *
676
- * @type {string}
677
- * @memberof CallEvent
678
- */
679
- component?: string;
680
- /**
681
- *
682
- * @type {string}
683
- * @memberof CallEvent
684
- */
685
- description: string;
686
- /**
687
- *
688
- * @type {number}
689
- * @memberof CallEvent
690
- */
691
- end_timestamp: number;
692
- /**
693
- *
694
- * @type {boolean}
695
- * @memberof CallEvent
696
- */
697
- internal: boolean;
698
- /**
699
- *
700
- * @type {Array<string>}
701
- * @memberof CallEvent
702
- */
703
- issue_tags?: Array<string>;
704
- /**
705
- *
706
- * @type {string}
707
- * @memberof CallEvent
708
- */
709
- kind: string;
710
- /**
711
- *
712
- * @type {number}
713
- * @memberof CallEvent
714
- */
715
- severity: number;
716
- /**
717
- *
718
- * @type {number}
719
- * @memberof CallEvent
720
- */
721
- timestamp: number;
722
- /**
723
- *
724
- * @type {string}
725
- * @memberof CallEvent
726
- */
727
- type: string;
728
- }
729
643
  /**
730
644
  * This event is sent when frame recording has failed
731
645
  * @export
@@ -1585,6 +1499,31 @@ export interface CallRejectedEvent {
1585
1499
  */
1586
1500
  user: UserResponse;
1587
1501
  }
1502
+ /**
1503
+ *
1504
+ * @export
1505
+ * @interface CallReportResponse
1506
+ */
1507
+ export interface CallReportResponse {
1508
+ /**
1509
+ *
1510
+ * @type {string}
1511
+ * @memberof CallReportResponse
1512
+ */
1513
+ ended_at?: string;
1514
+ /**
1515
+ *
1516
+ * @type {number}
1517
+ * @memberof CallReportResponse
1518
+ */
1519
+ score: number;
1520
+ /**
1521
+ *
1522
+ * @type {string}
1523
+ * @memberof CallReportResponse
1524
+ */
1525
+ started_at?: string;
1526
+ }
1588
1527
  /**
1589
1528
  * CallRequest is the payload for creating a call.
1590
1529
  * @export
@@ -2447,19 +2386,6 @@ export interface CallStatsReportSummaryResponse {
2447
2386
  */
2448
2387
  quality_score?: number;
2449
2388
  }
2450
- /**
2451
- *
2452
- * @export
2453
- * @interface CallTimeline
2454
- */
2455
- export interface CallTimeline {
2456
- /**
2457
- *
2458
- * @type {Array<CallEvent>}
2459
- * @memberof CallTimeline
2460
- */
2461
- events: Array<CallEvent>;
2462
- }
2463
2389
  /**
2464
2390
  * CallTranscription represents a transcription of a call.
2465
2391
  * @export
@@ -2722,6 +2648,19 @@ export interface CallsPerDayReportResponse {
2722
2648
  */
2723
2649
  daily: Array<DailyAggregateCallsPerDayReportResponse>;
2724
2650
  }
2651
+ /**
2652
+ *
2653
+ * @export
2654
+ * @interface ChatActivityStatsResponse
2655
+ */
2656
+ export interface ChatActivityStatsResponse {
2657
+ /**
2658
+ *
2659
+ * @type {MessageStatsResponse}
2660
+ * @memberof ChatActivityStatsResponse
2661
+ */
2662
+ Messages?: MessageStatsResponse;
2663
+ }
2725
2664
  /**
2726
2665
  * 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
2727
2666
  * @export
@@ -2923,40 +2862,21 @@ export interface ConnectionErrorEvent {
2923
2862
  /**
2924
2863
  *
2925
2864
  * @export
2926
- * @interface Coordinates
2865
+ * @interface CountByMinuteResponse
2927
2866
  */
2928
- export interface Coordinates {
2929
- /**
2930
- *
2931
- * @type {number}
2932
- * @memberof Coordinates
2933
- */
2934
- latitude: number;
2867
+ export interface CountByMinuteResponse {
2935
2868
  /**
2936
2869
  *
2937
2870
  * @type {number}
2938
- * @memberof Coordinates
2939
- */
2940
- longitude: number;
2941
- }
2942
- /**
2943
- *
2944
- * @export
2945
- * @interface Count
2946
- */
2947
- export interface Count {
2948
- /**
2949
- *
2950
- * @type {boolean}
2951
- * @memberof Count
2871
+ * @memberof CountByMinuteResponse
2952
2872
  */
2953
- approximate: boolean;
2873
+ count: number;
2954
2874
  /**
2955
2875
  *
2956
- * @type {number}
2957
- * @memberof Count
2876
+ * @type {string}
2877
+ * @memberof CountByMinuteResponse
2958
2878
  */
2959
- value: number;
2879
+ start_ts: string;
2960
2880
  }
2961
2881
  /**
2962
2882
  * Create device request
@@ -3496,25 +3416,6 @@ export interface EndCallResponse {
3496
3416
  */
3497
3417
  duration: string;
3498
3418
  }
3499
- /**
3500
- *
3501
- * @export
3502
- * @interface FPSStats
3503
- */
3504
- export interface FPSStats {
3505
- /**
3506
- *
3507
- * @type {number}
3508
- * @memberof FPSStats
3509
- */
3510
- average_fps: number;
3511
- /**
3512
- *
3513
- * @type {number}
3514
- * @memberof FPSStats
3515
- */
3516
- tracked: number;
3517
- }
3518
3419
  /**
3519
3420
  *
3520
3421
  * @export
@@ -3641,73 +3542,6 @@ export interface GeofenceSettingsResponse {
3641
3542
  */
3642
3543
  names: Array<string>;
3643
3544
  }
3644
- /**
3645
- *
3646
- * @export
3647
- * @interface GeolocationResult
3648
- */
3649
- export interface GeolocationResult {
3650
- /**
3651
- *
3652
- * @type {number}
3653
- * @memberof GeolocationResult
3654
- */
3655
- accuracy_radius: number;
3656
- /**
3657
- *
3658
- * @type {string}
3659
- * @memberof GeolocationResult
3660
- */
3661
- city: string;
3662
- /**
3663
- *
3664
- * @type {string}
3665
- * @memberof GeolocationResult
3666
- */
3667
- continent: string;
3668
- /**
3669
- *
3670
- * @type {string}
3671
- * @memberof GeolocationResult
3672
- */
3673
- continent_code: string;
3674
- /**
3675
- *
3676
- * @type {string}
3677
- * @memberof GeolocationResult
3678
- */
3679
- country: string;
3680
- /**
3681
- *
3682
- * @type {string}
3683
- * @memberof GeolocationResult
3684
- */
3685
- country_iso_code: string;
3686
- /**
3687
- *
3688
- * @type {number}
3689
- * @memberof GeolocationResult
3690
- */
3691
- latitude: number;
3692
- /**
3693
- *
3694
- * @type {number}
3695
- * @memberof GeolocationResult
3696
- */
3697
- longitude: number;
3698
- /**
3699
- *
3700
- * @type {string}
3701
- * @memberof GeolocationResult
3702
- */
3703
- subdivision: string;
3704
- /**
3705
- *
3706
- * @type {string}
3707
- * @memberof GeolocationResult
3708
- */
3709
- subdivision_iso_code: string;
3710
- }
3711
3545
  /**
3712
3546
  *
3713
3547
  * @export
@@ -3748,111 +3582,33 @@ export interface GetCallResponse {
3748
3582
  /**
3749
3583
  * Basic response information
3750
3584
  * @export
3751
- * @interface GetCallStatsResponse
3585
+ * @interface GetCallReportResponse
3752
3586
  */
3753
- export interface GetCallStatsResponse {
3754
- /**
3755
- *
3756
- * @type {AggregatedStats}
3757
- * @memberof GetCallStatsResponse
3758
- */
3759
- aggregated?: AggregatedStats;
3760
- /**
3761
- *
3762
- * @type {number}
3763
- * @memberof GetCallStatsResponse
3764
- */
3765
- average_connection_time?: number;
3766
- /**
3767
- *
3768
- * @type {number}
3769
- * @memberof GetCallStatsResponse
3770
- */
3771
- call_duration_seconds: number;
3772
- /**
3773
- *
3774
- * @type {string}
3775
- * @memberof GetCallStatsResponse
3776
- */
3777
- call_status: string;
3587
+ export interface GetCallReportResponse {
3778
3588
  /**
3779
3589
  *
3780
- * @type {CallTimeline}
3781
- * @memberof GetCallStatsResponse
3590
+ * @type {ChatActivityStatsResponse}
3591
+ * @memberof GetCallReportResponse
3782
3592
  */
3783
- call_timeline?: CallTimeline;
3593
+ chat_activity?: ChatActivityStatsResponse;
3784
3594
  /**
3785
3595
  * Duration of the request in milliseconds
3786
3596
  * @type {string}
3787
- * @memberof GetCallStatsResponse
3597
+ * @memberof GetCallReportResponse
3788
3598
  */
3789
3599
  duration: string;
3790
3600
  /**
3791
3601
  *
3792
- * @type {boolean}
3793
- * @memberof GetCallStatsResponse
3794
- */
3795
- is_truncated_report: boolean;
3796
- /**
3797
- *
3798
- * @type {TimeStats}
3799
- * @memberof GetCallStatsResponse
3800
- */
3801
- jitter?: TimeStats;
3802
- /**
3803
- *
3804
- * @type {TimeStats}
3805
- * @memberof GetCallStatsResponse
3806
- */
3807
- latency?: TimeStats;
3808
- /**
3809
- *
3810
- * @type {number}
3811
- * @memberof GetCallStatsResponse
3812
- */
3813
- max_freezes_duration_seconds: number;
3814
- /**
3815
- *
3816
- * @type {number}
3817
- * @memberof GetCallStatsResponse
3818
- */
3819
- max_participants: number;
3820
- /**
3821
- *
3822
- * @type {number}
3823
- * @memberof GetCallStatsResponse
3824
- */
3825
- max_total_quality_limitation_duration_seconds: number;
3826
- /**
3827
- *
3828
- * @type {Array<UserStats>}
3829
- * @memberof GetCallStatsResponse
3830
- */
3831
- participant_report: Array<UserStats>;
3832
- /**
3833
- *
3834
- * @type {number}
3835
- * @memberof GetCallStatsResponse
3836
- */
3837
- publishing_participants: number;
3838
- /**
3839
- *
3840
- * @type {number}
3841
- * @memberof GetCallStatsResponse
3842
- */
3843
- quality_score: number;
3844
- /**
3845
- *
3846
- * @type {number}
3847
- * @memberof GetCallStatsResponse
3602
+ * @type {ReportResponse}
3603
+ * @memberof GetCallReportResponse
3848
3604
  */
3849
- sfu_count: number;
3605
+ report: ReportResponse;
3850
3606
  /**
3851
3607
  *
3852
- * @type {Array<SFULocationResponse>}
3853
- * @memberof GetCallStatsResponse
3608
+ * @type {string}
3609
+ * @memberof GetCallReportResponse
3854
3610
  */
3855
- sfus: Array<SFULocationResponse>;
3611
+ session_id: string;
3856
3612
  }
3857
3613
  /**
3858
3614
  * Basic response information
@@ -4021,6 +3777,25 @@ export interface GoLiveResponse {
4021
3777
  */
4022
3778
  duration: string;
4023
3779
  }
3780
+ /**
3781
+ *
3782
+ * @export
3783
+ * @interface GroupedStatsResponse
3784
+ */
3785
+ export interface GroupedStatsResponse {
3786
+ /**
3787
+ *
3788
+ * @type {string}
3789
+ * @memberof GroupedStatsResponse
3790
+ */
3791
+ name: string;
3792
+ /**
3793
+ *
3794
+ * @type {number}
3795
+ * @memberof GroupedStatsResponse
3796
+ */
3797
+ unique: number;
3798
+ }
4024
3799
  /**
4025
3800
  *
4026
3801
  * @export
@@ -4421,54 +4196,23 @@ export interface Location {
4421
4196
  subdivision_iso_code: string;
4422
4197
  }
4423
4198
  /**
4424
- *
4199
+ * MemberRequest is the payload for adding a member to a call.
4425
4200
  * @export
4426
- * @interface MediaPubSubHint
4201
+ * @interface MemberRequest
4427
4202
  */
4428
- export interface MediaPubSubHint {
4203
+ export interface MemberRequest {
4429
4204
  /**
4430
- *
4431
- * @type {boolean}
4432
- * @memberof MediaPubSubHint
4205
+ * Custom data for this object
4206
+ * @type {{ [key: string]: any; }}
4207
+ * @memberof MemberRequest
4433
4208
  */
4434
- audio_published: boolean;
4209
+ custom?: { [key: string]: any };
4435
4210
  /**
4436
4211
  *
4437
- * @type {boolean}
4438
- * @memberof MediaPubSubHint
4212
+ * @type {string}
4213
+ * @memberof MemberRequest
4439
4214
  */
4440
- audio_subscribed: boolean;
4441
- /**
4442
- *
4443
- * @type {boolean}
4444
- * @memberof MediaPubSubHint
4445
- */
4446
- video_published: boolean;
4447
- /**
4448
- *
4449
- * @type {boolean}
4450
- * @memberof MediaPubSubHint
4451
- */
4452
- video_subscribed: boolean;
4453
- }
4454
- /**
4455
- * MemberRequest is the payload for adding a member to a call.
4456
- * @export
4457
- * @interface MemberRequest
4458
- */
4459
- export interface MemberRequest {
4460
- /**
4461
- * Custom data for this object
4462
- * @type {{ [key: string]: any; }}
4463
- * @memberof MemberRequest
4464
- */
4465
- custom?: { [key: string]: any };
4466
- /**
4467
- *
4468
- * @type {string}
4469
- * @memberof MemberRequest
4470
- */
4471
- role?: string;
4215
+ role?: string;
4472
4216
  /**
4473
4217
  *
4474
4218
  * @type {string}
@@ -4525,6 +4269,19 @@ export interface MemberResponse {
4525
4269
  */
4526
4270
  user_id: string;
4527
4271
  }
4272
+ /**
4273
+ *
4274
+ * @export
4275
+ * @interface MessageStatsResponse
4276
+ */
4277
+ export interface MessageStatsResponse {
4278
+ /**
4279
+ *
4280
+ * @type {Array<CountByMinuteResponse>}
4281
+ * @memberof MessageStatsResponse
4282
+ */
4283
+ count_over_time?: Array<CountByMinuteResponse>;
4284
+ }
4528
4285
  /**
4529
4286
  *
4530
4287
  * @export
@@ -4784,6 +4541,123 @@ export interface OwnUserResponse {
4784
4541
  */
4785
4542
  updated_at: string;
4786
4543
  }
4544
+ /**
4545
+ *
4546
+ * @export
4547
+ * @interface ParticipantCountByMinuteResponse
4548
+ */
4549
+ export interface ParticipantCountByMinuteResponse {
4550
+ /**
4551
+ *
4552
+ * @type {number}
4553
+ * @memberof ParticipantCountByMinuteResponse
4554
+ */
4555
+ first: number;
4556
+ /**
4557
+ *
4558
+ * @type {number}
4559
+ * @memberof ParticipantCountByMinuteResponse
4560
+ */
4561
+ last: number;
4562
+ /**
4563
+ *
4564
+ * @type {number}
4565
+ * @memberof ParticipantCountByMinuteResponse
4566
+ */
4567
+ max: number;
4568
+ /**
4569
+ *
4570
+ * @type {number}
4571
+ * @memberof ParticipantCountByMinuteResponse
4572
+ */
4573
+ min: number;
4574
+ /**
4575
+ *
4576
+ * @type {string}
4577
+ * @memberof ParticipantCountByMinuteResponse
4578
+ */
4579
+ start_ts: string;
4580
+ }
4581
+ /**
4582
+ *
4583
+ * @export
4584
+ * @interface ParticipantCountOverTimeResponse
4585
+ */
4586
+ export interface ParticipantCountOverTimeResponse {
4587
+ /**
4588
+ *
4589
+ * @type {Array<ParticipantCountByMinuteResponse>}
4590
+ * @memberof ParticipantCountOverTimeResponse
4591
+ */
4592
+ by_minute?: Array<ParticipantCountByMinuteResponse>;
4593
+ }
4594
+ /**
4595
+ *
4596
+ * @export
4597
+ * @interface ParticipantReportResponse
4598
+ */
4599
+ export interface ParticipantReportResponse {
4600
+ /**
4601
+ *
4602
+ * @type {Array<GroupedStatsResponse>}
4603
+ * @memberof ParticipantReportResponse
4604
+ */
4605
+ by_browser?: Array<GroupedStatsResponse>;
4606
+ /**
4607
+ *
4608
+ * @type {Array<GroupedStatsResponse>}
4609
+ * @memberof ParticipantReportResponse
4610
+ */
4611
+ by_country?: Array<GroupedStatsResponse>;
4612
+ /**
4613
+ *
4614
+ * @type {Array<GroupedStatsResponse>}
4615
+ * @memberof ParticipantReportResponse
4616
+ */
4617
+ by_device?: Array<GroupedStatsResponse>;
4618
+ /**
4619
+ *
4620
+ * @type {Array<GroupedStatsResponse>}
4621
+ * @memberof ParticipantReportResponse
4622
+ */
4623
+ by_operating_system?: Array<GroupedStatsResponse>;
4624
+ /**
4625
+ *
4626
+ * @type {ParticipantCountOverTimeResponse}
4627
+ * @memberof ParticipantReportResponse
4628
+ */
4629
+ count_over_time?: ParticipantCountOverTimeResponse;
4630
+ /**
4631
+ *
4632
+ * @type {number}
4633
+ * @memberof ParticipantReportResponse
4634
+ */
4635
+ max_concurrent?: number;
4636
+ /**
4637
+ *
4638
+ * @type {PublisherStatsResponse}
4639
+ * @memberof ParticipantReportResponse
4640
+ */
4641
+ publishers?: PublisherStatsResponse;
4642
+ /**
4643
+ *
4644
+ * @type {SubscriberStatsResponse}
4645
+ * @memberof ParticipantReportResponse
4646
+ */
4647
+ subscribers?: SubscriberStatsResponse;
4648
+ /**
4649
+ *
4650
+ * @type {number}
4651
+ * @memberof ParticipantReportResponse
4652
+ */
4653
+ sum: number;
4654
+ /**
4655
+ *
4656
+ * @type {number}
4657
+ * @memberof ParticipantReportResponse
4658
+ */
4659
+ unique: number;
4660
+ }
4787
4661
  /**
4788
4662
  *
4789
4663
  * @export
@@ -4876,46 +4750,27 @@ export interface PinResponse {
4876
4750
  /**
4877
4751
  *
4878
4752
  * @export
4879
- * @interface PublishedTrackInfo
4753
+ * @interface PublisherStatsResponse
4880
4754
  */
4881
- export interface PublishedTrackInfo {
4755
+ export interface PublisherStatsResponse {
4882
4756
  /**
4883
4757
  *
4884
- * @type {string}
4885
- * @memberof PublishedTrackInfo
4758
+ * @type {Array<TrackStatsResponse>}
4759
+ * @memberof PublisherStatsResponse
4886
4760
  */
4887
- codec_mime_type?: string;
4761
+ by_track?: Array<TrackStatsResponse>;
4888
4762
  /**
4889
4763
  *
4890
4764
  * @type {number}
4891
- * @memberof PublishedTrackInfo
4892
- */
4893
- duration_seconds?: number;
4894
- /**
4895
- *
4896
- * @type {string}
4897
- * @memberof PublishedTrackInfo
4898
- */
4899
- track_type?: string;
4900
- }
4901
- /**
4902
- *
4903
- * @export
4904
- * @interface PublisherAggregateStats
4905
- */
4906
- export interface PublisherAggregateStats {
4907
- /**
4908
- *
4909
- * @type {{ [key: string]: Count; }}
4910
- * @memberof PublisherAggregateStats
4765
+ * @memberof PublisherStatsResponse
4911
4766
  */
4912
- by_track_type?: { [key: string]: Count };
4767
+ total: number;
4913
4768
  /**
4914
4769
  *
4915
- * @type {Count}
4916
- * @memberof PublisherAggregateStats
4770
+ * @type {number}
4771
+ * @memberof PublisherStatsResponse
4917
4772
  */
4918
- total?: Count;
4773
+ unique: number;
4919
4774
  }
4920
4775
  /**
4921
4776
  *
@@ -5270,6 +5125,31 @@ export interface QueryCallsResponse {
5270
5125
  */
5271
5126
  prev?: string;
5272
5127
  }
5128
+ /**
5129
+ *
5130
+ * @export
5131
+ * @interface ReportResponse
5132
+ */
5133
+ export interface ReportResponse {
5134
+ /**
5135
+ *
5136
+ * @type {CallReportResponse}
5137
+ * @memberof ReportResponse
5138
+ */
5139
+ call: CallReportResponse;
5140
+ /**
5141
+ *
5142
+ * @type {ParticipantReportResponse}
5143
+ * @memberof ReportResponse
5144
+ */
5145
+ participants: ParticipantReportResponse;
5146
+ /**
5147
+ *
5148
+ * @type {UserRatingReportResponse}
5149
+ * @memberof ReportResponse
5150
+ */
5151
+ user_ratings: UserRatingReportResponse;
5152
+ }
5273
5153
  /**
5274
5154
  * RTMPBroadcastRequest is the payload for starting an RTMP broadcast.
5275
5155
  * @export
@@ -5685,37 +5565,6 @@ export interface SDKUsageReportResponse {
5685
5565
  */
5686
5566
  daily: Array<DailyAggregateSDKUsageReportResponse>;
5687
5567
  }
5688
- /**
5689
- *
5690
- * @export
5691
- * @interface SFULocationResponse
5692
- */
5693
- export interface SFULocationResponse {
5694
- /**
5695
- *
5696
- * @type {Coordinates}
5697
- * @memberof SFULocationResponse
5698
- */
5699
- coordinates: Coordinates;
5700
- /**
5701
- *
5702
- * @type {string}
5703
- * @memberof SFULocationResponse
5704
- */
5705
- datacenter: string;
5706
- /**
5707
- *
5708
- * @type {string}
5709
- * @memberof SFULocationResponse
5710
- */
5711
- id: string;
5712
- /**
5713
- *
5714
- * @type {Location}
5715
- * @memberof SFULocationResponse
5716
- */
5717
- location: Location;
5718
- }
5719
5568
  /**
5720
5569
  *
5721
5570
  * @export
@@ -6274,52 +6123,27 @@ export interface StopTranscriptionResponse {
6274
6123
  /**
6275
6124
  *
6276
6125
  * @export
6277
- * @interface Subsession
6126
+ * @interface SubscriberStatsResponse
6278
6127
  */
6279
- export interface Subsession {
6128
+ export interface SubscriberStatsResponse {
6280
6129
  /**
6281
6130
  *
6282
6131
  * @type {number}
6283
- * @memberof Subsession
6132
+ * @memberof SubscriberStatsResponse
6284
6133
  */
6285
- ended_at: number;
6134
+ total: number;
6286
6135
  /**
6287
6136
  *
6288
6137
  * @type {number}
6289
- * @memberof Subsession
6290
- */
6291
- joined_at: number;
6292
- /**
6293
- *
6294
- * @type {MediaPubSubHint}
6295
- * @memberof Subsession
6138
+ * @memberof SubscriberStatsResponse
6296
6139
  */
6297
- pub_sub_hint?: MediaPubSubHint;
6140
+ total_subscribed_duration_seconds: number;
6298
6141
  /**
6299
6142
  *
6300
- * @type {string}
6301
- * @memberof Subsession
6302
- */
6303
- sfu_id: string;
6304
- }
6305
- /**
6306
- *
6307
- * @export
6308
- * @interface TURNAggregatedStats
6309
- */
6310
- export interface TURNAggregatedStats {
6311
- /**
6312
- *
6313
- * @type {Count}
6314
- * @memberof TURNAggregatedStats
6315
- */
6316
- tcp?: Count;
6317
- /**
6318
- *
6319
- * @type {Count}
6320
- * @memberof TURNAggregatedStats
6143
+ * @type {number}
6144
+ * @memberof SubscriberStatsResponse
6321
6145
  */
6322
- total?: Count;
6146
+ unique: number;
6323
6147
  }
6324
6148
  /**
6325
6149
  *
@@ -6388,21 +6212,21 @@ export interface ThumbnailsSettingsResponse {
6388
6212
  /**
6389
6213
  *
6390
6214
  * @export
6391
- * @interface TimeStats
6215
+ * @interface TrackStatsResponse
6392
6216
  */
6393
- export interface TimeStats {
6217
+ export interface TrackStatsResponse {
6394
6218
  /**
6395
6219
  *
6396
6220
  * @type {number}
6397
- * @memberof TimeStats
6221
+ * @memberof TrackStatsResponse
6398
6222
  */
6399
- average_seconds: number;
6223
+ duration_seconds: number;
6400
6224
  /**
6401
6225
  *
6402
- * @type {number}
6403
- * @memberof TimeStats
6226
+ * @type {string}
6227
+ * @memberof TrackStatsResponse
6404
6228
  */
6405
- max_seconds: number;
6229
+ track_type: string;
6406
6230
  }
6407
6231
  /**
6408
6232
  *
@@ -6882,39 +6706,21 @@ export interface UserFeedbackReportResponse {
6882
6706
  /**
6883
6707
  *
6884
6708
  * @export
6885
- * @interface UserInfoResponse
6709
+ * @interface UserRatingReportResponse
6886
6710
  */
6887
- export interface UserInfoResponse {
6888
- /**
6889
- *
6890
- * @type {{ [key: string]: any; }}
6891
- * @memberof UserInfoResponse
6892
- */
6893
- custom: { [key: string]: any };
6894
- /**
6895
- *
6896
- * @type {string}
6897
- * @memberof UserInfoResponse
6898
- */
6899
- id: string;
6711
+ export interface UserRatingReportResponse {
6900
6712
  /**
6901
6713
  *
6902
- * @type {string}
6903
- * @memberof UserInfoResponse
6904
- */
6905
- image: string;
6906
- /**
6907
- *
6908
- * @type {string}
6909
- * @memberof UserInfoResponse
6714
+ * @type {number}
6715
+ * @memberof UserRatingReportResponse
6910
6716
  */
6911
- name: string;
6717
+ average: number;
6912
6718
  /**
6913
6719
  *
6914
- * @type {Array<string>}
6915
- * @memberof UserInfoResponse
6720
+ * @type {number}
6721
+ * @memberof UserRatingReportResponse
6916
6722
  */
6917
- roles: Array<string>;
6723
+ count: number;
6918
6724
  }
6919
6725
  /**
6920
6726
  * User request object
@@ -7159,370 +6965,6 @@ export interface UserResponsePrivacyFields {
7159
6965
  */
7160
6966
  updated_at: string;
7161
6967
  }
7162
- /**
7163
- *
7164
- * @export
7165
- * @interface UserSessionStats
7166
- */
7167
- export interface UserSessionStats {
7168
- /**
7169
- *
7170
- * @type {number}
7171
- * @memberof UserSessionStats
7172
- */
7173
- average_connection_time?: number;
7174
- /**
7175
- *
7176
- * @type {string}
7177
- * @memberof UserSessionStats
7178
- */
7179
- browser?: string;
7180
- /**
7181
- *
7182
- * @type {string}
7183
- * @memberof UserSessionStats
7184
- */
7185
- browser_version?: string;
7186
- /**
7187
- *
7188
- * @type {string}
7189
- * @memberof UserSessionStats
7190
- */
7191
- current_ip?: string;
7192
- /**
7193
- *
7194
- * @type {string}
7195
- * @memberof UserSessionStats
7196
- */
7197
- current_sfu?: string;
7198
- /**
7199
- *
7200
- * @type {string}
7201
- * @memberof UserSessionStats
7202
- */
7203
- device_model?: string;
7204
- /**
7205
- *
7206
- * @type {string}
7207
- * @memberof UserSessionStats
7208
- */
7209
- device_version?: string;
7210
- /**
7211
- *
7212
- * @type {number}
7213
- * @memberof UserSessionStats
7214
- */
7215
- distance_to_sfu_kilometers?: number;
7216
- /**
7217
- *
7218
- * @type {FPSStats}
7219
- * @memberof UserSessionStats
7220
- */
7221
- fps?: FPSStats;
7222
- /**
7223
- *
7224
- * @type {number}
7225
- * @memberof UserSessionStats
7226
- */
7227
- freeze_duration_seconds: number;
7228
- /**
7229
- *
7230
- * @type {GeolocationResult}
7231
- * @memberof UserSessionStats
7232
- */
7233
- geolocation?: GeolocationResult;
7234
- /**
7235
- *
7236
- * @type {string}
7237
- * @memberof UserSessionStats
7238
- */
7239
- group: string;
7240
- /**
7241
- *
7242
- * @type {TimeStats}
7243
- * @memberof UserSessionStats
7244
- */
7245
- jitter?: TimeStats;
7246
- /**
7247
- *
7248
- * @type {TimeStats}
7249
- * @memberof UserSessionStats
7250
- */
7251
- latency?: TimeStats;
7252
- /**
7253
- *
7254
- * @type {number}
7255
- * @memberof UserSessionStats
7256
- */
7257
- max_fir_per_second?: number;
7258
- /**
7259
- *
7260
- * @type {number}
7261
- * @memberof UserSessionStats
7262
- */
7263
- max_freeze_fraction: number;
7264
- /**
7265
- *
7266
- * @type {number}
7267
- * @memberof UserSessionStats
7268
- */
7269
- max_freezes_duration_seconds: number;
7270
- /**
7271
- *
7272
- * @type {number}
7273
- * @memberof UserSessionStats
7274
- */
7275
- max_freezes_per_second?: number;
7276
- /**
7277
- *
7278
- * @type {number}
7279
- * @memberof UserSessionStats
7280
- */
7281
- max_nack_per_second?: number;
7282
- /**
7283
- *
7284
- * @type {number}
7285
- * @memberof UserSessionStats
7286
- */
7287
- max_pli_per_second?: number;
7288
- /**
7289
- *
7290
- * @type {VideoQuality}
7291
- * @memberof UserSessionStats
7292
- */
7293
- max_publishing_video_quality?: VideoQuality;
7294
- /**
7295
- *
7296
- * @type {VideoQuality}
7297
- * @memberof UserSessionStats
7298
- */
7299
- max_receiving_video_quality?: VideoQuality;
7300
- /**
7301
- *
7302
- * @type {number}
7303
- * @memberof UserSessionStats
7304
- */
7305
- min_event_ts: number;
7306
- /**
7307
- *
7308
- * @type {string}
7309
- * @memberof UserSessionStats
7310
- */
7311
- os?: string;
7312
- /**
7313
- *
7314
- * @type {string}
7315
- * @memberof UserSessionStats
7316
- */
7317
- os_version?: string;
7318
- /**
7319
- *
7320
- * @type {number}
7321
- * @memberof UserSessionStats
7322
- */
7323
- packet_loss_fraction: number;
7324
- /**
7325
- *
7326
- * @type {MediaPubSubHint}
7327
- * @memberof UserSessionStats
7328
- */
7329
- pub_sub_hints?: MediaPubSubHint;
7330
- /**
7331
- *
7332
- * @type {Array<PublishedTrackInfo>}
7333
- * @memberof UserSessionStats
7334
- */
7335
- published_tracks?: Array<PublishedTrackInfo>;
7336
- /**
7337
- *
7338
- * @type {TimeStats}
7339
- * @memberof UserSessionStats
7340
- */
7341
- publisher_jitter?: TimeStats;
7342
- /**
7343
- *
7344
- * @type {TimeStats}
7345
- * @memberof UserSessionStats
7346
- */
7347
- publisher_latency?: TimeStats;
7348
- /**
7349
- *
7350
- * @type {number}
7351
- * @memberof UserSessionStats
7352
- */
7353
- publisher_noise_cancellation_seconds?: number;
7354
- /**
7355
- *
7356
- * @type {number}
7357
- * @memberof UserSessionStats
7358
- */
7359
- publisher_packet_loss_fraction: number;
7360
- /**
7361
- *
7362
- * @type {number}
7363
- * @memberof UserSessionStats
7364
- */
7365
- publisher_quality_limitation_fraction?: number;
7366
- /**
7367
- *
7368
- * @type {{ [key: string]: number; }}
7369
- * @memberof UserSessionStats
7370
- */
7371
- publisher_video_quality_limitation_duration_seconds?: {
7372
- [key: string]: number;
7373
- };
7374
- /**
7375
- *
7376
- * @type {string}
7377
- * @memberof UserSessionStats
7378
- */
7379
- publishing_audio_codec?: string;
7380
- /**
7381
- *
7382
- * @type {number}
7383
- * @memberof UserSessionStats
7384
- */
7385
- publishing_duration_seconds: number;
7386
- /**
7387
- *
7388
- * @type {string}
7389
- * @memberof UserSessionStats
7390
- */
7391
- publishing_video_codec?: string;
7392
- /**
7393
- *
7394
- * @type {number}
7395
- * @memberof UserSessionStats
7396
- */
7397
- quality_score: number;
7398
- /**
7399
- *
7400
- * @type {string}
7401
- * @memberof UserSessionStats
7402
- */
7403
- receiving_audio_codec?: string;
7404
- /**
7405
- *
7406
- * @type {number}
7407
- * @memberof UserSessionStats
7408
- */
7409
- receiving_duration_seconds: number;
7410
- /**
7411
- *
7412
- * @type {string}
7413
- * @memberof UserSessionStats
7414
- */
7415
- receiving_video_codec?: string;
7416
- /**
7417
- *
7418
- * @type {string}
7419
- * @memberof UserSessionStats
7420
- */
7421
- sdk?: string;
7422
- /**
7423
- *
7424
- * @type {string}
7425
- * @memberof UserSessionStats
7426
- */
7427
- sdk_version?: string;
7428
- /**
7429
- *
7430
- * @type {string}
7431
- * @memberof UserSessionStats
7432
- */
7433
- session_id: string;
7434
- /**
7435
- *
7436
- * @type {TimeStats}
7437
- * @memberof UserSessionStats
7438
- */
7439
- subscriber_jitter?: TimeStats;
7440
- /**
7441
- *
7442
- * @type {TimeStats}
7443
- * @memberof UserSessionStats
7444
- */
7445
- subscriber_latency?: TimeStats;
7446
- /**
7447
- *
7448
- * @type {number}
7449
- * @memberof UserSessionStats
7450
- */
7451
- subscriber_video_quality_throttled_duration_seconds?: number;
7452
- /**
7453
- *
7454
- * @type {Array<Subsession>}
7455
- * @memberof UserSessionStats
7456
- */
7457
- subsessions?: Array<Subsession>;
7458
- /**
7459
- *
7460
- * @type {CallTimeline}
7461
- * @memberof UserSessionStats
7462
- */
7463
- timeline?: CallTimeline;
7464
- /**
7465
- *
7466
- * @type {number}
7467
- * @memberof UserSessionStats
7468
- */
7469
- total_pixels_in: number;
7470
- /**
7471
- *
7472
- * @type {number}
7473
- * @memberof UserSessionStats
7474
- */
7475
- total_pixels_out: number;
7476
- /**
7477
- *
7478
- * @type {boolean}
7479
- * @memberof UserSessionStats
7480
- */
7481
- truncated?: boolean;
7482
- /**
7483
- *
7484
- * @type {string}
7485
- * @memberof UserSessionStats
7486
- */
7487
- webrtc_version?: string;
7488
- }
7489
- /**
7490
- *
7491
- * @export
7492
- * @interface UserStats
7493
- */
7494
- export interface UserStats {
7495
- /**
7496
- *
7497
- * @type {string}
7498
- * @memberof UserStats
7499
- */
7500
- feedback?: string;
7501
- /**
7502
- *
7503
- * @type {UserInfoResponse}
7504
- * @memberof UserStats
7505
- */
7506
- info: UserInfoResponse;
7507
- /**
7508
- *
7509
- * @type {number}
7510
- * @memberof UserStats
7511
- */
7512
- min_event_ts: number;
7513
- /**
7514
- *
7515
- * @type {number}
7516
- * @memberof UserStats
7517
- */
7518
- rating?: number;
7519
- /**
7520
- *
7521
- * @type {Array<UserSessionStats>}
7522
- * @memberof UserStats
7523
- */
7524
- session_stats: Array<UserSessionStats>;
7525
- }
7526
6968
  /**
7527
6969
  * This event is sent when a user gets updated. The event contains information about the updated user.
7528
6970
  * @export