@zeronexcode/baileys 7.0.0-zeronex.4 → 7.0.0-zeronex.6
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/README.md +976 -0
- package/lib/Socket/business.d.ts +93 -0
- package/lib/Socket/business.d.ts.map +1 -1
- package/lib/Socket/communities.d.ts +93 -0
- package/lib/Socket/communities.d.ts.map +1 -1
- package/lib/Socket/index.d.ts +93 -0
- package/lib/Socket/index.d.ts.map +1 -1
- package/lib/Socket/messages-recv.d.ts +93 -0
- package/lib/Socket/messages-recv.d.ts.map +1 -1
- package/lib/Socket/messages-send.d.ts +93 -0
- package/lib/Socket/messages-send.d.ts.map +1 -1
- package/lib/Socket/messages-send.js +157 -1
- package/lib/Socket/messages-send.js.map +1 -1
- package/lib/Types/Message.d.ts +14 -1
- package/lib/Types/Message.d.ts.map +1 -1
- package/lib/Utils/messages.d.ts.map +1 -1
- package/lib/Utils/messages.js +34 -0
- package/lib/Utils/messages.js.map +1 -1
- package/package.json +1 -1
package/lib/Socket/business.d.ts
CHANGED
|
@@ -25,6 +25,99 @@ export declare const makeBusinessSocket: (config: SocketConfig) => {
|
|
|
25
25
|
fetchMessageHistory: (count: number, oldestMsgKey: import("../index.js").WAMessageKey, oldestMsgTimestamp: number | import("long").default) => Promise<string>;
|
|
26
26
|
requestPlaceholderResend: (messageKey: import("../index.js").WAMessageKey, msgData?: Partial<import("../index.js").WAMessage>) => Promise<string | undefined>;
|
|
27
27
|
messageRetryManager: import("../index.js").MessageRetryManager | null;
|
|
28
|
+
sendRichMessage: (jid: string, submessages: any[], quoted?: import("../index.js").WAMessage, options?: {
|
|
29
|
+
headerText?: string;
|
|
30
|
+
text?: string;
|
|
31
|
+
footer?: string;
|
|
32
|
+
title?: string;
|
|
33
|
+
language?: string;
|
|
34
|
+
botJid?: string;
|
|
35
|
+
botName?: string;
|
|
36
|
+
creatorName?: string;
|
|
37
|
+
forwardingScore?: number;
|
|
38
|
+
}) => Promise<import("../index.js").WAMessage>;
|
|
39
|
+
sendTable: (jid: string, title: string, headers: string[], rows: string[][], quoted?: import("../index.js").WAMessage, options?: {
|
|
40
|
+
headerText?: string;
|
|
41
|
+
text?: string;
|
|
42
|
+
footer?: string;
|
|
43
|
+
title?: string;
|
|
44
|
+
language?: string;
|
|
45
|
+
botJid?: string;
|
|
46
|
+
botName?: string;
|
|
47
|
+
creatorName?: string;
|
|
48
|
+
forwardingScore?: number;
|
|
49
|
+
}) => Promise<import("../index.js").WAMessage>;
|
|
50
|
+
sendTableV2: (jid: string, table: string[], quoted?: import("../index.js").WAMessage, options?: {
|
|
51
|
+
headerText?: string;
|
|
52
|
+
text?: string;
|
|
53
|
+
footer?: string;
|
|
54
|
+
title?: string;
|
|
55
|
+
language?: string;
|
|
56
|
+
botJid?: string;
|
|
57
|
+
botName?: string;
|
|
58
|
+
creatorName?: string;
|
|
59
|
+
forwardingScore?: number;
|
|
60
|
+
}) => Promise<import("../index.js").WAMessage>;
|
|
61
|
+
sendList: (jid: string, title: string, rows: string[][], quoted?: import("../index.js").WAMessage, options?: {
|
|
62
|
+
headerText?: string;
|
|
63
|
+
text?: string;
|
|
64
|
+
footer?: string;
|
|
65
|
+
title?: string;
|
|
66
|
+
language?: string;
|
|
67
|
+
botJid?: string;
|
|
68
|
+
botName?: string;
|
|
69
|
+
creatorName?: string;
|
|
70
|
+
forwardingScore?: number;
|
|
71
|
+
}) => Promise<import("../index.js").WAMessage>;
|
|
72
|
+
sendCodeBlock: (jid: string, code: string, quoted?: import("../index.js").WAMessage, options?: {
|
|
73
|
+
headerText?: string;
|
|
74
|
+
text?: string;
|
|
75
|
+
footer?: string;
|
|
76
|
+
title?: string;
|
|
77
|
+
language?: string;
|
|
78
|
+
botJid?: string;
|
|
79
|
+
botName?: string;
|
|
80
|
+
creatorName?: string;
|
|
81
|
+
forwardingScore?: number;
|
|
82
|
+
}) => Promise<import("../index.js").WAMessage>;
|
|
83
|
+
sendCodeBlockV2: (jid: string, code: string, quoted?: import("../index.js").WAMessage, options?: {
|
|
84
|
+
headerText?: string;
|
|
85
|
+
text?: string;
|
|
86
|
+
footer?: string;
|
|
87
|
+
title?: string;
|
|
88
|
+
language?: string;
|
|
89
|
+
botJid?: string;
|
|
90
|
+
botName?: string;
|
|
91
|
+
creatorName?: string;
|
|
92
|
+
forwardingScore?: number;
|
|
93
|
+
}) => Promise<import("../index.js").WAMessage>;
|
|
94
|
+
sendLink: (jid: string, text: string, links: string[], quoted?: import("../index.js").WAMessage, options?: {
|
|
95
|
+
headerText?: string;
|
|
96
|
+
text?: string;
|
|
97
|
+
footer?: string;
|
|
98
|
+
title?: string;
|
|
99
|
+
language?: string;
|
|
100
|
+
botJid?: string;
|
|
101
|
+
botName?: string;
|
|
102
|
+
creatorName?: string;
|
|
103
|
+
forwardingScore?: number;
|
|
104
|
+
}) => Promise<import("../index.js").WAMessage>;
|
|
105
|
+
sendLinkV2: (jid: string, text: string, links: Array<{
|
|
106
|
+
url: string;
|
|
107
|
+
displayName?: string;
|
|
108
|
+
sourceDisplayName?: string;
|
|
109
|
+
sourceSubtitle?: string;
|
|
110
|
+
}>, quoted?: import("../index.js").WAMessage, options?: {
|
|
111
|
+
headerText?: string;
|
|
112
|
+
text?: string;
|
|
113
|
+
footer?: string;
|
|
114
|
+
title?: string;
|
|
115
|
+
language?: string;
|
|
116
|
+
botJid?: string;
|
|
117
|
+
botName?: string;
|
|
118
|
+
creatorName?: string;
|
|
119
|
+
forwardingScore?: number;
|
|
120
|
+
}) => Promise<import("../index.js").WAMessage>;
|
|
28
121
|
userDevicesCache: import("../index.js").PossiblyExtendedCacheStore | import("@cacheable/node-cache").NodeCache<import("../index.js").JidWithDevice[]>;
|
|
29
122
|
devicesMutex: {
|
|
30
123
|
mutex<T>(code: () => Promise<T> | T): Promise<T>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"business.d.ts","sourceRoot":"","sources":["../../src/Socket/business.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,iBAAiB,EAAE,aAAa,EAAE,aAAa,EAAE,YAAY,EAAE,aAAa,EAAE,MAAM,UAAU,CAAA;AAC5G,OAAO,KAAK,EAAE,0BAA0B,EAAE,MAAM,mBAAmB,CAAA;AAUnE,OAAO,EAAE,KAAK,UAAU,EAAqC,MAAM,aAAa,CAAA;AAIhF,eAAO,MAAM,kBAAkB,GAAI,QAAQ,YAAY;;+BA8Od,MAAM,eAAe,MAAM;yCAjGjB,iBAAiB;;;;2BAmD/B,MAAM;;;4BAkIL,aAAa;gCAwCT,MAAM,EAAE;;;+BA9ET,MAAM,UAAU,aAAa;kCAxR1B,0BAA0B;8BA2E9B,aAAa;2BAoChB,MAAM
|
|
1
|
+
{"version":3,"file":"business.d.ts","sourceRoot":"","sources":["../../src/Socket/business.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,iBAAiB,EAAE,aAAa,EAAE,aAAa,EAAE,YAAY,EAAE,aAAa,EAAE,MAAM,UAAU,CAAA;AAC5G,OAAO,KAAK,EAAE,0BAA0B,EAAE,MAAM,mBAAmB,CAAA;AAUnE,OAAO,EAAE,KAAK,UAAU,EAAqC,MAAM,aAAa,CAAA;AAIhF,eAAO,MAAM,kBAAkB,GAAI,QAAQ,YAAY;;+BA8Od,MAAM,eAAe,MAAM;yCAjGjB,iBAAiB;;;;2BAmD/B,MAAM;;;4BAkIL,aAAa;gCAwCT,MAAM,EAAE;;;+BA9ET,MAAM,UAAU,aAAa;kCAxR1B,0BAA0B;8BA2E9B,aAAa;2BAoChB,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;mBAsS6wlC,CAAC;yBAA2B,CAAC;sBAAwB,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAAt1d,CAAC;;;;;;;;;0DAhXtgoB,GAAG,0BAChB,GAAH;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA8WF,CAAA"}
|
|
@@ -80,6 +80,99 @@ export declare const makeCommunitiesSocket: (config: SocketConfig) => {
|
|
|
80
80
|
fetchMessageHistory: (count: number, oldestMsgKey: WAMessageKey, oldestMsgTimestamp: number | import("long").default) => Promise<string>;
|
|
81
81
|
requestPlaceholderResend: (messageKey: WAMessageKey, msgData?: Partial<import("../Types/index.js").WAMessage>) => Promise<string | undefined>;
|
|
82
82
|
messageRetryManager: import("../Utils/index.js").MessageRetryManager | null;
|
|
83
|
+
sendRichMessage: (jid: string, submessages: any[], quoted?: import("../Types/index.js").WAMessage, options?: {
|
|
84
|
+
headerText?: string;
|
|
85
|
+
text?: string;
|
|
86
|
+
footer?: string;
|
|
87
|
+
title?: string;
|
|
88
|
+
language?: string;
|
|
89
|
+
botJid?: string;
|
|
90
|
+
botName?: string;
|
|
91
|
+
creatorName?: string;
|
|
92
|
+
forwardingScore?: number;
|
|
93
|
+
}) => Promise<import("../Types/index.js").WAMessage>;
|
|
94
|
+
sendTable: (jid: string, title: string, headers: string[], rows: string[][], quoted?: import("../Types/index.js").WAMessage, options?: {
|
|
95
|
+
headerText?: string;
|
|
96
|
+
text?: string;
|
|
97
|
+
footer?: string;
|
|
98
|
+
title?: string;
|
|
99
|
+
language?: string;
|
|
100
|
+
botJid?: string;
|
|
101
|
+
botName?: string;
|
|
102
|
+
creatorName?: string;
|
|
103
|
+
forwardingScore?: number;
|
|
104
|
+
}) => Promise<import("../Types/index.js").WAMessage>;
|
|
105
|
+
sendTableV2: (jid: string, table: string[], quoted?: import("../Types/index.js").WAMessage, options?: {
|
|
106
|
+
headerText?: string;
|
|
107
|
+
text?: string;
|
|
108
|
+
footer?: string;
|
|
109
|
+
title?: string;
|
|
110
|
+
language?: string;
|
|
111
|
+
botJid?: string;
|
|
112
|
+
botName?: string;
|
|
113
|
+
creatorName?: string;
|
|
114
|
+
forwardingScore?: number;
|
|
115
|
+
}) => Promise<import("../Types/index.js").WAMessage>;
|
|
116
|
+
sendList: (jid: string, title: string, rows: string[][], quoted?: import("../Types/index.js").WAMessage, options?: {
|
|
117
|
+
headerText?: string;
|
|
118
|
+
text?: string;
|
|
119
|
+
footer?: string;
|
|
120
|
+
title?: string;
|
|
121
|
+
language?: string;
|
|
122
|
+
botJid?: string;
|
|
123
|
+
botName?: string;
|
|
124
|
+
creatorName?: string;
|
|
125
|
+
forwardingScore?: number;
|
|
126
|
+
}) => Promise<import("../Types/index.js").WAMessage>;
|
|
127
|
+
sendCodeBlock: (jid: string, code: string, quoted?: import("../Types/index.js").WAMessage, options?: {
|
|
128
|
+
headerText?: string;
|
|
129
|
+
text?: string;
|
|
130
|
+
footer?: string;
|
|
131
|
+
title?: string;
|
|
132
|
+
language?: string;
|
|
133
|
+
botJid?: string;
|
|
134
|
+
botName?: string;
|
|
135
|
+
creatorName?: string;
|
|
136
|
+
forwardingScore?: number;
|
|
137
|
+
}) => Promise<import("../Types/index.js").WAMessage>;
|
|
138
|
+
sendCodeBlockV2: (jid: string, code: string, quoted?: import("../Types/index.js").WAMessage, options?: {
|
|
139
|
+
headerText?: string;
|
|
140
|
+
text?: string;
|
|
141
|
+
footer?: string;
|
|
142
|
+
title?: string;
|
|
143
|
+
language?: string;
|
|
144
|
+
botJid?: string;
|
|
145
|
+
botName?: string;
|
|
146
|
+
creatorName?: string;
|
|
147
|
+
forwardingScore?: number;
|
|
148
|
+
}) => Promise<import("../Types/index.js").WAMessage>;
|
|
149
|
+
sendLink: (jid: string, text: string, links: string[], quoted?: import("../Types/index.js").WAMessage, options?: {
|
|
150
|
+
headerText?: string;
|
|
151
|
+
text?: string;
|
|
152
|
+
footer?: string;
|
|
153
|
+
title?: string;
|
|
154
|
+
language?: string;
|
|
155
|
+
botJid?: string;
|
|
156
|
+
botName?: string;
|
|
157
|
+
creatorName?: string;
|
|
158
|
+
forwardingScore?: number;
|
|
159
|
+
}) => Promise<import("../Types/index.js").WAMessage>;
|
|
160
|
+
sendLinkV2: (jid: string, text: string, links: Array<{
|
|
161
|
+
url: string;
|
|
162
|
+
displayName?: string;
|
|
163
|
+
sourceDisplayName?: string;
|
|
164
|
+
sourceSubtitle?: string;
|
|
165
|
+
}>, quoted?: import("../Types/index.js").WAMessage, options?: {
|
|
166
|
+
headerText?: string;
|
|
167
|
+
text?: string;
|
|
168
|
+
footer?: string;
|
|
169
|
+
title?: string;
|
|
170
|
+
language?: string;
|
|
171
|
+
botJid?: string;
|
|
172
|
+
botName?: string;
|
|
173
|
+
creatorName?: string;
|
|
174
|
+
forwardingScore?: number;
|
|
175
|
+
}) => Promise<import("../Types/index.js").WAMessage>;
|
|
83
176
|
userDevicesCache: import("../Types/index.js").PossiblyExtendedCacheStore | import("@cacheable/node-cache").NodeCache<import("../WABinary/index.js").JidWithDevice[]>;
|
|
84
177
|
devicesMutex: {
|
|
85
178
|
mutex<T>(code: () => Promise<T> | T): Promise<T>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"communities.d.ts","sourceRoot":"","sources":["../../src/Socket/communities.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,EAAE,MAAM,wBAAwB,CAAA;AAC9C,OAAO,EACN,KAAK,aAAa,EAElB,KAAK,iBAAiB,EACtB,KAAK,YAAY,EACjB,KAAK,YAAY,EAEjB,MAAM,UAAU,CAAA;AAGjB,OAAO,EACN,KAAK,UAAU,EAMf,MAAM,aAAa,CAAA;AAGpB,eAAO,MAAM,qBAAqB,GAAI,QAAQ,YAAY;6BAenB,MAAM;+BA8EV,MAAM,QAAQ,MAAM;oCAqCf,MAAM,gBAAgB,MAAM,EAAE,sBAAsB,MAAM;yBAoBrE,MAAM;kCASG,MAAM,WAAW,MAAM;mCAStB,MAAM,sBAAsB,MAAM;qCAehC,MAAM,sBAAsB,MAAM;sCASjC,MAAM;;;;;;;;;;;4CAsCA,MAAM;;;8CAWJ,MAAM,gBAAgB,MAAM,EAAE,UAAU,SAAS,GAAG,QAAQ;;;;uCAwBnE,MAAM,gBAAgB,MAAM,EAAE,UAAU,iBAAiB;;;;;sCAiB1D,MAAM,gBAAgB,MAAM;+BAenC,MAAM;iCAKJ,MAAM;kCAKL,MAAM;IAM1C;;;;;OAKG;4CAC2C,MAAM,cAAc,MAAM;IAOxE;;;;OAIG;;mCAsDkC,MAAM;oCAIL,MAAM,uBAAuB,MAAM;kCAOnE,MAAM,WACF,cAAc,GAAG,kBAAkB,GAAG,QAAQ,GAAG,UAAU;kCAIjC,MAAM,QAAQ,WAAW,GAAG,gBAAgB;qCAGzC,MAAM,QAAQ,IAAI,GAAG,KAAK
|
|
1
|
+
{"version":3,"file":"communities.d.ts","sourceRoot":"","sources":["../../src/Socket/communities.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,EAAE,MAAM,wBAAwB,CAAA;AAC9C,OAAO,EACN,KAAK,aAAa,EAElB,KAAK,iBAAiB,EACtB,KAAK,YAAY,EACjB,KAAK,YAAY,EAEjB,MAAM,UAAU,CAAA;AAGjB,OAAO,EACN,KAAK,UAAU,EAMf,MAAM,aAAa,CAAA;AAGpB,eAAO,MAAM,qBAAqB,GAAI,QAAQ,YAAY;6BAenB,MAAM;+BA8EV,MAAM,QAAQ,MAAM;oCAqCf,MAAM,gBAAgB,MAAM,EAAE,sBAAsB,MAAM;yBAoBrE,MAAM;kCASG,MAAM,WAAW,MAAM;mCAStB,MAAM,sBAAsB,MAAM;qCAehC,MAAM,sBAAsB,MAAM;sCASjC,MAAM;;;;;;;;;;;4CAsCA,MAAM;;;8CAWJ,MAAM,gBAAgB,MAAM,EAAE,UAAU,SAAS,GAAG,QAAQ;;;;uCAwBnE,MAAM,gBAAgB,MAAM,EAAE,UAAU,iBAAiB;;;;;sCAiB1D,MAAM,gBAAgB,MAAM;+BAenC,MAAM;iCAKJ,MAAM;kCAKL,MAAM;IAM1C;;;;;OAKG;4CAC2C,MAAM,cAAc,MAAM;IAOxE;;;;OAIG;;mCAsDkC,MAAM;oCAIL,MAAM,uBAAuB,MAAM;kCAOnE,MAAM,WACF,cAAc,GAAG,kBAAkB,GAAG,QAAQ,GAAG,UAAU;kCAIjC,MAAM,QAAQ,WAAW,GAAG,gBAAgB;qCAGzC,MAAM,QAAQ,IAAI,GAAG,KAAK;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;mBAqDqr5B,CAAC;yBAA2B,CAAC;sBAAwB,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAAt1d,CAAC;;;;;;;;;0DA7Zp8b,GAAG,0BACpB,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA8WN,CAAA;AAED,eAAO,MAAM,wBAAwB,GAAI,QAAQ,UAAU,kBA2C1D,CAAA"}
|
package/lib/Socket/index.d.ts
CHANGED
|
@@ -67,6 +67,99 @@ declare const makeWASocket: (config: UserFacingSocketConfig) => {
|
|
|
67
67
|
fetchMessageHistory: (count: number, oldestMsgKey: import("../index.js").WAMessageKey, oldestMsgTimestamp: number | import("long").default) => Promise<string>;
|
|
68
68
|
requestPlaceholderResend: (messageKey: import("../index.js").WAMessageKey, msgData?: Partial<import("../index.js").WAMessage>) => Promise<string | undefined>;
|
|
69
69
|
messageRetryManager: import("../index.js").MessageRetryManager | null;
|
|
70
|
+
sendRichMessage: (jid: string, submessages: any[], quoted?: import("../index.js").WAMessage, options?: {
|
|
71
|
+
headerText?: string;
|
|
72
|
+
text?: string;
|
|
73
|
+
footer?: string;
|
|
74
|
+
title?: string;
|
|
75
|
+
language?: string;
|
|
76
|
+
botJid?: string;
|
|
77
|
+
botName?: string;
|
|
78
|
+
creatorName?: string;
|
|
79
|
+
forwardingScore?: number;
|
|
80
|
+
}) => Promise<import("../index.js").WAMessage>;
|
|
81
|
+
sendTable: (jid: string, title: string, headers: string[], rows: string[][], quoted?: import("../index.js").WAMessage, options?: {
|
|
82
|
+
headerText?: string;
|
|
83
|
+
text?: string;
|
|
84
|
+
footer?: string;
|
|
85
|
+
title?: string;
|
|
86
|
+
language?: string;
|
|
87
|
+
botJid?: string;
|
|
88
|
+
botName?: string;
|
|
89
|
+
creatorName?: string;
|
|
90
|
+
forwardingScore?: number;
|
|
91
|
+
}) => Promise<import("../index.js").WAMessage>;
|
|
92
|
+
sendTableV2: (jid: string, table: string[], quoted?: import("../index.js").WAMessage, options?: {
|
|
93
|
+
headerText?: string;
|
|
94
|
+
text?: string;
|
|
95
|
+
footer?: string;
|
|
96
|
+
title?: string;
|
|
97
|
+
language?: string;
|
|
98
|
+
botJid?: string;
|
|
99
|
+
botName?: string;
|
|
100
|
+
creatorName?: string;
|
|
101
|
+
forwardingScore?: number;
|
|
102
|
+
}) => Promise<import("../index.js").WAMessage>;
|
|
103
|
+
sendList: (jid: string, title: string, rows: string[][], quoted?: import("../index.js").WAMessage, options?: {
|
|
104
|
+
headerText?: string;
|
|
105
|
+
text?: string;
|
|
106
|
+
footer?: string;
|
|
107
|
+
title?: string;
|
|
108
|
+
language?: string;
|
|
109
|
+
botJid?: string;
|
|
110
|
+
botName?: string;
|
|
111
|
+
creatorName?: string;
|
|
112
|
+
forwardingScore?: number;
|
|
113
|
+
}) => Promise<import("../index.js").WAMessage>;
|
|
114
|
+
sendCodeBlock: (jid: string, code: string, quoted?: import("../index.js").WAMessage, options?: {
|
|
115
|
+
headerText?: string;
|
|
116
|
+
text?: string;
|
|
117
|
+
footer?: string;
|
|
118
|
+
title?: string;
|
|
119
|
+
language?: string;
|
|
120
|
+
botJid?: string;
|
|
121
|
+
botName?: string;
|
|
122
|
+
creatorName?: string;
|
|
123
|
+
forwardingScore?: number;
|
|
124
|
+
}) => Promise<import("../index.js").WAMessage>;
|
|
125
|
+
sendCodeBlockV2: (jid: string, code: string, quoted?: import("../index.js").WAMessage, options?: {
|
|
126
|
+
headerText?: string;
|
|
127
|
+
text?: string;
|
|
128
|
+
footer?: string;
|
|
129
|
+
title?: string;
|
|
130
|
+
language?: string;
|
|
131
|
+
botJid?: string;
|
|
132
|
+
botName?: string;
|
|
133
|
+
creatorName?: string;
|
|
134
|
+
forwardingScore?: number;
|
|
135
|
+
}) => Promise<import("../index.js").WAMessage>;
|
|
136
|
+
sendLink: (jid: string, text: string, links: string[], quoted?: import("../index.js").WAMessage, options?: {
|
|
137
|
+
headerText?: string;
|
|
138
|
+
text?: string;
|
|
139
|
+
footer?: string;
|
|
140
|
+
title?: string;
|
|
141
|
+
language?: string;
|
|
142
|
+
botJid?: string;
|
|
143
|
+
botName?: string;
|
|
144
|
+
creatorName?: string;
|
|
145
|
+
forwardingScore?: number;
|
|
146
|
+
}) => Promise<import("../index.js").WAMessage>;
|
|
147
|
+
sendLinkV2: (jid: string, text: string, links: Array<{
|
|
148
|
+
url: string;
|
|
149
|
+
displayName?: string;
|
|
150
|
+
sourceDisplayName?: string;
|
|
151
|
+
sourceSubtitle?: string;
|
|
152
|
+
}>, quoted?: import("../index.js").WAMessage, options?: {
|
|
153
|
+
headerText?: string;
|
|
154
|
+
text?: string;
|
|
155
|
+
footer?: string;
|
|
156
|
+
title?: string;
|
|
157
|
+
language?: string;
|
|
158
|
+
botJid?: string;
|
|
159
|
+
botName?: string;
|
|
160
|
+
creatorName?: string;
|
|
161
|
+
forwardingScore?: number;
|
|
162
|
+
}) => Promise<import("../index.js").WAMessage>;
|
|
70
163
|
userDevicesCache: import("../index.js").PossiblyExtendedCacheStore | import("@cacheable/node-cache").NodeCache<import("../index.js").JidWithDevice[]>;
|
|
71
164
|
devicesMutex: {
|
|
72
165
|
mutex<T>(code: () => Promise<T> | T): Promise<T>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/Socket/index.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,sBAAsB,EAAE,MAAM,UAAU,CAAA;AAKtD,QAAA,MAAM,YAAY,GAAI,QAAQ,sBAAsB
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/Socket/index.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,sBAAsB,EAAE,MAAM,UAAU,CAAA;AAKtD,QAAA,MAAM,YAAY,GAAI,QAAQ,sBAAsB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;mBAsC+j0C,CAAC;yBAA2B,CAAC;sBAAwB,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAAt1d,CAAC;;;;;;;;;0DAArr1B,GAAG,0BAA0B,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAH9rB,CAAA;AAED,eAAe,YAAY,CAAA"}
|
|
@@ -11,6 +11,99 @@ export declare const makeMessagesRecvSocket: (config: SocketConfig) => {
|
|
|
11
11
|
fetchMessageHistory: (count: number, oldestMsgKey: WAMessageKey, oldestMsgTimestamp: number | Long) => Promise<string>;
|
|
12
12
|
requestPlaceholderResend: (messageKey: WAMessageKey, msgData?: Partial<WAMessage>) => Promise<string | undefined>;
|
|
13
13
|
messageRetryManager: import("../Utils/index.js").MessageRetryManager | null;
|
|
14
|
+
sendRichMessage: (jid: string, submessages: any[], quoted?: WAMessage, options?: {
|
|
15
|
+
headerText?: string;
|
|
16
|
+
text?: string;
|
|
17
|
+
footer?: string;
|
|
18
|
+
title?: string;
|
|
19
|
+
language?: string;
|
|
20
|
+
botJid?: string;
|
|
21
|
+
botName?: string;
|
|
22
|
+
creatorName?: string;
|
|
23
|
+
forwardingScore?: number;
|
|
24
|
+
}) => Promise<WAMessage>;
|
|
25
|
+
sendTable: (jid: string, title: string, headers: string[], rows: string[][], quoted?: WAMessage, options?: {
|
|
26
|
+
headerText?: string;
|
|
27
|
+
text?: string;
|
|
28
|
+
footer?: string;
|
|
29
|
+
title?: string;
|
|
30
|
+
language?: string;
|
|
31
|
+
botJid?: string;
|
|
32
|
+
botName?: string;
|
|
33
|
+
creatorName?: string;
|
|
34
|
+
forwardingScore?: number;
|
|
35
|
+
}) => Promise<WAMessage>;
|
|
36
|
+
sendTableV2: (jid: string, table: string[], quoted?: WAMessage, options?: {
|
|
37
|
+
headerText?: string;
|
|
38
|
+
text?: string;
|
|
39
|
+
footer?: string;
|
|
40
|
+
title?: string;
|
|
41
|
+
language?: string;
|
|
42
|
+
botJid?: string;
|
|
43
|
+
botName?: string;
|
|
44
|
+
creatorName?: string;
|
|
45
|
+
forwardingScore?: number;
|
|
46
|
+
}) => Promise<WAMessage>;
|
|
47
|
+
sendList: (jid: string, title: string, rows: string[][], quoted?: WAMessage, options?: {
|
|
48
|
+
headerText?: string;
|
|
49
|
+
text?: string;
|
|
50
|
+
footer?: string;
|
|
51
|
+
title?: string;
|
|
52
|
+
language?: string;
|
|
53
|
+
botJid?: string;
|
|
54
|
+
botName?: string;
|
|
55
|
+
creatorName?: string;
|
|
56
|
+
forwardingScore?: number;
|
|
57
|
+
}) => Promise<WAMessage>;
|
|
58
|
+
sendCodeBlock: (jid: string, code: string, quoted?: WAMessage, options?: {
|
|
59
|
+
headerText?: string;
|
|
60
|
+
text?: string;
|
|
61
|
+
footer?: string;
|
|
62
|
+
title?: string;
|
|
63
|
+
language?: string;
|
|
64
|
+
botJid?: string;
|
|
65
|
+
botName?: string;
|
|
66
|
+
creatorName?: string;
|
|
67
|
+
forwardingScore?: number;
|
|
68
|
+
}) => Promise<WAMessage>;
|
|
69
|
+
sendCodeBlockV2: (jid: string, code: string, quoted?: WAMessage, options?: {
|
|
70
|
+
headerText?: string;
|
|
71
|
+
text?: string;
|
|
72
|
+
footer?: string;
|
|
73
|
+
title?: string;
|
|
74
|
+
language?: string;
|
|
75
|
+
botJid?: string;
|
|
76
|
+
botName?: string;
|
|
77
|
+
creatorName?: string;
|
|
78
|
+
forwardingScore?: number;
|
|
79
|
+
}) => Promise<WAMessage>;
|
|
80
|
+
sendLink: (jid: string, text: string, links: string[], quoted?: WAMessage, options?: {
|
|
81
|
+
headerText?: string;
|
|
82
|
+
text?: string;
|
|
83
|
+
footer?: string;
|
|
84
|
+
title?: string;
|
|
85
|
+
language?: string;
|
|
86
|
+
botJid?: string;
|
|
87
|
+
botName?: string;
|
|
88
|
+
creatorName?: string;
|
|
89
|
+
forwardingScore?: number;
|
|
90
|
+
}) => Promise<WAMessage>;
|
|
91
|
+
sendLinkV2: (jid: string, text: string, links: Array<{
|
|
92
|
+
url: string;
|
|
93
|
+
displayName?: string;
|
|
94
|
+
sourceDisplayName?: string;
|
|
95
|
+
sourceSubtitle?: string;
|
|
96
|
+
}>, quoted?: WAMessage, options?: {
|
|
97
|
+
headerText?: string;
|
|
98
|
+
text?: string;
|
|
99
|
+
footer?: string;
|
|
100
|
+
title?: string;
|
|
101
|
+
language?: string;
|
|
102
|
+
botJid?: string;
|
|
103
|
+
botName?: string;
|
|
104
|
+
creatorName?: string;
|
|
105
|
+
forwardingScore?: number;
|
|
106
|
+
}) => Promise<WAMessage>;
|
|
14
107
|
userDevicesCache: import("../Types/index.js").PossiblyExtendedCacheStore | NodeCache<JidWithDevice[]>;
|
|
15
108
|
devicesMutex: {
|
|
16
109
|
mutex<T>(code: () => Promise<T> | T): Promise<T>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"messages-recv.d.ts","sourceRoot":"","sources":["../../src/Socket/messages-recv.ts"],"names":[],"mappings":"AAAA,OAAO,SAAS,MAAM,uBAAuB,CAAA;AAC7C,OAAO,EAAE,IAAI,EAAE,MAAM,YAAY,CAAA;AAEjC,OAAO,IAAI,MAAM,MAAM,CAAA;AACvB,OAAO,EAAE,KAAK,EAAE,MAAM,wBAAwB,CAAA;AAQ9C,OAAO,KAAK,EAEX,kBAAkB,EAClB,mBAAmB,EAEnB,qBAAqB,EACrB,YAAY,EAEZ,SAAS,EACT,YAAY,EAEZ,MAAM,UAAU,CAAA;AA4CjB,OAAO,EAEN,KAAK,UAAU,EAef,KAAK,aAAa,EAElB,MAAM,aAAa,CAAA;AAuBpB,eAAO,MAAM,sBAAsB,GAAI,QAAQ,YAAY;2BAobtB,UAAU,cAAc,MAAM;6BA4B5B,UAAU;yBAtBd,MAAM,YAAY,MAAM;iCAnYlD,MAAM,gBACC,YAAY,sBACN,MAAM,GAAG,IAAI,KAC/B,OAAO,CAAC,MAAM,CAAC;2CAoBL,YAAY,YACd,OAAO,CAAC,SAAS,CAAC,KAC1B,OAAO,CAAC,MAAM,GAAG,SAAS,CAAC
|
|
1
|
+
{"version":3,"file":"messages-recv.d.ts","sourceRoot":"","sources":["../../src/Socket/messages-recv.ts"],"names":[],"mappings":"AAAA,OAAO,SAAS,MAAM,uBAAuB,CAAA;AAC7C,OAAO,EAAE,IAAI,EAAE,MAAM,YAAY,CAAA;AAEjC,OAAO,IAAI,MAAM,MAAM,CAAA;AACvB,OAAO,EAAE,KAAK,EAAE,MAAM,wBAAwB,CAAA;AAQ9C,OAAO,KAAK,EAEX,kBAAkB,EAClB,mBAAmB,EAEnB,qBAAqB,EACrB,YAAY,EAEZ,SAAS,EACT,YAAY,EAEZ,MAAM,UAAU,CAAA;AA4CjB,OAAO,EAEN,KAAK,UAAU,EAef,KAAK,aAAa,EAElB,MAAM,aAAa,CAAA;AAuBpB,eAAO,MAAM,sBAAsB,GAAI,QAAQ,YAAY;2BAobtB,UAAU,cAAc,MAAM;6BA4B5B,UAAU;yBAtBd,MAAM,YAAY,MAAM;iCAnYlD,MAAM,gBACC,YAAY,sBACN,MAAM,GAAG,IAAI,KAC/B,OAAO,CAAC,MAAM,CAAC;2CAoBL,YAAY,YACd,OAAO,CAAC,SAAS,CAAC,KAC1B,OAAO,CAAC,MAAM,GAAG,SAAS,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;mBA8sCe,CAAC;yBAE5C,CAAA;sBACG,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cArdoB,CAAC;;;;;;;;;0DAl3B1B,GAAG,0BACD,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAqjEN,CAAA"}
|
|
@@ -6,6 +6,99 @@ import { MessageRetryManager } from '../Utils/index.js';
|
|
|
6
6
|
import { type BinaryNode, type JidWithDevice } from '../WABinary/index.js';
|
|
7
7
|
import { USyncQuery } from '../WAUSync/index.js';
|
|
8
8
|
export declare const makeMessagesSocket: (config: SocketConfig) => {
|
|
9
|
+
sendRichMessage: (jid: string, submessages: any[], quoted?: WAMessage, options?: {
|
|
10
|
+
headerText?: string;
|
|
11
|
+
text?: string;
|
|
12
|
+
footer?: string;
|
|
13
|
+
title?: string;
|
|
14
|
+
language?: string;
|
|
15
|
+
botJid?: string;
|
|
16
|
+
botName?: string;
|
|
17
|
+
creatorName?: string;
|
|
18
|
+
forwardingScore?: number;
|
|
19
|
+
}) => Promise<WAMessage>;
|
|
20
|
+
sendTable: (jid: string, title: string, headers: string[], rows: string[][], quoted?: WAMessage, options?: {
|
|
21
|
+
headerText?: string;
|
|
22
|
+
text?: string;
|
|
23
|
+
footer?: string;
|
|
24
|
+
title?: string;
|
|
25
|
+
language?: string;
|
|
26
|
+
botJid?: string;
|
|
27
|
+
botName?: string;
|
|
28
|
+
creatorName?: string;
|
|
29
|
+
forwardingScore?: number;
|
|
30
|
+
}) => Promise<WAMessage>;
|
|
31
|
+
sendTableV2: (jid: string, table: string[], quoted?: WAMessage, options?: {
|
|
32
|
+
headerText?: string;
|
|
33
|
+
text?: string;
|
|
34
|
+
footer?: string;
|
|
35
|
+
title?: string;
|
|
36
|
+
language?: string;
|
|
37
|
+
botJid?: string;
|
|
38
|
+
botName?: string;
|
|
39
|
+
creatorName?: string;
|
|
40
|
+
forwardingScore?: number;
|
|
41
|
+
}) => Promise<WAMessage>;
|
|
42
|
+
sendList: (jid: string, title: string, rows: string[][], quoted?: WAMessage, options?: {
|
|
43
|
+
headerText?: string;
|
|
44
|
+
text?: string;
|
|
45
|
+
footer?: string;
|
|
46
|
+
title?: string;
|
|
47
|
+
language?: string;
|
|
48
|
+
botJid?: string;
|
|
49
|
+
botName?: string;
|
|
50
|
+
creatorName?: string;
|
|
51
|
+
forwardingScore?: number;
|
|
52
|
+
}) => Promise<WAMessage>;
|
|
53
|
+
sendCodeBlock: (jid: string, code: string, quoted?: WAMessage, options?: {
|
|
54
|
+
headerText?: string;
|
|
55
|
+
text?: string;
|
|
56
|
+
footer?: string;
|
|
57
|
+
title?: string;
|
|
58
|
+
language?: string;
|
|
59
|
+
botJid?: string;
|
|
60
|
+
botName?: string;
|
|
61
|
+
creatorName?: string;
|
|
62
|
+
forwardingScore?: number;
|
|
63
|
+
}) => Promise<WAMessage>;
|
|
64
|
+
sendCodeBlockV2: (jid: string, code: string, quoted?: WAMessage, options?: {
|
|
65
|
+
headerText?: string;
|
|
66
|
+
text?: string;
|
|
67
|
+
footer?: string;
|
|
68
|
+
title?: string;
|
|
69
|
+
language?: string;
|
|
70
|
+
botJid?: string;
|
|
71
|
+
botName?: string;
|
|
72
|
+
creatorName?: string;
|
|
73
|
+
forwardingScore?: number;
|
|
74
|
+
}) => Promise<WAMessage>;
|
|
75
|
+
sendLink: (jid: string, text: string, links: string[], quoted?: WAMessage, options?: {
|
|
76
|
+
headerText?: string;
|
|
77
|
+
text?: string;
|
|
78
|
+
footer?: string;
|
|
79
|
+
title?: string;
|
|
80
|
+
language?: string;
|
|
81
|
+
botJid?: string;
|
|
82
|
+
botName?: string;
|
|
83
|
+
creatorName?: string;
|
|
84
|
+
forwardingScore?: number;
|
|
85
|
+
}) => Promise<WAMessage>;
|
|
86
|
+
sendLinkV2: (jid: string, text: string, links: Array<{
|
|
87
|
+
url: string;
|
|
88
|
+
displayName?: string;
|
|
89
|
+
sourceDisplayName?: string;
|
|
90
|
+
sourceSubtitle?: string;
|
|
91
|
+
}>, quoted?: WAMessage, options?: {
|
|
92
|
+
headerText?: string;
|
|
93
|
+
text?: string;
|
|
94
|
+
footer?: string;
|
|
95
|
+
title?: string;
|
|
96
|
+
language?: string;
|
|
97
|
+
botJid?: string;
|
|
98
|
+
botName?: string;
|
|
99
|
+
creatorName?: string;
|
|
100
|
+
forwardingScore?: number;
|
|
101
|
+
}) => Promise<WAMessage>;
|
|
9
102
|
userDevicesCache: import("../Types/index.js").PossiblyExtendedCacheStore | NodeCache<JidWithDevice[]>;
|
|
10
103
|
devicesMutex: {
|
|
11
104
|
mutex<T>(code: () => Promise<T> | T): Promise<T>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"messages-send.d.ts","sourceRoot":"","sources":["../../src/Socket/messages-send.ts"],"names":[],"mappings":"AAAA,OAAO,SAAS,MAAM,uBAAuB,CAAA;AAC7C,OAAO,EAAE,IAAI,EAAE,MAAM,YAAY,CAAA;AACjC,OAAO,EAAE,KAAK,EAAE,MAAM,wBAAwB,CAAA;AAE9C,OAAO,KAAK,EACX,iBAAiB,EACjB,aAAa,EACb,kBAAkB,EAClB,mBAAmB,EACnB,4BAA4B,EAC5B,YAAY,EACZ,SAAS,EACT,YAAY,EACZ,MAAM,UAAU,CAAA;AACjB,OAAO,
|
|
1
|
+
{"version":3,"file":"messages-send.d.ts","sourceRoot":"","sources":["../../src/Socket/messages-send.ts"],"names":[],"mappings":"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"}
|