@stream-io/video-client 1.4.1 → 1.4.2

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 CHANGED
@@ -2,6 +2,13 @@
2
2
 
3
3
  This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
4
4
 
5
+ ### [1.4.2](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-client-1.4.1...@stream-io/video-client-1.4.2) (2024-06-24)
6
+
7
+
8
+ ### Bug Fixes
9
+
10
+ * support for portrait mode recording ([#1418](https://github.com/GetStream/stream-video-js/issues/1418)) ([70a304d](https://github.com/GetStream/stream-video-js/commit/70a304d3f20d93ecfffc97794e8e4974acf88e9a))
11
+
5
12
  ### [1.4.1](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-client-1.4.0...@stream-io/video-client-1.4.1) (2024-06-19)
6
13
 
7
14
 
@@ -122,6 +122,11 @@ const RecordSettingsRequestQualityEnum = {
122
122
  _720P: '720p',
123
123
  _1080P: '1080p',
124
124
  _1440P: '1440p',
125
+ PORTRAIT_360X640: 'portrait-360x640',
126
+ PORTRAIT_480X854: 'portrait-480x854',
127
+ PORTRAIT_720X1280: 'portrait-720x1280',
128
+ PORTRAIT_1080X1920: 'portrait-1080x1920',
129
+ PORTRAIT_1440X2560: 'portrait-1440x2560',
125
130
  };
126
131
  /**
127
132
  * @export
@@ -15409,7 +15414,7 @@ class StreamClient {
15409
15414
  });
15410
15415
  };
15411
15416
  this.getUserAgent = () => {
15412
- const version = "1.4.1" ;
15417
+ const version = "1.4.2" ;
15413
15418
  return (this.userAgent ||
15414
15419
  `stream-video-javascript-client-${this.node ? 'node' : 'browser'}-${version}`);
15415
15420
  };