@wppconnect/wa-js 2.15.0 → 2.15.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 +3 -3
- package/dist/whatsapp/collections/index.d.ts +0 -1
- package/dist/whatsapp/functions/index.d.ts +0 -1
- package/dist/whatsapp/models/MsgModel.d.ts +1 -1
- package/dist/whatsapp/stores.d.ts +0 -2
- package/dist/wppconnect-wa.js +1 -1
- package/package.json +6 -6
- package/dist/whatsapp/collections/StarredStickerCollection.d.ts +0 -27
- package/dist/whatsapp/functions/getOrGenerate.d.ts +0 -21
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
|
|
1
|
+
## 2.15.2 (2022-11-12)
|
|
2
2
|
|
|
3
|
-
###
|
|
3
|
+
### Bug Fixes
|
|
4
4
|
|
|
5
|
-
-
|
|
5
|
+
- Fixed quoted message response (fix [#737](https://github.com/wppconnect-team/wa-js/issues/737)) ([c7ddbfd](https://github.com/wppconnect-team/wa-js/commit/c7ddbfd556ea39a93048d1e61f343dec641d66d1))
|
|
@@ -53,7 +53,6 @@ export * from './ReactionsSendersCollection';
|
|
|
53
53
|
export * from './RecentEmojiCollection';
|
|
54
54
|
export * from './RecentStickerCollection';
|
|
55
55
|
export * from './StarredMsgCollection';
|
|
56
|
-
export * from './StarredStickerCollection';
|
|
57
56
|
export * from './StatusCollection';
|
|
58
57
|
export * from './StatusV3Collection';
|
|
59
58
|
export * from './StickerCollection';
|
|
@@ -31,7 +31,6 @@ export * from './generateVideoThumbsAndDuration';
|
|
|
31
31
|
export * from './genMinimalLinkPreview';
|
|
32
32
|
export * from './getFanOutList';
|
|
33
33
|
export * from './getGroupSenderKeyList';
|
|
34
|
-
export * from './getOrGenerate';
|
|
35
34
|
export * from './getSearchContext';
|
|
36
35
|
export * from './groupParticipants';
|
|
37
36
|
export * from './handleAck';
|
|
@@ -341,7 +341,7 @@ export declare class MsgModel extends Model {
|
|
|
341
341
|
waitForPrep(): any;
|
|
342
342
|
quotedMsgObj(): any;
|
|
343
343
|
getQuotedMsgAdminGroupJid(): any;
|
|
344
|
-
msgContextInfo(
|
|
344
|
+
msgContextInfo(chatId: Wid): any;
|
|
345
345
|
displayName(e?: any, t?: any): any;
|
|
346
346
|
isQuoted(e?: any): boolean;
|
|
347
347
|
isMentioned(e?: any): boolean;
|
|
@@ -107,8 +107,6 @@ export declare const RecentStickerStore: collections.RecentStickerCollection;
|
|
|
107
107
|
* @whatsapp 719011 >= 2.2222.8
|
|
108
108
|
*/
|
|
109
109
|
export declare const StarredMsgStore: collections.StarredMsgCollection;
|
|
110
|
-
/** @whatsapp 16774 */
|
|
111
|
-
export declare const StarredStickerStore: collections.StarredStickerCollection;
|
|
112
110
|
/** @whatsapp 46133 */
|
|
113
111
|
export declare const StatusStore: collections.StatusCollection;
|
|
114
112
|
/** @whatsapp 59387
|