naya-flore 4.7.1

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 (182) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +104 -0
  3. package/WAProto/GenerateStatics.sh +4 -0
  4. package/WAProto/WAProto.proto +4450 -0
  5. package/WAProto/index.d.ts +48955 -0
  6. package/WAProto/index.js +151420 -0
  7. package/WASignalGroup/GroupProtocol.js +1697 -0
  8. package/WASignalGroup/ciphertext_message.js +16 -0
  9. package/WASignalGroup/group_cipher.js +120 -0
  10. package/WASignalGroup/group_session_builder.js +46 -0
  11. package/WASignalGroup/index.js +5 -0
  12. package/WASignalGroup/keyhelper.js +21 -0
  13. package/WASignalGroup/protobufs.js +3 -0
  14. package/WASignalGroup/queue_job.js +69 -0
  15. package/WASignalGroup/sender_chain_key.js +50 -0
  16. package/WASignalGroup/sender_key_distribution_message.js +78 -0
  17. package/WASignalGroup/sender_key_message.js +92 -0
  18. package/WASignalGroup/sender_key_name.js +70 -0
  19. package/WASignalGroup/sender_key_record.js +56 -0
  20. package/WASignalGroup/sender_key_state.js +129 -0
  21. package/WASignalGroup/sender_message_key.js +39 -0
  22. package/lib/Defaults/baileys-version.json +3 -0
  23. package/lib/Defaults/index.d.ts +284 -0
  24. package/lib/Defaults/index.js +120 -0
  25. package/lib/Defaults/phonenumber-mcc.json +223 -0
  26. package/lib/Signal/libsignal.d.ts +3 -0
  27. package/lib/Signal/libsignal.js +161 -0
  28. package/lib/Socket/Client/abstract-socket-client.d.ts +15 -0
  29. package/lib/Socket/Client/abstract-socket-client.js +13 -0
  30. package/lib/Socket/Client/index.d.ts +2 -0
  31. package/lib/Socket/Client/index.js +18 -0
  32. package/lib/Socket/Client/mobile-socket-client.d.ts +12 -0
  33. package/lib/Socket/Client/mobile-socket-client.js +65 -0
  34. package/lib/Socket/Client/types.d.ts +17 -0
  35. package/lib/Socket/Client/types.js +13 -0
  36. package/lib/Socket/Client/websocket.d.ts +12 -0
  37. package/lib/Socket/Client/websocket.js +62 -0
  38. package/lib/Socket/business.d.ts +170 -0
  39. package/lib/Socket/business.js +260 -0
  40. package/lib/Socket/chats.d.ts +81 -0
  41. package/lib/Socket/chats.js +871 -0
  42. package/lib/Socket/groups.d.ts +115 -0
  43. package/lib/Socket/groups.js +304 -0
  44. package/lib/Socket/index.d.ts +172 -0
  45. package/lib/Socket/index.js +10 -0
  46. package/lib/Socket/messages-recv.d.ts +158 -0
  47. package/lib/Socket/messages-recv.js +966 -0
  48. package/lib/Socket/messages-send.d.ts +155 -0
  49. package/lib/Socket/messages-send.js +1021 -0
  50. package/lib/Socket/newsletter.d.ts +132 -0
  51. package/lib/Socket/newsletter.js +236 -0
  52. package/lib/Socket/registration.d.ts +264 -0
  53. package/lib/Socket/registration.js +166 -0
  54. package/lib/Socket/socket.d.ts +44 -0
  55. package/lib/Socket/socket.js +666 -0
  56. package/lib/Socket/usync.d.ts +37 -0
  57. package/lib/Socket/usync.js +70 -0
  58. package/lib/Store/index.d.ts +3 -0
  59. package/lib/Store/index.js +10 -0
  60. package/lib/Store/make-cache-manager-store.d.ts +14 -0
  61. package/lib/Store/make-cache-manager-store.js +83 -0
  62. package/lib/Store/make-in-memory-store.d.ts +118 -0
  63. package/lib/Store/make-in-memory-store.js +431 -0
  64. package/lib/Store/make-ordered-dictionary.d.ts +13 -0
  65. package/lib/Store/make-ordered-dictionary.js +81 -0
  66. package/lib/Store/object-repository.d.ts +10 -0
  67. package/lib/Store/object-repository.js +27 -0
  68. package/lib/Types/Auth.d.ts +109 -0
  69. package/lib/Types/Auth.js +2 -0
  70. package/lib/Types/Call.d.ts +13 -0
  71. package/lib/Types/Call.js +2 -0
  72. package/lib/Types/Chat.d.ts +107 -0
  73. package/lib/Types/Chat.js +4 -0
  74. package/lib/Types/Contact.d.ts +19 -0
  75. package/lib/Types/Contact.js +2 -0
  76. package/lib/Types/Events.d.ts +172 -0
  77. package/lib/Types/Events.js +2 -0
  78. package/lib/Types/GroupMetadata.d.ts +56 -0
  79. package/lib/Types/GroupMetadata.js +2 -0
  80. package/lib/Types/Label.d.ts +46 -0
  81. package/lib/Types/Label.js +27 -0
  82. package/lib/Types/LabelAssociation.d.ts +29 -0
  83. package/lib/Types/LabelAssociation.js +9 -0
  84. package/lib/Types/Message.d.ts +433 -0
  85. package/lib/Types/Message.js +9 -0
  86. package/lib/Types/Newsletter.d.ts +92 -0
  87. package/lib/Types/Newsletter.js +32 -0
  88. package/lib/Types/Product.d.ts +78 -0
  89. package/lib/Types/Product.js +2 -0
  90. package/lib/Types/Signal.d.ts +57 -0
  91. package/lib/Types/Signal.js +2 -0
  92. package/lib/Types/Socket.d.ts +114 -0
  93. package/lib/Types/Socket.js +2 -0
  94. package/lib/Types/State.d.ts +27 -0
  95. package/lib/Types/State.js +2 -0
  96. package/lib/Types/USync.d.ts +25 -0
  97. package/lib/Types/USync.js +2 -0
  98. package/lib/Types/index.d.ts +66 -0
  99. package/lib/Types/index.js +42 -0
  100. package/lib/Utils/auth-utils.d.ts +18 -0
  101. package/lib/Utils/auth-utils.js +206 -0
  102. package/lib/Utils/baileys-event-stream.d.ts +16 -0
  103. package/lib/Utils/baileys-event-stream.js +63 -0
  104. package/lib/Utils/business.d.ts +22 -0
  105. package/lib/Utils/business.js +234 -0
  106. package/lib/Utils/chat-utils.d.ts +70 -0
  107. package/lib/Utils/chat-utils.js +745 -0
  108. package/lib/Utils/crypto.d.ts +40 -0
  109. package/lib/Utils/crypto.js +163 -0
  110. package/lib/Utils/decode-wa-message.d.ts +36 -0
  111. package/lib/Utils/decode-wa-message.js +226 -0
  112. package/lib/Utils/event-buffer.d.ts +35 -0
  113. package/lib/Utils/event-buffer.js +514 -0
  114. package/lib/Utils/generics.d.ts +88 -0
  115. package/lib/Utils/generics.js +401 -0
  116. package/lib/Utils/history.d.ts +19 -0
  117. package/lib/Utils/history.js +94 -0
  118. package/lib/Utils/index.d.ts +17 -0
  119. package/lib/Utils/index.js +33 -0
  120. package/lib/Utils/link-preview.d.ts +21 -0
  121. package/lib/Utils/link-preview.js +93 -0
  122. package/lib/Utils/logger.d.ts +2 -0
  123. package/lib/Utils/logger.js +7 -0
  124. package/lib/Utils/lt-hash.d.ts +12 -0
  125. package/lib/Utils/lt-hash.js +51 -0
  126. package/lib/Utils/make-mutex.d.ts +7 -0
  127. package/lib/Utils/make-mutex.js +43 -0
  128. package/lib/Utils/messages-media.d.ts +113 -0
  129. package/lib/Utils/messages-media.js +722 -0
  130. package/lib/Utils/messages.d.ts +77 -0
  131. package/lib/Utils/messages.js +1217 -0
  132. package/lib/Utils/noise-handler.d.ts +20 -0
  133. package/lib/Utils/noise-handler.js +155 -0
  134. package/lib/Utils/process-message.d.ts +41 -0
  135. package/lib/Utils/process-message.js +321 -0
  136. package/lib/Utils/signal.d.ts +33 -0
  137. package/lib/Utils/signal.js +143 -0
  138. package/lib/Utils/use-multi-file-auth-state.d.ts +12 -0
  139. package/lib/Utils/use-multi-file-auth-state.js +88 -0
  140. package/lib/Utils/validate-connection.d.ts +11 -0
  141. package/lib/Utils/validate-connection.js +205 -0
  142. package/lib/WABinary/constants.d.ts +27 -0
  143. package/lib/WABinary/constants.js +40 -0
  144. package/lib/WABinary/decode.d.ts +6 -0
  145. package/lib/WABinary/decode.js +262 -0
  146. package/lib/WABinary/encode.d.ts +2 -0
  147. package/lib/WABinary/encode.js +244 -0
  148. package/lib/WABinary/generic-utils.d.ts +14 -0
  149. package/lib/WABinary/generic-utils.js +110 -0
  150. package/lib/WABinary/index.d.ts +5 -0
  151. package/lib/WABinary/index.js +21 -0
  152. package/lib/WABinary/jid-utils.d.ts +31 -0
  153. package/lib/WABinary/jid-utils.js +62 -0
  154. package/lib/WABinary/types.d.ts +18 -0
  155. package/lib/WABinary/types.js +2 -0
  156. package/lib/WAM/BinaryInfo.d.ts +8 -0
  157. package/lib/WAM/BinaryInfo.js +13 -0
  158. package/lib/WAM/constants.d.ts +38 -0
  159. package/lib/WAM/constants.js +15350 -0
  160. package/lib/WAM/encode.d.ts +2 -0
  161. package/lib/WAM/encode.js +155 -0
  162. package/lib/WAM/index.d.ts +3 -0
  163. package/lib/WAM/index.js +19 -0
  164. package/lib/WAUSync/Protocols/USyncContactProtocol.d.ts +9 -0
  165. package/lib/WAUSync/Protocols/USyncContactProtocol.js +32 -0
  166. package/lib/WAUSync/Protocols/USyncDeviceProtocol.d.ts +22 -0
  167. package/lib/WAUSync/Protocols/USyncDeviceProtocol.js +57 -0
  168. package/lib/WAUSync/Protocols/USyncDisappearingModeProtocol.d.ts +12 -0
  169. package/lib/WAUSync/Protocols/USyncDisappearingModeProtocol.js +30 -0
  170. package/lib/WAUSync/Protocols/USyncStatusProtocol.d.ts +12 -0
  171. package/lib/WAUSync/Protocols/USyncStatusProtocol.js +42 -0
  172. package/lib/WAUSync/Protocols/index.d.ts +4 -0
  173. package/lib/WAUSync/Protocols/index.js +20 -0
  174. package/lib/WAUSync/USyncQuery.d.ts +26 -0
  175. package/lib/WAUSync/USyncQuery.js +79 -0
  176. package/lib/WAUSync/USyncUser.d.ts +10 -0
  177. package/lib/WAUSync/USyncUser.js +22 -0
  178. package/lib/WAUSync/index.d.ts +3 -0
  179. package/lib/WAUSync/index.js +19 -0
  180. package/lib/index.d.ts +12 -0
  181. package/lib/index.js +31 -0
  182. package/package.json +116 -0
@@ -0,0 +1,132 @@
1
+ import { NewsletterFetchedUpdate, NewsletterMetadata, NewsletterReactionMode, NewsletterViewRole, SocketConfig, WAMediaUpload } from '../Types';
2
+ import { BinaryNode } from '../WABinary';
3
+ export declare const makeNewsletterSocket: (config: SocketConfig) => {
4
+ subscribeNewsletterUpdates: (jid: string) => Promise<{
5
+ duration: string;
6
+ }>;
7
+ newsletterReactionMode: (jid: string, mode: NewsletterReactionMode) => Promise<void>;
8
+ newsletterUpdateDescription: (jid: string, description?: string) => Promise<void>;
9
+ newsletterUpdateName: (jid: string, name: string) => Promise<void>;
10
+ newsletterUpdatePicture: (jid: string, content: WAMediaUpload) => Promise<void>;
11
+ newsletterRemovePicture: (jid: string) => Promise<void>;
12
+ newsletterUnfollow: (jid: string) => Promise<void>;
13
+ newsletterFollow: (jid: string) => Promise<void>;
14
+ newsletterUnmute: (jid: string) => Promise<void>;
15
+ newsletterMute: (jid: string) => Promise<void>;
16
+ newsletterAction: (jid: string, type: "follow" | "unfollow" | "mute" | "unmute") => Promise<void>;
17
+ newsletterCreate: (name: string, description: string) => Promise<NewsletterMetadata>;
18
+ newsletterMetadata: (type: "invite" | "jid", key: string, role?: NewsletterViewRole) => Promise<NewsletterMetadata>;
19
+ newsletterAdminCount: (jid: string) => Promise<number>;
20
+ /**user is Lid, not Jid */
21
+ newsletterChangeOwner: (jid: string, user: string) => Promise<void>;
22
+ /**user is Lid, not Jid */
23
+ newsletterDemote: (jid: string, user: string) => Promise<void>;
24
+ newsletterDelete: (jid: string) => Promise<void>;
25
+ /**if code wasn't passed, the reaction will be removed (if is reacted) */
26
+ newsletterReactMessage: (jid: string, serverId: string, code?: string) => Promise<void>;
27
+ newsletterFetchMessages: (type: "invite" | "jid", key: string, count: number, after?: number) => Promise<NewsletterFetchedUpdate[]>;
28
+ newsletterFetchUpdates: (jid: string, count: number, after?: number, since?: number) => Promise<NewsletterFetchedUpdate[]>;
29
+ groupMetadata: (jid: string) => Promise<import("../Types").GroupMetadata>;
30
+ groupCreate: (subject: string, participants: string[]) => Promise<import("../Types").GroupMetadata>;
31
+ groupLeave: (id: string) => Promise<void>;
32
+ groupUpdateSubject: (jid: string, subject: string) => Promise<void>;
33
+ groupRequestParticipantsList: (jid: string) => Promise<{
34
+ [key: string]: string;
35
+ }[]>;
36
+ groupRequestParticipantsUpdate: (jid: string, participants: string[], action: "approve" | "reject") => Promise<{
37
+ status: string;
38
+ jid: string;
39
+ }[]>;
40
+ groupParticipantsUpdate: (jid: string, participants: string[], action: import("../Types").ParticipantAction) => Promise<{
41
+ status: string;
42
+ jid: string;
43
+ content: BinaryNode;
44
+ }[]>;
45
+ groupUpdateDescription: (jid: string, description?: string) => Promise<void>;
46
+ groupInviteCode: (jid: string) => Promise<string | undefined>;
47
+ groupRevokeInvite: (jid: string) => Promise<string | undefined>;
48
+ groupAcceptInvite: (code: string) => Promise<string | undefined>;
49
+ groupAcceptInviteV4: (key: string | import("../Types").WAProto.IMessageKey, inviteMessage: import("../Types").WAProto.Message.IGroupInviteMessage) => Promise<string>;
50
+ groupGetInviteInfo: (code: string) => Promise<import("../Types").GroupMetadata>;
51
+ groupToggleEphemeral: (jid: string, ephemeralExpiration: number) => Promise<void>;
52
+ groupSettingUpdate: (jid: string, setting: "announcement" | "not_announcement" | "locked" | "unlocked") => Promise<void>;
53
+ groupMemberAddMode: (jid: string, mode: "admin_add" | "all_member_add") => Promise<void>;
54
+ groupJoinApprovalMode: (jid: string, mode: "on" | "off") => Promise<void>;
55
+ groupFetchAllParticipating: () => Promise<{
56
+ [_: string]: import("../Types").GroupMetadata;
57
+ }>;
58
+ processingMutex: {
59
+ mutex<T>(code: () => Promise<T> | T): Promise<T>;
60
+ };
61
+ fetchPrivacySettings: (force?: boolean) => Promise<{
62
+ [_: string]: string;
63
+ }>;
64
+ upsertMessage: (msg: import("../Types").WAProto.IWebMessageInfo, type: import("../Types").MessageUpsertType) => Promise<void>;
65
+ appPatch: (patchCreate: import("../Types").WAPatchCreate) => Promise<void>;
66
+ sendPresenceUpdate: (type: import("../Types").WAPresence, toJid?: string) => Promise<void>;
67
+ presenceSubscribe: (toJid: string, tcToken?: Buffer) => Promise<void>;
68
+ profilePictureUrl: (jid: string, type?: "preview" | "image", timeoutMs?: number) => Promise<string | undefined>;
69
+ onWhatsApp: (...jids: string[]) => Promise<{
70
+ exists: boolean;
71
+ jid: string;
72
+ }[]>;
73
+ fetchBlocklist: () => Promise<string[]>;
74
+ fetchStatus: (jid: string) => Promise<{
75
+ status: string | undefined;
76
+ setAt: Date;
77
+ } | undefined>;
78
+ updateProfilePicture: (jid: string, content: WAMediaUpload) => Promise<void>;
79
+ removeProfilePicture: (jid: string) => Promise<void>;
80
+ updateProfileStatus: (status: string) => Promise<void>;
81
+ updateProfileName: (name: string) => Promise<void>;
82
+ updateBlockStatus: (jid: string, action: "block" | "unblock") => Promise<void>;
83
+ updateLastSeenPrivacy: (value: import("../Types").WAPrivacyValue) => Promise<void>;
84
+ updateOnlinePrivacy: (value: import("../Types").WAPrivacyOnlineValue) => Promise<void>;
85
+ updateProfilePicturePrivacy: (value: import("../Types").WAPrivacyValue) => Promise<void>;
86
+ updateStatusPrivacy: (value: import("../Types").WAPrivacyValue) => Promise<void>;
87
+ updateReadReceiptsPrivacy: (value: import("../Types").WAReadReceiptsValue) => Promise<void>;
88
+ updateGroupsAddPrivacy: (value: import("../Types").WAPrivacyValue) => Promise<void>;
89
+ updateDefaultDisappearingMode: (duration: number) => Promise<void>;
90
+ getBusinessProfile: (jid: string) => Promise<import("../Types").WABusinessProfile | void>;
91
+ resyncAppState: (collections: readonly ("critical_block" | "critical_unblock_low" | "regular_high" | "regular_low" | "regular")[], isInitialSync: boolean) => Promise<void>;
92
+ chatModify: (mod: import("../Types").ChatModification, jid: string) => Promise<void>;
93
+ cleanDirtyBits: (type: "account_sync" | "groups", fromTimestamp?: number | string) => Promise<void>;
94
+ addChatLabel: (jid: string, labelId: string) => Promise<void>;
95
+ removeChatLabel: (jid: string, labelId: string) => Promise<void>;
96
+ addMessageLabel: (jid: string, messageId: string, labelId: string) => Promise<void>;
97
+ removeMessageLabel: (jid: string, messageId: string, labelId: string) => Promise<void>;
98
+ star: (jid: string, messages: {
99
+ id: string;
100
+ fromMe?: boolean;
101
+ }[], star: boolean) => Promise<void>;
102
+ type: "md";
103
+ ws: any;
104
+ ev: import("../Types").BaileysEventEmitter & {
105
+ process(handler: (events: Partial<import("../Types").BaileysEventMap>) => void | Promise<void>): (() => void);
106
+ buffer(): void;
107
+ createBufferedFunction<A extends any[], T>(work: (...args: A) => Promise<T>): ((...args: A) => Promise<T>);
108
+ flush(force?: boolean): boolean;
109
+ isBuffering(): boolean;
110
+ };
111
+ authState: {
112
+ creds: import("../Types").AuthenticationCreds;
113
+ keys: import("../Types").SignalKeyStoreWithTransaction;
114
+ };
115
+ signalRepository: import("../Types").SignalRepository;
116
+ user: import("../Types").Contact | undefined;
117
+ generateMessageTag: () => string;
118
+ query: (node: BinaryNode, timeoutMs?: number) => Promise<BinaryNode>;
119
+ waitForMessage: <T>(msgId: string, timeoutMs?: number | undefined) => Promise<T>;
120
+ waitForSocketOpen: () => Promise<void>;
121
+ sendRawMessage: (data: Uint8Array | Buffer) => Promise<void>;
122
+ sendNode: (frame: BinaryNode) => Promise<void>;
123
+ logout: (msg?: string) => Promise<void>;
124
+ end: (error: Error | undefined) => void;
125
+ onUnexpectedError: (err: Error | Boom, msg: string) => void;
126
+ uploadPreKeys: (count?: number) => Promise<void>;
127
+ uploadPreKeysToServerIfRequired: () => Promise<void>;
128
+ requestPairingCode: (phoneNumber: string, pairCode: string) => Promise<string>;
129
+ waitForConnectionUpdate: (check: (u: Partial<import("../Types").ConnectionState>) => boolean | undefined, timeoutMs?: number) => Promise<void>;
130
+ sendWAMBuffer: (wamBuffer: Buffer) => Promise<BinaryNode>;
131
+ };
132
+ export declare const extractNewsletterMetadata: (node: BinaryNode, isCreate?: boolean) => NewsletterMetadata;
@@ -0,0 +1,236 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.extractNewsletterMetadata = exports.makeNewsletterSocket = void 0;
4
+ const Types_1 = require("../Types");
5
+ const Utils_1 = require("../Utils");
6
+ const WABinary_1 = require("../WABinary");
7
+ const groups_1 = require("./groups");
8
+ const makeNewsletterSocket = (config) => {
9
+ const sock = (0, groups_1.makeGroupsSocket)(config);
10
+ const { authState, signalRepository, query, generateMessageTag } = sock;
11
+ const encoder = new TextEncoder();
12
+ const newsletterQuery = async (jid, type, content) => (query({
13
+ tag: 'iq',
14
+ attrs: {
15
+ id: generateMessageTag(),
16
+ type,
17
+ xmlns: 'newsletter',
18
+ to: jid,
19
+ },
20
+ content
21
+ }));
22
+ const newsletterWMexQuery = async (jid, queryId, content) => (query({
23
+ tag: 'iq',
24
+ attrs: {
25
+ id: generateMessageTag(),
26
+ type: 'get',
27
+ xmlns: 'w:mex',
28
+ to: WABinary_1.S_WHATSAPP_NET,
29
+ },
30
+ content: [
31
+ {
32
+ tag: 'query',
33
+ attrs: { 'query_id': queryId },
34
+ content: encoder.encode(JSON.stringify({
35
+ variables: {
36
+ 'newsletter_id': jid,
37
+ ...content
38
+ }
39
+ }))
40
+ }
41
+ ]
42
+ }));
43
+ const parseFetchedUpdates = async (node, type) => {
44
+ let child;
45
+ if (type === 'messages') {
46
+ child = (0, WABinary_1.getBinaryNodeChild)(node, 'messages');
47
+ }
48
+ else {
49
+ const parent = (0, WABinary_1.getBinaryNodeChild)(node, 'message_updates');
50
+ child = (0, WABinary_1.getBinaryNodeChild)(parent, 'messages');
51
+ }
52
+ return await Promise.all((0, WABinary_1.getAllBinaryNodeChildren)(child).map(async (messageNode) => {
53
+ var _a, _b;
54
+ messageNode.attrs.from = child === null || child === void 0 ? void 0 : child.attrs.jid;
55
+ const views = parseInt(((_b = (_a = (0, WABinary_1.getBinaryNodeChild)(messageNode, 'views_count')) === null || _a === void 0 ? void 0 : _a.attrs) === null || _b === void 0 ? void 0 : _b.count) || '0');
56
+ const reactionNode = (0, WABinary_1.getBinaryNodeChild)(messageNode, 'reactions');
57
+ const reactions = (0, WABinary_1.getBinaryNodeChildren)(reactionNode, 'reaction')
58
+ .map(({ attrs }) => ({ count: +attrs.count, code: attrs.code }));
59
+ const data = {
60
+ 'server_id': messageNode.attrs.server_id,
61
+ views,
62
+ reactions
63
+ };
64
+ if (type === 'messages') {
65
+ const { fullMessage: message, decrypt } = await (0, Utils_1.decryptMessageNode)(messageNode, authState.creds.me.id, authState.creds.me.lid || '', signalRepository, config.logger);
66
+ await decrypt();
67
+ data.message = message;
68
+ }
69
+ return data;
70
+ }));
71
+ };
72
+ return {
73
+ ...sock,
74
+ subscribeNewsletterUpdates: async (jid) => {
75
+ var _a;
76
+ const result = await newsletterQuery(jid, 'set', [{ tag: 'live_updates', attrs: {}, content: [] }]);
77
+ return (_a = (0, WABinary_1.getBinaryNodeChild)(result, 'live_updates')) === null || _a === void 0 ? void 0 : _a.attrs;
78
+ },
79
+ newsletterReactionMode: async (jid, mode) => {
80
+ await newsletterWMexQuery(jid, Types_1.QueryIds.JOB_MUTATION, {
81
+ updates: { settings: { 'reaction_codes': { value: mode } } }
82
+ });
83
+ },
84
+ newsletterUpdateDescription: async (jid, description) => {
85
+ await newsletterWMexQuery(jid, Types_1.QueryIds.JOB_MUTATION, {
86
+ updates: { description: description || '', settings: null }
87
+ });
88
+ },
89
+ newsletterUpdateName: async (jid, name) => {
90
+ await newsletterWMexQuery(jid, Types_1.QueryIds.JOB_MUTATION, {
91
+ updates: { name, settings: null }
92
+ });
93
+ },
94
+ newsletterUpdatePicture: async (jid, content) => {
95
+ const { img } = await (0, Utils_1.generateProfilePicture)(content);
96
+ await newsletterWMexQuery(jid, Types_1.QueryIds.JOB_MUTATION, {
97
+ updates: { picture: img.toString('base64'), settings: null }
98
+ });
99
+ },
100
+ newsletterRemovePicture: async (jid) => {
101
+ await newsletterWMexQuery(jid, Types_1.QueryIds.JOB_MUTATION, {
102
+ updates: { picture: '', settings: null }
103
+ });
104
+ },
105
+ newsletterUnfollow: async (jid) => {
106
+ await newsletterWMexQuery(jid, Types_1.QueryIds.UNFOLLOW);
107
+ },
108
+ newsletterFollow: async (jid) => {
109
+ await newsletterWMexQuery(jid, Types_1.QueryIds.FOLLOW);
110
+ },
111
+ newsletterUnmute: async (jid) => {
112
+ await newsletterWMexQuery(jid, Types_1.QueryIds.UNMUTE);
113
+ },
114
+ newsletterMute: async (jid) => {
115
+ await newsletterWMexQuery(jid, Types_1.QueryIds.MUTE);
116
+ },
117
+ newsletterAction: async (jid, type) => {
118
+ await newsletterWMexQuery(jid, Types_1.QueryIds[type.toUpperCase()]);
119
+ },
120
+ newsletterCreate: async (name, description) => {
121
+ //TODO: Implement TOS system wide for Meta AI, communities, and here etc.
122
+ /**tos query */
123
+ await query({
124
+ tag: 'iq',
125
+ attrs: {
126
+ to: WABinary_1.S_WHATSAPP_NET,
127
+ xmlns: 'tos',
128
+ id: generateMessageTag(),
129
+ type: 'set'
130
+ },
131
+ content: [
132
+ {
133
+ tag: 'notice',
134
+ attrs: {
135
+ id: '20601218',
136
+ stage: '5'
137
+ },
138
+ content: []
139
+ }
140
+ ]
141
+ });
142
+ const result = await newsletterWMexQuery(undefined, Types_1.QueryIds.CREATE, {
143
+ input: { name, description, settings: null }
144
+ });
145
+ return (0, exports.extractNewsletterMetadata)(result, true);
146
+ },
147
+ newsletterMetadata: async (type, key, role) => {
148
+ const result = await newsletterWMexQuery(undefined, Types_1.QueryIds.METADATA, {
149
+ input: {
150
+ key,
151
+ type: type.toUpperCase(),
152
+ 'view_role': role || 'GUEST'
153
+ },
154
+ 'fetch_viewer_metadata': true,
155
+ 'fetch_full_image': true,
156
+ 'fetch_creation_time': true
157
+ });
158
+ return (0, exports.extractNewsletterMetadata)(result);
159
+ },
160
+ newsletterAdminCount: async (jid) => {
161
+ var _a, _b;
162
+ const result = await newsletterWMexQuery(jid, Types_1.QueryIds.ADMIN_COUNT);
163
+ const buff = (_b = (_a = (0, WABinary_1.getBinaryNodeChild)(result, 'result')) === null || _a === void 0 ? void 0 : _a.content) === null || _b === void 0 ? void 0 : _b.toString();
164
+ return JSON.parse(buff).data[Types_1.XWAPaths.ADMIN_COUNT].admin_count;
165
+ },
166
+ /**user is Lid, not Jid */
167
+ newsletterChangeOwner: async (jid, user) => {
168
+ await newsletterWMexQuery(jid, Types_1.QueryIds.CHANGE_OWNER, {
169
+ 'user_id': user
170
+ });
171
+ },
172
+ /**user is Lid, not Jid */
173
+ newsletterDemote: async (jid, user) => {
174
+ await newsletterWMexQuery(jid, Types_1.QueryIds.DEMOTE, {
175
+ 'user_id': user
176
+ });
177
+ },
178
+ newsletterDelete: async (jid) => {
179
+ await newsletterWMexQuery(jid, Types_1.QueryIds.DELETE);
180
+ },
181
+ /**if code wasn't passed, the reaction will be removed (if is reacted) */
182
+ newsletterReactMessage: async (jid, serverId, code) => {
183
+ await query({
184
+ tag: 'message',
185
+ attrs: { to: jid, ...(!code ? { edit: '7' } : {}), type: 'reaction', 'server_id': serverId, id: (0, Utils_1.generateMessageID)() },
186
+ content: [{
187
+ tag: 'reaction',
188
+ attrs: code ? { code } : {}
189
+ }]
190
+ });
191
+ },
192
+ newsletterFetchMessages: async (type, key, count, after) => {
193
+ const result = await newsletterQuery(WABinary_1.S_WHATSAPP_NET, 'get', [
194
+ {
195
+ tag: 'messages',
196
+ attrs: { type, ...(type === 'invite' ? { key } : { jid: key }), count: count.toString(), after: (after === null || after === void 0 ? void 0 : after.toString()) || '100' }
197
+ }
198
+ ]);
199
+ return await parseFetchedUpdates(result, 'messages');
200
+ },
201
+ newsletterFetchUpdates: async (jid, count, after, since) => {
202
+ const result = await newsletterQuery(jid, 'get', [
203
+ {
204
+ tag: 'message_updates',
205
+ attrs: { count: count.toString(), after: (after === null || after === void 0 ? void 0 : after.toString()) || '100', since: (since === null || since === void 0 ? void 0 : since.toString()) || '0' }
206
+ }
207
+ ]);
208
+ return await parseFetchedUpdates(result, 'updates');
209
+ }
210
+ };
211
+ };
212
+ exports.makeNewsletterSocket = makeNewsletterSocket;
213
+ const extractNewsletterMetadata = (node, isCreate) => {
214
+ var _a, _b, _c, _d, _e, _f, _g;
215
+ const result = (_b = (_a = (0, WABinary_1.getBinaryNodeChild)(node, 'result')) === null || _a === void 0 ? void 0 : _a.content) === null || _b === void 0 ? void 0 : _b.toString();
216
+ const metadataPath = JSON.parse(result).data[isCreate ? Types_1.XWAPaths.CREATE : Types_1.XWAPaths.NEWSLETTER];
217
+ const metadata = {
218
+ id: metadataPath.id,
219
+ state: metadataPath.state.type,
220
+ 'creation_time': +metadataPath.thread_metadata.creation_time,
221
+ name: metadataPath.thread_metadata.name.text,
222
+ nameTime: +metadataPath.thread_metadata.name.update_time,
223
+ description: metadataPath.thread_metadata.description.text,
224
+ descriptionTime: +metadataPath.thread_metadata.description.update_time,
225
+ invite: metadataPath.thread_metadata.invite,
226
+ handle: metadataPath.thread_metadata.handle,
227
+ picture: ((_c = metadataPath.thread_metadata.picture) === null || _c === void 0 ? void 0 : _c.direct_path) || null,
228
+ preview: ((_d = metadataPath.thread_metadata.preview) === null || _d === void 0 ? void 0 : _d.direct_path) || null,
229
+ 'reaction_codes': (_g = (_f = (_e = metadataPath.thread_metadata) === null || _e === void 0 ? void 0 : _e.settings) === null || _f === void 0 ? void 0 : _f.reaction_codes) === null || _g === void 0 ? void 0 : _g.value,
230
+ subscribers: +metadataPath.thread_metadata.subscribers_count,
231
+ verification: metadataPath.thread_metadata.verification,
232
+ 'viewer_metadata': metadataPath.viewer_metadata
233
+ };
234
+ return metadata;
235
+ };
236
+ exports.extractNewsletterMetadata = extractNewsletterMetadata;
@@ -0,0 +1,264 @@
1
+ import axios, { AxiosRequestConfig } from 'axios';
2
+ import { KeyPair, SignedKeyPair, SocketConfig } from '../Types';
3
+ export declare const makeRegistrationSocket: (config: SocketConfig) => {
4
+ register: (code: string) => Promise<ExistsResponse>;
5
+ requestRegistrationCode: (registrationOptions?: RegistrationOptions) => Promise<ExistsResponse>;
6
+ logger: Logger;
7
+ getOrderDetails: (orderId: string, tokenBase64: string) => Promise<import("../Types").OrderDetails>;
8
+ getCatalog: ({ jid, limit, cursor }: import("../Types").GetCatalogOptions) => Promise<{
9
+ products: import("../Types").Product[];
10
+ nextPageCursor: any;
11
+ }>;
12
+ getCollections: (jid?: string, limit?: number) => Promise<{
13
+ collections: import("../Types").CatalogCollection[];
14
+ }>;
15
+ productCreate: (create: import("../Types").ProductCreate) => Promise<import("../Types").Product>;
16
+ productDelete: (productIds: string[]) => Promise<{
17
+ deleted: number;
18
+ }>;
19
+ productUpdate: (productId: string, update: import("../Types").ProductUpdate) => Promise<import("../Types").Product>;
20
+ sendMessageAck: ({ tag, attrs, content }: import("../WABinary").BinaryNode, errorCode?: number) => Promise<void>;
21
+ sendRetryRequest: (node: import("../WABinary").BinaryNode, forceIncludeKeys?: boolean) => Promise<void>;
22
+ offerCall: (toJid: string, isVideo?: boolean) => Promise<{
23
+ id: any;
24
+ to: string;
25
+ }>;
26
+ rejectCall: (callId: string, callFrom: string) => Promise<void>;
27
+ fetchMessageHistory: (count: number, oldestMsgKey: import("../Types").WAMessageKey, oldestMsgTimestamp: number) => Promise<string>;
28
+ requestPlaceholderResend: (messageKey: import("../Types").WAMessageKey) => Promise<string | undefined>;
29
+ getPrivacyTokens: (jids: string[]) => Promise<import("../WABinary").BinaryNode>;
30
+ assertSessions: (jids: string[], force: boolean) => Promise<boolean>;
31
+ relayMessage: (jid: string, message: import("../Types").WAProto.IMessage, { messageId: msgId, participant, additionalAttributes, additionalNodes, useUserDevicesCache, cachedGroupMetadata, statusJidList }: import("../Types").MessageRelayOptions) => Promise<string>;
32
+ sendReceipt: (jid: string, participant: string | undefined, messageIds: string[], type: import("../Types").MessageReceiptType) => Promise<void>;
33
+ sendReceipts: (keys: import("../Types").WAMessageKey[], type: import("../Types").MessageReceiptType) => Promise<void>;
34
+ getButtonArgs: (message: import("../Types").WAProto.IMessage) => import("../WABinary").BinaryNode["attrs"];
35
+ readMessages: (keys: import("../Types").WAMessageKey[]) => Promise<void>;
36
+ refreshMediaConn: (forceGet?: boolean) => Promise<import("../Types").MediaConnInfo>;
37
+ getUSyncDevices: (jids: string[], useCache: boolean, ignoreZeroDevices: boolean) => Promise<import("../WABinary").JidWithDevice[]>;
38
+ sendPeerDataOperationMessage: (pdoMessage: import("../Types").WAProto.Message.IPeerDataOperationRequestMessage) => Promise<string>;
39
+ createParticipantNodes: (jids: string[], message: import("../Types").WAProto.IMessage, extraAttrs?: import("../WABinary").BinaryNode["attrs"]) => Promise<{
40
+ nodes: import("../WABinary").BinaryNode[];
41
+ shouldIncludeDeviceIdentity: boolean;
42
+ }>;
43
+ waUploadToServer: import("../Types").WAMediaUploadFunction;
44
+ fetchPrivacySettings: (force?: boolean) => Promise<{
45
+ [_: string]: string;
46
+ }>;
47
+ updateMediaMessage: (message: import("../Types").WAProto.IWebMessageInfo) => Promise<import("../Types").WAProto.IWebMessageInfo>;
48
+ sendStatusMentions: (content: import("../Types").AnyMessageContent, jids?: string[]) => Promise<import("../Types").WAProto.WebMessageInfo>;
49
+ sendAlbumMessage: (jid: string, medias: import("../Types").Media[], options?: import("../Types").MiscMessageGenerationOptions) => Promise<import("../Types").WAProto.WebMessageInfo>;
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) => 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: "follow" | "unfollow" | "mute" | "unmute") => Promise<void>;
64
+ newsletterCreate: (name: string, description: string) => Promise<import("../Types").NewsletterMetadata>;
65
+ newsletterMetadata: (type: "invite" | "jid", key: string, role?: import("../Types").NewsletterViewRole) => 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) => Promise<void>;
71
+ newsletterFetchMessages: (type: "invite" | "jid", key: string, count: number, after?: number) => Promise<import("../Types").NewsletterFetchedUpdate[]>;
72
+ newsletterFetchUpdates: (jid: string, count: number, after?: number, since?: number) => 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
+ groupUpdateSubject: (jid: string, subject: string) => Promise<void>;
77
+ groupRequestParticipantsList: (jid: string) => Promise<{
78
+ [key: string]: string;
79
+ }[]>;
80
+ groupRequestParticipantsUpdate: (jid: string, participants: string[], action: "approve" | "reject") => Promise<{
81
+ status: string;
82
+ jid: string;
83
+ }[]>;
84
+ groupParticipantsUpdate: (jid: string, participants: string[], action: import("../Types").ParticipantAction) => Promise<{
85
+ status: string;
86
+ jid: string;
87
+ content: import("../WABinary").BinaryNode;
88
+ }[]>;
89
+ groupUpdateDescription: (jid: string, description?: string) => Promise<void>;
90
+ groupInviteCode: (jid: string) => Promise<string | undefined>;
91
+ groupRevokeInvite: (jid: string) => Promise<string | undefined>;
92
+ groupAcceptInvite: (code: string) => Promise<string | undefined>;
93
+ groupAcceptInviteV4: (key: string | import("../Types").WAProto.IMessageKey, inviteMessage: import("../Types").WAProto.Message.IGroupInviteMessage) => Promise<string>;
94
+ groupGetInviteInfo: (code: string) => Promise<import("../Types").GroupMetadata>;
95
+ groupToggleEphemeral: (jid: string, ephemeralExpiration: number) => Promise<void>;
96
+ groupSettingUpdate: (jid: string, setting: "announcement" | "not_announcement" | "locked" | "unlocked") => Promise<void>;
97
+ groupMemberAddMode: (jid: string, mode: "admin_add" | "all_member_add") => Promise<void>;
98
+ groupJoinApprovalMode: (jid: string, mode: "on" | "off") => Promise<void>;
99
+ groupFetchAllParticipating: () => Promise<{
100
+ [_: string]: import("../Types").GroupMetadata;
101
+ }>;
102
+ processingMutex: {
103
+ mutex<T>(code: () => Promise<T> | T): Promise<T>;
104
+ };
105
+ upsertMessage: (msg: import("../Types").WAProto.IWebMessageInfo, type: import("../Types").MessageUpsertType) => Promise<void>;
106
+ appPatch: (patchCreate: import("../Types").WAPatchCreate) => Promise<void>;
107
+ sendPresenceUpdate: (type: import("../Types").WAPresence, toJid?: string) => Promise<void>;
108
+ presenceSubscribe: (toJid: string, tcToken?: Buffer) => Promise<void>;
109
+ profilePictureUrl: (jid: string, type?: "preview" | "image", timeoutMs?: number) => Promise<string | undefined>;
110
+ onWhatsApp: (...jids: string[]) => Promise<{
111
+ exists: boolean;
112
+ jid: string;
113
+ }[]>;
114
+ fetchBlocklist: () => Promise<string[]>;
115
+ fetchStatus: (jid: string) => Promise<{
116
+ status: string | undefined;
117
+ setAt: Date;
118
+ } | undefined>;
119
+ updateProfilePicture: (jid: string, content: import("../Types").WAMediaUpload) => Promise<void>;
120
+ removeProfilePicture: (jid: string) => Promise<void>;
121
+ updateProfileStatus: (status: string) => Promise<void>;
122
+ updateProfileName: (name: string) => Promise<void>;
123
+ updateBlockStatus: (jid: string, action: "block" | "unblock") => Promise<void>;
124
+ updateLastSeenPrivacy: (value: import("../Types").WAPrivacyValue) => Promise<void>;
125
+ updateOnlinePrivacy: (value: import("../Types").WAPrivacyOnlineValue) => Promise<void>;
126
+ updateProfilePicturePrivacy: (value: import("../Types").WAPrivacyValue) => Promise<void>;
127
+ updateStatusPrivacy: (value: import("../Types").WAPrivacyValue) => Promise<void>;
128
+ updateReadReceiptsPrivacy: (value: import("../Types").WAReadReceiptsValue) => Promise<void>;
129
+ updateGroupsAddPrivacy: (value: import("../Types").WAPrivacyValue) => Promise<void>;
130
+ updateDefaultDisappearingMode: (duration: number) => Promise<void>;
131
+ getBusinessProfile: (jid: string) => Promise<import("../Types").WABusinessProfile | void>;
132
+ resyncAppState: (collections: readonly ("critical_block" | "critical_unblock_low" | "regular_high" | "regular_low" | "regular")[], isInitialSync: boolean) => Promise<void>;
133
+ chatModify: (mod: import("../Types").ChatModification, jid: string) => Promise<void>;
134
+ cleanDirtyBits: (type: "account_sync" | "groups", fromTimestamp?: number | string) => Promise<void>;
135
+ addChatLabel: (jid: string, labelId: string) => Promise<void>;
136
+ removeChatLabel: (jid: string, labelId: string) => Promise<void>;
137
+ addMessageLabel: (jid: string, messageId: string, labelId: string) => Promise<void>;
138
+ removeMessageLabel: (jid: string, messageId: string, labelId: string) => Promise<void>;
139
+ star: (jid: string, messages: {
140
+ id: string;
141
+ fromMe?: boolean;
142
+ }[], star: boolean) => Promise<void>;
143
+ type: "md";
144
+ ws: any;
145
+ ev: import("../Types").BaileysEventEmitter & {
146
+ process(handler: (events: Partial<import("../Types").BaileysEventMap>) => void | Promise<void>): (() => void);
147
+ buffer(): void;
148
+ createBufferedFunction<A extends any[], T>(work: (...args: A) => Promise<T>): ((...args: A) => Promise<T>);
149
+ flush(force?: boolean): boolean;
150
+ isBuffering(): boolean;
151
+ };
152
+ authState: {
153
+ creds: import("../Types").AuthenticationCreds;
154
+ keys: import("../Types").SignalKeyStoreWithTransaction;
155
+ };
156
+ signalRepository: import("../Types").SignalRepository;
157
+ user: import("../Types").Contact | undefined;
158
+ generateMessageTag: () => string;
159
+ query: (node: import("../WABinary").BinaryNode, timeoutMs?: number) => Promise<import("../WABinary").BinaryNode>;
160
+ waitForMessage: <T>(msgId: string, timeoutMs?: number | undefined) => Promise<T>;
161
+ waitForSocketOpen: () => Promise<void>;
162
+ sendRawMessage: (data: Uint8Array | Buffer) => Promise<void>;
163
+ sendNode: (frame: import("../WABinary").BinaryNode) => Promise<void>;
164
+ logout: (msg?: string) => Promise<void>;
165
+ end: (error: Error | undefined) => void;
166
+ onUnexpectedError: (err: Error | axios, msg: string) => void;
167
+ uploadPreKeys: (count?: number) => Promise<void>;
168
+ uploadPreKeysToServerIfRequired: () => Promise<void>;
169
+ requestPairingCode: (phoneNumber: string, pairCode: string) => Promise<string>;
170
+ waitForConnectionUpdate: (check: (u: Partial<import("../Types").ConnectionState>) => boolean | undefined, timeoutMs?: number) => Promise<void>;
171
+ sendWAMBuffer: (wamBuffer: Buffer) => Promise<import("../WABinary").BinaryNode>;
172
+ };
173
+ export interface RegistrationData {
174
+ registrationId: number;
175
+ signedPreKey: SignedKeyPair;
176
+ noiseKey: KeyPair;
177
+ signedIdentityKey: KeyPair;
178
+ identityId: Buffer;
179
+ phoneId: string;
180
+ deviceId: string;
181
+ backupToken: Buffer;
182
+ }
183
+ export interface RegistrationOptions {
184
+ /** your phone number */
185
+ phoneNumber?: string;
186
+ /** the country code of your phone number */
187
+ phoneNumberCountryCode: string;
188
+ /** your phone number without country code */
189
+ phoneNumberNationalNumber: string;
190
+ /** the country code of your mobile network
191
+ * @see {@link https://de.wikipedia.org/wiki/Mobile_Country_Code}
192
+ */
193
+ phoneNumberMobileCountryCode: string;
194
+ /** the network code of your mobile network
195
+ * @see {@link https://de.wikipedia.org/wiki/Mobile_Network_Code}
196
+ */
197
+ phoneNumberMobileNetworkCode: string;
198
+ /**
199
+ * How to send the one time code
200
+ */
201
+ method?: 'sms' | 'voice' | 'captcha';
202
+ /**
203
+ * The captcha code if it was requested
204
+ */
205
+ captcha?: string;
206
+ }
207
+ export type RegistrationParams = RegistrationData & RegistrationOptions;
208
+ export declare function registrationParams(params: RegistrationParams): {
209
+ cc: string;
210
+ in: string;
211
+ Rc: string;
212
+ lg: string;
213
+ lc: string;
214
+ mistyped: string;
215
+ authkey: any;
216
+ e_regid: any;
217
+ e_keytype: string;
218
+ e_ident: any;
219
+ e_skey_id: string;
220
+ e_skey_val: any;
221
+ e_skey_sig: any;
222
+ fdid: string;
223
+ network_ratio_type: string;
224
+ expid: string;
225
+ simnum: string;
226
+ hasinrc: string;
227
+ pid: string;
228
+ id: string;
229
+ backup_token: string;
230
+ token: any;
231
+ fraud_checkpoint_code: string | undefined;
232
+ };
233
+ /**
234
+ * Requests a registration code for the given phone number.
235
+ */
236
+ export declare function mobileRegisterCode(params: RegistrationParams, fetchOptions?: AxiosRequestConfig): Promise<ExistsResponse>;
237
+ export declare function mobileRegisterExists(params: RegistrationParams, fetchOptions?: AxiosRequestConfig): Promise<ExistsResponse>;
238
+ /**
239
+ * Registers the phone number on whatsapp with the received OTP code.
240
+ */
241
+ export declare function mobileRegister(params: RegistrationParams & {
242
+ code: string;
243
+ }, fetchOptions?: AxiosRequestConfig): Promise<ExistsResponse>;
244
+ /**
245
+ * Encrypts the given string as AEAD aes-256-gcm with the public whatsapp key and a random keypair.
246
+ */
247
+ export declare function mobileRegisterEncrypt(data: string): any;
248
+ export declare function mobileRegisterFetch(path: string, opts?: AxiosRequestConfig): Promise<ExistsResponse>;
249
+ export interface ExistsResponse {
250
+ status: 'fail' | 'sent';
251
+ voice_length?: number;
252
+ voice_wait?: number;
253
+ sms_length?: number;
254
+ sms_wait?: number;
255
+ reason?: 'incorrect' | 'missing_param' | 'code_checkpoint';
256
+ login?: string;
257
+ flash_type?: number;
258
+ ab_hash?: string;
259
+ ab_key?: string;
260
+ exp_cfg?: string;
261
+ lid?: string;
262
+ image_blob?: string;
263
+ audio_blob?: string;
264
+ }