@stream-io/video-client 0.0.21 → 0.0.23
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 +14 -0
- package/README.md +0 -12
- package/dist/index.browser.es.js +4 -2
- package/dist/index.browser.es.js.map +1 -1
- package/dist/index.cjs.js +4 -2
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.es.js +4 -2
- package/dist/index.es.js.map +1 -1
- package/package.json +2 -7
- package/src/Call.ts +5 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,20 @@
|
|
|
2
2
|
|
|
3
3
|
This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
|
|
4
4
|
|
|
5
|
+
### [0.0.23](https://github.com/GetStream/stream-video-js/compare/client0.0.22...client0.0.23) (2023-06-22)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* navigate to incoming call screen when push notification is tapped ([#697](https://github.com/GetStream/stream-video-js/issues/697)) ([85488a2](https://github.com/GetStream/stream-video-js/commit/85488a213abb0482c7aedefb5c3aa999131c746a))
|
|
11
|
+
|
|
12
|
+
### [0.0.22](https://github.com/GetStream/stream-video-js/compare/client0.0.21...client0.0.22) (2023-06-21)
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
### Documentation
|
|
16
|
+
|
|
17
|
+
* cleanup ([#679](https://github.com/GetStream/stream-video-js/issues/679)) ([58c86bd](https://github.com/GetStream/stream-video-js/commit/58c86bd0354ebe444af361056dcc3fa82c4a926d))
|
|
18
|
+
|
|
5
19
|
### [0.0.21](https://github.com/GetStream/stream-video-js/compare/client0.0.20...client0.0.21) (2023-06-21)
|
|
6
20
|
|
|
7
21
|
|
package/README.md
CHANGED
|
@@ -12,15 +12,3 @@ This script expects the following directory structure to be set up:
|
|
|
12
12
|
- `chat` - the `chat` repository
|
|
13
13
|
- `stream-video-js` - current repository
|
|
14
14
|
- `cd stream-video-js/packages/client && yarn generate:open-api`
|
|
15
|
-
|
|
16
|
-
## Documentation
|
|
17
|
-
|
|
18
|
-
API reference documentation can be generated using the `yarn run generate-docs:client`,
|
|
19
|
-
the generated documentation will be inside the `generated-docs` folder.
|
|
20
|
-
|
|
21
|
-
To view the documentation locally, run the following in the root of the respective SDK React/React Native.
|
|
22
|
-
|
|
23
|
-
```bash
|
|
24
|
-
yarn generate-docs
|
|
25
|
-
`npx stream-chat-docusaurus -s`
|
|
26
|
-
```
|
package/dist/index.browser.es.js
CHANGED
|
@@ -9277,7 +9277,9 @@ class Call {
|
|
|
9277
9277
|
prevMeta === null || prevMeta === void 0 ? void 0 : prevMeta.settings.ring.incoming_call_timeout_ms,
|
|
9278
9278
|
currentMeta.settings.ring.incoming_call_timeout_ms,
|
|
9279
9279
|
];
|
|
9280
|
-
if (typeof timeoutMs === 'undefined' ||
|
|
9280
|
+
if (typeof timeoutMs === 'undefined' ||
|
|
9281
|
+
timeoutMs === prevTimeoutMs ||
|
|
9282
|
+
timeoutMs === 0)
|
|
9281
9283
|
return;
|
|
9282
9284
|
if (this.dropTimeout)
|
|
9283
9285
|
clearTimeout(this.dropTimeout);
|
|
@@ -11079,7 +11081,7 @@ class StreamClient {
|
|
|
11079
11081
|
}
|
|
11080
11082
|
getUserAgent() {
|
|
11081
11083
|
return (this.userAgent ||
|
|
11082
|
-
`stream-video-javascript-client-${this.node ? 'node' : 'browser'}-${"0.0.
|
|
11084
|
+
`stream-video-javascript-client-${this.node ? 'node' : 'browser'}-${"0.0.22"}`);
|
|
11083
11085
|
}
|
|
11084
11086
|
setUserAgent(userAgent) {
|
|
11085
11087
|
this.userAgent = userAgent;
|