alwaysaqioo 1.1.1 → 1.1.3

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.
Files changed (50) hide show
  1. package/README.md +9 -110
  2. package/WAProto/GenerateStatics.sh +4 -0
  3. package/WAProto/WAProto.proto +3344 -0
  4. package/WAProto/index.d.ts +37016 -0
  5. package/WAProto/index.js +79296 -118676
  6. package/WASignalGroup/GroupProtocol.js +1697 -0
  7. package/WASignalGroup/ciphertext_message.js +16 -0
  8. package/WASignalGroup/group_cipher.js +120 -0
  9. package/WASignalGroup/group_session_builder.js +46 -0
  10. package/WASignalGroup/index.js +5 -0
  11. package/WASignalGroup/keyhelper.js +21 -0
  12. package/WASignalGroup/protobufs.js +3 -0
  13. package/WASignalGroup/queue_job.js +69 -0
  14. package/WASignalGroup/sender_chain_key.js +50 -0
  15. package/WASignalGroup/sender_key_distribution_message.js +78 -0
  16. package/WASignalGroup/sender_key_message.js +92 -0
  17. package/WASignalGroup/sender_key_name.js +70 -0
  18. package/WASignalGroup/sender_key_record.js +56 -0
  19. package/WASignalGroup/sender_key_state.js +129 -0
  20. package/WASignalGroup/sender_message_key.js +39 -0
  21. package/lib/Defaults/baileys-version.json +1 -1
  22. package/lib/Defaults/index.js +2 -19
  23. package/lib/Signal/Group/x +1 -0
  24. package/lib/Socket/chats.d.ts +32 -215
  25. package/lib/Socket/chats.js +75 -155
  26. package/lib/Socket/groups.js +18 -18
  27. package/lib/Socket/index.js +0 -1
  28. package/lib/Socket/messages-send.d.ts +2 -2
  29. package/lib/Socket/messages-send.js +348 -327
  30. package/lib/Socket/newsletter.js +21 -100
  31. package/lib/Socket/socket.js +30 -65
  32. package/lib/Types/Newsletter.d.ts +86 -97
  33. package/lib/Types/Newsletter.js +32 -38
  34. package/lib/Utils/generics.js +33 -65
  35. package/lib/Utils/messages-media.js +57 -145
  36. package/lib/Utils/messages.js +14 -26
  37. package/lib/Utils/signal.js +46 -48
  38. package/lib/Utils/use-multi-file-auth-state.js +6 -45
  39. package/lib/Utils/validate-connection.js +65 -89
  40. package/lib/WABinary/constants.d.ts +24 -27
  41. package/lib/WABinary/encode.js +123 -160
  42. package/lib/WABinary/generic-utils.d.ts +1 -2
  43. package/lib/WABinary/generic-utils.js +43 -123
  44. package/lib/WAUSync/index.d.ts +3 -0
  45. package/lib/index.d.ts +0 -1
  46. package/lib/index.js +2 -12
  47. package/package.json +98 -100
  48. package/engine-requirements.js +0 -10
  49. package/lib/Socket/luxu.d.ts +0 -268
  50. package/lib/Socket/luxu.js +0 -591
@@ -0,0 +1,129 @@
1
+ const SenderChainKey = require('./sender_chain_key');
2
+ const SenderMessageKey = require('./sender_message_key');
3
+
4
+ const protobufs = require('./protobufs');
5
+
6
+ class SenderKeyState {
7
+ MAX_MESSAGE_KEYS = 2000;
8
+
9
+ constructor(
10
+ id = null,
11
+ iteration = null,
12
+ chainKey = null,
13
+ signatureKeyPair = null,
14
+ signatureKeyPublic = null,
15
+ signatureKeyPrivate = null,
16
+ senderKeyStateStructure = null
17
+ ) {
18
+ if (senderKeyStateStructure) {
19
+ this.senderKeyStateStructure = senderKeyStateStructure;
20
+ } else {
21
+ if (signatureKeyPair) {
22
+ signatureKeyPublic = signatureKeyPair.public;
23
+ signatureKeyPrivate = signatureKeyPair.private;
24
+ }
25
+
26
+ chainKey = typeof chainKey === 'string' ? Buffer.from(chainKey, 'base64') : chainKey;
27
+ this.senderKeyStateStructure = protobufs.SenderKeyStateStructure.create();
28
+ const senderChainKeyStructure = protobufs.SenderChainKey.create();
29
+ senderChainKeyStructure.iteration = iteration;
30
+ senderChainKeyStructure.seed = chainKey;
31
+ this.senderKeyStateStructure.senderChainKey = senderChainKeyStructure;
32
+
33
+ const signingKeyStructure = protobufs.SenderSigningKey.create();
34
+ signingKeyStructure.public =
35
+ typeof signatureKeyPublic === 'string' ?
36
+ Buffer.from(signatureKeyPublic, 'base64') :
37
+ signatureKeyPublic;
38
+ if (signatureKeyPrivate) {
39
+ signingKeyStructure.private =
40
+ typeof signatureKeyPrivate === 'string' ?
41
+ Buffer.from(signatureKeyPrivate, 'base64') :
42
+ signatureKeyPrivate;
43
+ }
44
+ this.senderKeyStateStructure.senderKeyId = id;
45
+ this.senderChainKey = senderChainKeyStructure;
46
+ this.senderKeyStateStructure.senderSigningKey = signingKeyStructure;
47
+ }
48
+ this.senderKeyStateStructure.senderMessageKeys =
49
+ this.senderKeyStateStructure.senderMessageKeys || [];
50
+ }
51
+
52
+ SenderKeyState(senderKeyStateStructure) {
53
+ this.senderKeyStateStructure = senderKeyStateStructure;
54
+ }
55
+
56
+ getKeyId() {
57
+ return this.senderKeyStateStructure.senderKeyId;
58
+ }
59
+
60
+ getSenderChainKey() {
61
+ return new SenderChainKey(
62
+ this.senderKeyStateStructure.senderChainKey.iteration,
63
+ this.senderKeyStateStructure.senderChainKey.seed
64
+ );
65
+ }
66
+
67
+ setSenderChainKey(chainKey) {
68
+ const senderChainKeyStructure = protobufs.SenderChainKey.create({
69
+ iteration: chainKey.getIteration(),
70
+ seed: chainKey.getSeed(),
71
+ });
72
+ this.senderKeyStateStructure.senderChainKey = senderChainKeyStructure;
73
+ }
74
+
75
+ getSigningKeyPublic() {
76
+ return typeof this.senderKeyStateStructure.senderSigningKey.public === 'string' ?
77
+ Buffer.from(this.senderKeyStateStructure.senderSigningKey.public, 'base64') :
78
+ this.senderKeyStateStructure.senderSigningKey.public;
79
+ }
80
+
81
+ getSigningKeyPrivate() {
82
+ return typeof this.senderKeyStateStructure.senderSigningKey.private === 'string' ?
83
+ Buffer.from(this.senderKeyStateStructure.senderSigningKey.private, 'base64') :
84
+ this.senderKeyStateStructure.senderSigningKey.private;
85
+ }
86
+
87
+ hasSenderMessageKey(iteration) {
88
+ const list = this.senderKeyStateStructure.senderMessageKeys;
89
+ for (let o = 0; o < list.length; o++) {
90
+ const senderMessageKey = list[o];
91
+ if (senderMessageKey.iteration === iteration) return true;
92
+ }
93
+ return false;
94
+ }
95
+
96
+ addSenderMessageKey(senderMessageKey) {
97
+ const senderMessageKeyStructure = protobufs.SenderKeyStateStructure.create({
98
+ iteration: senderMessageKey.getIteration(),
99
+ seed: senderMessageKey.getSeed(),
100
+ });
101
+ this.senderKeyStateStructure.senderMessageKeys.push(senderMessageKeyStructure);
102
+
103
+ if (this.senderKeyStateStructure.senderMessageKeys.length > this.MAX_MESSAGE_KEYS) {
104
+ this.senderKeyStateStructure.senderMessageKeys.shift();
105
+ }
106
+ }
107
+
108
+ removeSenderMessageKey(iteration) {
109
+ let result = null;
110
+
111
+ this.senderKeyStateStructure.senderMessageKeys = this.senderKeyStateStructure.senderMessageKeys.filter(
112
+ senderMessageKey => {
113
+ if (senderMessageKey.iteration === iteration) result = senderMessageKey;
114
+ return senderMessageKey.iteration !== iteration;
115
+ }
116
+ );
117
+
118
+ if (result != null) {
119
+ return new SenderMessageKey(result.iteration, result.seed);
120
+ }
121
+ return null;
122
+ }
123
+
124
+ getStructure() {
125
+ return this.senderKeyStateStructure;
126
+ }
127
+ }
128
+
129
+ module.exports = SenderKeyState;
@@ -0,0 +1,39 @@
1
+ const { deriveSecrets } = require('libsignal/src/crypto');
2
+ class SenderMessageKey {
3
+ iteration = 0;
4
+
5
+ iv = Buffer.alloc(0);
6
+
7
+ cipherKey = Buffer.alloc(0);
8
+
9
+ seed = Buffer.alloc(0);
10
+
11
+ constructor(iteration, seed) {
12
+ const derivative = deriveSecrets(seed, Buffer.alloc(32), Buffer.from('WhisperGroup'));
13
+ const keys = new Uint8Array(32);
14
+ keys.set(new Uint8Array(derivative[0].slice(16)));
15
+ keys.set(new Uint8Array(derivative[1].slice(0, 16)), 16);
16
+ this.iv = Buffer.from(derivative[0].slice(0, 16));
17
+ this.cipherKey = Buffer.from(keys.buffer);
18
+
19
+ this.iteration = iteration;
20
+ this.seed = seed;
21
+ }
22
+
23
+ getIteration() {
24
+ return this.iteration;
25
+ }
26
+
27
+ getIv() {
28
+ return this.iv;
29
+ }
30
+
31
+ getCipherKey() {
32
+ return this.cipherKey;
33
+ }
34
+
35
+ getSeed() {
36
+ return this.seed;
37
+ }
38
+ }
39
+ module.exports = SenderMessageKey;
@@ -1,3 +1,3 @@
1
1
  {
2
- "version": [2, 3000, 1026924051]
2
+ "version": [2, 3000, 1023223821]
3
3
  }
@@ -26,39 +26,22 @@ exports.DEFAULT_CACHE_TTLS =
26
26
  exports.UNAUTHORIZED_CODES =
27
27
  void 0;
28
28
 
29
- const crypto_1 = require("crypto");
30
29
  const WAProto_1 = require("../../WAProto"),
31
30
  libsignal_1 = require("../Signal/libsignal"),
32
31
  Utils_1 = require("../Utils"),
33
32
  logger_1 = __importDefault(require("../Utils/logger")),
34
- baileys_version_json_1 = require("./baileys-version.json"),
35
- phonenumber_mcc_json_1 = __importDefault(require("./phonenumber-mcc.json"));
33
+ baileys_version_json_1 = require("./baileys-version.json");
36
34
 
37
35
  exports.UNAUTHORIZED_CODES = [401, 403, 419];
38
- exports.version = [2, 3000, 1027934701];
39
- exports.PHONENUMBER_MCC = phonenumber_mcc_json_1.default;
40
36
  exports.DEFAULT_ORIGIN = "https://web.whatsapp.com";
41
- exports.MOBILE_ENDPOINT = 'g.whatsapp.net';
42
- exports.MOBILE_PORT = 443;
43
37
  exports.DEF_CALLBACK_PREFIX = "CB:";
44
38
  exports.DEF_TAG_PREFIX = "TAG:";
45
39
  exports.PHONE_CONNECTION_CB = "CB:Pong";
46
40
  exports.WA_DEFAULT_EPHEMERAL = 604800;
47
- const WA_VERSION = '2.25.23.24';
48
- const WA_VERSION_HASH = (0, crypto_1.createHash)('md5').update(WA_VERSION).digest('hex');
49
- exports.MOBILE_TOKEN = Buffer.from('0a1mLfGUIBVrMKF1RdvLI5lkRBvof6vn0fD2QRSM' + WA_VERSION_HASH);
50
- exports.MOBILE_REGISTRATION_ENDPOINT = 'https://v.whatsapp.net/v2';
51
- exports.MOBILE_USERAGENT = `WhatsApp/${WA_VERSION} iOS/17.5.1 Device/Apple-iPhone_13`;
52
- exports.REGISTRATION_PUBLIC_KEY = Buffer.from([
53
- 5, 142, 140, 15, 116, 195, 235, 197, 215, 166, 134, 92, 108, 60, 132, 56, 86, 176, 97, 33, 204, 232, 234, 119, 77,
54
- 34, 251, 111, 18, 37, 18, 48, 45,
55
- ]);
56
41
  exports.NOISE_MODE = "Noise_XX_25519_AESGCM_SHA256\x00\x00\x00\x00";
57
42
  exports.DICT_VERSION = 2;
58
43
  exports.KEY_BUNDLE_TYPE = Buffer.from([5]);
59
44
  exports.NOISE_WA_HEADER = Buffer.from([87, 65, 6, exports.DICT_VERSION]);
60
- exports.PROTOCOL_VERSION = [5, 2];
61
- exports.MOBILE_NOISE_HEADER = Buffer.concat([Buffer.from('WA'), Buffer.from(exports.PROTOCOL_VERSION)]);
62
45
 
63
46
  exports.URL_REGEX = /https:\/\/(?![^:@\/\s]+:[^:@\/\s]+@)[a-zA-Z0-9.-]+\.[a-zA-Z]{2,}(:\d+)?(\/[^\s]*)?/g;
64
47
  exports.WA_CERT_DETAILS = { SERIAL: 0 };
@@ -73,7 +56,7 @@ exports.PROCESSABLE_HISTORY_TYPES = [
73
56
 
74
57
  exports.DEFAULT_CONNECTION_CONFIG = {
75
58
  version: baileys_version_json_1.version,
76
- browser: Utils_1.Browsers("Chrome"),
59
+ browser: Utils_1.Browsers.ubuntu("Chrome"),
77
60
  waWebSocketUrl: "wss://web.whatsapp.com/ws/chat",
78
61
  connectTimeoutMs: 2E4,
79
62
  keepAliveIntervalMs: 3E4,
@@ -0,0 +1 @@
1
+
@@ -1,115 +1,20 @@
1
1
  /// <reference types="node" />
2
- import { AxiosRequestConfig } from 'axios';
3
- import { KeyPair, SignedKeyPair, SocketConfig } from '../Types';
4
- export declare const makeRegistrationSocket: (config: SocketConfig) => {
5
- register: (code: string) => Promise<ExistsResponse>;
6
- requestRegistrationCode: (registrationOptions?: RegistrationOptions) => Promise<ExistsResponse>;
7
- logger: import("pino").Logger<import("pino").LoggerOptions>;
8
- getOrderDetails: (orderId: string, tokenBase64: string) => Promise<import("../Types").OrderDetails>;
9
- getCatalog: ({ jid, limit, cursor }: import("../Types").GetCatalogOptions) => Promise<{
10
- products: import("../Types").Product[];
11
- nextPageCursor: string | undefined;
12
- }>;
13
- getCollections: (jid?: string | undefined, limit?: number) => Promise<{
14
- collections: import("../Types").CatalogCollection[];
15
- }>;
16
- productCreate: (create: import("../Types").ProductCreate) => Promise<import("../Types").Product>;
17
- productDelete: (productIds: string[]) => Promise<{
18
- deleted: number;
19
- }>;
20
- productUpdate: (productId: string, update: import("../Types").ProductUpdate) => Promise<import("../Types").Product>;
21
- sendMessageAck: ({ tag, attrs, content }: import("../WABinary").BinaryNode) => Promise<void>;
22
- sendRetryRequest: (node: import("../WABinary").BinaryNode, forceIncludeKeys?: boolean) => Promise<void>;
23
- offerCall: (toJid: string, isVideo?: boolean) => Promise<{
24
- id: string;
25
- to: string;
26
- }>;
27
- rejectCall: (callId: string, callFrom: string) => Promise<void>;
28
- getPrivacyTokens: (jids: string[]) => Promise<import("../WABinary").BinaryNode>;
29
- assertSessions: (jids: string[], force: boolean) => Promise<boolean>;
30
- relayMessage: (jid: string, message: import("../Types").WAProto.IMessage, { messageId: msgId, participant, additionalAttributes, additionalNodes, useUserDevicesCache, cachedGroupMetadata, statusJidList }: import("../Types").MessageRelayOptions) => Promise<string>;
31
- sendReceipt: (jid: string, participant: string | undefined, messageIds: string[], type: import("../Types").MessageReceiptType) => Promise<void>;
32
- sendReceipts: (keys: import("../Types").WAProto.IMessageKey[], type: import("../Types").MessageReceiptType) => Promise<void>;
33
- getButtonArgs: (message: import("../Types").WAProto.IMessage) => {
34
- [key: string]: string;
2
+ import { Boom } from '@hapi/boom';
3
+ import { proto } from '../../WAProto';
4
+ import { ChatModification, MessageUpsertType, SocketConfig, WABusinessProfile, WAMediaUpload, WAPatchCreate, WAPresence, WAPrivacyOnlineValue, WAPrivacyValue, WAReadReceiptsValue } from '../Types';
5
+ import { BinaryNode } from '../WABinary';
6
+ export declare const makeChatsSocket: (config: SocketConfig) => {
7
+ processingMutex: {
8
+ mutex<T>(code: () => T | Promise<T>): Promise<T>;
35
9
  };
36
- readMessages: (keys: import("../Types").WAProto.IMessageKey[]) => Promise<void>;
37
- refreshMediaConn: (forceGet?: boolean) => Promise<import("../Types").MediaConnInfo>;
38
- getUSyncDevices: (jids: string[], useCache: boolean, ignoreZeroDevices: boolean) => Promise<import("../WABinary").JidWithDevice[]>;
39
- createParticipantNodes: (jids: string[], message: import("../Types").WAProto.IMessage, extraAttrs?: {
40
- [key: string]: string;
41
- } | undefined) => Promise<{
42
- nodes: import("../WABinary").BinaryNode[];
43
- shouldIncludeDeviceIdentity: boolean;
44
- }>;
45
- waUploadToServer: import("../Types").WAMediaUploadFunction;
46
10
  fetchPrivacySettings: (force?: boolean) => Promise<{
47
11
  [_: string]: string;
48
12
  }>;
49
- updateMediaMessage: (message: import("../Types").WAProto.IWebMessageInfo) => Promise<import("../Types").WAProto.IWebMessageInfo>;
50
- sendMessage: (jid: string, content: import("../Types").AnyMessageContent, options?: import("../Types").MiscMessageGenerationOptions) => Promise<import("../Types").WAProto.WebMessageInfo | undefined>;
51
- subscribeNewsletterUpdates: (jid: string) => Promise<{
52
- duration: string;
53
- }>;
54
- newsletterReactionMode: (jid: string, mode: import("../Types").NewsletterReactionMode) => Promise<void>;
55
- newsletterUpdateDescription: (jid: string, description?: string | undefined) => Promise<void>;
56
- newsletterUpdateName: (jid: string, name: string) => Promise<void>;
57
- newsletterUpdatePicture: (jid: string, content: import("../Types").WAMediaUpload) => Promise<void>;
58
- newsletterRemovePicture: (jid: string) => Promise<void>;
59
- newsletterUnfollow: (jid: string) => Promise<void>;
60
- newsletterFollow: (jid: string) => Promise<void>;
61
- newsletterUnmute: (jid: string) => Promise<void>;
62
- newsletterMute: (jid: string) => Promise<void>;
63
- newsletterAction: (jid: string, type: "mute" | "follow" | "unfollow" | "unmute") => Promise<void>;
64
- newsletterCreate: (name: string, description: string, reaction_codes: string) => Promise<import("../Types").NewsletterMetadata>;
65
- newsletterMetadata: (type: "invite" | "jid", key: string, role?: import("../Types").NewsletterViewRole | undefined) => Promise<import("../Types").NewsletterMetadata>;
66
- newsletterAdminCount: (jid: string) => Promise<number>;
67
- newsletterChangeOwner: (jid: string, user: string) => Promise<void>;
68
- newsletterDemote: (jid: string, user: string) => Promise<void>;
69
- newsletterDelete: (jid: string) => Promise<void>;
70
- newsletterReactMessage: (jid: string, serverId: string, code?: string | undefined) => Promise<void>;
71
- newsletterFetchMessages: (type: "invite" | "jid", key: string, count: number, after?: number | undefined) => Promise<import("../Types").NewsletterFetchedUpdate[]>;
72
- newsletterFetchUpdates: (jid: string, count: number, after?: number | undefined, since?: number | undefined) => Promise<import("../Types").NewsletterFetchedUpdate[]>;
73
- groupMetadata: (jid: string) => Promise<import("../Types").GroupMetadata>;
74
- groupCreate: (subject: string, participants: string[]) => Promise<import("../Types").GroupMetadata>;
75
- groupLeave: (id: string) => Promise<void>;
76
- /** the network code of your mobile network
77
- * @see {@link https://de.wikipedia.org/wiki/Mobile_Network_Code}
78
- */
79
- groupUpdateSubject: (jid: string, subject: string) => Promise<void>;
80
- groupRequestParticipantsList: (jid: string) => Promise<{
81
- [key: string]: string;
82
- }[]>;
83
- groupRequestParticipantsUpdate: (jid: string, participants: string[], action: "reject" | "approve") => Promise<{
84
- status: string;
85
- jid: string;
86
- }[]>;
87
- groupParticipantsUpdate: (jid: string, participants: string[], action: import("../Types").ParticipantAction) => Promise<{
88
- status: string;
89
- jid: string;
90
- content: import("../WABinary").BinaryNode;
91
- }[]>;
92
- groupUpdateDescription: (jid: string, description?: string | undefined) => Promise<void>;
93
- groupInviteCode: (jid: string) => Promise<string | undefined>;
94
- groupRevokeInvite: (jid: string) => Promise<string | undefined>;
95
- groupAcceptInvite: (code: string) => Promise<string | undefined>;
96
- groupAcceptInviteV4: (key: string | import("../Types").WAProto.IMessageKey, inviteMessage: import("../Types").WAProto.Message.IGroupInviteMessage) => Promise<string>;
97
- groupGetInviteInfo: (code: string) => Promise<import("../Types").GroupMetadata>;
98
- groupToggleEphemeral: (jid: string, ephemeralExpiration: number) => Promise<void>;
99
- groupSettingUpdate: (jid: string, setting: "announcement" | "locked" | "not_announcement" | "unlocked") => Promise<void>;
100
- groupMemberAddMode: (jid: string, mode: "all_member_add" | "admin_add") => Promise<void>;
101
- groupJoinApprovalMode: (jid: string, mode: "on" | "off") => Promise<void>;
102
- groupFetchAllParticipating: () => Promise<{
103
- [_: string]: import("../Types").GroupMetadata;
104
- }>;
105
- processingMutex: {
106
- mutex<T>(code: () => T | Promise<T>): Promise<T>;
107
- };
108
- upsertMessage: (msg: import("../Types").WAProto.IWebMessageInfo, type: import("../Types").MessageUpsertType) => Promise<void>;
109
- appPatch: (patchCreate: import("../Types").WAPatchCreate) => Promise<void>;
110
- sendPresenceUpdate: (type: import("../Types").WAPresence, toJid?: string | undefined) => Promise<void>;
111
- presenceSubscribe: (toJid: string, tcToken?: Buffer | undefined) => Promise<void>;
112
- profilePictureUrl: (jid: string, type?: "image" | "preview", timeoutMs?: number | undefined) => Promise<string | undefined>;
13
+ upsertMessage: (msg: proto.IWebMessageInfo, type: MessageUpsertType) => Promise<void>;
14
+ appPatch: (patchCreate: WAPatchCreate) => Promise<void>;
15
+ sendPresenceUpdate: (type: WAPresence, toJid?: string) => Promise<void>;
16
+ presenceSubscribe: (toJid: string, tcToken?: Buffer) => Promise<void>;
17
+ profilePictureUrl: (jid: string, type?: 'preview' | 'image', timeoutMs?: number) => Promise<string | undefined>;
113
18
  onWhatsApp: (...jids: string[]) => Promise<{
114
19
  exists: boolean;
115
20
  jid: string;
@@ -119,29 +24,33 @@ export declare const makeRegistrationSocket: (config: SocketConfig) => {
119
24
  status: string | undefined;
120
25
  setAt: Date;
121
26
  } | undefined>;
122
- updateProfilePicture: (jid: string, content: import("../Types").WAMediaUpload) => Promise<void>;
27
+ updateProfilePicture: (jid: string, content: WAMediaUpload) => Promise<void>;
28
+ getLidUser: (jid: string) => Promise<{
29
+ lid: string
30
+ id: string
31
+ }[] | undefined>
123
32
  removeProfilePicture: (jid: string) => Promise<void>;
124
33
  updateProfileStatus: (status: string) => Promise<void>;
125
34
  updateProfileName: (name: string) => Promise<void>;
126
- updateBlockStatus: (jid: string, action: "block" | "unblock") => Promise<void>;
127
- updateLastSeenPrivacy: (value: import("../Types").WAPrivacyValue) => Promise<void>;
128
- updateOnlinePrivacy: (value: import("../Types").WAPrivacyOnlineValue) => Promise<void>;
129
- updateProfilePicturePrivacy: (value: import("../Types").WAPrivacyValue) => Promise<void>;
130
- updateStatusPrivacy: (value: import("../Types").WAPrivacyValue) => Promise<void>;
131
- updateReadReceiptsPrivacy: (value: import("../Types").WAReadReceiptsValue) => Promise<void>;
132
- updateGroupsAddPrivacy: (value: import("../Types").WAPrivacyValue) => Promise<void>;
35
+ updateBlockStatus: (jid: string, action: 'block' | 'unblock') => Promise<void>;
36
+ updateLastSeenPrivacy: (value: WAPrivacyValue) => Promise<void>;
37
+ updateOnlinePrivacy: (value: WAPrivacyOnlineValue) => Promise<void>;
38
+ updateProfilePicturePrivacy: (value: WAPrivacyValue) => Promise<void>;
39
+ updateStatusPrivacy: (value: WAPrivacyValue) => Promise<void>;
40
+ updateReadReceiptsPrivacy: (value: WAReadReceiptsValue) => Promise<void>;
41
+ updateGroupsAddPrivacy: (value: WAPrivacyValue) => Promise<void>;
133
42
  updateDefaultDisappearingMode: (duration: number) => Promise<void>;
134
- getBusinessProfile: (jid: string) => Promise<void | import("../Types").WABusinessProfile>;
43
+ getBusinessProfile: (jid: string) => Promise<WABusinessProfile | void>;
135
44
  resyncAppState: (collections: readonly ("critical_block" | "critical_unblock_low" | "regular_high" | "regular_low" | "regular")[], isInitialSync: boolean) => Promise<void>;
136
- chatModify: (mod: import("../Types").ChatModification, jid: string) => Promise<void>;
137
- cleanDirtyBits: (type: "account_sync" | "groups", fromTimestamp?: string | number | undefined) => Promise<void>;
45
+ chatModify: (mod: ChatModification, jid: string) => Promise<void>;
46
+ cleanDirtyBits: (type: 'account_sync' | 'groups', fromTimestamp?: number | string) => Promise<void>;
138
47
  addChatLabel: (jid: string, labelId: string) => Promise<void>;
139
48
  removeChatLabel: (jid: string, labelId: string) => Promise<void>;
140
49
  addMessageLabel: (jid: string, messageId: string, labelId: string) => Promise<void>;
141
50
  removeMessageLabel: (jid: string, messageId: string, labelId: string) => Promise<void>;
142
51
  star: (jid: string, messages: {
143
52
  id: string;
144
- fromMe?: boolean | undefined;
53
+ fromMe?: boolean;
145
54
  }[], star: boolean) => Promise<void>;
146
55
  type: "md";
147
56
  ws: any;
@@ -159,109 +68,17 @@ export declare const makeRegistrationSocket: (config: SocketConfig) => {
159
68
  signalRepository: import("../Types").SignalRepository;
160
69
  user: import("../Types").Contact | undefined;
161
70
  generateMessageTag: () => string;
162
- query: (node: import("../WABinary").BinaryNode, timeoutMs?: number | undefined) => Promise<import("../WABinary").BinaryNode>;
71
+ query: (node: BinaryNode, timeoutMs?: number | undefined) => Promise<BinaryNode>;
163
72
  waitForMessage: <T_2>(msgId: string, timeoutMs?: number | undefined) => Promise<T_2>;
164
73
  waitForSocketOpen: () => Promise<void>;
165
74
  sendRawMessage: (data: Uint8Array | Buffer) => Promise<void>;
166
- sendNode: (frame: import("../WABinary").BinaryNode) => Promise<void>;
75
+ sendNode: (frame: BinaryNode) => Promise<void>;
167
76
  logout: (msg?: string | undefined) => Promise<void>;
168
77
  end: (error: Error | undefined) => void;
169
- onUnexpectedError: (err: Error | import("@hapi/boom").Boom<any>, msg: string) => void;
78
+ onUnexpectedError: (err: Error | Boom<any>, msg: string) => void;
170
79
  uploadPreKeys: (count?: number) => Promise<void>;
171
80
  uploadPreKeysToServerIfRequired: () => Promise<void>;
172
81
  requestPairingCode: (phoneNumber: string) => Promise<string>;
173
82
  waitForConnectionUpdate: (check: (u: Partial<import("../Types").ConnectionState>) => boolean | undefined, timeoutMs?: number | undefined) => Promise<void>;
174
- sendWAMBuffer: (wamBuffer: Buffer) => Promise<import("../WABinary").BinaryNode>;
175
- };
176
- export interface RegistrationData {
177
- registrationId: number;
178
- signedPreKey: SignedKeyPair;
179
- noiseKey: KeyPair;
180
- signedIdentityKey: KeyPair;
181
- identityId: Buffer;
182
- phoneId: string;
183
- deviceId: string;
184
- backupToken: Buffer;
185
- }
186
- export interface RegistrationOptions {
187
- /** your phone number */
188
- phoneNumber?: string;
189
- /** the country code of your phone number */
190
- phoneNumberCountryCode: string;
191
- /** your phone number without country code */
192
- phoneNumberNationalNumber: string;
193
- /** the country code of your mobile network
194
- * @see {@link https://de.wikipedia.org/wiki/Mobile_Country_Code}
195
- */
196
- phoneNumberMobileCountryCode: string;
197
- /** the network code of your mobile network
198
- * @see {@link https://de.wikipedia.org/wiki/Mobile_Network_Code}
199
- */
200
- phoneNumberMobileNetworkCode: string;
201
- /**
202
- * How to send the one time code
203
- */
204
- method?: 'sms' | 'voice' | 'captcha';
205
- /**
206
- * The captcha code if it was requested
207
- */
208
- captcha?: string;
209
- }
210
- export type RegistrationParams = RegistrationData & RegistrationOptions;
211
- export declare function registrationParams(params: RegistrationParams): {
212
- cc: string;
213
- in: string;
214
- Rc: string;
215
- lg: string;
216
- lc: string;
217
- mistyped: string;
218
- authkey: string;
219
- e_regid: string;
220
- e_keytype: string;
221
- e_ident: string;
222
- e_skey_id: string;
223
- e_skey_val: string;
224
- e_skey_sig: string;
225
- fdid: string;
226
- network_ratio_type: string;
227
- expid: string;
228
- simnum: string;
229
- hasinrc: string;
230
- pid: string;
231
- id: string;
232
- backup_token: string;
233
- token: string;
234
- fraud_checkpoint_code: string | undefined;
83
+ sendWAMBuffer: (wamBuffer: Buffer) => Promise<BinaryNode>;
235
84
  };
236
- /**
237
- * Requests a registration code for the given phone number.
238
- */
239
- export declare function mobileRegisterCode(params: RegistrationParams, fetchOptions?: AxiosRequestConfig): Promise<ExistsResponse>;
240
- export declare function mobileRegisterExists(params: RegistrationParams, fetchOptions?: AxiosRequestConfig): Promise<ExistsResponse>;
241
- /**
242
- * Registers the phone number on whatsapp with the received OTP code.
243
- */
244
- export declare function mobileRegister(params: RegistrationParams & {
245
- code: string;
246
- }, fetchOptions?: AxiosRequestConfig): Promise<ExistsResponse>;
247
- /**
248
- * Encrypts the given string as AEAD aes-256-gcm with the public whatsapp key and a random keypair.
249
- */
250
- export declare function mobileRegisterEncrypt(data: string): string;
251
- export declare function mobileRegisterFetch(path: string, opts?: AxiosRequestConfig): Promise<ExistsResponse>;
252
- export interface ExistsResponse {
253
- status: 'fail' | 'sent';
254
- voice_length?: number;
255
- voice_wait?: number;
256
- sms_length?: number;
257
- sms_wait?: number;
258
- reason?: 'incorrect' | 'missing_param' | 'code_checkpoint';
259
- login?: string;
260
- flash_type?: number;
261
- ab_hash?: string;
262
- ab_key?: string;
263
- exp_cfg?: string;
264
- lid?: string;
265
- image_blob?: string;
266
- audio_blob?: string;
267
- }