@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
|
+
## 3.3.2 (2024-06-18)
|
|
2
2
|
|
|
3
3
|
|
|
4
4
|
### Bug Fixes
|
|
5
5
|
|
|
6
|
-
* Fixed
|
|
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
|
|
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
|
|
17
|
+
* End a call
|
|
18
18
|
*
|
|
19
19
|
* @example
|
|
20
20
|
* ```javascript
|
|
21
|
-
* // End any
|
|
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
|
|
28
|
-
* WPP.on('call.
|
|
27
|
+
* // End any incoming call
|
|
28
|
+
* WPP.on('call.incoming_call', (call) => {
|
|
29
29
|
* WPP.call.end(call.id);
|
|
30
30
|
* });
|
|
31
31
|
* ```
|