@stream-io/video-react-sdk 1.31.4 → 1.31.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stream-io/video-react-sdk",
3
- "version": "1.31.4",
3
+ "version": "1.31.5",
4
4
  "main": "./dist/index.cjs.js",
5
5
  "module": "./dist/index.es.js",
6
6
  "types": "./dist/index.d.ts",
@@ -31,9 +31,9 @@
31
31
  ],
32
32
  "dependencies": {
33
33
  "@floating-ui/react": "^0.27.6",
34
- "@stream-io/video-client": "1.41.0",
34
+ "@stream-io/video-client": "1.41.1",
35
35
  "@stream-io/video-filters-web": "0.7.0",
36
- "@stream-io/video-react-bindings": "1.13.0",
36
+ "@stream-io/video-react-bindings": "1.13.1",
37
37
  "chart.js": "^4.4.4",
38
38
  "clsx": "^2.0.0",
39
39
  "react-chartjs-2": "^5.3.0"
@@ -46,7 +46,7 @@
46
46
  "@rollup/plugin-json": "^6.1.0",
47
47
  "@rollup/plugin-replace": "^6.0.2",
48
48
  "@rollup/plugin-typescript": "^12.1.4",
49
- "@stream-io/audio-filters-web": "^0.7.1",
49
+ "@stream-io/audio-filters-web": "^0.7.2",
50
50
  "@stream-io/video-styling": "^1.10.0",
51
51
  "@types/react": "~19.1.17",
52
52
  "@types/react-dom": "~19.1.11",
@@ -213,6 +213,10 @@ export const CallStats = (props: CallStatsProps) => {
213
213
  value={`${callStatsReport.publisherAudioStats.averageRoundTripTimeInMs} ms.`}
214
214
  comparison={latencyComparison}
215
215
  />
216
+ <StatCard
217
+ label={t('Audio codec')}
218
+ value={formatAudioCodec(callStatsReport)}
219
+ />
216
220
  <StatCard
217
221
  label={t('Audio bitrate (publish)')}
218
222
  value={publishAudioBitrate}
@@ -237,10 +241,6 @@ export const CallStats = (props: CallStatsProps) => {
237
241
  value: callStatsReport.subscriberAudioStats.averageJitterInMs,
238
242
  }}
239
243
  />
240
- <StatCard
241
- label={t('Audio codec')}
242
- value={formatAudioCodec(callStatsReport)}
243
- />
244
244
  </div>
245
245
  </>
246
246
  )}