@wppconnect/wa-js 4.4.0 → 4.4.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,3 +1,3 @@
1
- ## 4.4.0 (2026-07-15)
1
+ ## <small>4.4.2 (2026-07-24)</small>
2
2
 
3
- * fix: restore MsgKey._serialized on WhatsApp Web >= 2.3000.1042401057 (#3484) ([dd00bf71ca807b36bddedb0628b139e5d7d70450](https://github.com/wppconnect-team/wa-js/commit/dd00bf71ca807b36bddedb0628b139e5d7d70450)), closes [#3484](https://github.com/wppconnect-team/wa-js/issues/3484)
3
+ * fix: protobuf named params when sending messages (#3498) ([be60fe152db53df969510d69dcdd253f9dafe354](https://github.com/wppconnect-team/wa-js/commit/be60fe152db53df969510d69dcdd253f9dafe354)), closes [#3498](https://github.com/wppconnect-team/wa-js/issues/3498)
@@ -30,3 +30,23 @@ export declare function createFanoutMsgStanza(message: {
30
30
  }, devices: Wid[], options: {
31
31
  [key: string]: any;
32
32
  }, reporter: any, groupData?: any): Promise<websocket.WapNode>;
33
+ /**
34
+ * @whatsapp >= 2.3000.1043786062
35
+ */
36
+ export declare function createFanoutMsgStanza(params: {
37
+ chatId: Wid;
38
+ deviceList: Wid[];
39
+ groupData?: any;
40
+ metricReporter?: any;
41
+ msgProtobuf: {
42
+ [key: string]: any;
43
+ };
44
+ msgRecord: {
45
+ type: string;
46
+ data: MsgModel;
47
+ };
48
+ option?: {
49
+ [key: string]: any;
50
+ };
51
+ scheduledMsgMetadata?: any;
52
+ }): Promise<websocket.WapNode>;