stream-chat-angular 3.5.3 → 3.6.0
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 +5 -1
- package/bundles/stream-chat-angular.umd.js.map +1 -1
- package/esm2015/assets/version.js +2 -2
- package/esm2015/lib/chat-client.service.js +5 -1
- package/fesm2015/stream-chat-angular.js +5 -1
- package/fesm2015/stream-chat-angular.js.map +1 -1
- package/lib/chat-client.service.d.ts +5 -0
- package/package.json +1 -1
- package/src/assets/version.ts +1 -1
|
@@ -38,10 +38,15 @@ export declare class ChatClientService<T extends DefaultStreamChatGenerics = Def
|
|
|
38
38
|
* Emits the list of pending invites of the user. It emits every pending invitation during initialization and then extends the list when a new invite is received. More information can be found in the [channel invitations](../code-examples/channel-invites.mdx) guide.
|
|
39
39
|
*/
|
|
40
40
|
pendingInvites$: Observable<(ChannelResponse<T> | Channel<T>)[]>;
|
|
41
|
+
/**
|
|
42
|
+
* Emits the current chat user
|
|
43
|
+
*/
|
|
44
|
+
user$: Observable<UserResponse<T> | undefined>;
|
|
41
45
|
private notificationSubject;
|
|
42
46
|
private connectionStateSubject;
|
|
43
47
|
private appSettingsSubject;
|
|
44
48
|
private pendingInvitesSubject;
|
|
49
|
+
private userSubject;
|
|
45
50
|
private subscriptions;
|
|
46
51
|
constructor(ngZone: NgZone, notificationService: NotificationService);
|
|
47
52
|
/**
|
package/package.json
CHANGED
package/src/assets/version.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const version = '3.
|
|
1
|
+
export const version = '3.6.0';
|