@neelegirl/baileys 1.5.5 → 1.5.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +183 -10
- package/WAProto/WAProto.proto +5007 -0
- package/WAProto/index.d.ts +57712 -0
- package/WAProto/index.js +178969 -0
- package/lib/Defaults/baileys-version.json +3 -0
- package/lib/Defaults/index.d.ts +68 -0
- package/lib/Defaults/index.js +137 -0
- package/lib/Defaults/phonenumber-mcc.json +223 -0
- package/lib/Signal/WASignalGroup/GroupProtocol.js +1909 -0
- package/lib/Signal/WASignalGroup/ciphertext_message.js +16 -0
- package/lib/Signal/WASignalGroup/generate-proto.sh +1 -0
- package/lib/Signal/WASignalGroup/group.proto +42 -0
- package/lib/Signal/WASignalGroup/group_cipher.js +120 -0
- package/lib/Signal/WASignalGroup/group_session_builder.js +46 -0
- package/lib/Signal/WASignalGroup/index.js +6 -0
- package/lib/Signal/WASignalGroup/keyhelper.js +21 -0
- package/lib/Signal/WASignalGroup/protobufs.js +3 -0
- package/lib/Signal/WASignalGroup/queue_job.js +69 -0
- package/lib/Signal/WASignalGroup/readme.md +6 -0
- package/lib/Signal/WASignalGroup/sender_chain_key.js +50 -0
- package/lib/Signal/WASignalGroup/sender_key_distribution_message.js +78 -0
- package/lib/Signal/WASignalGroup/sender_key_message.js +92 -0
- package/lib/Signal/WASignalGroup/sender_key_name.js +70 -0
- package/lib/Signal/WASignalGroup/sender_key_record.js +56 -0
- package/lib/Signal/WASignalGroup/sender_key_state.js +129 -0
- package/lib/Signal/WASignalGroup/sender_message_key.js +39 -0
- package/lib/Signal/libsignal.d.ts +4 -0
- package/lib/Signal/libsignal.js +162 -0
- package/lib/Socket/Client/abstract-socket-client.d.ts +15 -0
- package/lib/Socket/Client/abstract-socket-client.js +13 -0
- package/lib/Socket/Client/index.d.ts +2 -0
- package/lib/Socket/Client/index.js +22 -0
- package/lib/Socket/Client/mobile-socket-client.d.ts +12 -0
- package/lib/Socket/Client/mobile-socket-client.js +65 -0
- package/lib/Socket/Client/types.d.ts +16 -0
- package/lib/Socket/Client/types.js +18 -0
- package/lib/Socket/Client/websocket.d.ts +13 -0
- package/lib/Socket/Client/websocket.js +62 -0
- package/lib/Socket/business.d.ts +187 -0
- package/lib/Socket/business.js +268 -0
- package/lib/Socket/chats.d.ts +98 -0
- package/lib/Socket/chats.js +1113 -0
- package/lib/Socket/communities.d.ts +223 -0
- package/lib/Socket/communities.js +433 -0
- package/lib/Socket/groups.d.ts +131 -0
- package/lib/Socket/groups.js +352 -0
- package/lib/Socket/index.d.ts +191 -0
- package/lib/Socket/index.js +23 -0
- package/lib/Socket/messages-recv.d.ts +177 -0
- package/lib/Socket/messages-recv.js +1764 -0
- package/lib/Socket/messages-send.d.ts +168 -0
- package/lib/Socket/messages-send.js +1303 -0
- package/lib/Socket/mex.d.ts +2 -0
- package/lib/Socket/mex.js +47 -0
- package/lib/Socket/newsletter.d.ts +147 -0
- package/lib/Socket/newsletter.js +286 -0
- package/lib/Socket/registration.d.ts +266 -0
- package/lib/Socket/registration.js +166 -0
- package/lib/Socket/socket.d.ts +45 -0
- package/lib/Socket/socket.js +766 -0
- package/lib/Socket/usync.d.ts +37 -0
- package/lib/Socket/usync.js +83 -0
- package/lib/Store/index.d.ts +4 -0
- package/lib/Store/index.js +24 -0
- package/lib/Store/make-cache-manager-store.d.ts +14 -0
- package/lib/Store/make-cache-manager-store.js +90 -0
- package/lib/Store/make-in-memory-store.d.ts +123 -0
- package/lib/Store/make-in-memory-store.js +429 -0
- package/lib/Store/make-ordered-dictionary.d.ts +12 -0
- package/lib/Store/make-ordered-dictionary.js +86 -0
- package/lib/Store/object-repository.d.ts +10 -0
- package/lib/Store/object-repository.js +31 -0
- package/lib/Types/Auth.d.ts +120 -0
- package/lib/Types/Auth.js +3 -0
- package/lib/Types/Call.d.ts +14 -0
- package/lib/Types/Call.js +3 -0
- package/lib/Types/Chat.d.ts +138 -0
- package/lib/Types/Chat.js +9 -0
- package/lib/Types/Contact.d.ts +20 -0
- package/lib/Types/Contact.js +3 -0
- package/lib/Types/Events.d.ts +229 -0
- package/lib/Types/Events.js +3 -0
- package/lib/Types/GroupMetadata.d.ts +66 -0
- package/lib/Types/GroupMetadata.js +3 -0
- package/lib/Types/Label.d.ts +48 -0
- package/lib/Types/Label.js +31 -0
- package/lib/Types/LabelAssociation.d.ts +35 -0
- package/lib/Types/LabelAssociation.js +13 -0
- package/lib/Types/Message.d.ts +473 -0
- package/lib/Types/Message.js +13 -0
- package/lib/Types/MexUpdates.d.ts +9 -0
- package/lib/Types/MexUpdates.js +18 -0
- package/lib/Types/Newsletter.d.ts +109 -0
- package/lib/Types/Newsletter.js +40 -0
- package/lib/Types/Product.d.ts +92 -0
- package/lib/Types/Product.js +3 -0
- package/lib/Types/Signal.d.ts +68 -0
- package/lib/Types/Signal.js +3 -0
- package/lib/Types/Socket.d.ts +122 -0
- package/lib/Types/Socket.js +3 -0
- package/lib/Types/State.d.ts +41 -0
- package/lib/Types/State.js +14 -0
- package/lib/Types/USync.d.ts +26 -0
- package/lib/Types/USync.js +3 -0
- package/lib/Types/index.d.ts +79 -0
- package/lib/Types/index.js +48 -0
- package/lib/Utils/auth-utils.d.ts +21 -0
- package/lib/Utils/auth-utils.js +205 -0
- package/lib/Utils/baileys-event-stream.d.ts +18 -0
- package/lib/Utils/baileys-event-stream.js +70 -0
- package/lib/Utils/business.d.ts +29 -0
- package/lib/Utils/business.js +255 -0
- package/lib/Utils/chat-utils.d.ts +82 -0
- package/lib/Utils/chat-utils.js +781 -0
- package/lib/Utils/check-npm-version.d.ts +15 -0
- package/lib/Utils/check-npm-version.js +52 -0
- package/lib/Utils/crypto.d.ts +56 -0
- package/lib/Utils/crypto.js +179 -0
- package/lib/Utils/decode-wa-message.d.ts +41 -0
- package/lib/Utils/decode-wa-message.js +253 -0
- package/lib/Utils/event-buffer.d.ts +39 -0
- package/lib/Utils/event-buffer.js +565 -0
- package/lib/Utils/generics.d.ts +129 -0
- package/lib/Utils/generics.js +618 -0
- package/lib/Utils/history.d.ts +23 -0
- package/lib/Utils/history.js +110 -0
- package/lib/Utils/index.d.ts +19 -0
- package/lib/Utils/index.js +41 -0
- package/lib/Utils/link-preview.d.ts +23 -0
- package/lib/Utils/link-preview.js +120 -0
- package/lib/Utils/logger.d.ts +13 -0
- package/lib/Utils/logger.js +7 -0
- package/lib/Utils/lt-hash.d.ts +14 -0
- package/lib/Utils/lt-hash.js +58 -0
- package/lib/Utils/make-mutex.d.ts +9 -0
- package/lib/Utils/make-mutex.js +49 -0
- package/lib/Utils/message-retry-manager.d.ts +82 -0
- package/lib/Utils/message-retry-manager.js +177 -0
- package/lib/Utils/messages-media.d.ts +129 -0
- package/lib/Utils/messages-media.js +806 -0
- package/lib/Utils/messages.d.ts +103 -0
- package/lib/Utils/messages.js +1579 -0
- package/lib/Utils/noise-handler.d.ts +20 -0
- package/lib/Utils/noise-handler.js +155 -0
- package/lib/Utils/process-message.d.ts +49 -0
- package/lib/Utils/process-message.js +428 -0
- package/lib/Utils/signal.d.ts +42 -0
- package/lib/Utils/signal.js +166 -0
- package/lib/Utils/use-mongo-file-auth-state.d.ts +6 -0
- package/lib/Utils/use-mongo-file-auth-state.js +84 -0
- package/lib/Utils/use-multi-file-auth-state.d.ts +18 -0
- package/lib/Utils/use-multi-file-auth-state.js +238 -0
- package/lib/Utils/use-single-file-auth-state.d.ts +13 -0
- package/lib/Utils/use-single-file-auth-state.js +80 -0
- package/lib/Utils/validate-connection.d.ts +13 -0
- package/lib/Utils/validate-connection.js +187 -0
- package/lib/WABinary/constants.d.ts +30 -0
- package/lib/WABinary/constants.js +1316 -0
- package/lib/WABinary/decode.d.ts +9 -0
- package/lib/WABinary/decode.js +288 -0
- package/lib/WABinary/encode.d.ts +3 -0
- package/lib/WABinary/encode.js +265 -0
- package/lib/WABinary/generic-utils.d.ts +28 -0
- package/lib/WABinary/generic-utils.js +142 -0
- package/lib/WABinary/index.d.ts +5 -0
- package/lib/WABinary/index.js +25 -0
- package/lib/WABinary/jid-utils.d.ts +53 -0
- package/lib/WABinary/jid-utils.js +92 -0
- package/lib/WABinary/types.d.ts +22 -0
- package/lib/WABinary/types.js +3 -0
- package/lib/WAM/BinaryInfo.d.ts +16 -0
- package/lib/WAM/BinaryInfo.js +17 -0
- package/lib/WAM/constants.d.ts +47 -0
- package/lib/WAM/constants.js +15371 -0
- package/lib/WAM/encode.d.ts +3 -0
- package/lib/WAM/encode.js +165 -0
- package/lib/WAM/index.d.ts +3 -0
- package/lib/WAM/index.js +23 -0
- package/lib/WAUSync/Protocols/USyncBotProfileProtocol.d.ts +28 -0
- package/lib/WAUSync/Protocols/USyncBotProfileProtocol.js +69 -0
- package/lib/WAUSync/Protocols/USyncContactProtocol.d.ts +10 -0
- package/lib/WAUSync/Protocols/USyncContactProtocol.js +36 -0
- package/lib/WAUSync/Protocols/USyncDeviceProtocol.d.ts +26 -0
- package/lib/WAUSync/Protocols/USyncDeviceProtocol.js +62 -0
- package/lib/WAUSync/Protocols/USyncDisappearingModeProtocol.d.ts +14 -0
- package/lib/WAUSync/Protocols/USyncDisappearingModeProtocol.js +35 -0
- package/lib/WAUSync/Protocols/USyncLIDProtocol.d.ts +9 -0
- package/lib/WAUSync/Protocols/USyncLIDProtocol.js +30 -0
- package/lib/WAUSync/Protocols/USyncStatusProtocol.d.ts +14 -0
- package/lib/WAUSync/Protocols/USyncStatusProtocol.js +46 -0
- package/lib/WAUSync/Protocols/index.d.ts +6 -0
- package/lib/WAUSync/Protocols/index.js +26 -0
- package/lib/WAUSync/USyncQuery.d.ts +31 -0
- package/lib/WAUSync/USyncQuery.js +92 -0
- package/lib/WAUSync/USyncUser.d.ts +12 -0
- package/lib/WAUSync/USyncUser.js +30 -0
- package/lib/WAUSync/index.d.ts +3 -0
- package/lib/WAUSync/index.js +23 -0
- package/lib/index.d.ts +13 -0
- package/lib/index.js +33 -0
- package/package.json +88 -10
- package/index.js +0 -38
|
@@ -0,0 +1,187 @@
|
|
|
1
|
+
import { GetCatalogOptions, ProductCreate, ProductUpdate, SocketConfig } from '../Types'
|
|
2
|
+
import { BinaryNode } from '../WABinary'
|
|
3
|
+
|
|
4
|
+
export declare const makeBusinessSocket: (config: SocketConfig) => {
|
|
5
|
+
logger: import("../Utils/logger").ILogger
|
|
6
|
+
getOrderDetails: (orderId: string, tokenBase64: string) => Promise<import("../Types").OrderDetails>
|
|
7
|
+
getCatalog: ({ jid, limit, cursor }: GetCatalogOptions) => Promise<{
|
|
8
|
+
products: import("../Types").Product[]
|
|
9
|
+
nextPageCursor: string | undefined
|
|
10
|
+
}>
|
|
11
|
+
getCollections: (jid?: string, limit?: number) => Promise<{
|
|
12
|
+
collections: import("../Types").CatalogCollection[]
|
|
13
|
+
}>
|
|
14
|
+
productCreate: (create: ProductCreate) => Promise<import("../Types").Product>
|
|
15
|
+
productDelete: (productIds: string[]) => Promise<{
|
|
16
|
+
deleted: number
|
|
17
|
+
}>
|
|
18
|
+
productUpdate: (productId: string, update: ProductUpdate) => Promise<import("../Types").Product>
|
|
19
|
+
sendMessageAck: ({ tag, attrs, content }: BinaryNode, errorCode?: number | undefined) => Promise<void>
|
|
20
|
+
sendRetryRequest: (node: BinaryNode, forceIncludeKeys?: boolean) => Promise<void>
|
|
21
|
+
offerCall: (toJid: string, isVideo?: boolean) => Promise<{
|
|
22
|
+
id: any
|
|
23
|
+
to: string
|
|
24
|
+
}>
|
|
25
|
+
nodelogger: (node: BinaryNode) => Promise<void>
|
|
26
|
+
rejectCall: (callId: string, callFrom: string) => Promise<void>
|
|
27
|
+
fetchMessageHistory: (count: number, oldestMsgKey: import("../Types").WAProto.IMessageKey, oldestMsgTimestamp: number | import("long").Long) => Promise<string>
|
|
28
|
+
requestPlaceholderResend: (messageKey: import("../Types").WAProto.IMessageKey) => Promise<string | undefined>
|
|
29
|
+
getPrivacyTokens: (jids: string[]) => Promise<BinaryNode>
|
|
30
|
+
assertSessions: (jids: string[], force: boolean) => Promise<boolean>
|
|
31
|
+
relayMessage: (jid: string, message: import("../Types").WAProto.IMessage, { messageId: msgId, participant, additionalAttributes, additionalNodes, useUserDevicesCache, useCachedGroupMetadata, 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").WAProto.IMessageKey[], type: import("../Types").MessageReceiptType) => Promise<void>
|
|
34
|
+
readMessages: (keys: import("../Types").WAProto.IMessageKey[]) => Promise<void>
|
|
35
|
+
refreshMediaConn: (forceGet?: boolean) => Promise<import("../Types").MediaConnInfo>
|
|
36
|
+
waUploadToServer: import("../Types").WAMediaUploadFunction
|
|
37
|
+
fetchPrivacySettings: (force?: boolean) => Promise<{
|
|
38
|
+
[_: string]: string
|
|
39
|
+
}>
|
|
40
|
+
sendPeerDataOperationMessage: (pdoMessage: import("../Types").WAProto.Message.IPeerDataOperationRequestMessage) => Promise<string>
|
|
41
|
+
createParticipantNodes: (jids: string[], message: import("../Types").WAProto.IMessage, extraAttrs?: {
|
|
42
|
+
[key: string]: string
|
|
43
|
+
} | undefined) => Promise<{
|
|
44
|
+
nodes: BinaryNode[]
|
|
45
|
+
shouldIncludeDeviceIdentity: boolean
|
|
46
|
+
}>
|
|
47
|
+
profilePictureUrl: (jid: string) => Promise<string>
|
|
48
|
+
getUSyncDevices: (jids: string[], useCache: boolean, ignoreZeroDevices: boolean) => Promise<import("../WABinary").JidWithDevice[]>
|
|
49
|
+
getEphemeralGroup: (jid: string) => Promise<number>
|
|
50
|
+
updateMediaMessage: (message: import("../Types").WAProto.IWebMessageInfo) => Promise<import("../Types").WAProto.IWebMessageInfo>
|
|
51
|
+
sendStatusMentions: (content: import("../Types").WAProto.IMessage, jid: string, Private?: boolean) => Promise<string>
|
|
52
|
+
sendMessage: (jid: string, content: import("../Types").AnyMessageContent, options?: import("../Types").MiscMessageGenerationOptions) => Promise<import("../Types").WAProto.WebMessageInfo | undefined>
|
|
53
|
+
groupMetadata: (jid: string) => Promise<import("../Types").GroupMetadata>
|
|
54
|
+
groupCreate: (subject: string, participants: string[]) => Promise<import("../Types").GroupMetadata>
|
|
55
|
+
groupLeave: (id: string) => Promise<void>
|
|
56
|
+
groupUpdateSubject: (jid: string, subject: string) => Promise<void>
|
|
57
|
+
groupRequestParticipantsList: (jid: string) => Promise<{
|
|
58
|
+
[key: string]: string
|
|
59
|
+
}[]>
|
|
60
|
+
groupRequestParticipantsUpdate: (jid: string, participants: string[], action: "reject" | "approve") => Promise<{
|
|
61
|
+
status: string
|
|
62
|
+
jid: string
|
|
63
|
+
}[]>
|
|
64
|
+
groupParticipantsUpdate: (jid: string, participants: string[], action: import("../Types").ParticipantAction) => Promise<{
|
|
65
|
+
status: string
|
|
66
|
+
jid: string
|
|
67
|
+
content: BinaryNode
|
|
68
|
+
}[]>
|
|
69
|
+
subscribeNewsletterUpdates: (jid: string) => Promise<{
|
|
70
|
+
duration: string
|
|
71
|
+
}>
|
|
72
|
+
newsletterReactionMode: (jid: string, mode: import("../Types").NewsletterReactionMode) => Promise<void>
|
|
73
|
+
newsletterUpdateDescription: (jid: string, description?: string | undefined) => Promise<void>
|
|
74
|
+
newsletterUpdateName: (jid: string, name: string) => Promise<void>
|
|
75
|
+
newsletterUpdatePicture: (jid: string, content: import("../Types").WAMediaUpload) => Promise<void>
|
|
76
|
+
newsletterRemovePicture: (jid: string) => Promise<void>
|
|
77
|
+
newsletterUnfollow: (jid: string) => Promise<void>
|
|
78
|
+
newsletterFollow: (jid: string) => Promise<void>
|
|
79
|
+
newsletterUnmute: (jid: string) => Promise<void>
|
|
80
|
+
newsletterMute: (jid: string) => Promise<void>
|
|
81
|
+
newsletterCreate: (name: string, description?: string, picture?: import("../Types").WAMediaUpload) => Promise<import("../Types").NewsletterMetadata>
|
|
82
|
+
newsletterQuery: (jid: string, type: string, content: BinaryNode) => Promise<BinaryNode>
|
|
83
|
+
newsletterWMexQuery: (jid?: string | undefined, query_id: number, content: BinaryNode) => Promise<BinaryNode>
|
|
84
|
+
newsletterMetadata: (type: "invite" | "jid", key: string, role?: import("../Types").NewsletterViewRole | undefined) => Promise<import("../Types").NewsletterMetadata>
|
|
85
|
+
newsletterFetchAllParticipating: () => Promise<{
|
|
86
|
+
[_: string]: import("../Types").NewsletterMetadata
|
|
87
|
+
}>
|
|
88
|
+
newsletterAdminCount: (jid: string) => Promise<number>
|
|
89
|
+
newsletterChangeOwner: (jid: string, userLid: string) => Promise<void>
|
|
90
|
+
newsletterDemote: (jid: string, userLid: string) => Promise<void>
|
|
91
|
+
newsletterDelete: (jid: string) => Promise<void>
|
|
92
|
+
newsletterReactMessage: (jid: string, server_id: string, code?: string | undefined) => Promise<void>
|
|
93
|
+
newsletterFetchMessages: (type: "invite" | "jid", key: string, count: number, after?: number | undefined) => Promise<import("../Types").NewsletterFetchedUpdate[]>
|
|
94
|
+
newsletterFetchUpdates: (jid: string, count: number, after?: number | undefined, since?: number | undefined) => Promise<import("../Types").NewsletterFetchedUpdate[]>
|
|
95
|
+
groupQuery: (jid: string, type: string, content: BinaryNode) => Promise<BinaryNode>
|
|
96
|
+
groupUpdateDescription: (jid: string, description?: string | undefined) => Promise<void>
|
|
97
|
+
groupInviteCode: (jid: string) => Promise<string | undefined>
|
|
98
|
+
groupRevokeInvite: (jid: string) => Promise<string | undefined>
|
|
99
|
+
groupAcceptInvite: (code: string) => Promise<string | undefined>
|
|
100
|
+
groupRevokeInviteV4: (groupJid: string, invitedJid: string) => Promise<boolean>
|
|
101
|
+
groupAcceptInviteV4: (key: string | import("../Types").WAProto.IMessageKey, inviteMessage: import("../Types").WAProto.Message.IGroupInviteMessage) => Promise<string>
|
|
102
|
+
groupGetInviteInfo: (code: string) => Promise<import("../Types").GroupMetadata>
|
|
103
|
+
groupToggleEphemeral: (jid: string, ephemeralExpiration: number) => Promise<void>
|
|
104
|
+
groupSettingUpdate: (jid: string, setting: "announcement" | "locked" | "not_announcement" | "unlocked") => Promise<void>
|
|
105
|
+
groupMemberAddMode: (jid: string, mode: "all_member_add" | "admin_add") => Promise<void>
|
|
106
|
+
groupJoinApprovalMode: (jid: string, mode: "on" | "off") => Promise<void>
|
|
107
|
+
groupFetchAllParticipating: () => Promise<{
|
|
108
|
+
[_: string]: import("../Types").GroupMetadata
|
|
109
|
+
}>
|
|
110
|
+
processingMutex: {
|
|
111
|
+
mutex<T>(code: () => T | Promise<T>): Promise<T>
|
|
112
|
+
}
|
|
113
|
+
upsertMessage: (msg: import("../Types").WAProto.IWebMessageInfo, type: import("../Types").MessageUpsertType) => Promise<void>
|
|
114
|
+
appPatch: (patchCreate: import("../Types").WAPatchCreate) => Promise<void>
|
|
115
|
+
sendPresenceUpdate: (type: import("../Types").WAPresence, toJid?: string | undefined) => Promise<void>
|
|
116
|
+
presenceSubscribe: (toJid: string, tcToken?: Buffer | undefined) => Promise<void>
|
|
117
|
+
getBotListV2: () => Promise<BotListInfo[]>
|
|
118
|
+
getLidUser: (jid: string) => Promise<{
|
|
119
|
+
lid: string
|
|
120
|
+
id: string
|
|
121
|
+
}[] | undefined>
|
|
122
|
+
onWhatsApp: (...jids: string[]) => Promise<{
|
|
123
|
+
jid: string
|
|
124
|
+
exists: unknown
|
|
125
|
+
}[] | undefined>
|
|
126
|
+
fetchBlocklist: () => Promise<string[]>
|
|
127
|
+
fetchStatus: (...jids: string[]) => Promise<import("..").USyncQueryResultList[] | undefined>
|
|
128
|
+
fetchDisappearingDuration: (...jids: string[]) => Promise<import("..").USyncQueryResultList[] | undefined>
|
|
129
|
+
updateProfilePicture: (jid: string, content: import("../Types").WAMediaUpload) => Promise<void>
|
|
130
|
+
removeProfilePicture: (jid: string) => Promise<void>
|
|
131
|
+
updateProfileStatus: (status: string) => Promise<void>
|
|
132
|
+
updateProfileName: (name: string) => Promise<void>
|
|
133
|
+
updateBlockStatus: (jid: string, action: "block" | "unblock") => Promise<void>
|
|
134
|
+
updateCallPrivacy: (value: import("../Types").WAPrivacyCallValue) => Promise<void>
|
|
135
|
+
updateLastSeenPrivacy: (value: import("../Types").WAPrivacyValue) => Promise<void>
|
|
136
|
+
updateOnlinePrivacy: (value: import("../Types").WAPrivacyOnlineValue) => Promise<void>
|
|
137
|
+
updateProfilePicturePrivacy: (value: import("../Types").WAPrivacyValue) => Promise<void>
|
|
138
|
+
updateStatusPrivacy: (value: import("../Types").WAPrivacyValue) => Promise<void>
|
|
139
|
+
updateReadReceiptsPrivacy: (value: import("../Types").WAReadReceiptsValue) => Promise<void>
|
|
140
|
+
updateGroupsAddPrivacy: (value: import("../Types").WAPrivacyGroupAddValue) => Promise<void>
|
|
141
|
+
updateDefaultDisappearingMode: (duration: number) => Promise<void>
|
|
142
|
+
updateDisableLinkPreviewsPrivacy: (isPreviewsDisabled: boolean) => Promise<void>
|
|
143
|
+
getBusinessProfile: (jid: string) => Promise<void | import("../Types").WABusinessProfile>
|
|
144
|
+
resyncAppState: (collections: readonly ("critical_block" | "critical_unblock_low" | "regular_high" | "regular_low" | "regular")[], isInitialSync: boolean) => Promise<void>
|
|
145
|
+
chatModify: (mod: import("../Types").ChatModification, jid: string) => Promise<void>
|
|
146
|
+
cleanDirtyBits: (type: "account_sync" | "groups", fromTimestamp?: string | number | undefined) => Promise<void>
|
|
147
|
+
addLabel: (jid: string, labels: import("../Types/Label").LabelActionBody) => Promise<void>
|
|
148
|
+
addChatLabel: (jid: string, labelId: string) => Promise<void>
|
|
149
|
+
removeChatLabel: (jid: string, labelId: string) => Promise<void>
|
|
150
|
+
addMessageLabel: (jid: string, messageId: string, labelId: string) => Promise<void>
|
|
151
|
+
removeMessageLabel: (jid: string, messageId: string, labelId: string) => Promise<void>
|
|
152
|
+
clearMessage: (jid: string, key: import("../Types").WAProto.IMessageKey, timeStamp: number | import("long").Long) => Promise<void>
|
|
153
|
+
star: (jid: string, messages: {
|
|
154
|
+
id: string
|
|
155
|
+
fromMe?: boolean | undefined
|
|
156
|
+
}[], star: boolean) => Promise<void>
|
|
157
|
+
executeUSyncQuery: (usyncQuery: import("..").USyncQuery) => Promise<import("..").USyncQueryResult | undefined>
|
|
158
|
+
type: "md"
|
|
159
|
+
ws: import("./Client").WebSocketClient
|
|
160
|
+
ev: import("../Types").BaileysEventEmitter & {
|
|
161
|
+
process(handler: (events: Partial<import("../Types").BaileysEventMap>) => void | Promise<void>): () => void
|
|
162
|
+
buffer(): void
|
|
163
|
+
createBufferedFunction<A extends any[], T_1>(work: (...args: A) => Promise<T_1>): (...args: A) => Promise<T_1>
|
|
164
|
+
flush(force?: boolean | undefined): boolean
|
|
165
|
+
isBuffering(): boolean
|
|
166
|
+
}
|
|
167
|
+
authState: {
|
|
168
|
+
creds: import("../Types").AuthenticationCreds
|
|
169
|
+
keys: import("../Types").SignalKeyStoreWithTransaction
|
|
170
|
+
}
|
|
171
|
+
signalRepository: import("../Types").SignalRepository
|
|
172
|
+
user: import("../Types").Contact | undefined
|
|
173
|
+
generateMessageTag: () => string
|
|
174
|
+
query: (node: BinaryNode, timeoutMs?: number | undefined) => Promise<BinaryNode>
|
|
175
|
+
waitForMessage: <T_2>(msgId: string, timeoutMs?: number | undefined) => Promise<T_2>
|
|
176
|
+
waitForSocketOpen: () => Promise<void>
|
|
177
|
+
sendRawMessage: (data: Uint8Array | Buffer) => Promise<void>
|
|
178
|
+
sendNode: (frame: BinaryNode) => Promise<void>
|
|
179
|
+
logout: (msg?: string | undefined) => Promise<void>
|
|
180
|
+
end: (error: Error | undefined) => void
|
|
181
|
+
onUnexpectedError: (err: Error | import("@hapi/boom").Boom<any>, msg: string) => void
|
|
182
|
+
uploadPreKeys: (count?: number) => Promise<void>
|
|
183
|
+
uploadPreKeysToServerIfRequired: () => Promise<void>
|
|
184
|
+
requestPairingCode: (phoneNumber: string, code?: string) => Promise<string>
|
|
185
|
+
waitForConnectionUpdate: (check: (u: Partial<import("../Types").ConnectionState>) => boolean | undefined, timeoutMs?: number | undefined) => Promise<void>
|
|
186
|
+
sendWAMBuffer: (wamBuffer: Buffer) => Promise<BinaryNode>
|
|
187
|
+
}
|
|
@@ -0,0 +1,268 @@
|
|
|
1
|
+
"use strict"
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", { value: true })
|
|
4
|
+
|
|
5
|
+
const business_1 = require("../Utils/business")
|
|
6
|
+
const WABinary_1 = require("../WABinary")
|
|
7
|
+
const generic_utils_1 = require("../WABinary/generic-utils")
|
|
8
|
+
const messages_recv_1 = require("./messages-recv")
|
|
9
|
+
|
|
10
|
+
const makeBusinessSocket = (config) => {
|
|
11
|
+
const Neele = messages_recv_1.makeMessagesRecvSocket(config)
|
|
12
|
+
const { authState, query, waUploadToServer } = Neele
|
|
13
|
+
const getCatalog = async ({ jid, limit, cursor }) => {
|
|
14
|
+
jid = jid || authState.creds.me?.id
|
|
15
|
+
jid = WABinary_1.jidNormalizedUser(jid)
|
|
16
|
+
const queryParamNodes = [
|
|
17
|
+
{
|
|
18
|
+
tag: 'limit',
|
|
19
|
+
attrs: {},
|
|
20
|
+
content: Buffer.from((limit || 10).toString())
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
tag: 'width',
|
|
24
|
+
attrs: {},
|
|
25
|
+
content: Buffer.from('100')
|
|
26
|
+
},
|
|
27
|
+
{
|
|
28
|
+
tag: 'height',
|
|
29
|
+
attrs: {},
|
|
30
|
+
content: Buffer.from('100')
|
|
31
|
+
},
|
|
32
|
+
]
|
|
33
|
+
if (cursor) {
|
|
34
|
+
queryParamNodes.push({
|
|
35
|
+
tag: 'after',
|
|
36
|
+
attrs: {},
|
|
37
|
+
content: cursor
|
|
38
|
+
})
|
|
39
|
+
}
|
|
40
|
+
const result = await query({
|
|
41
|
+
tag: 'iq',
|
|
42
|
+
attrs: {
|
|
43
|
+
to: WABinary_1.S_WHATSAPP_NET,
|
|
44
|
+
type: 'get',
|
|
45
|
+
xmlns: 'w:biz:catalog'
|
|
46
|
+
},
|
|
47
|
+
content: [
|
|
48
|
+
{
|
|
49
|
+
tag: 'product_catalog',
|
|
50
|
+
attrs: {
|
|
51
|
+
jid,
|
|
52
|
+
'allow_shop_source': 'true'
|
|
53
|
+
},
|
|
54
|
+
content: queryParamNodes
|
|
55
|
+
}
|
|
56
|
+
]
|
|
57
|
+
})
|
|
58
|
+
return business_1.parseCatalogNode(result)
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
const getCollections = async (jid, limit = 51) => {
|
|
62
|
+
jid = jid || authState.creds.me?.id
|
|
63
|
+
jid = WABinary_1.jidNormalizedUser(jid)
|
|
64
|
+
const result = await query({
|
|
65
|
+
tag: 'iq',
|
|
66
|
+
attrs: {
|
|
67
|
+
to: WABinary_1.S_WHATSAPP_NET,
|
|
68
|
+
type: 'get',
|
|
69
|
+
xmlns: 'w:biz:catalog',
|
|
70
|
+
'smax_id': '35'
|
|
71
|
+
},
|
|
72
|
+
content: [
|
|
73
|
+
{
|
|
74
|
+
tag: 'collections',
|
|
75
|
+
attrs: {
|
|
76
|
+
'biz_jid': jid,
|
|
77
|
+
},
|
|
78
|
+
content: [
|
|
79
|
+
{
|
|
80
|
+
tag: 'collection_limit',
|
|
81
|
+
attrs: {},
|
|
82
|
+
content: Buffer.from(limit.toString())
|
|
83
|
+
},
|
|
84
|
+
{
|
|
85
|
+
tag: 'item_limit',
|
|
86
|
+
attrs: {},
|
|
87
|
+
content: Buffer.from(limit.toString())
|
|
88
|
+
},
|
|
89
|
+
{
|
|
90
|
+
tag: 'width',
|
|
91
|
+
attrs: {},
|
|
92
|
+
content: Buffer.from('100')
|
|
93
|
+
},
|
|
94
|
+
{
|
|
95
|
+
tag: 'height',
|
|
96
|
+
attrs: {},
|
|
97
|
+
content: Buffer.from('100')
|
|
98
|
+
}
|
|
99
|
+
]
|
|
100
|
+
}
|
|
101
|
+
]
|
|
102
|
+
})
|
|
103
|
+
return business_1.parseCollectionsNode(result)
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
const getOrderDetails = async (orderId, tokenBase64) => {
|
|
107
|
+
const result = await query({
|
|
108
|
+
tag: 'iq',
|
|
109
|
+
attrs: {
|
|
110
|
+
to: WABinary_1.S_WHATSAPP_NET,
|
|
111
|
+
type: 'get',
|
|
112
|
+
xmlns: 'fb:thrift_iq',
|
|
113
|
+
'smax_id': '5'
|
|
114
|
+
},
|
|
115
|
+
content: [
|
|
116
|
+
{
|
|
117
|
+
tag: 'order',
|
|
118
|
+
attrs: {
|
|
119
|
+
op: 'get',
|
|
120
|
+
id: orderId
|
|
121
|
+
},
|
|
122
|
+
content: [
|
|
123
|
+
{
|
|
124
|
+
tag: 'image_dimensions',
|
|
125
|
+
attrs: {},
|
|
126
|
+
content: [
|
|
127
|
+
{
|
|
128
|
+
tag: 'width',
|
|
129
|
+
attrs: {},
|
|
130
|
+
content: Buffer.from('100')
|
|
131
|
+
},
|
|
132
|
+
{
|
|
133
|
+
tag: 'height',
|
|
134
|
+
attrs: {},
|
|
135
|
+
content: Buffer.from('100')
|
|
136
|
+
}
|
|
137
|
+
]
|
|
138
|
+
},
|
|
139
|
+
{
|
|
140
|
+
tag: 'token',
|
|
141
|
+
attrs: {},
|
|
142
|
+
content: Buffer.from(tokenBase64)
|
|
143
|
+
}
|
|
144
|
+
]
|
|
145
|
+
}
|
|
146
|
+
]
|
|
147
|
+
})
|
|
148
|
+
return business_1.parseOrderDetailsNode(result)
|
|
149
|
+
}
|
|
150
|
+
|
|
151
|
+
const productUpdate = async (productId, update) => {
|
|
152
|
+
update = await business_1.uploadingNecessaryImagesOfProduct(update, waUploadToServer)
|
|
153
|
+
const editNode = business_1.toProductNode(productId, update)
|
|
154
|
+
const result = await query({
|
|
155
|
+
tag: 'iq',
|
|
156
|
+
attrs: {
|
|
157
|
+
to: WABinary_1.S_WHATSAPP_NET,
|
|
158
|
+
type: 'set',
|
|
159
|
+
xmlns: 'w:biz:catalog'
|
|
160
|
+
},
|
|
161
|
+
content: [
|
|
162
|
+
{
|
|
163
|
+
tag: 'product_catalog_edit',
|
|
164
|
+
attrs: { v: '1' },
|
|
165
|
+
content: [
|
|
166
|
+
editNode,
|
|
167
|
+
{
|
|
168
|
+
tag: 'width',
|
|
169
|
+
attrs: {},
|
|
170
|
+
content: '100'
|
|
171
|
+
},
|
|
172
|
+
{
|
|
173
|
+
tag: 'height',
|
|
174
|
+
attrs: {},
|
|
175
|
+
content: '100'
|
|
176
|
+
}
|
|
177
|
+
]
|
|
178
|
+
}
|
|
179
|
+
]
|
|
180
|
+
})
|
|
181
|
+
const productCatalogEditNode = generic_utils_1.getBinaryNodeChild(result, 'product_catalog_edit')
|
|
182
|
+
const productNode = generic_utils_1.getBinaryNodeChild(productCatalogEditNode, 'product')
|
|
183
|
+
return business_1.parseProductNode(productNode)
|
|
184
|
+
}
|
|
185
|
+
|
|
186
|
+
const productCreate = async (create) => {
|
|
187
|
+
// ensure isHidden is defined
|
|
188
|
+
create.isHidden = !!create.isHidden
|
|
189
|
+
create = await business_1.uploadingNecessaryImagesOfProduct(create, waUploadToServer)
|
|
190
|
+
const createNode = business_1.toProductNode(undefined, create)
|
|
191
|
+
const result = await query({
|
|
192
|
+
tag: 'iq',
|
|
193
|
+
attrs: {
|
|
194
|
+
to: WABinary_1.S_WHATSAPP_NET,
|
|
195
|
+
type: 'set',
|
|
196
|
+
xmlns: 'w:biz:catalog'
|
|
197
|
+
},
|
|
198
|
+
content: [
|
|
199
|
+
{
|
|
200
|
+
tag: 'product_catalog_add',
|
|
201
|
+
attrs: { v: '1' },
|
|
202
|
+
content: [
|
|
203
|
+
createNode,
|
|
204
|
+
{
|
|
205
|
+
tag: 'width',
|
|
206
|
+
attrs: {},
|
|
207
|
+
content: '100'
|
|
208
|
+
},
|
|
209
|
+
{
|
|
210
|
+
tag: 'height',
|
|
211
|
+
attrs: {},
|
|
212
|
+
content: '100'
|
|
213
|
+
}
|
|
214
|
+
]
|
|
215
|
+
}
|
|
216
|
+
]
|
|
217
|
+
})
|
|
218
|
+
const productCatalogAddNode = generic_utils_1.getBinaryNodeChild(result, 'product_catalog_add')
|
|
219
|
+
const productNode = generic_utils_1.getBinaryNodeChild(productCatalogAddNode, 'product')
|
|
220
|
+
return business_1.parseProductNode(productNode)
|
|
221
|
+
}
|
|
222
|
+
|
|
223
|
+
const productDelete = async (productIds) => {
|
|
224
|
+
const result = await query({
|
|
225
|
+
tag: 'iq',
|
|
226
|
+
attrs: {
|
|
227
|
+
to: WABinary_1.S_WHATSAPP_NET,
|
|
228
|
+
type: 'set',
|
|
229
|
+
xmlns: 'w:biz:catalog'
|
|
230
|
+
},
|
|
231
|
+
content: [
|
|
232
|
+
{
|
|
233
|
+
tag: 'product_catalog_delete',
|
|
234
|
+
attrs: { v: '1' },
|
|
235
|
+
content: productIds.map(id => ({
|
|
236
|
+
tag: 'product',
|
|
237
|
+
attrs: {},
|
|
238
|
+
content: [
|
|
239
|
+
{
|
|
240
|
+
tag: 'id',
|
|
241
|
+
attrs: {},
|
|
242
|
+
content: Buffer.from(id)
|
|
243
|
+
}
|
|
244
|
+
]
|
|
245
|
+
}))
|
|
246
|
+
}
|
|
247
|
+
]
|
|
248
|
+
})
|
|
249
|
+
const productCatalogDelNode = generic_utils_1.getBinaryNodeChild(result, 'product_catalog_delete')
|
|
250
|
+
return {
|
|
251
|
+
deleted: +(productCatalogDelNode?.attrs?.deleted_count || 0)
|
|
252
|
+
}
|
|
253
|
+
}
|
|
254
|
+
return {
|
|
255
|
+
...Neele,
|
|
256
|
+
logger: config.logger,
|
|
257
|
+
getOrderDetails,
|
|
258
|
+
getCatalog,
|
|
259
|
+
getCollections,
|
|
260
|
+
productCreate,
|
|
261
|
+
productDelete,
|
|
262
|
+
productUpdate
|
|
263
|
+
}
|
|
264
|
+
}
|
|
265
|
+
|
|
266
|
+
module.exports = {
|
|
267
|
+
makeBusinessSocket
|
|
268
|
+
}
|
|
@@ -0,0 +1,98 @@
|
|
|
1
|
+
import { Boom } from '@hapi/boom'
|
|
2
|
+
import { proto } from '../../WAProto'
|
|
3
|
+
import { BotListInfo, ChatModification, ContactAction, MessageUpsertType, SocketConfig, WABusinessProfile, WAMediaUpload, WAPatchCreate, WAPresence, WAPrivacyCallValue, WAPrivacyGroupAddValue, WAPrivacyMessagesValue, WAPrivacyOnlineValue, WAPrivacyValue, WAReadReceiptsValue } from '../Types'
|
|
4
|
+
import { LabelActionBody } from '../Types/Label'
|
|
5
|
+
import { BinaryNode } from '../WABinary'
|
|
6
|
+
import { USyncQuery } from '../WAUSync'
|
|
7
|
+
|
|
8
|
+
export declare const makeChatsSocket: (config: SocketConfig) => {
|
|
9
|
+
processingMutex: {
|
|
10
|
+
mutex<T>(code: () => T | Promise<T>): Promise<T>
|
|
11
|
+
}
|
|
12
|
+
fetchPrivacySettings: (force?: boolean) => Promise<{
|
|
13
|
+
[_: string]: string
|
|
14
|
+
}>
|
|
15
|
+
upsertMessage: (msg: proto.IWebMessageInfo, type: MessageUpsertType) => Promise<void>
|
|
16
|
+
appPatch: (patchCreate: WAPatchCreate) => Promise<void>
|
|
17
|
+
createCallLink: (type: 'audio' | 'video', event?: number, timeoutMs?: number) => Promise<void>
|
|
18
|
+
sendPresenceUpdate: (type: WAPresence, toJid?: string) => Promise<void>
|
|
19
|
+
presenceSubscribe: (toJid: string, tcToken?: Buffer) => Promise<void>
|
|
20
|
+
getBotListV2: () => Promise<BotListInfo[]>
|
|
21
|
+
getLidUser: (jid: string) => Promise<{
|
|
22
|
+
lid: string
|
|
23
|
+
id: string
|
|
24
|
+
}[] | undefined>
|
|
25
|
+
onWhatsApp: (...jids: string[]) => Promise<{
|
|
26
|
+
jid: string
|
|
27
|
+
exists: unknown
|
|
28
|
+
}[] | undefined>
|
|
29
|
+
fetchBlocklist: () => Promise<string[]>
|
|
30
|
+
fetchStatus: (...jids: string[]) => Promise<import("../WAUSync").USyncQueryResultList[] | undefined>
|
|
31
|
+
fetchDisappearingDuration: (...jids: string[]) => Promise<import("../WAUSync").USyncQueryResultList[] | undefined>
|
|
32
|
+
updateProfilePicture: (jid: string, content: WAMediaUpload) => Promise<void>
|
|
33
|
+
removeProfilePicture: (jid: string) => Promise<void>
|
|
34
|
+
updateProfileStatus: (status: string) => Promise<void>
|
|
35
|
+
updateProfileName: (name: string) => Promise<void>
|
|
36
|
+
updateBlockStatus: (jid: string, action: 'block' | 'unblock') => Promise<void>
|
|
37
|
+
updateCallPrivacy: (value: WAPrivacyCallValue) => Promise<void>
|
|
38
|
+
updateMessagesPrivacy: (value: WAPrivacyMessagesValue) => Promise<void>
|
|
39
|
+
updateLastSeenPrivacy: (value: WAPrivacyValue) => Promise<void>
|
|
40
|
+
updateOnlinePrivacy: (value: WAPrivacyOnlineValue) => Promise<void>
|
|
41
|
+
updateProfilePicturePrivacy: (value: WAPrivacyValue) => Promise<void>
|
|
42
|
+
updateStatusPrivacy: (value: WAPrivacyValue) => Promise<void>
|
|
43
|
+
updateReadReceiptsPrivacy: (value: WAReadReceiptsValue) => Promise<void>
|
|
44
|
+
updateGroupsAddPrivacy: (value: WAPrivacyGroupAddValue) => Promise<void>
|
|
45
|
+
updateDefaultDisappearingMode: (duration: number) => Promise<void>
|
|
46
|
+
updateDisableLinkPreviewsPrivacy: (isPreviewsDisabled: boolean) => Promise<void>
|
|
47
|
+
getBusinessProfile: (jid: string) => Promise<WABusinessProfile | void>
|
|
48
|
+
resyncAppState: (collections: readonly ("critical_block" | "critical_unblock_low" | "regular_high" | "regular_low" | "regular")[], isInitialSync: boolean) => Promise<void>
|
|
49
|
+
chatModify: (mod: ChatModification, jid: string) => Promise<void>
|
|
50
|
+
cleanDirtyBits: (type: 'account_sync' | 'groups', fromTimestamp?: number | string) => Promise<void>
|
|
51
|
+
addLabel: (jid: string, labels: LabelActionBody) => Promise<void>
|
|
52
|
+
addChatLabel: (jid: string, labelId: string) => Promise<void>
|
|
53
|
+
removeChatLabel: (jid: string, labelId: string) => Promise<void>
|
|
54
|
+
addMessageLabel: (jid: string, messageId: string, labelId: string) => Promise<void>
|
|
55
|
+
removeMessageLabel: (jid: string, messageId: string, labelId: string) => Promise<void>
|
|
56
|
+
clearMessage: (jid: string, key: import("../Types").WAProto.IMessageKey, timeStamp: number | import("long").Long) => Promise<void>
|
|
57
|
+
star: (jid: string, messages: {
|
|
58
|
+
id: string
|
|
59
|
+
fromMe?: boolean
|
|
60
|
+
}[], star: boolean) => Promise<void>
|
|
61
|
+
addOrEditContact: (jid: string, contact: ContactAction) => Promise<void>
|
|
62
|
+
removeContact: (jid: string) => Promise<void>
|
|
63
|
+
executeUSyncQuery: (usyncQuery: USyncQuery) => Promise<import("../WAUSync").USyncQueryResult | undefined>
|
|
64
|
+
type: "md"
|
|
65
|
+
ws: import("./Client").WebSocketClient
|
|
66
|
+
ev: import("../Types").BaileysEventEmitter & {
|
|
67
|
+
process(handler: (events: Partial<import("../Types").BaileysEventMap>) => void | Promise<void>): () => void
|
|
68
|
+
buffer(): void
|
|
69
|
+
createBufferedFunction<A extends any[], T_1>(work: (...args: A) => Promise<T_1>): (...args: A) => Promise<T_1>
|
|
70
|
+
flush(force?: boolean | undefined): boolean
|
|
71
|
+
isBuffering(): boolean
|
|
72
|
+
}
|
|
73
|
+
authState: {
|
|
74
|
+
creds: import("../Types").AuthenticationCreds
|
|
75
|
+
keys: import("../Types").SignalKeyStoreWithTransaction
|
|
76
|
+
}
|
|
77
|
+
signalRepository: import("../Types").SignalRepository
|
|
78
|
+
user: import("../Types").Contact | undefined
|
|
79
|
+
generateMessageTag: () => string
|
|
80
|
+
query: (node: BinaryNode, timeoutMs?: number | undefined) => Promise<BinaryNode>
|
|
81
|
+
waitForMessage: <T_2>(msgId: string, timeoutMs?: number | undefined) => Promise<T_2>
|
|
82
|
+
waitForSocketOpen: () => Promise<void>
|
|
83
|
+
sendRawMessage: (data: Uint8Array | Buffer) => Promise<void>
|
|
84
|
+
sendNode: (frame: BinaryNode) => Promise<void>
|
|
85
|
+
logout: (msg?: string | undefined) => Promise<void>
|
|
86
|
+
end: (error: Error | undefined) => void
|
|
87
|
+
onUnexpectedError: (err: Error | Boom<any>, msg: string) => void
|
|
88
|
+
uploadPreKeys: (count?: number) => Promise<void>
|
|
89
|
+
uploadPreKeysToServerIfRequired: () => Promise<void>
|
|
90
|
+
requestPairingCode: (phoneNumber: string, code?: string) => Promise<string>
|
|
91
|
+
waitForConnectionUpdate: (check: (u: Partial<import("../Types").ConnectionState>) => boolean | undefined, timeoutMs?: number | undefined) => Promise<void>
|
|
92
|
+
/**
|
|
93
|
+
* modify a chat -- mark unread, read etc.
|
|
94
|
+
* lastMessages must be sorted in reverse chronologically
|
|
95
|
+
* requires the last messages till the last message received required for archive & unread
|
|
96
|
+
*/
|
|
97
|
+
sendWAMBuffer: (wamBuffer: Buffer) => Promise<BinaryNode>
|
|
98
|
+
}
|