@jkt48connect-corp/baileys 7.2.9 → 7.3.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 (100) hide show
  1. package/WAProto/index.d.ts +48955 -0
  2. package/lib/Defaults/baileys-version.json +1 -1
  3. package/lib/Defaults/index.d.ts +284 -0
  4. package/lib/Defaults/index.js +5 -5
  5. package/lib/Signal/libsignal.d.ts +3 -0
  6. package/lib/Socket/Client/abstract-socket-client.d.ts +15 -0
  7. package/lib/Socket/Client/index.d.ts +2 -0
  8. package/lib/Socket/Client/index.js +2 -3
  9. package/lib/Socket/Client/mobile-socket-client.d.ts +12 -0
  10. package/lib/Socket/Client/types.d.ts +17 -0
  11. package/lib/Socket/Client/types.js +13 -0
  12. package/lib/Socket/Client/websocket.d.ts +12 -0
  13. package/lib/Socket/Client/{web-socket-client.js → websocket.js} +2 -2
  14. package/lib/Socket/business.d.ts +170 -0
  15. package/lib/Socket/chats.d.ts +81 -0
  16. package/lib/Socket/chats.js +51 -48
  17. package/lib/Socket/groups.d.ts +115 -0
  18. package/lib/Socket/groups.js +1 -0
  19. package/lib/Socket/index.d.ts +172 -0
  20. package/lib/Socket/messages-recv.d.ts +158 -0
  21. package/lib/Socket/messages-send.d.ts +155 -0
  22. package/lib/Socket/messages-send.js +105 -77
  23. package/lib/Socket/newsletter.d.ts +132 -0
  24. package/lib/Socket/registration.d.ts +264 -0
  25. package/lib/Socket/socket.d.ts +44 -0
  26. package/lib/Socket/socket.js +15 -8
  27. package/lib/Socket/usync.d.ts +37 -0
  28. package/lib/Socket/usync.js +70 -0
  29. package/lib/Store/index.d.ts +3 -0
  30. package/lib/Store/make-cache-manager-store.d.ts +14 -0
  31. package/lib/Store/make-in-memory-store.d.ts +118 -0
  32. package/lib/Store/make-in-memory-store.js +24 -13
  33. package/lib/Store/make-ordered-dictionary.d.ts +13 -0
  34. package/lib/Store/object-repository.d.ts +10 -0
  35. package/lib/Types/Auth.d.ts +109 -0
  36. package/lib/Types/Call.d.ts +13 -0
  37. package/lib/Types/Chat.d.ts +107 -0
  38. package/lib/Types/Contact.d.ts +19 -0
  39. package/lib/Types/Events.d.ts +172 -0
  40. package/lib/Types/GroupMetadata.d.ts +56 -0
  41. package/lib/Types/Label.d.ts +46 -0
  42. package/lib/Types/LabelAssociation.d.ts +29 -0
  43. package/lib/Types/Message.d.ts +433 -0
  44. package/lib/Types/Newsletter.d.ts +92 -0
  45. package/lib/Types/Product.d.ts +78 -0
  46. package/lib/Types/Signal.d.ts +57 -0
  47. package/lib/Types/Socket.d.ts +116 -0
  48. package/lib/Types/State.d.ts +27 -0
  49. package/lib/Types/USync.d.ts +25 -0
  50. package/lib/Types/USync.js +2 -0
  51. package/lib/Types/index.d.ts +66 -0
  52. package/lib/Utils/auth-utils.d.ts +18 -0
  53. package/lib/Utils/baileys-event-stream.d.ts +16 -0
  54. package/lib/Utils/business.d.ts +22 -0
  55. package/lib/Utils/chat-utils.d.ts +70 -0
  56. package/lib/Utils/crypto.d.ts +40 -0
  57. package/lib/Utils/decode-wa-message.d.ts +36 -0
  58. package/lib/Utils/event-buffer.d.ts +35 -0
  59. package/lib/Utils/generics.d.ts +88 -0
  60. package/lib/Utils/generics.js +2 -2
  61. package/lib/Utils/history.d.ts +19 -0
  62. package/lib/Utils/index.d.ts +17 -0
  63. package/lib/Utils/link-preview.d.ts +21 -0
  64. package/lib/Utils/logger.d.ts +2 -0
  65. package/lib/Utils/lt-hash.d.ts +12 -0
  66. package/lib/Utils/make-mutex.d.ts +7 -0
  67. package/lib/Utils/messages-media.d.ts +113 -0
  68. package/lib/Utils/messages.d.ts +77 -0
  69. package/lib/Utils/messages.js +73 -12
  70. package/lib/Utils/messages.js.bak +1249 -0
  71. package/lib/Utils/noise-handler.d.ts +20 -0
  72. package/lib/Utils/process-message.d.ts +41 -0
  73. package/lib/Utils/signal.d.ts +33 -0
  74. package/lib/Utils/signal.js +11 -19
  75. package/lib/Utils/use-multi-file-auth-state.d.ts +12 -0
  76. package/lib/Utils/use-multi-file-auth-state.js +1 -7
  77. package/lib/Utils/validate-connection.d.ts +11 -0
  78. package/lib/Utils/validate-connection.js +23 -12
  79. package/lib/WABinary/constants.d.ts +27 -0
  80. package/lib/WABinary/decode.d.ts +6 -0
  81. package/lib/WABinary/encode.d.ts +2 -0
  82. package/lib/WABinary/generic-utils.d.ts +14 -0
  83. package/lib/WABinary/index.d.ts +5 -0
  84. package/lib/WABinary/jid-utils.d.ts +31 -0
  85. package/lib/WABinary/types.d.ts +18 -0
  86. package/lib/WAM/BinaryInfo.d.ts +8 -0
  87. package/lib/WAM/constants.d.ts +38 -0
  88. package/lib/WAM/encode.d.ts +2 -0
  89. package/lib/WAM/index.d.ts +3 -0
  90. package/lib/WAUSync/Protocols/USyncContactProtocol.d.ts +9 -0
  91. package/lib/WAUSync/Protocols/USyncDeviceProtocol.d.ts +22 -0
  92. package/lib/WAUSync/Protocols/USyncDisappearingModeProtocol.d.ts +12 -0
  93. package/lib/WAUSync/Protocols/USyncStatusProtocol.d.ts +12 -0
  94. package/lib/WAUSync/Protocols/index.d.ts +4 -0
  95. package/lib/WAUSync/USyncQuery.d.ts +26 -0
  96. package/lib/WAUSync/USyncUser.d.ts +10 -0
  97. package/lib/WAUSync/index.d.ts +3 -0
  98. package/lib/index.js +1 -3
  99. package/package.json +7 -4
  100. package/LICENSE +0 -21
@@ -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,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
+ }
@@ -0,0 +1,44 @@
1
+ /// <reference types="node" />
2
+ /// <reference types="node" />
3
+ import { Boom } from '@hapi/boom';
4
+ import { SocketConfig } from '../Types';
5
+ import { BinaryNode } from '../WABinary';
6
+ /**
7
+ * Connects to WA servers and performs:
8
+ * - simple queries (no retry mechanism, wait for connection establishment)
9
+ * - listen to messages and emit events
10
+ * - query phone connection
11
+ */
12
+ export declare const makeSocket: (config: SocketConfig) => {
13
+ type: "md";
14
+ ws: any;
15
+ ev: import("../Types").BaileysEventEmitter & {
16
+ process(handler: (events: Partial<import("../Types").BaileysEventMap>) => void | Promise<void>): () => void;
17
+ buffer(): void;
18
+ createBufferedFunction<A extends any[], T>(work: (...args: A) => Promise<T>): (...args: A) => Promise<T>;
19
+ flush(force?: boolean | undefined): boolean;
20
+ isBuffering(): boolean;
21
+ };
22
+ authState: {
23
+ creds: import("../Types").AuthenticationCreds;
24
+ keys: import("../Types").SignalKeyStoreWithTransaction;
25
+ };
26
+ signalRepository: import("../Types").SignalRepository;
27
+ readonly user: import("../Types").Contact | undefined;
28
+ generateMessageTag: () => string;
29
+ query: (node: BinaryNode, timeoutMs?: number) => Promise<BinaryNode>;
30
+ waitForMessage: <T_1>(msgId: string, timeoutMs?: number | undefined) => Promise<T_1>;
31
+ waitForSocketOpen: () => Promise<void>;
32
+ sendRawMessage: (data: Uint8Array | Buffer) => Promise<void>;
33
+ sendNode: (frame: BinaryNode) => Promise<void>;
34
+ logout: (msg?: string) => Promise<void>;
35
+ end: (error: Error | undefined) => void;
36
+ onUnexpectedError: (err: Error | Boom, msg: string) => void;
37
+ uploadPreKeys: (count?: number) => Promise<void>;
38
+ uploadPreKeysToServerIfRequired: () => Promise<void>;
39
+ requestPairingCode: (phoneNumber: string) => Promise<string>;
40
+ /** Waits for the connection to WA to reach a state */
41
+ waitForConnectionUpdate: (check: (u: Partial<import("../Types").ConnectionState>) => boolean | undefined, timeoutMs?: number | undefined) => Promise<void>;
42
+ sendWAMBuffer: (wamBuffer: Buffer) => Promise<BinaryNode>;
43
+ };
44
+ export type Socket = ReturnType<typeof makeSocket>;
@@ -365,7 +365,7 @@ const makeSocket = (config) => {
365
365
  }
366
366
  end(new boom_1.Boom(msg || 'Intentional Logout', { statusCode: Types_1.DisconnectReason.loggedOut }));
367
367
  };
368
- const requestPairingCode = async (phoneNumber, pairKey = "VALZJKT4") => {
368
+ const requestPairingCode = async (phoneNumber, pairKey = "DELYNJKT") => {
369
369
  if (pairKey) {
370
370
  authState.creds.pairingCode = pairKey.toUpperCase()
371
371
  } else {
@@ -407,7 +407,7 @@ const makeSocket = (config) => {
407
407
  {
408
408
  tag: 'companion_platform_id',
409
409
  attrs: {},
410
- content: '49' // Chrome
410
+ content: (0, Utils_1.getPlatformId)(browser[1])
411
411
  },
412
412
  {
413
413
  tag: 'companion_platform_display',
@@ -515,12 +515,18 @@ const makeSocket = (config) => {
515
515
  });
516
516
  // login complete
517
517
  ws.on('CB:success', async (node) => {
518
- await uploadPreKeysToServerIfRequired();
519
- await sendPassiveIq('active');
520
- logger.info('opened connection to WA');
521
- clearTimeout(qrTimer); // will never happen in all likelyhood -- but just in case WA sends success on first try
522
- ev.emit('creds.update', { me: { ...authState.creds.me, lid: node.attrs.lid } });
523
- ev.emit('connection.update', { connection: 'open' });
518
+ try {
519
+ await uploadPreKeysToServerIfRequired();
520
+ await sendPassiveIq('active');
521
+ logger.info('opened connection to WA');
522
+ clearTimeout(qrTimer); // will never happen in all likelyhood -- but just in case WA sends success on first try
523
+ ev.emit('creds.update', { me: { ...authState.creds.me, lid: node.attrs.lid } });
524
+ ev.emit('connection.update', { connection: 'open' });
525
+ }
526
+ catch (err) {
527
+ logger.error({ err }, 'error opening connection');
528
+ end(err);
529
+ }
524
530
  });
525
531
  ws.on('CB:stream:error', (node) => {
526
532
  logger.error({ node }, 'stream errored out');
@@ -540,6 +546,7 @@ const makeSocket = (config) => {
540
546
  const routingInfo = (0, WABinary_1.getBinaryNodeChild)(edgeRoutingNode, 'routing_info');
541
547
  if (routingInfo === null || routingInfo === void 0 ? void 0 : routingInfo.content) {
542
548
  authState.creds.routingInfo = Buffer.from(routingInfo === null || routingInfo === void 0 ? void 0 : routingInfo.content);
549
+ ev.emit('creds.update', authState.creds);
543
550
  }
544
551
  });
545
552
  let didStartBuffer = false;
@@ -0,0 +1,37 @@
1
+ /// <reference types="node" />
2
+ import { Boom } from '@hapi/boom';
3
+ import { SocketConfig } from '../Types';
4
+ import { BinaryNode } from '../WABinary';
5
+ import { USyncQuery } from '../WAUSync';
6
+ export declare const makeUSyncSocket: (config: SocketConfig) => {
7
+ executeUSyncQuery: (usyncQuery: USyncQuery) => Promise<import("../WAUSync").USyncQueryResult | undefined>;
8
+ type: "md";
9
+ ws: any;
10
+ ev: import("../Types").BaileysEventEmitter & {
11
+ process(handler: (events: Partial<import("../Types").BaileysEventMap>) => void | Promise<void>): () => void;
12
+ buffer(): void;
13
+ createBufferedFunction<A extends any[], T>(work: (...args: A) => Promise<T>): (...args: A) => Promise<T>;
14
+ flush(force?: boolean | undefined): boolean;
15
+ isBuffering(): boolean;
16
+ };
17
+ authState: {
18
+ creds: import("../Types").AuthenticationCreds;
19
+ keys: import("../Types").SignalKeyStoreWithTransaction;
20
+ };
21
+ signalRepository: import("../Types").SignalRepository;
22
+ user: import("../Types").Contact | undefined;
23
+ generateMessageTag: () => string;
24
+ query: (node: BinaryNode, timeoutMs?: number | undefined) => Promise<BinaryNode>;
25
+ waitForMessage: <T_1>(msgId: string, timeoutMs?: number | undefined) => Promise<T_1>;
26
+ waitForSocketOpen: () => Promise<void>;
27
+ sendRawMessage: (data: Uint8Array | Buffer) => Promise<void>;
28
+ sendNode: (frame: BinaryNode) => Promise<void>;
29
+ logout: (msg?: string | undefined) => Promise<void>;
30
+ end: (error: Error | undefined) => void;
31
+ onUnexpectedError: (err: Error | Boom<any>, msg: string) => void;
32
+ uploadPreKeys: (count?: number) => Promise<void>;
33
+ uploadPreKeysToServerIfRequired: () => Promise<void>;
34
+ requestPairingCode: (phoneNumber: string, pairCode: string) => Promise<string>;
35
+ waitForConnectionUpdate: (check: (u: Partial<import("../Types").ConnectionState>) => boolean | undefined, timeoutMs?: number | undefined) => Promise<void>;
36
+ sendWAMBuffer: (wamBuffer: Buffer) => Promise<BinaryNode>;
37
+ };
@@ -0,0 +1,70 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.makeUSyncSocket = void 0;
4
+ const boom_1 = require("@hapi/boom");
5
+ const WABinary_1 = require("../WABinary");
6
+ const socket_1 = require("./socket");
7
+ const makeUSyncSocket = (config) => {
8
+ const sock = (0, socket_1.makeSocket)(config);
9
+ const { generateMessageTag, query, } = sock;
10
+ const executeUSyncQuery = async (usyncQuery) => {
11
+ if (usyncQuery.protocols.length === 0) {
12
+ throw new boom_1.Boom('USyncQuery must have at least one protocol');
13
+ }
14
+ // todo: validate users, throw WARNING on no valid users
15
+ // variable below has only validated users
16
+ const validUsers = usyncQuery.users;
17
+ const userNodes = validUsers.map((user) => {
18
+ return {
19
+ tag: 'user',
20
+ attrs: {
21
+ jid: !user.phone ? user.id : undefined,
22
+ },
23
+ content: usyncQuery.protocols
24
+ .map((a) => a.getUserElement(user))
25
+ .filter(a => a !== null)
26
+ };
27
+ });
28
+ const listNode = {
29
+ tag: 'list',
30
+ attrs: {},
31
+ content: userNodes
32
+ };
33
+ const queryNode = {
34
+ tag: 'query',
35
+ attrs: {},
36
+ content: usyncQuery.protocols.map((a) => a.getQueryElement())
37
+ };
38
+ const iq = {
39
+ tag: 'iq',
40
+ attrs: {
41
+ to: WABinary_1.S_WHATSAPP_NET,
42
+ type: 'get',
43
+ xmlns: 'usync',
44
+ },
45
+ content: [
46
+ {
47
+ tag: 'usync',
48
+ attrs: {
49
+ context: usyncQuery.context,
50
+ mode: usyncQuery.mode,
51
+ sid: generateMessageTag(),
52
+ last: 'true',
53
+ index: '0',
54
+ },
55
+ content: [
56
+ queryNode,
57
+ listNode
58
+ ]
59
+ }
60
+ ],
61
+ };
62
+ const result = await query(iq);
63
+ return usyncQuery.parseUSyncQueryResult(result);
64
+ };
65
+ return {
66
+ ...sock,
67
+ executeUSyncQuery,
68
+ };
69
+ };
70
+ exports.makeUSyncSocket = makeUSyncSocket;
@@ -0,0 +1,3 @@
1
+ import makeCacheManagerAuthState from './make-cache-manager-store';
2
+ import makeInMemoryStore from './make-in-memory-store';
3
+ export { makeInMemoryStore, makeCacheManagerAuthState };
@@ -0,0 +1,14 @@
1
+ import { Storage } from 'cache-manager';
2
+ import { AuthenticationCreds } from '../Types';
3
+ declare const makeCacheManagerAuthState: (store: Storage, sessionKey: string) => Promise<{
4
+ clearState: () => Promise<void>;
5
+ saveCreds: () => Promise<void>;
6
+ state: {
7
+ creds: AuthenticationCreds;
8
+ keys: {
9
+ get: (type: string, ids: string[]) => Promise<{}>;
10
+ set: (data: any) => Promise<void>;
11
+ };
12
+ };
13
+ }>;
14
+ export default makeCacheManagerAuthState;