@stream-io/video-client 1.0.4 → 1.0.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +7 -0
- package/dist/index.browser.es.js +2 -1
- package/dist/index.browser.es.js.map +1 -1
- package/dist/index.cjs.js +2 -1
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.es.js +2 -1
- package/dist/index.es.js.map +1 -1
- package/dist/src/gen/coordinator/index.d.ts +214 -0
- package/package.json +1 -1
- package/src/devices/InputMediaDeviceManager.ts +1 -0
- package/src/gen/coordinator/index.ts +214 -0
|
@@ -2742,6 +2742,12 @@ export interface GetCallStatsResponse {
|
|
|
2742
2742
|
* @memberof GetCallStatsResponse
|
|
2743
2743
|
*/
|
|
2744
2744
|
call_duration_seconds: number;
|
|
2745
|
+
/**
|
|
2746
|
+
*
|
|
2747
|
+
* @type {string}
|
|
2748
|
+
* @memberof GetCallStatsResponse
|
|
2749
|
+
*/
|
|
2750
|
+
call_status: string;
|
|
2745
2751
|
/**
|
|
2746
2752
|
*
|
|
2747
2753
|
* @type {CallTimeline}
|
|
@@ -3250,6 +3256,37 @@ export interface Location {
|
|
|
3250
3256
|
*/
|
|
3251
3257
|
subdivision_iso_code: string;
|
|
3252
3258
|
}
|
|
3259
|
+
/**
|
|
3260
|
+
*
|
|
3261
|
+
* @export
|
|
3262
|
+
* @interface MediaPubSubHint
|
|
3263
|
+
*/
|
|
3264
|
+
export interface MediaPubSubHint {
|
|
3265
|
+
/**
|
|
3266
|
+
*
|
|
3267
|
+
* @type {boolean}
|
|
3268
|
+
* @memberof MediaPubSubHint
|
|
3269
|
+
*/
|
|
3270
|
+
audio_published: boolean;
|
|
3271
|
+
/**
|
|
3272
|
+
*
|
|
3273
|
+
* @type {boolean}
|
|
3274
|
+
* @memberof MediaPubSubHint
|
|
3275
|
+
*/
|
|
3276
|
+
audio_subscribed: boolean;
|
|
3277
|
+
/**
|
|
3278
|
+
*
|
|
3279
|
+
* @type {boolean}
|
|
3280
|
+
* @memberof MediaPubSubHint
|
|
3281
|
+
*/
|
|
3282
|
+
video_published: boolean;
|
|
3283
|
+
/**
|
|
3284
|
+
*
|
|
3285
|
+
* @type {boolean}
|
|
3286
|
+
* @memberof MediaPubSubHint
|
|
3287
|
+
*/
|
|
3288
|
+
video_subscribed: boolean;
|
|
3289
|
+
}
|
|
3253
3290
|
/**
|
|
3254
3291
|
*
|
|
3255
3292
|
* @export
|
|
@@ -3328,6 +3365,37 @@ export interface MemberResponse {
|
|
|
3328
3365
|
*/
|
|
3329
3366
|
user_id: string;
|
|
3330
3367
|
}
|
|
3368
|
+
/**
|
|
3369
|
+
*
|
|
3370
|
+
* @export
|
|
3371
|
+
* @interface MOSStats
|
|
3372
|
+
*/
|
|
3373
|
+
export interface MOSStats {
|
|
3374
|
+
/**
|
|
3375
|
+
*
|
|
3376
|
+
* @type {number}
|
|
3377
|
+
* @memberof MOSStats
|
|
3378
|
+
*/
|
|
3379
|
+
average_score: number;
|
|
3380
|
+
/**
|
|
3381
|
+
*
|
|
3382
|
+
* @type {Array<number>}
|
|
3383
|
+
* @memberof MOSStats
|
|
3384
|
+
*/
|
|
3385
|
+
histogram_duration_seconds: Array<number>;
|
|
3386
|
+
/**
|
|
3387
|
+
*
|
|
3388
|
+
* @type {number}
|
|
3389
|
+
* @memberof MOSStats
|
|
3390
|
+
*/
|
|
3391
|
+
max_score: number;
|
|
3392
|
+
/**
|
|
3393
|
+
*
|
|
3394
|
+
* @type {number}
|
|
3395
|
+
* @memberof MOSStats
|
|
3396
|
+
*/
|
|
3397
|
+
min_score: number;
|
|
3398
|
+
}
|
|
3331
3399
|
/**
|
|
3332
3400
|
*
|
|
3333
3401
|
* @export
|
|
@@ -3605,6 +3673,31 @@ export interface PinResponse {
|
|
|
3605
3673
|
*/
|
|
3606
3674
|
duration: string;
|
|
3607
3675
|
}
|
|
3676
|
+
/**
|
|
3677
|
+
*
|
|
3678
|
+
* @export
|
|
3679
|
+
* @interface PublishedTrackInfo
|
|
3680
|
+
*/
|
|
3681
|
+
export interface PublishedTrackInfo {
|
|
3682
|
+
/**
|
|
3683
|
+
*
|
|
3684
|
+
* @type {string}
|
|
3685
|
+
* @memberof PublishedTrackInfo
|
|
3686
|
+
*/
|
|
3687
|
+
codec_mime_type?: string;
|
|
3688
|
+
/**
|
|
3689
|
+
*
|
|
3690
|
+
* @type {number}
|
|
3691
|
+
* @memberof PublishedTrackInfo
|
|
3692
|
+
*/
|
|
3693
|
+
duration_seconds?: number;
|
|
3694
|
+
/**
|
|
3695
|
+
*
|
|
3696
|
+
* @type {string}
|
|
3697
|
+
* @memberof PublishedTrackInfo
|
|
3698
|
+
*/
|
|
3699
|
+
track_type?: string;
|
|
3700
|
+
}
|
|
3608
3701
|
/**
|
|
3609
3702
|
*
|
|
3610
3703
|
* @export
|
|
@@ -5031,6 +5124,12 @@ export interface UserSessionStats {
|
|
|
5031
5124
|
* @memberof UserSessionStats
|
|
5032
5125
|
*/
|
|
5033
5126
|
device_version?: string;
|
|
5127
|
+
/**
|
|
5128
|
+
*
|
|
5129
|
+
* @type {number}
|
|
5130
|
+
* @memberof UserSessionStats
|
|
5131
|
+
*/
|
|
5132
|
+
distance_to_sfu_kilometers?: number;
|
|
5034
5133
|
/**
|
|
5035
5134
|
*
|
|
5036
5135
|
* @type {number}
|
|
@@ -5061,6 +5160,18 @@ export interface UserSessionStats {
|
|
|
5061
5160
|
* @memberof UserSessionStats
|
|
5062
5161
|
*/
|
|
5063
5162
|
max_fir_per_second?: number;
|
|
5163
|
+
/**
|
|
5164
|
+
*
|
|
5165
|
+
* @type {number}
|
|
5166
|
+
* @memberof UserSessionStats
|
|
5167
|
+
*/
|
|
5168
|
+
max_freeze_fraction: number;
|
|
5169
|
+
/**
|
|
5170
|
+
*
|
|
5171
|
+
* @type {number}
|
|
5172
|
+
* @memberof UserSessionStats
|
|
5173
|
+
*/
|
|
5174
|
+
max_freezes_duration_seconds: number;
|
|
5064
5175
|
/**
|
|
5065
5176
|
*
|
|
5066
5177
|
* @type {number}
|
|
@@ -5109,6 +5220,62 @@ export interface UserSessionStats {
|
|
|
5109
5220
|
* @memberof UserSessionStats
|
|
5110
5221
|
*/
|
|
5111
5222
|
packet_loss_fraction: number;
|
|
5223
|
+
/**
|
|
5224
|
+
*
|
|
5225
|
+
* @type {MediaPubSubHint}
|
|
5226
|
+
* @memberof UserSessionStats
|
|
5227
|
+
*/
|
|
5228
|
+
pub_sub_hints?: MediaPubSubHint;
|
|
5229
|
+
/**
|
|
5230
|
+
*
|
|
5231
|
+
* @type {Array<PublishedTrackInfo>}
|
|
5232
|
+
* @memberof UserSessionStats
|
|
5233
|
+
*/
|
|
5234
|
+
published_tracks?: Array<PublishedTrackInfo>;
|
|
5235
|
+
/**
|
|
5236
|
+
*
|
|
5237
|
+
* @type {MOSStats}
|
|
5238
|
+
* @memberof UserSessionStats
|
|
5239
|
+
*/
|
|
5240
|
+
publisher_audio_mos?: MOSStats;
|
|
5241
|
+
/**
|
|
5242
|
+
*
|
|
5243
|
+
* @type {Stats}
|
|
5244
|
+
* @memberof UserSessionStats
|
|
5245
|
+
*/
|
|
5246
|
+
publisher_jitter?: Stats;
|
|
5247
|
+
/**
|
|
5248
|
+
*
|
|
5249
|
+
* @type {Stats}
|
|
5250
|
+
* @memberof UserSessionStats
|
|
5251
|
+
*/
|
|
5252
|
+
publisher_latency?: Stats;
|
|
5253
|
+
/**
|
|
5254
|
+
*
|
|
5255
|
+
* @type {number}
|
|
5256
|
+
* @memberof UserSessionStats
|
|
5257
|
+
*/
|
|
5258
|
+
publisher_noise_cancellation_seconds?: number;
|
|
5259
|
+
/**
|
|
5260
|
+
*
|
|
5261
|
+
* @type {number}
|
|
5262
|
+
* @memberof UserSessionStats
|
|
5263
|
+
*/
|
|
5264
|
+
publisher_packet_loss_fraction: number;
|
|
5265
|
+
/**
|
|
5266
|
+
*
|
|
5267
|
+
* @type {number}
|
|
5268
|
+
* @memberof UserSessionStats
|
|
5269
|
+
*/
|
|
5270
|
+
publisher_quality_limitation_fraction?: number;
|
|
5271
|
+
/**
|
|
5272
|
+
*
|
|
5273
|
+
* @type {{ [key: string]: number; }}
|
|
5274
|
+
* @memberof UserSessionStats
|
|
5275
|
+
*/
|
|
5276
|
+
publisher_video_quality_limitation_duration_seconds?: {
|
|
5277
|
+
[key: string]: number;
|
|
5278
|
+
};
|
|
5112
5279
|
/**
|
|
5113
5280
|
*
|
|
5114
5281
|
* @type {string}
|
|
@@ -5121,6 +5288,12 @@ export interface UserSessionStats {
|
|
|
5121
5288
|
* @memberof UserSessionStats
|
|
5122
5289
|
*/
|
|
5123
5290
|
publishing_duration_seconds: number;
|
|
5291
|
+
/**
|
|
5292
|
+
*
|
|
5293
|
+
* @type {string}
|
|
5294
|
+
* @memberof UserSessionStats
|
|
5295
|
+
*/
|
|
5296
|
+
publishing_video_codec?: string;
|
|
5124
5297
|
/**
|
|
5125
5298
|
*
|
|
5126
5299
|
* @type {number}
|
|
@@ -5139,6 +5312,12 @@ export interface UserSessionStats {
|
|
|
5139
5312
|
* @memberof UserSessionStats
|
|
5140
5313
|
*/
|
|
5141
5314
|
receiving_duration_seconds: number;
|
|
5315
|
+
/**
|
|
5316
|
+
*
|
|
5317
|
+
* @type {string}
|
|
5318
|
+
* @memberof UserSessionStats
|
|
5319
|
+
*/
|
|
5320
|
+
receiving_video_codec?: string;
|
|
5142
5321
|
/**
|
|
5143
5322
|
*
|
|
5144
5323
|
* @type {string}
|
|
@@ -5157,6 +5336,30 @@ export interface UserSessionStats {
|
|
|
5157
5336
|
* @memberof UserSessionStats
|
|
5158
5337
|
*/
|
|
5159
5338
|
session_id: string;
|
|
5339
|
+
/**
|
|
5340
|
+
*
|
|
5341
|
+
* @type {MOSStats}
|
|
5342
|
+
* @memberof UserSessionStats
|
|
5343
|
+
*/
|
|
5344
|
+
subscriber_audio_mos?: MOSStats;
|
|
5345
|
+
/**
|
|
5346
|
+
*
|
|
5347
|
+
* @type {Stats}
|
|
5348
|
+
* @memberof UserSessionStats
|
|
5349
|
+
*/
|
|
5350
|
+
subscriber_jitter?: Stats;
|
|
5351
|
+
/**
|
|
5352
|
+
*
|
|
5353
|
+
* @type {Stats}
|
|
5354
|
+
* @memberof UserSessionStats
|
|
5355
|
+
*/
|
|
5356
|
+
subscriber_latency?: Stats;
|
|
5357
|
+
/**
|
|
5358
|
+
*
|
|
5359
|
+
* @type {number}
|
|
5360
|
+
* @memberof UserSessionStats
|
|
5361
|
+
*/
|
|
5362
|
+
subscriber_video_quality_throttled_duration_seconds?: number;
|
|
5160
5363
|
/**
|
|
5161
5364
|
*
|
|
5162
5365
|
* @type {Array<Subsession>}
|
|
@@ -5188,6 +5391,11 @@ export interface UserSessionStats {
|
|
|
5188
5391
|
*/
|
|
5189
5392
|
webrtc_version?: string;
|
|
5190
5393
|
}
|
|
5394
|
+
/**
|
|
5395
|
+
*
|
|
5396
|
+
* @export
|
|
5397
|
+
* @interface UserStats
|
|
5398
|
+
*/
|
|
5191
5399
|
/**
|
|
5192
5400
|
*
|
|
5193
5401
|
* @export
|
|
@@ -5200,6 +5408,12 @@ export interface UserStats {
|
|
|
5200
5408
|
* @memberof UserStats
|
|
5201
5409
|
*/
|
|
5202
5410
|
info: UserInfoResponse;
|
|
5411
|
+
/**
|
|
5412
|
+
*
|
|
5413
|
+
* @type {number}
|
|
5414
|
+
* @memberof UserStats
|
|
5415
|
+
*/
|
|
5416
|
+
rating?: number;
|
|
5203
5417
|
/**
|
|
5204
5418
|
*
|
|
5205
5419
|
* @type {Array<UserSessionStats>}
|
package/package.json
CHANGED
|
@@ -2734,6 +2734,12 @@ export interface GetCallStatsResponse {
|
|
|
2734
2734
|
* @memberof GetCallStatsResponse
|
|
2735
2735
|
*/
|
|
2736
2736
|
call_duration_seconds: number;
|
|
2737
|
+
/**
|
|
2738
|
+
*
|
|
2739
|
+
* @type {string}
|
|
2740
|
+
* @memberof GetCallStatsResponse
|
|
2741
|
+
*/
|
|
2742
|
+
call_status: string;
|
|
2737
2743
|
/**
|
|
2738
2744
|
*
|
|
2739
2745
|
* @type {CallTimeline}
|
|
@@ -3243,6 +3249,37 @@ export interface Location {
|
|
|
3243
3249
|
*/
|
|
3244
3250
|
subdivision_iso_code: string;
|
|
3245
3251
|
}
|
|
3252
|
+
/**
|
|
3253
|
+
*
|
|
3254
|
+
* @export
|
|
3255
|
+
* @interface MediaPubSubHint
|
|
3256
|
+
*/
|
|
3257
|
+
export interface MediaPubSubHint {
|
|
3258
|
+
/**
|
|
3259
|
+
*
|
|
3260
|
+
* @type {boolean}
|
|
3261
|
+
* @memberof MediaPubSubHint
|
|
3262
|
+
*/
|
|
3263
|
+
audio_published: boolean;
|
|
3264
|
+
/**
|
|
3265
|
+
*
|
|
3266
|
+
* @type {boolean}
|
|
3267
|
+
* @memberof MediaPubSubHint
|
|
3268
|
+
*/
|
|
3269
|
+
audio_subscribed: boolean;
|
|
3270
|
+
/**
|
|
3271
|
+
*
|
|
3272
|
+
* @type {boolean}
|
|
3273
|
+
* @memberof MediaPubSubHint
|
|
3274
|
+
*/
|
|
3275
|
+
video_published: boolean;
|
|
3276
|
+
/**
|
|
3277
|
+
*
|
|
3278
|
+
* @type {boolean}
|
|
3279
|
+
* @memberof MediaPubSubHint
|
|
3280
|
+
*/
|
|
3281
|
+
video_subscribed: boolean;
|
|
3282
|
+
}
|
|
3246
3283
|
/**
|
|
3247
3284
|
*
|
|
3248
3285
|
* @export
|
|
@@ -3317,6 +3354,37 @@ export interface MemberResponse {
|
|
|
3317
3354
|
*/
|
|
3318
3355
|
user_id: string;
|
|
3319
3356
|
}
|
|
3357
|
+
/**
|
|
3358
|
+
*
|
|
3359
|
+
* @export
|
|
3360
|
+
* @interface MOSStats
|
|
3361
|
+
*/
|
|
3362
|
+
export interface MOSStats {
|
|
3363
|
+
/**
|
|
3364
|
+
*
|
|
3365
|
+
* @type {number}
|
|
3366
|
+
* @memberof MOSStats
|
|
3367
|
+
*/
|
|
3368
|
+
average_score: number;
|
|
3369
|
+
/**
|
|
3370
|
+
*
|
|
3371
|
+
* @type {Array<number>}
|
|
3372
|
+
* @memberof MOSStats
|
|
3373
|
+
*/
|
|
3374
|
+
histogram_duration_seconds: Array<number>;
|
|
3375
|
+
/**
|
|
3376
|
+
*
|
|
3377
|
+
* @type {number}
|
|
3378
|
+
* @memberof MOSStats
|
|
3379
|
+
*/
|
|
3380
|
+
max_score: number;
|
|
3381
|
+
/**
|
|
3382
|
+
*
|
|
3383
|
+
* @type {number}
|
|
3384
|
+
* @memberof MOSStats
|
|
3385
|
+
*/
|
|
3386
|
+
min_score: number;
|
|
3387
|
+
}
|
|
3320
3388
|
/**
|
|
3321
3389
|
*
|
|
3322
3390
|
* @export
|
|
@@ -3599,6 +3667,31 @@ export interface PinResponse {
|
|
|
3599
3667
|
*/
|
|
3600
3668
|
duration: string;
|
|
3601
3669
|
}
|
|
3670
|
+
/**
|
|
3671
|
+
*
|
|
3672
|
+
* @export
|
|
3673
|
+
* @interface PublishedTrackInfo
|
|
3674
|
+
*/
|
|
3675
|
+
export interface PublishedTrackInfo {
|
|
3676
|
+
/**
|
|
3677
|
+
*
|
|
3678
|
+
* @type {string}
|
|
3679
|
+
* @memberof PublishedTrackInfo
|
|
3680
|
+
*/
|
|
3681
|
+
codec_mime_type?: string;
|
|
3682
|
+
/**
|
|
3683
|
+
*
|
|
3684
|
+
* @type {number}
|
|
3685
|
+
* @memberof PublishedTrackInfo
|
|
3686
|
+
*/
|
|
3687
|
+
duration_seconds?: number;
|
|
3688
|
+
/**
|
|
3689
|
+
*
|
|
3690
|
+
* @type {string}
|
|
3691
|
+
* @memberof PublishedTrackInfo
|
|
3692
|
+
*/
|
|
3693
|
+
track_type?: string;
|
|
3694
|
+
}
|
|
3602
3695
|
/**
|
|
3603
3696
|
*
|
|
3604
3697
|
* @export
|
|
@@ -5017,6 +5110,12 @@ export interface UserSessionStats {
|
|
|
5017
5110
|
* @memberof UserSessionStats
|
|
5018
5111
|
*/
|
|
5019
5112
|
device_version?: string;
|
|
5113
|
+
/**
|
|
5114
|
+
*
|
|
5115
|
+
* @type {number}
|
|
5116
|
+
* @memberof UserSessionStats
|
|
5117
|
+
*/
|
|
5118
|
+
distance_to_sfu_kilometers?: number;
|
|
5020
5119
|
/**
|
|
5021
5120
|
*
|
|
5022
5121
|
* @type {number}
|
|
@@ -5047,6 +5146,18 @@ export interface UserSessionStats {
|
|
|
5047
5146
|
* @memberof UserSessionStats
|
|
5048
5147
|
*/
|
|
5049
5148
|
max_fir_per_second?: number;
|
|
5149
|
+
/**
|
|
5150
|
+
*
|
|
5151
|
+
* @type {number}
|
|
5152
|
+
* @memberof UserSessionStats
|
|
5153
|
+
*/
|
|
5154
|
+
max_freeze_fraction: number;
|
|
5155
|
+
/**
|
|
5156
|
+
*
|
|
5157
|
+
* @type {number}
|
|
5158
|
+
* @memberof UserSessionStats
|
|
5159
|
+
*/
|
|
5160
|
+
max_freezes_duration_seconds: number;
|
|
5050
5161
|
/**
|
|
5051
5162
|
*
|
|
5052
5163
|
* @type {number}
|
|
@@ -5095,6 +5206,62 @@ export interface UserSessionStats {
|
|
|
5095
5206
|
* @memberof UserSessionStats
|
|
5096
5207
|
*/
|
|
5097
5208
|
packet_loss_fraction: number;
|
|
5209
|
+
/**
|
|
5210
|
+
*
|
|
5211
|
+
* @type {MediaPubSubHint}
|
|
5212
|
+
* @memberof UserSessionStats
|
|
5213
|
+
*/
|
|
5214
|
+
pub_sub_hints?: MediaPubSubHint;
|
|
5215
|
+
/**
|
|
5216
|
+
*
|
|
5217
|
+
* @type {Array<PublishedTrackInfo>}
|
|
5218
|
+
* @memberof UserSessionStats
|
|
5219
|
+
*/
|
|
5220
|
+
published_tracks?: Array<PublishedTrackInfo>;
|
|
5221
|
+
/**
|
|
5222
|
+
*
|
|
5223
|
+
* @type {MOSStats}
|
|
5224
|
+
* @memberof UserSessionStats
|
|
5225
|
+
*/
|
|
5226
|
+
publisher_audio_mos?: MOSStats;
|
|
5227
|
+
/**
|
|
5228
|
+
*
|
|
5229
|
+
* @type {Stats}
|
|
5230
|
+
* @memberof UserSessionStats
|
|
5231
|
+
*/
|
|
5232
|
+
publisher_jitter?: Stats;
|
|
5233
|
+
/**
|
|
5234
|
+
*
|
|
5235
|
+
* @type {Stats}
|
|
5236
|
+
* @memberof UserSessionStats
|
|
5237
|
+
*/
|
|
5238
|
+
publisher_latency?: Stats;
|
|
5239
|
+
/**
|
|
5240
|
+
*
|
|
5241
|
+
* @type {number}
|
|
5242
|
+
* @memberof UserSessionStats
|
|
5243
|
+
*/
|
|
5244
|
+
publisher_noise_cancellation_seconds?: number;
|
|
5245
|
+
/**
|
|
5246
|
+
*
|
|
5247
|
+
* @type {number}
|
|
5248
|
+
* @memberof UserSessionStats
|
|
5249
|
+
*/
|
|
5250
|
+
publisher_packet_loss_fraction: number;
|
|
5251
|
+
/**
|
|
5252
|
+
*
|
|
5253
|
+
* @type {number}
|
|
5254
|
+
* @memberof UserSessionStats
|
|
5255
|
+
*/
|
|
5256
|
+
publisher_quality_limitation_fraction?: number;
|
|
5257
|
+
/**
|
|
5258
|
+
*
|
|
5259
|
+
* @type {{ [key: string]: number; }}
|
|
5260
|
+
* @memberof UserSessionStats
|
|
5261
|
+
*/
|
|
5262
|
+
publisher_video_quality_limitation_duration_seconds?: {
|
|
5263
|
+
[key: string]: number;
|
|
5264
|
+
};
|
|
5098
5265
|
/**
|
|
5099
5266
|
*
|
|
5100
5267
|
* @type {string}
|
|
@@ -5107,6 +5274,12 @@ export interface UserSessionStats {
|
|
|
5107
5274
|
* @memberof UserSessionStats
|
|
5108
5275
|
*/
|
|
5109
5276
|
publishing_duration_seconds: number;
|
|
5277
|
+
/**
|
|
5278
|
+
*
|
|
5279
|
+
* @type {string}
|
|
5280
|
+
* @memberof UserSessionStats
|
|
5281
|
+
*/
|
|
5282
|
+
publishing_video_codec?: string;
|
|
5110
5283
|
/**
|
|
5111
5284
|
*
|
|
5112
5285
|
* @type {number}
|
|
@@ -5125,6 +5298,12 @@ export interface UserSessionStats {
|
|
|
5125
5298
|
* @memberof UserSessionStats
|
|
5126
5299
|
*/
|
|
5127
5300
|
receiving_duration_seconds: number;
|
|
5301
|
+
/**
|
|
5302
|
+
*
|
|
5303
|
+
* @type {string}
|
|
5304
|
+
* @memberof UserSessionStats
|
|
5305
|
+
*/
|
|
5306
|
+
receiving_video_codec?: string;
|
|
5128
5307
|
/**
|
|
5129
5308
|
*
|
|
5130
5309
|
* @type {string}
|
|
@@ -5143,6 +5322,30 @@ export interface UserSessionStats {
|
|
|
5143
5322
|
* @memberof UserSessionStats
|
|
5144
5323
|
*/
|
|
5145
5324
|
session_id: string;
|
|
5325
|
+
/**
|
|
5326
|
+
*
|
|
5327
|
+
* @type {MOSStats}
|
|
5328
|
+
* @memberof UserSessionStats
|
|
5329
|
+
*/
|
|
5330
|
+
subscriber_audio_mos?: MOSStats;
|
|
5331
|
+
/**
|
|
5332
|
+
*
|
|
5333
|
+
* @type {Stats}
|
|
5334
|
+
* @memberof UserSessionStats
|
|
5335
|
+
*/
|
|
5336
|
+
subscriber_jitter?: Stats;
|
|
5337
|
+
/**
|
|
5338
|
+
*
|
|
5339
|
+
* @type {Stats}
|
|
5340
|
+
* @memberof UserSessionStats
|
|
5341
|
+
*/
|
|
5342
|
+
subscriber_latency?: Stats;
|
|
5343
|
+
/**
|
|
5344
|
+
*
|
|
5345
|
+
* @type {number}
|
|
5346
|
+
* @memberof UserSessionStats
|
|
5347
|
+
*/
|
|
5348
|
+
subscriber_video_quality_throttled_duration_seconds?: number;
|
|
5146
5349
|
/**
|
|
5147
5350
|
*
|
|
5148
5351
|
* @type {Array<Subsession>}
|
|
@@ -5174,6 +5377,11 @@ export interface UserSessionStats {
|
|
|
5174
5377
|
*/
|
|
5175
5378
|
webrtc_version?: string;
|
|
5176
5379
|
}
|
|
5380
|
+
/**
|
|
5381
|
+
*
|
|
5382
|
+
* @export
|
|
5383
|
+
* @interface UserStats
|
|
5384
|
+
*/
|
|
5177
5385
|
/**
|
|
5178
5386
|
*
|
|
5179
5387
|
* @export
|
|
@@ -5186,6 +5394,12 @@ export interface UserStats {
|
|
|
5186
5394
|
* @memberof UserStats
|
|
5187
5395
|
*/
|
|
5188
5396
|
info: UserInfoResponse;
|
|
5397
|
+
/**
|
|
5398
|
+
*
|
|
5399
|
+
* @type {number}
|
|
5400
|
+
* @memberof UserStats
|
|
5401
|
+
*/
|
|
5402
|
+
rating?: number;
|
|
5189
5403
|
/**
|
|
5190
5404
|
*
|
|
5191
5405
|
* @type {Array<UserSessionStats>}
|