stream-chat-angular 4.58.0 → 4.58.2

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.
@@ -298,7 +298,7 @@ export declare class ChannelService<T extends DefaultStreamChatGenerics = Defaul
298
298
  * Resends the given message to the active channel
299
299
  * @param message The message to resend
300
300
  */
301
- resendMessage(message: StreamMessage): Promise<void>;
301
+ resendMessage(message: StreamMessage): Promise<NonNullable<StreamMessage<T>>>;
302
302
  /**
303
303
  * Updates the message in the active channel
304
304
  * @param message Mesage to be updated
@@ -76,7 +76,7 @@ export declare class MessageReactionsComponent implements AfterViewChecked, OnCh
76
76
  hideTooltip(): void;
77
77
  trackByMessageReaction(index: number, item: MessageReactionType): string;
78
78
  trackByUserId(index: number, item: UserResponse): string;
79
- react(type: MessageReactionType): void;
79
+ react(type: MessageReactionType): Promise<void>;
80
80
  isOwnReaction(reactionType: MessageReactionType): boolean;
81
81
  isOpenChange: (isOpen: boolean) => void;
82
82
  private eventHandler;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "stream-chat-angular",
3
- "version": "4.58.0",
3
+ "version": "4.58.2",
4
4
  "description": "Angular components to create chat conversations or livestream style chat",
5
5
  "author": "GetStream",
6
6
  "homepage": "https://getstream.io/chat/",