stream-chat-angular 4.52.0-support-angular-17.2 → 4.52.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 +10 -2
- package/bundles/stream-chat-angular.umd.js.map +1 -1
- package/esm2015/assets/version.js +2 -2
- package/esm2015/lib/channel.service.js +8 -2
- package/esm2015/lib/chat-client.service.js +2 -1
- package/fesm2015/stream-chat-angular.js +9 -2
- package/fesm2015/stream-chat-angular.js.map +1 -1
- package/lib/chat-client.service.d.ts +1 -0
- package/package.json +1 -1
- package/src/assets/version.ts +1 -1
|
@@ -55,6 +55,7 @@ export declare class ChatClientService<T extends DefaultStreamChatGenerics = Def
|
|
|
55
55
|
* @param userOrId you can emit this for anonymous logins
|
|
56
56
|
* @param userTokenOrProvider You can provide:<ul>
|
|
57
57
|
* <li> a token, </li>
|
|
58
|
+
* <li> a token provider, a method that returns `Promise<string>`, which can be called when the previous token expires (recommended setup for production applications)</li>
|
|
58
59
|
* <li> the keyword 'guest' to connect as [guest user](https://getstream.io/chat/docs/javascript/authless_users/?language=javascript#guest-users) </li>
|
|
59
60
|
* <li> the keyword 'anonymous' to connect as [anonymous user](https://getstream.io/chat/docs/javascript/authless_users/?language=javascript#anonymous-users) </li>
|
|
60
61
|
* </ul>
|
package/package.json
CHANGED
package/src/assets/version.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const version = '4.52.
|
|
1
|
+
export const version = '4.52.1';
|