@stream-io/video-client 0.0.1-alpha.165 → 0.0.1-alpha.167
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 +13 -0
- package/dist/index.browser.es.js +3 -2
- package/dist/index.browser.es.js.map +1 -1
- package/dist/index.cjs.js +6 -2
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.es.js +3 -2
- package/dist/index.es.js.map +1 -1
- package/dist/src/types.d.ts +2 -0
- package/package.json +1 -1
- package/src/types.ts +3 -0
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,19 @@
|
|
|
2
2
|
|
|
3
3
|
This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
|
|
4
4
|
|
|
5
|
+
## [0.0.1-alpha.167](https://github.com/GetStream/stream-video-js/compare/client0.0.1-alpha.166...client0.0.1-alpha.167) (2023-05-22)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
* **react-native:** add permissions support ([#445](https://github.com/GetStream/stream-video-js/issues/445)) ([e077aeb](https://github.com/GetStream/stream-video-js/commit/e077aeba95e42abaf0e5e3c1d58b344507ec52e2))
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
## [0.0.1-alpha.166](https://github.com/GetStream/stream-video-js/compare/client0.0.1-alpha.165...client0.0.1-alpha.166) (2023-05-19)
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
|
|
5
18
|
## [0.0.1-alpha.165](https://github.com/GetStream/stream-video-js/compare/client0.0.1-alpha.164...client0.0.1-alpha.165) (2023-05-19)
|
|
6
19
|
|
|
7
20
|
|
package/dist/index.browser.es.js
CHANGED
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
import 'webrtc-adapter';
|
|
2
2
|
import { MessageType, isJsonObject, typeofJsonValue, reflectionMergePartial, UnknownFieldHandler, WireType, MESSAGE_TYPE, PbLong } from '@protobuf-ts/runtime';
|
|
3
|
+
import axios, { AxiosHeaders } from 'axios';
|
|
4
|
+
export { AxiosError } from 'axios';
|
|
3
5
|
import { TwirpFetchTransport } from '@protobuf-ts/twirp-transport';
|
|
4
6
|
import { ServiceType, stackIntercept } from '@protobuf-ts/runtime-rpc';
|
|
5
7
|
import { ReplaySubject, BehaviorSubject, Subject, takeWhile, pairwise, tap, debounce, of, timer, map as map$2, Observable, debounceTime, concatMap, from, shareReplay, merge, combineLatest, filter } from 'rxjs';
|
|
6
8
|
import { take, map as map$1, distinctUntilChanged, combineLatestWith } from 'rxjs/operators';
|
|
7
9
|
import { UAParser } from 'ua-parser-js';
|
|
8
|
-
import axios, { AxiosHeaders } from 'axios';
|
|
9
10
|
import WebSocket$1 from 'isomorphic-ws';
|
|
10
11
|
import { fromByteArray } from 'base64-js';
|
|
11
12
|
|
|
@@ -10626,7 +10627,7 @@ class StreamClient {
|
|
|
10626
10627
|
}
|
|
10627
10628
|
getUserAgent() {
|
|
10628
10629
|
return (this.userAgent ||
|
|
10629
|
-
`stream-video-javascript-client-${this.node ? 'node' : 'browser'}-${"0.0.1-alpha.
|
|
10630
|
+
`stream-video-javascript-client-${this.node ? 'node' : 'browser'}-${"0.0.1-alpha.166"}`);
|
|
10630
10631
|
}
|
|
10631
10632
|
setUserAgent(userAgent) {
|
|
10632
10633
|
this.userAgent = userAgent;
|