@stream-io/video-client 0.1.9 → 0.1.10
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 +7 -0
- package/dist/index.browser.es.js +7 -1
- package/dist/index.browser.es.js.map +1 -1
- package/dist/index.cjs.js +7 -1
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.es.js +7 -1
- package/dist/index.es.js.map +1 -1
- package/dist/src/StreamVideoClient.d.ts +4 -0
- package/dist/version.d.ts +1 -1
- package/package.json +1 -1
- package/src/StreamVideoClient.ts +7 -0
- package/src/__tests__/server-side/call-members.test.ts +1 -1
- package/src/__tests__/server-side/call.test.ts +1 -1
- package/src/rtc/codecs.ts +2 -2
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
|
+
### [0.1.10](https://github.com/GetStream/stream-video-js/compare/client0.1.9...client0.1.10) (2023-08-01)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
* **client:** Create state shortcut for client state store ([#888](https://github.com/GetStream/stream-video-js/issues/888)) ([799c90d](https://github.com/GetStream/stream-video-js/commit/799c90d7a22fc90b497493764916e3f620a1481b))
|
|
11
|
+
|
|
5
12
|
### [0.1.9](https://github.com/GetStream/stream-video-js/compare/client0.1.8...client0.1.9) (2023-07-28)
|
|
6
13
|
|
|
7
14
|
|
package/dist/index.browser.es.js
CHANGED
|
@@ -11644,7 +11644,7 @@ class WSConnectionFallback {
|
|
|
11644
11644
|
}
|
|
11645
11645
|
}
|
|
11646
11646
|
|
|
11647
|
-
const version = '0.1.
|
|
11647
|
+
const version = '0.1.10';
|
|
11648
11648
|
|
|
11649
11649
|
const logger = getLogger(['location']);
|
|
11650
11650
|
const HINT_URL = `https://hint.stream-io-video.com/`;
|
|
@@ -12458,6 +12458,12 @@ class StreamVideoClient {
|
|
|
12458
12458
|
}
|
|
12459
12459
|
}
|
|
12460
12460
|
}
|
|
12461
|
+
/**
|
|
12462
|
+
* Return the reactive state store, use this if you want to be notified about changes to the client state
|
|
12463
|
+
*/
|
|
12464
|
+
get state() {
|
|
12465
|
+
return this.readOnlyStateStore;
|
|
12466
|
+
}
|
|
12461
12467
|
/**
|
|
12462
12468
|
* Connects the given user to the client.
|
|
12463
12469
|
* Only one user can connect at a time, if you want to change users, call `disconnectUser` before connecting a new user.
|