@stream-io/video-client 0.6.5 → 0.6.6

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.
@@ -4096,6 +4096,25 @@ export interface StartTranscriptionResponse {
4096
4096
  */
4097
4097
  duration: string;
4098
4098
  }
4099
+ /**
4100
+ *
4101
+ * @export
4102
+ * @interface Stats
4103
+ */
4104
+ export interface Stats {
4105
+ /**
4106
+ *
4107
+ * @type {number}
4108
+ * @memberof Stats
4109
+ */
4110
+ average_seconds: number;
4111
+ /**
4112
+ *
4113
+ * @type {number}
4114
+ * @memberof Stats
4115
+ */
4116
+ max_seconds: number;
4117
+ }
4099
4118
  /**
4100
4119
  *
4101
4120
  * @export
@@ -4681,6 +4700,12 @@ export interface UserInfoResponse {
4681
4700
  * @memberof UserInfoResponse
4682
4701
  */
4683
4702
  name: string;
4703
+ /**
4704
+ *
4705
+ * @type {Array<string>}
4706
+ * @memberof UserInfoResponse
4707
+ */
4708
+ roles: Array<string>;
4684
4709
  }
4685
4710
  /**
4686
4711
  *
@@ -4796,12 +4821,42 @@ export interface UserResponse {
4796
4821
  * @interface UserSessionStats
4797
4822
  */
4798
4823
  export interface UserSessionStats {
4824
+ /**
4825
+ *
4826
+ * @type {number}
4827
+ * @memberof UserSessionStats
4828
+ */
4829
+ freeze_duration_seconds: number;
4830
+ /**
4831
+ *
4832
+ * @type {Stats}
4833
+ * @memberof UserSessionStats
4834
+ */
4835
+ jitter?: Stats;
4836
+ /**
4837
+ *
4838
+ * @type {Stats}
4839
+ * @memberof UserSessionStats
4840
+ */
4841
+ latency?: Stats;
4799
4842
  /**
4800
4843
  *
4801
4844
  * @type {string}
4802
4845
  * @memberof UserSessionStats
4803
4846
  */
4804
4847
  os: string;
4848
+ /**
4849
+ *
4850
+ * @type {number}
4851
+ * @memberof UserSessionStats
4852
+ */
4853
+ packet_loss_fraction: number;
4854
+ /**
4855
+ *
4856
+ * @type {number}
4857
+ * @memberof UserSessionStats
4858
+ */
4859
+ quality_score: number;
4805
4860
  /**
4806
4861
  *
4807
4862
  * @type {string}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stream-io/video-client",
3
- "version": "0.6.5",
3
+ "version": "0.6.6",
4
4
  "packageManager": "yarn@3.2.4",
5
5
  "main": "dist/index.cjs.js",
6
6
  "module": "dist/index.es.js",
@@ -4068,6 +4068,25 @@ export interface StartTranscriptionResponse {
4068
4068
  */
4069
4069
  duration: string;
4070
4070
  }
4071
+ /**
4072
+ *
4073
+ * @export
4074
+ * @interface Stats
4075
+ */
4076
+ export interface Stats {
4077
+ /**
4078
+ *
4079
+ * @type {number}
4080
+ * @memberof Stats
4081
+ */
4082
+ average_seconds: number;
4083
+ /**
4084
+ *
4085
+ * @type {number}
4086
+ * @memberof Stats
4087
+ */
4088
+ max_seconds: number;
4089
+ }
4071
4090
  /**
4072
4091
  *
4073
4092
  * @export
@@ -4653,6 +4672,12 @@ export interface UserInfoResponse {
4653
4672
  * @memberof UserInfoResponse
4654
4673
  */
4655
4674
  name: string;
4675
+ /**
4676
+ *
4677
+ * @type {Array<string>}
4678
+ * @memberof UserInfoResponse
4679
+ */
4680
+ roles: Array<string>;
4656
4681
  }
4657
4682
  /**
4658
4683
  *
@@ -4764,12 +4789,42 @@ export interface UserResponse {
4764
4789
  * @interface UserSessionStats
4765
4790
  */
4766
4791
  export interface UserSessionStats {
4792
+ /**
4793
+ *
4794
+ * @type {number}
4795
+ * @memberof UserSessionStats
4796
+ */
4797
+ freeze_duration_seconds: number;
4798
+ /**
4799
+ *
4800
+ * @type {Stats}
4801
+ * @memberof UserSessionStats
4802
+ */
4803
+ jitter?: Stats;
4804
+ /**
4805
+ *
4806
+ * @type {Stats}
4807
+ * @memberof UserSessionStats
4808
+ */
4809
+ latency?: Stats;
4767
4810
  /**
4768
4811
  *
4769
4812
  * @type {string}
4770
4813
  * @memberof UserSessionStats
4771
4814
  */
4772
4815
  os: string;
4816
+ /**
4817
+ *
4818
+ * @type {number}
4819
+ * @memberof UserSessionStats
4820
+ */
4821
+ packet_loss_fraction: number;
4822
+ /**
4823
+ *
4824
+ * @type {number}
4825
+ * @memberof UserSessionStats
4826
+ */
4827
+ quality_score: number;
4773
4828
  /**
4774
4829
  *
4775
4830
  * @type {string}