@@ -1731,6 +1731,12 @@ export interface VideoGetCallStatsResponse {
17311731 * @memberof VideoGetCallStatsResponse
17321732 */
17331733 call_duration_seconds : number ;
1734+ /**
1735+ *
1736+ * @type {string }
1737+ * @memberof VideoGetCallStatsResponse
1738+ */
1739+ call_status : string ;
17341740 /**
17351741 *
17361742 * @type {VideoCallTimeline }
@@ -2663,6 +2669,31 @@ export interface VideoPrivacySettings {
26632669 */
26642670 typing_indicators ?: VideoTypingIndicators ;
26652671}
2672+ /**
2673+ *
2674+ * @export
2675+ * @interface VideoPublishedTrackInfo
2676+ */
2677+ export interface VideoPublishedTrackInfo {
2678+ /**
2679+ *
2680+ * @type {string }
2681+ * @memberof VideoPublishedTrackInfo
2682+ */
2683+ codec_mime_type ?: string ;
2684+ /**
2685+ *
2686+ * @type {number }
2687+ * @memberof VideoPublishedTrackInfo
2688+ */
2689+ duration_seconds ?: number ;
2690+ /**
2691+ *
2692+ * @type {string }
2693+ * @memberof VideoPublishedTrackInfo
2694+ */
2695+ track_type ?: string ;
2696+ }
26662697/**
26672698 *
26682699 * @export
@@ -3189,26 +3220,38 @@ export interface VideoScreensharingSettingsResponse {
31893220/**
31903221 *
31913222 * @export
3192- * @interface VideoSendEventRequest
3223+ * @interface VideoSendCallEventRequest
31933224 */
3194- export interface VideoSendEventRequest {
3225+ export interface VideoSendCallEventRequest {
31953226 /**
31963227 *
31973228 * @type {{ [key: string]: any; } }
3198- * @memberof VideoSendEventRequest
3229+ * @memberof VideoSendCallEventRequest
31993230 */
32003231 custom ?: { [ key : string ] : any ; } ;
3232+ /**
3233+ *
3234+ * @type {VideoUserRequest }
3235+ * @memberof VideoSendCallEventRequest
3236+ */
3237+ user ?: VideoUserRequest ;
3238+ /**
3239+ *
3240+ * @type {string }
3241+ * @memberof VideoSendCallEventRequest
3242+ */
3243+ user_id ?: string ;
32013244}
32023245/**
32033246 *
32043247 * @export
3205- * @interface VideoSendEventResponse
3248+ * @interface VideoSendCallEventResponse
32063249 */
3207- export interface VideoSendEventResponse {
3250+ export interface VideoSendCallEventResponse {
32083251 /**
32093252 *
32103253 * @type {string }
3211- * @memberof VideoSendEventResponse
3254+ * @memberof VideoSendCallEventResponse
32123255 */
32133256 duration : string ;
32143257}
@@ -4280,6 +4323,12 @@ export interface VideoUserSessionStats {
42804323 * @memberof VideoUserSessionStats
42814324 */
42824325 pub_sub_hints ?: VideoMediaPubSubHint ;
4326+ /**
4327+ *
4328+ * @type {Array<VideoPublishedTrackInfo> }
4329+ * @memberof VideoUserSessionStats
4330+ */
4331+ published_tracks ?: Array < VideoPublishedTrackInfo > ;
42834332 /**
42844333 *
42854334 * @type {VideoMOSStats }
@@ -4298,12 +4347,24 @@ export interface VideoUserSessionStats {
42984347 * @memberof VideoUserSessionStats
42994348 */
43004349 publisher_latency ?: VideoStats ;
4350+ /**
4351+ *
4352+ * @type {number }
4353+ * @memberof VideoUserSessionStats
4354+ */
4355+ publisher_noise_cancellation_seconds ?: number ;
43014356 /**
43024357 *
43034358 * @type {number }
43044359 * @memberof VideoUserSessionStats
43054360 */
43064361 publisher_packet_loss_fraction : number ;
4362+ /**
4363+ *
4364+ * @type {number }
4365+ * @memberof VideoUserSessionStats
4366+ */
4367+ publisher_quality_limitation_fraction ?: number ;
43074368 /**
43084369 *
43094370 * @type {{ [key: string]: number; } }
@@ -4322,6 +4383,12 @@ export interface VideoUserSessionStats {
43224383 * @memberof VideoUserSessionStats
43234384 */
43244385 publishing_duration_seconds : number ;
4386+ /**
4387+ *
4388+ * @type {string }
4389+ * @memberof VideoUserSessionStats
4390+ */
4391+ publishing_video_codec ?: string ;
43254392 /**
43264393 *
43274394 * @type {number }
@@ -4340,6 +4407,12 @@ export interface VideoUserSessionStats {
43404407 * @memberof VideoUserSessionStats
43414408 */
43424409 receiving_duration_seconds : number ;
4410+ /**
4411+ *
4412+ * @type {string }
4413+ * @memberof VideoUserSessionStats
4414+ */
4415+ receiving_video_codec ?: string ;
43434416 /**
43444417 *
43454418 * @type {string }
@@ -4376,6 +4449,12 @@ export interface VideoUserSessionStats {
43764449 * @memberof VideoUserSessionStats
43774450 */
43784451 subscriber_latency ?: VideoStats ;
4452+ /**
4453+ *
4454+ * @type {number }
4455+ * @memberof VideoUserSessionStats
4456+ */
4457+ subscriber_video_quality_throttled_duration_seconds ?: number ;
43794458 /**
43804459 *
43814460 * @type {Array<VideoSubsession> }
@@ -4419,6 +4498,12 @@ export interface VideoUserStats {
44194498 * @memberof VideoUserStats
44204499 */
44214500 info : VideoUserInfoResponse ;
4501+ /**
4502+ *
4503+ * @type {number }
4504+ * @memberof VideoUserStats
4505+ */
4506+ rating ?: number ;
44224507 /**
44234508 *
44244509 * @type {Array<VideoUserSessionStats> }
0 commit comments