stream-chat-angular 4.47.0 → 4.47.1
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/assets/version.d.ts +1 -1
- package/bundles/stream-chat-angular.umd.js +2 -2
- package/bundles/stream-chat-angular.umd.js.map +1 -1
- package/esm2015/assets/version.js +2 -2
- package/esm2015/lib/channel.service.js +2 -2
- package/fesm2015/stream-chat-angular.js +2 -2
- package/fesm2015/stream-chat-angular.js.map +1 -1
- package/lib/channel.service.d.ts +2 -0
- package/package.json +1 -1
- package/src/assets/version.ts +1 -1
package/lib/channel.service.d.ts
CHANGED
|
@@ -40,6 +40,8 @@ export declare class ChannelService<T extends DefaultStreamChatGenerics = Defaul
|
|
|
40
40
|
* It's important to note that filters don't apply to updates to the list from events.
|
|
41
41
|
*
|
|
42
42
|
* Our platform documentation covers the topic of [channel events](https://getstream.io/chat/docs/javascript/event_object/?language=javascript#events) in depth.
|
|
43
|
+
*
|
|
44
|
+
* By default if an error occurs during channel load, the Observable will emit an error, which will close the stream. Users will have to reload the page to be able to reinitialize the `ChannelService`. If you don't want the streams to be closed, you can pass `options.keepAliveChannels$OnError = true` to the `init` method. In that case the `channelQueryState$` stream will emit the status of the latest channel load request.
|
|
43
45
|
*/
|
|
44
46
|
channels$: Observable<Channel<T>[] | undefined>;
|
|
45
47
|
/**
|
package/package.json
CHANGED
package/src/assets/version.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const version = '4.47.
|
|
1
|
+
export const version = '4.47.1';
|