@wppconnect/wa-js 3.3.1 → 3.3.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.
package/CHANGELOG.md CHANGED
@@ -1,9 +1,9 @@
1
- ## 3.3.1 (2024-06-09)
1
+ ## 3.3.2 (2024-06-18)
2
2
 
3
3
 
4
4
  ### Bug Fixes
5
5
 
6
- * Fixed delete messages for me ([5cdf157](https://github.com/wppconnect-team/wa-js/commit/5cdf157ae1c7ad02ff099979cf6a0a949c436ee0))
6
+ * Fixed chat.new_reaction event in 2.3000.x ([#2021](https://github.com/wppconnect-team/wa-js/issues/2021)) ([65b35e5](https://github.com/wppconnect-team/wa-js/commit/65b35e531c6e954c7a62935a63dafaeb772aaa9e))
7
7
 
8
8
 
9
9
 
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * Copyright 2023 WPPConnect Team
2
+ * Copyright 2024 WPPConnect Team
3
3
  *
4
4
  * Licensed under the Apache License, Version 2.0 (the "License");
5
5
  * you may not use this file except in compliance with the License.
@@ -14,18 +14,18 @@
14
14
  * limitations under the License.
15
15
  */
16
16
  /**
17
- * End a outcoming call
17
+ * End a call
18
18
  *
19
19
  * @example
20
20
  * ```javascript
21
- * // End any outcoming call
21
+ * // End any call
22
22
  * WPP.call.end();
23
23
  *
24
24
  * // End specific call id
25
25
  * WPP.call.end(callId);
26
26
  *
27
- * // End any outcoming call
28
- * WPP.on('call.outcoming_call', (call) => {
27
+ * // End any incoming call
28
+ * WPP.on('call.incoming_call', (call) => {
29
29
  * WPP.call.end(call.id);
30
30
  * });
31
31
  * ```
@@ -25,5 +25,6 @@ export interface ReactionData {
25
25
  }
26
26
  /** @whatsapp 7394
27
27
  * @whatsapp 307394 >= 2.2222.8
28
+ * @whatsapp WAWebReactionsMsgAction >= 2.3000.x
28
29
  */
29
30
  export declare function createOrUpdateReactions(data: ReactionData[]): Promise<any>;