@japofc/baileys 2.1.0
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/NOTICE.md +111 -0
- package/README.md +1254 -0
- package/WAProto/index.d.ts +9 -0
- package/WAProto/index.js +142276 -0
- package/engine-requirements.js +13 -0
- package/lib/Builders/A2UI.d.ts +242 -0
- package/lib/Builders/A2UI.js +308 -0
- package/lib/Builders/AIRich.d.ts +105 -0
- package/lib/Builders/AIRich.js +2286 -0
- package/lib/Builders/Button.d.ts +103 -0
- package/lib/Builders/Button.js +883 -0
- package/lib/Builders/ButtonV2.d.ts +28 -0
- package/lib/Builders/ButtonV2.js +144 -0
- package/lib/Builders/ButtonV3.d.ts +25 -0
- package/lib/Builders/ButtonV3.js +184 -0
- package/lib/Builders/Carousel.d.ts +22 -0
- package/lib/Builders/Carousel.js +111 -0
- package/lib/Builders/JapBaileys.d.ts +34 -0
- package/lib/Builders/JapBaileys.js +108 -0
- package/lib/Builders/Poll.d.ts +25 -0
- package/lib/Builders/Poll.js +128 -0
- package/lib/Builders/index.d.ts +17 -0
- package/lib/Builders/index.js +11 -0
- package/lib/Builders/shared.d.ts +67 -0
- package/lib/Builders/shared.js +652 -0
- package/lib/Defaults/index.d.ts +154 -0
- package/lib/Defaults/index.js +178 -0
- package/lib/Framework/Bot.d.ts +61 -0
- package/lib/Framework/Bot.js +248 -0
- package/lib/Framework/Context.d.ts +21 -0
- package/lib/Framework/Context.js +89 -0
- package/lib/Framework/MediaManager.d.ts +17 -0
- package/lib/Framework/MediaManager.js +151 -0
- package/lib/Framework/SessionManager.d.ts +13 -0
- package/lib/Framework/SessionManager.js +33 -0
- package/lib/Framework/StatsManager.d.ts +26 -0
- package/lib/Framework/StatsManager.js +119 -0
- package/lib/Framework/Store/SQLiteStore.d.ts +11 -0
- package/lib/Framework/Store/SQLiteStore.js +73 -0
- package/lib/Framework/index.d.ts +9 -0
- package/lib/Framework/index.js +10 -0
- package/lib/Signal/Group/ciphertext-message.d.ts +9 -0
- package/lib/Signal/Group/ciphertext-message.js +11 -0
- package/lib/Signal/Group/group-session-builder.d.ts +7 -0
- package/lib/Signal/Group/group-session-builder.js +29 -0
- package/lib/Signal/Group/group_cipher.d.ts +10 -0
- package/lib/Signal/Group/group_cipher.js +81 -0
- package/lib/Signal/Group/index.d.ts +11 -0
- package/lib/Signal/Group/index.js +11 -0
- package/lib/Signal/Group/keyhelper.d.ts +6 -0
- package/lib/Signal/Group/keyhelper.js +17 -0
- package/lib/Signal/Group/sender-chain-key.d.ts +13 -0
- package/lib/Signal/Group/sender-chain-key.js +25 -0
- package/lib/Signal/Group/sender-key-distribution-message.d.ts +16 -0
- package/lib/Signal/Group/sender-key-distribution-message.js +62 -0
- package/lib/Signal/Group/sender-key-message.d.ts +18 -0
- package/lib/Signal/Group/sender-key-message.js +65 -0
- package/lib/Signal/Group/sender-key-name.d.ts +11 -0
- package/lib/Signal/Group/sender-key-name.js +47 -0
- package/lib/Signal/Group/sender-key-record.d.ts +12 -0
- package/lib/Signal/Group/sender-key-record.js +40 -0
- package/lib/Signal/Group/sender-key-state.d.ts +16 -0
- package/lib/Signal/Group/sender-key-state.js +83 -0
- package/lib/Signal/Group/sender-message-key.d.ts +11 -0
- package/lib/Signal/Group/sender-message-key.js +25 -0
- package/lib/Signal/libsignal.d.ts +54 -0
- package/lib/Signal/libsignal.js +430 -0
- package/lib/Signal/lid-mapping.d.ts +20 -0
- package/lib/Signal/lid-mapping.js +276 -0
- package/lib/Socket/Client/index.d.ts +2 -0
- package/lib/Socket/Client/index.js +2 -0
- package/lib/Socket/Client/types.d.ts +5 -0
- package/lib/Socket/Client/types.js +10 -0
- package/lib/Socket/Client/websocket.d.ts +12 -0
- package/lib/Socket/Client/websocket.js +53 -0
- package/lib/Socket/business.d.ts +395 -0
- package/lib/Socket/business.js +379 -0
- package/lib/Socket/chats.d.ts +136 -0
- package/lib/Socket/chats.js +1327 -0
- package/lib/Socket/communities.d.ts +562 -0
- package/lib/Socket/communities.js +439 -0
- package/lib/Socket/dugong.d.ts +117 -0
- package/lib/Socket/dugong.js +798 -0
- package/lib/Socket/groups.d.ts +285 -0
- package/lib/Socket/groups.js +354 -0
- package/lib/Socket/index.d.ts +585 -0
- package/lib/Socket/index.js +52 -0
- package/lib/Socket/messages-recv.d.ts +333 -0
- package/lib/Socket/messages-recv.js +1781 -0
- package/lib/Socket/messages-send.d.ts +353 -0
- package/lib/Socket/messages-send.js +1524 -0
- package/lib/Socket/mex.d.ts +1 -0
- package/lib/Socket/mex.js +41 -0
- package/lib/Socket/newsletter.d.ts +286 -0
- package/lib/Socket/newsletter.js +364 -0
- package/lib/Socket/socket.d.ts +60 -0
- package/lib/Socket/socket.js +1012 -0
- package/lib/Socket/username.d.ts +82 -0
- package/lib/Socket/username.js +159 -0
- package/lib/Store/index.d.ts +3 -0
- package/lib/Store/index.js +3 -0
- package/lib/Store/make-in-memory-store.d.ts +62 -0
- package/lib/Store/make-in-memory-store.js +428 -0
- package/lib/Store/make-ordered-dictionary.d.ts +12 -0
- package/lib/Store/make-ordered-dictionary.js +78 -0
- package/lib/Store/object-repository.d.ts +10 -0
- package/lib/Store/object-repository.js +23 -0
- package/lib/Types/Auth.d.ts +117 -0
- package/lib/Types/Auth.js +1 -0
- package/lib/Types/Bussines.d.ts +25 -0
- package/lib/Types/Call.d.ts +15 -0
- package/lib/Types/Call.js +1 -0
- package/lib/Types/Chat.d.ts +124 -0
- package/lib/Types/Chat.js +7 -0
- package/lib/Types/Contact.d.ts +26 -0
- package/lib/Types/Contact.js +1 -0
- package/lib/Types/Events.d.ts +256 -0
- package/lib/Types/Events.js +1 -0
- package/lib/Types/GroupMetadata.d.ts +71 -0
- package/lib/Types/GroupMetadata.js +1 -0
- package/lib/Types/Label.d.ts +5 -0
- package/lib/Types/Label.js +24 -0
- package/lib/Types/LabelAssociation.d.ts +6 -0
- package/lib/Types/LabelAssociation.js +6 -0
- package/lib/Types/Message.d.ts +62 -0
- package/lib/Types/Message.js +17 -0
- package/lib/Types/Mex.d.ts +2 -0
- package/lib/Types/Mex.js +38 -0
- package/lib/Types/Product.d.ts +79 -0
- package/lib/Types/Product.js +1 -0
- package/lib/Types/RichType.d.ts +2 -0
- package/lib/Types/RichType.js +22 -0
- package/lib/Types/Signal.d.ts +87 -0
- package/lib/Types/Signal.js +1 -0
- package/lib/Types/Socket.d.ts +138 -0
- package/lib/Types/Socket.js +1 -0
- package/lib/Types/State.d.ts +8 -0
- package/lib/Types/State.js +55 -0
- package/lib/Types/USync.d.ts +26 -0
- package/lib/Types/index.d.ts +68 -0
- package/lib/Types/index.js +27 -0
- package/lib/Utils/MessageBuilder.d.ts +2 -0
- package/lib/Utils/MessageBuilder.js +2 -0
- package/lib/Utils/PersistentStore.d.ts +60 -0
- package/lib/Utils/PersistentStore.js +592 -0
- package/lib/Utils/anti-delete.d.ts +74 -0
- package/lib/Utils/anti-delete.js +221 -0
- package/lib/Utils/auth-secure.d.ts +86 -0
- package/lib/Utils/auth-secure.js +764 -0
- package/lib/Utils/auth-utils.d.ts +57 -0
- package/lib/Utils/auth-utils.js +306 -0
- package/lib/Utils/auto-reply.d.ts +47 -0
- package/lib/Utils/auto-reply.js +157 -0
- package/lib/Utils/baileys-event-stream.d.ts +8 -0
- package/lib/Utils/baileys-event-stream.js +62 -0
- package/lib/Utils/browser-utils.d.ts +8 -0
- package/lib/Utils/browser-utils.js +27 -0
- package/lib/Utils/business.d.ts +49 -0
- package/lib/Utils/business.js +239 -0
- package/lib/Utils/button-helper-utils.d.ts +53 -0
- package/lib/Utils/button-helper-utils.js +312 -0
- package/lib/Utils/button-sender.d.ts +54 -0
- package/lib/Utils/button-sender.js +822 -0
- package/lib/Utils/chat-control.d.ts +159 -0
- package/lib/Utils/chat-control.js +230 -0
- package/lib/Utils/chat-history-helpers.d.ts +21 -0
- package/lib/Utils/chat-history-helpers.js +70 -0
- package/lib/Utils/chat-utils.d.ts +407 -0
- package/lib/Utils/chat-utils.js +885 -0
- package/lib/Utils/companion-reg-client-utils.d.ts +4 -0
- package/lib/Utils/companion-reg-client-utils.js +39 -0
- package/lib/Utils/crypto.d.ts +41 -0
- package/lib/Utils/crypto.js +147 -0
- package/lib/Utils/decode-wa-message.d.ts +83 -0
- package/lib/Utils/decode-wa-message.js +316 -0
- package/lib/Utils/event-buffer.d.ts +12 -0
- package/lib/Utils/event-buffer.js +635 -0
- package/lib/Utils/generics.d.ts +69 -0
- package/lib/Utils/generics.js +438 -0
- package/lib/Utils/history-share.d.ts +11 -0
- package/lib/Utils/history-share.js +70 -0
- package/lib/Utils/history.d.ts +90 -0
- package/lib/Utils/history.js +146 -0
- package/lib/Utils/humanizer.d.ts +12 -0
- package/lib/Utils/humanizer.js +73 -0
- package/lib/Utils/identity-change-handler.d.ts +13 -0
- package/lib/Utils/identity-change-handler.js +49 -0
- package/lib/Utils/index.d.ts +57 -0
- package/lib/Utils/index.js +56 -0
- package/lib/Utils/jid-tools.d.ts +6 -0
- package/lib/Utils/jid-tools.js +77 -0
- package/lib/Utils/link-preview.d.ts +12 -0
- package/lib/Utils/link-preview.js +84 -0
- package/lib/Utils/logger.d.ts +4 -0
- package/lib/Utils/logger.js +2 -0
- package/lib/Utils/lt-hash.d.ts +12 -0
- package/lib/Utils/lt-hash.js +26 -0
- package/lib/Utils/make-mutex.d.ts +6 -0
- package/lib/Utils/make-mutex.js +32 -0
- package/lib/Utils/media-messages.d.ts +18 -0
- package/lib/Utils/media-messages.js +70 -0
- package/lib/Utils/media-set.d.ts +13 -0
- package/lib/Utils/media-set.js +171 -0
- package/lib/Utils/message-kind.d.ts +32 -0
- package/lib/Utils/message-kind.js +136 -0
- package/lib/Utils/message-retry-manager.d.ts +79 -0
- package/lib/Utils/message-retry-manager.js +264 -0
- package/lib/Utils/message-search.d.ts +44 -0
- package/lib/Utils/message-search.js +188 -0
- package/lib/Utils/messages-media.d.ts +135 -0
- package/lib/Utils/messages-media.js +868 -0
- package/lib/Utils/messages.d.ts +44 -0
- package/lib/Utils/messages.js +2326 -0
- package/lib/Utils/meta-ai.d.ts +13 -0
- package/lib/Utils/meta-ai.js +74 -0
- package/lib/Utils/mini-app.d.ts +35 -0
- package/lib/Utils/mini-app.js +213 -0
- package/lib/Utils/noise-handler.d.ts +20 -0
- package/lib/Utils/noise-handler.js +200 -0
- package/lib/Utils/offline-node-processor.d.ts +9 -0
- package/lib/Utils/offline-node-processor.js +39 -0
- package/lib/Utils/past-participants.d.ts +14 -0
- package/lib/Utils/past-participants.js +40 -0
- package/lib/Utils/pre-key-manager.d.ts +25 -0
- package/lib/Utils/pre-key-manager.js +105 -0
- package/lib/Utils/process-message.d.ts +82 -0
- package/lib/Utils/process-message.js +808 -0
- package/lib/Utils/qr-render.d.ts +59 -0
- package/lib/Utils/qr-render.js +179 -0
- package/lib/Utils/qrcodegen.d.ts +79 -0
- package/lib/Utils/qrcodegen.js +848 -0
- package/lib/Utils/reporting-utils.d.ts +12 -0
- package/lib/Utils/reporting-utils.js +257 -0
- package/lib/Utils/rich-message-utils.d.ts +48 -0
- package/lib/Utils/rich-message-utils.js +444 -0
- package/lib/Utils/router.d.ts +37 -0
- package/lib/Utils/router.js +165 -0
- package/lib/Utils/scheduled-posts.d.ts +30 -0
- package/lib/Utils/scheduled-posts.js +110 -0
- package/lib/Utils/scheduling.d.ts +42 -0
- package/lib/Utils/scheduling.js +139 -0
- package/lib/Utils/signal.d.ts +82 -0
- package/lib/Utils/signal.js +200 -0
- package/lib/Utils/stanza-ack.d.ts +16 -0
- package/lib/Utils/stanza-ack.js +37 -0
- package/lib/Utils/status.d.ts +50 -0
- package/lib/Utils/status.js +107 -0
- package/lib/Utils/stickerpack.d.ts +51 -0
- package/lib/Utils/stickerpack.js +274 -0
- package/lib/Utils/sync-action-utils.d.ts +2 -0
- package/lib/Utils/sync-action-utils.js +48 -0
- package/lib/Utils/tag.d.ts +12 -0
- package/lib/Utils/tag.js +44 -0
- package/lib/Utils/tc-token-utils.d.ts +29 -0
- package/lib/Utils/tc-token-utils.js +162 -0
- package/lib/Utils/templates.d.ts +76 -0
- package/lib/Utils/templates.js +150 -0
- package/lib/Utils/transcribe.d.ts +12 -0
- package/lib/Utils/transcribe.js +107 -0
- package/lib/Utils/use-cache-manager-auth-state.d.ts +13 -0
- package/lib/Utils/use-cache-manager-auth-state.js +81 -0
- package/lib/Utils/use-multi-file-auth-state.d.ts +10 -0
- package/lib/Utils/use-multi-file-auth-state.js +166 -0
- package/lib/Utils/use-single-file-auth-state.d.ts +10 -0
- package/lib/Utils/use-single-file-auth-state.js +113 -0
- package/lib/Utils/use-sqlite-auth-state.d.ts +11 -0
- package/lib/Utils/use-sqlite-auth-state.js +169 -0
- package/lib/Utils/validate-connection.d.ts +42 -0
- package/lib/Utils/validate-connection.js +198 -0
- package/lib/Utils/vcard.d.ts +58 -0
- package/lib/Utils/vcard.js +104 -0
- package/lib/Utils/voice-note.d.ts +15 -0
- package/lib/Utils/voice-note.js +63 -0
- package/lib/VoIP/audio-feeder.d.ts +18 -0
- package/lib/VoIP/audio-feeder.js +160 -0
- package/lib/VoIP/call-recorder.d.ts +13 -0
- package/lib/VoIP/call-recorder.js +73 -0
- package/lib/VoIP/index.d.ts +86 -0
- package/lib/VoIP/index.js +611 -0
- package/lib/VoIP/relay-transport.d.ts +43 -0
- package/lib/VoIP/relay-transport.js +563 -0
- package/lib/VoIP/signaling.d.ts +26 -0
- package/lib/VoIP/signaling.js +662 -0
- package/lib/VoIP/types.d.ts +69 -0
- package/lib/VoIP/types.js +17 -0
- package/lib/VoIP/wasm-engine.d.ts +120 -0
- package/lib/VoIP/wasm-engine.js +1358 -0
- package/lib/VoIP/worker-bootstrap.d.ts +4 -0
- package/lib/VoIP/worker-bootstrap.js +1046 -0
- package/lib/WABinary/constants.d.ts +61 -0
- package/lib/WABinary/constants.js +1466 -0
- package/lib/WABinary/decode.d.ts +9 -0
- package/lib/WABinary/decode.js +261 -0
- package/lib/WABinary/encode.d.ts +2 -0
- package/lib/WABinary/encode.js +219 -0
- package/lib/WABinary/generic-utils.d.ts +74 -0
- package/lib/WABinary/generic-utils.js +276 -0
- package/lib/WABinary/index.d.ts +5 -0
- package/lib/WABinary/index.js +5 -0
- package/lib/WABinary/jid-utils.d.ts +28 -0
- package/lib/WABinary/jid-utils.js +95 -0
- package/lib/WABinary/types.d.ts +19 -0
- package/lib/WABinary/types.js +1 -0
- package/lib/WAM/BinaryInfo.d.ts +7 -0
- package/lib/WAM/BinaryInfo.js +9 -0
- package/lib/WAM/constants.d.ts +34926 -0
- package/lib/WAM/constants.js +22852 -0
- package/lib/WAM/encode.d.ts +1 -0
- package/lib/WAM/encode.js +149 -0
- package/lib/WAM/index.d.ts +3 -0
- package/lib/WAM/index.js +3 -0
- package/lib/WAUSync/Protocols/USyncContactProtocol.d.ts +36 -0
- package/lib/WAUSync/Protocols/USyncContactProtocol.js +51 -0
- package/lib/WAUSync/Protocols/USyncDeviceProtocol.d.ts +29 -0
- package/lib/WAUSync/Protocols/USyncDeviceProtocol.js +62 -0
- package/lib/WAUSync/Protocols/USyncDisappearingModeProtocol.d.ts +12 -0
- package/lib/WAUSync/Protocols/USyncDisappearingModeProtocol.js +26 -0
- package/lib/WAUSync/Protocols/USyncStatusProtocol.d.ts +12 -0
- package/lib/WAUSync/Protocols/USyncStatusProtocol.js +37 -0
- package/lib/WAUSync/Protocols/USyncUsernameProtocol.d.ts +9 -0
- package/lib/WAUSync/Protocols/USyncUsernameProtocol.js +24 -0
- package/lib/WAUSync/Protocols/UsyncBotProfileProtocol.d.ts +38 -0
- package/lib/WAUSync/Protocols/UsyncBotProfileProtocol.js +50 -0
- package/lib/WAUSync/Protocols/UsyncLIDProtocol.d.ts +14 -0
- package/lib/WAUSync/Protocols/UsyncLIDProtocol.js +28 -0
- package/lib/WAUSync/Protocols/index.d.ts +7 -0
- package/lib/WAUSync/Protocols/index.js +7 -0
- package/lib/WAUSync/USyncQuery.d.ts +20 -0
- package/lib/WAUSync/USyncQuery.js +121 -0
- package/lib/WAUSync/USyncUser.d.ts +16 -0
- package/lib/WAUSync/USyncUser.js +30 -0
- package/lib/WAUSync/index.d.ts +3 -0
- package/lib/WAUSync/index.js +3 -0
- package/lib/assets/wasm/loader.d.ts +5 -0
- package/lib/assets/wasm/loader.js +5 -0
- package/lib/assets/wasm/whatsapp.wasm +0 -0
- package/lib/assets/wasm/worker-modules.d.ts +5 -0
- package/lib/assets/wasm/worker-modules.js +273 -0
- package/lib/index.d.ts +18 -0
- package/lib/index.js +23 -0
- package/package.json +180 -0
- package/postinstall-banner.js +82 -0
|
@@ -0,0 +1,353 @@
|
|
|
1
|
+
export function makeMessagesSocket(config: any): {
|
|
2
|
+
userDevicesCache: any;
|
|
3
|
+
devicesMutex: {
|
|
4
|
+
mutex(code: any): any;
|
|
5
|
+
};
|
|
6
|
+
issuePrivacyTokens: (jids: any, timestamp: any) => Promise<any>;
|
|
7
|
+
assertSessions: (jids: any, force: any) => Promise<boolean>;
|
|
8
|
+
relayMessage: (jid: any, message: any, { messageId: msgId, participant, additionalAttributes, additionalNodes, useUserDevicesCache, useCachedGroupMetadata, addBizAttributes, statusJidList }: {
|
|
9
|
+
messageId: any;
|
|
10
|
+
participant: any;
|
|
11
|
+
additionalAttributes: any;
|
|
12
|
+
additionalNodes: any;
|
|
13
|
+
useUserDevicesCache: any;
|
|
14
|
+
useCachedGroupMetadata: any;
|
|
15
|
+
addBizAttributes: any;
|
|
16
|
+
statusJidList: any;
|
|
17
|
+
}) => Promise<any>;
|
|
18
|
+
sendReceipt: (jid: any, participant: any, messageIds: any, type: any) => Promise<void>;
|
|
19
|
+
sendReceipts: (keys: any, type: any) => Promise<void>;
|
|
20
|
+
readMessages: (keys: any) => Promise<void>;
|
|
21
|
+
refreshMediaConn: (forceGet?: boolean) => Promise<any>;
|
|
22
|
+
getMediaHost: () => string;
|
|
23
|
+
waUploadToServer: (filePath: any, { mediaType, fileEncSha256B64, timeoutMs, newsletter }: {
|
|
24
|
+
mediaType: any;
|
|
25
|
+
fileEncSha256B64: any;
|
|
26
|
+
timeoutMs: any;
|
|
27
|
+
newsletter: any;
|
|
28
|
+
}) => Promise<{
|
|
29
|
+
mediaUrl: any;
|
|
30
|
+
directPath: any;
|
|
31
|
+
meta_hmac: any;
|
|
32
|
+
fbid: any;
|
|
33
|
+
ts: any;
|
|
34
|
+
thumbnailDirectPath: any;
|
|
35
|
+
thumbnailSha256: any;
|
|
36
|
+
}>;
|
|
37
|
+
fetchPrivacySettings: (force?: boolean) => Promise<any>;
|
|
38
|
+
sendPeerDataOperationMessage: (pdoMessage: any) => Promise<any>;
|
|
39
|
+
createParticipantNodes: (recipientJids: any, message: any, extraAttrs: any, dsmMessage: any) => Promise<{
|
|
40
|
+
nodes: any[];
|
|
41
|
+
shouldIncludeDeviceIdentity: boolean;
|
|
42
|
+
}>;
|
|
43
|
+
getUSyncDevices: (jids: any, useCache: any, ignoreZeroDevices: any) => Promise<any[]>;
|
|
44
|
+
messageRetryManager: MessageRetryManager | null;
|
|
45
|
+
updateMemberLabel: (jid: any, memberLabel: any) => Promise<any>;
|
|
46
|
+
updateMediaMessage: (message: any) => Promise<any>;
|
|
47
|
+
sendMessage: (jid: any, content: any, options?: {}) => Promise<any>;
|
|
48
|
+
sendReaction: (jid: any, reaction: any, key: any) => Promise<any>;
|
|
49
|
+
sendPin: (jid: any, key: any, opts?: {
|
|
50
|
+
durationSec?: number;
|
|
51
|
+
}, options?: any) => Promise<any>;
|
|
52
|
+
sendUnpin: (jid: any, key: any, options?: any) => Promise<any>;
|
|
53
|
+
sendKeep: (jid: any, key: any, options?: any) => Promise<any>;
|
|
54
|
+
sendUnkeep: (jid: any, key: any, options?: any) => Promise<any>;
|
|
55
|
+
sendEvent: (jid: any, event: any, options?: any) => Promise<any>;
|
|
56
|
+
sendScheduledCall: (jid: any, scheduledCall: any, options?: any) => Promise<any>;
|
|
57
|
+
cancelScheduledCall: (jid: any, key: any, options?: any) => Promise<any>;
|
|
58
|
+
sendMiniApp: (jid: any, miniApp: any, options?: any) => Promise<any>;
|
|
59
|
+
sendPoll: (jid: any, poll: any, options?: any) => Promise<any>;
|
|
60
|
+
sendQuiz: (jid: any, quiz: any, options?: any) => Promise<any>;
|
|
61
|
+
editPoll: (jid: any, key: any, poll: any, options?: any) => Promise<any>;
|
|
62
|
+
sendMentionAll: (jid: any, text: string, options?: any) => Promise<any>;
|
|
63
|
+
sendLocation: (jid: any, location: any, options?: any) => Promise<any>;
|
|
64
|
+
sendContact: (jid: any, contact: any, options?: any) => Promise<any>;
|
|
65
|
+
sendGroupInvite: (jid: any, invite: any, options?: any) => Promise<any>;
|
|
66
|
+
sendMusic: (jid: any, music: any, options?: any) => Promise<any>;
|
|
67
|
+
sendPaymentRequest: (jid: any, req: any, options?: any) => Promise<any>;
|
|
68
|
+
sendPayment: (jid: any, pay: any, options?: any) => Promise<any>;
|
|
69
|
+
sendInvoice: (jid: any, invoice: any, options?: any) => Promise<any>;
|
|
70
|
+
sendPollOption: (jid: any, pollKey: any, options2: any, options?: any) => Promise<any>;
|
|
71
|
+
sendEventInvite: (jid: any, invite: any, options?: any) => Promise<any>;
|
|
72
|
+
sendNewsletterInvite: (jid: any, invite: any, options?: any) => Promise<any>;
|
|
73
|
+
downloadMedia: (message: any, type?: string, options?: {}) => Promise<any>;
|
|
74
|
+
copyNForward: (jid: any, message: any, forceForward?: boolean, options?: {}) => Promise<any>;
|
|
75
|
+
executeWMexQuery: (variables: any, queryId: any, dataPath: any) => Promise<any>;
|
|
76
|
+
newsletterCreate: (name: any, description: any) => Promise<{
|
|
77
|
+
id: any;
|
|
78
|
+
owner: undefined;
|
|
79
|
+
name: any;
|
|
80
|
+
creation_time: number;
|
|
81
|
+
description: any;
|
|
82
|
+
invite: any;
|
|
83
|
+
subscribers: number;
|
|
84
|
+
verification: any;
|
|
85
|
+
picture: {
|
|
86
|
+
id: any;
|
|
87
|
+
directPath: any;
|
|
88
|
+
};
|
|
89
|
+
mute_state: any;
|
|
90
|
+
}>;
|
|
91
|
+
newsletterUpdate: (jid: any, updates: any) => Promise<any>;
|
|
92
|
+
newsletterSubscribers: (jid: any) => Promise<any>;
|
|
93
|
+
newsletterSubscribed: () => Promise<any>;
|
|
94
|
+
newsletterMetadata: (type: any, key: any) => Promise<any>;
|
|
95
|
+
newsletterFollow: (jid: any) => Promise<any>;
|
|
96
|
+
newsletterUnfollow: (jid: any) => Promise<any>;
|
|
97
|
+
newsletterMute: (jid: any) => Promise<any>;
|
|
98
|
+
newsletterUnmute: (jid: any) => Promise<any>;
|
|
99
|
+
newsletterUpdateName: (jid: any, name: any) => Promise<any>;
|
|
100
|
+
newsletterUpdateDescription: (jid: any, description: any) => Promise<any>;
|
|
101
|
+
newsletterUpdatePicture: (jid: any, content: any) => Promise<any>;
|
|
102
|
+
newsletterRemovePicture: (jid: any) => Promise<any>;
|
|
103
|
+
newsletterReactMessage: (jid: any, serverId: any, reaction: any) => Promise<void>;
|
|
104
|
+
newsletterFetchMessages: (type: any, key: any, count: any, after: any, before: any) => Promise<any[]>;
|
|
105
|
+
subscribeNewsletterUpdates: (jid: any) => Promise<{
|
|
106
|
+
duration: any;
|
|
107
|
+
} | null>;
|
|
108
|
+
newsletterAdminCount: (jid: any) => Promise<any>;
|
|
109
|
+
newsletterChangeOwner: (jid: any, newOwnerJid: any) => Promise<void>;
|
|
110
|
+
newsletterDemote: (jid: any, userJid: any) => Promise<void>;
|
|
111
|
+
newsletterDelete: (jid: any) => Promise<void>;
|
|
112
|
+
groupQuery: (jid: any, type: any, content: any) => Promise<any>;
|
|
113
|
+
groupMetadata: (jid: any) => Promise<{
|
|
114
|
+
id: any;
|
|
115
|
+
notify: any;
|
|
116
|
+
addressingMode: any;
|
|
117
|
+
subject: any;
|
|
118
|
+
subjectOwner: any;
|
|
119
|
+
subjectOwnerPn: any;
|
|
120
|
+
subjectOwnerUsername: any;
|
|
121
|
+
subjectTime: number;
|
|
122
|
+
size: any;
|
|
123
|
+
creation: number;
|
|
124
|
+
owner: string | undefined;
|
|
125
|
+
ownerPn: string | undefined;
|
|
126
|
+
ownerUsername: any;
|
|
127
|
+
owner_country_code: any;
|
|
128
|
+
desc: any;
|
|
129
|
+
descId: any;
|
|
130
|
+
descOwner: string | undefined;
|
|
131
|
+
descOwnerPn: string | undefined;
|
|
132
|
+
descOwnerUsername: any;
|
|
133
|
+
descTime: number | undefined;
|
|
134
|
+
linkedParent: any;
|
|
135
|
+
restrict: boolean;
|
|
136
|
+
announce: boolean;
|
|
137
|
+
isCommunity: boolean;
|
|
138
|
+
isCommunityAnnounce: boolean;
|
|
139
|
+
joinApprovalMode: boolean;
|
|
140
|
+
memberAddMode: boolean;
|
|
141
|
+
participants: any;
|
|
142
|
+
ephemeralDuration: number | undefined;
|
|
143
|
+
}>;
|
|
144
|
+
groupCreate: (subject: any, participants: any) => Promise<{
|
|
145
|
+
id: any;
|
|
146
|
+
notify: any;
|
|
147
|
+
addressingMode: any;
|
|
148
|
+
subject: any;
|
|
149
|
+
subjectOwner: any;
|
|
150
|
+
subjectOwnerPn: any;
|
|
151
|
+
subjectOwnerUsername: any;
|
|
152
|
+
subjectTime: number;
|
|
153
|
+
size: any;
|
|
154
|
+
creation: number;
|
|
155
|
+
owner: string | undefined;
|
|
156
|
+
ownerPn: string | undefined;
|
|
157
|
+
ownerUsername: any;
|
|
158
|
+
owner_country_code: any;
|
|
159
|
+
desc: any;
|
|
160
|
+
descId: any;
|
|
161
|
+
descOwner: string | undefined;
|
|
162
|
+
descOwnerPn: string | undefined;
|
|
163
|
+
descOwnerUsername: any;
|
|
164
|
+
descTime: number | undefined;
|
|
165
|
+
linkedParent: any;
|
|
166
|
+
restrict: boolean;
|
|
167
|
+
announce: boolean;
|
|
168
|
+
isCommunity: boolean;
|
|
169
|
+
isCommunityAnnounce: boolean;
|
|
170
|
+
joinApprovalMode: boolean;
|
|
171
|
+
memberAddMode: boolean;
|
|
172
|
+
participants: any;
|
|
173
|
+
ephemeralDuration: number | undefined;
|
|
174
|
+
}>;
|
|
175
|
+
groupLeave: (id: any) => Promise<void>;
|
|
176
|
+
groupUpdateSubject: (jid: any, subject: any) => Promise<void>;
|
|
177
|
+
groupRequestParticipantsList: (jid: any) => Promise<any>;
|
|
178
|
+
groupRequestParticipantsUpdate: (jid: any, participants: any, action: any) => Promise<any>;
|
|
179
|
+
groupParticipantsUpdate: (jid: any, participants: any, action: any) => Promise<any[]>;
|
|
180
|
+
groupUpdateDescription: (jid: any, description: any) => Promise<void>;
|
|
181
|
+
groupInviteCode: (jid: any) => Promise<any>;
|
|
182
|
+
groupRevokeInvite: (jid: any) => Promise<any>;
|
|
183
|
+
groupAcceptInvite: (code: any) => Promise<any>;
|
|
184
|
+
groupRevokeInviteV4: (groupJid: any, invitedJid: any) => Promise<boolean>;
|
|
185
|
+
groupAcceptInviteV4: (...args: any[]) => Promise<any>;
|
|
186
|
+
groupGetInviteInfo: (code: any) => Promise<{
|
|
187
|
+
id: any;
|
|
188
|
+
notify: any;
|
|
189
|
+
addressingMode: any;
|
|
190
|
+
subject: any;
|
|
191
|
+
subjectOwner: any;
|
|
192
|
+
subjectOwnerPn: any;
|
|
193
|
+
subjectOwnerUsername: any;
|
|
194
|
+
subjectTime: number;
|
|
195
|
+
size: any;
|
|
196
|
+
creation: number;
|
|
197
|
+
owner: string | undefined;
|
|
198
|
+
ownerPn: string | undefined;
|
|
199
|
+
ownerUsername: any;
|
|
200
|
+
owner_country_code: any;
|
|
201
|
+
desc: any;
|
|
202
|
+
descId: any;
|
|
203
|
+
descOwner: string | undefined;
|
|
204
|
+
descOwnerPn: string | undefined;
|
|
205
|
+
descOwnerUsername: any;
|
|
206
|
+
descTime: number | undefined;
|
|
207
|
+
linkedParent: any;
|
|
208
|
+
restrict: boolean;
|
|
209
|
+
announce: boolean;
|
|
210
|
+
isCommunity: boolean;
|
|
211
|
+
isCommunityAnnounce: boolean;
|
|
212
|
+
joinApprovalMode: boolean;
|
|
213
|
+
memberAddMode: boolean;
|
|
214
|
+
participants: any;
|
|
215
|
+
ephemeralDuration: number | undefined;
|
|
216
|
+
}>;
|
|
217
|
+
groupToggleEphemeral: (jid: any, ephemeralExpiration: any) => Promise<void>;
|
|
218
|
+
groupSettingUpdate: (jid: any, setting: any) => Promise<void>;
|
|
219
|
+
groupMemberAddMode: (jid: any, mode: any) => Promise<void>;
|
|
220
|
+
groupJoinApprovalMode: (jid: any, mode: any) => Promise<void>;
|
|
221
|
+
groupFetchAllParticipating: () => Promise<{}>;
|
|
222
|
+
findUserId: (pnLid: any) => Promise<{
|
|
223
|
+
lid: undefined;
|
|
224
|
+
phoneNumber: undefined;
|
|
225
|
+
}>;
|
|
226
|
+
serverProps: {
|
|
227
|
+
privacyTokenOn1to1: boolean;
|
|
228
|
+
profilePicPrivacyToken: boolean;
|
|
229
|
+
lidTrustedTokenIssueToLid: boolean;
|
|
230
|
+
};
|
|
231
|
+
createCallLink: (type: any, event: any, timeoutMs: any) => Promise<any>;
|
|
232
|
+
getBotListV2: () => Promise<{
|
|
233
|
+
jid: any;
|
|
234
|
+
personaId: any;
|
|
235
|
+
}[]>;
|
|
236
|
+
messageMutex: {
|
|
237
|
+
mutex(code: any): any;
|
|
238
|
+
};
|
|
239
|
+
receiptMutex: {
|
|
240
|
+
mutex(code: any): any;
|
|
241
|
+
};
|
|
242
|
+
appStatePatchMutex: {
|
|
243
|
+
mutex(code: any): any;
|
|
244
|
+
};
|
|
245
|
+
notificationMutex: {
|
|
246
|
+
mutex(code: any): any;
|
|
247
|
+
};
|
|
248
|
+
upsertMessage: (...args: any[]) => Promise<any>;
|
|
249
|
+
appPatch: (patchCreate: any) => Promise<void>;
|
|
250
|
+
sendPresenceUpdate: (type: any, toJid: any) => Promise<void>;
|
|
251
|
+
presenceSubscribe: (toJid: any) => Promise<void>;
|
|
252
|
+
profilePictureUrl: (jid: any, type?: string, timeoutMs?: number, shouldIncludeTcToken?: boolean) => Promise<any>;
|
|
253
|
+
fetchBlocklist: () => Promise<any>;
|
|
254
|
+
fetchStatus: (...jids: any[]) => Promise<any>;
|
|
255
|
+
fetchDisappearingDuration: (...jids: any[]) => Promise<any>;
|
|
256
|
+
updateProfilePicture: (jid: any, content: any, dimensions: any) => Promise<void>;
|
|
257
|
+
removeProfilePicture: (jid: any) => Promise<void>;
|
|
258
|
+
updateProfileStatus: (status: any) => Promise<void>;
|
|
259
|
+
updateProfileName: (name: any) => Promise<void>;
|
|
260
|
+
updateBlockStatus: (jid: any, action: any) => Promise<void>;
|
|
261
|
+
updateDisableLinkPreviewsPrivacy: (isPreviewsDisabled: any) => Promise<void>;
|
|
262
|
+
updateCallPrivacy: (value: any) => Promise<void>;
|
|
263
|
+
updateMessagesPrivacy: (value: any) => Promise<void>;
|
|
264
|
+
updateLastSeenPrivacy: (value: any) => Promise<void>;
|
|
265
|
+
updateOnlinePrivacy: (value: any) => Promise<void>;
|
|
266
|
+
updateProfilePicturePrivacy: (value: any) => Promise<void>;
|
|
267
|
+
updateStatusPrivacy: (value: any) => Promise<void>;
|
|
268
|
+
updateReadReceiptsPrivacy: (value: any) => Promise<void>;
|
|
269
|
+
updateGroupsAddPrivacy: (value: any) => Promise<void>;
|
|
270
|
+
updateDefaultDisappearingMode: (duration: any) => Promise<void>;
|
|
271
|
+
getBusinessProfile: (jid: any) => Promise<{
|
|
272
|
+
wid: any;
|
|
273
|
+
address: any;
|
|
274
|
+
description: any;
|
|
275
|
+
website: any[];
|
|
276
|
+
email: any;
|
|
277
|
+
category: any;
|
|
278
|
+
business_hours: {
|
|
279
|
+
timezone: any;
|
|
280
|
+
business_config: any;
|
|
281
|
+
};
|
|
282
|
+
} | undefined>;
|
|
283
|
+
resyncAppState: (...args: any[]) => Promise<any>;
|
|
284
|
+
chatModify: (mod: any, jid: any) => Promise<void>;
|
|
285
|
+
cleanDirtyBits: (type: any, fromTimestamp: any) => Promise<void>;
|
|
286
|
+
addOrEditContact: (jid: any, contact: any) => Promise<void>;
|
|
287
|
+
removeContact: (jid: any) => Promise<void>;
|
|
288
|
+
placeholderResendCache: any;
|
|
289
|
+
addLabel: (jid: any, labels: any) => Promise<void>;
|
|
290
|
+
addChatLabel: (jid: any, labelId: any) => Promise<void>;
|
|
291
|
+
removeChatLabel: (jid: any, labelId: any) => Promise<void>;
|
|
292
|
+
addMessageLabel: (jid: any, messageId: any, labelId: any) => Promise<void>;
|
|
293
|
+
removeMessageLabel: (jid: any, messageId: any, labelId: any) => Promise<void>;
|
|
294
|
+
star: (jid: any, messages: any, star: any) => Promise<void>;
|
|
295
|
+
addOrEditQuickReply: (quickReply: any) => Promise<void>;
|
|
296
|
+
removeQuickReply: (timestamp: any) => Promise<void>;
|
|
297
|
+
type: string;
|
|
298
|
+
ws: import("./Client/websocket.js").WebSocketClient;
|
|
299
|
+
ev: {
|
|
300
|
+
process(handler: any): () => void;
|
|
301
|
+
emit(event: any, evData: any): any;
|
|
302
|
+
isBuffering(): boolean;
|
|
303
|
+
buffer: () => void;
|
|
304
|
+
flush: () => boolean;
|
|
305
|
+
createBufferedFunction(work: any): (...args: any[]) => Promise<any>;
|
|
306
|
+
on: (...args: any[]) => any;
|
|
307
|
+
off: (...args: any[]) => any;
|
|
308
|
+
removeAllListeners: (...args: any[]) => any;
|
|
309
|
+
destroy(): void;
|
|
310
|
+
};
|
|
311
|
+
authState: {
|
|
312
|
+
creds: any;
|
|
313
|
+
keys: {
|
|
314
|
+
get: (type: any, ids: any) => Promise<any>;
|
|
315
|
+
set: (data: any) => Promise<void>;
|
|
316
|
+
isInTransaction: () => boolean;
|
|
317
|
+
transaction: (work: any, key: any) => Promise<any>;
|
|
318
|
+
};
|
|
319
|
+
};
|
|
320
|
+
signalRepository: any;
|
|
321
|
+
user: any;
|
|
322
|
+
generateMessageTag: () => string;
|
|
323
|
+
query: (node: any, timeoutMs: any) => Promise<any>;
|
|
324
|
+
waitForMessage: (msgId: any, timeoutMs?: any) => Promise<any>;
|
|
325
|
+
waitForSocketOpen: () => Promise<void>;
|
|
326
|
+
sendRawMessage: (data: any) => Promise<void>;
|
|
327
|
+
sendNode: (frame: any) => Promise<void>;
|
|
328
|
+
logout: (msg: any) => Promise<void>;
|
|
329
|
+
end: (error: any) => Promise<void>;
|
|
330
|
+
registerSocketEndHandler: (handler: any) => void;
|
|
331
|
+
onUnexpectedError: (err: any, msg: any) => void;
|
|
332
|
+
uploadPreKeys: (count?: number) => Promise<void>;
|
|
333
|
+
uploadPreKeysToServerIfRequired: () => Promise<void>;
|
|
334
|
+
digestKeyBundle: () => Promise<void>;
|
|
335
|
+
rotateSignedPreKey: () => Promise<void>;
|
|
336
|
+
requestPairingCode: (phoneNumber: any, customPairingCode: any) => Promise<any>;
|
|
337
|
+
updateServerTimeOffset: ({ attrs }: {
|
|
338
|
+
attrs: any;
|
|
339
|
+
}) => void;
|
|
340
|
+
sendUnifiedSession: () => Promise<void>;
|
|
341
|
+
wamBuffer: import("../index.js").BinaryInfo;
|
|
342
|
+
waitForConnectionUpdate: (check: any, timeoutMs: any) => Promise<void>;
|
|
343
|
+
sendWAMBuffer: (wamBuffer: any) => Promise<any>;
|
|
344
|
+
executeUSyncQuery: (usyncQuery: any) => Promise<any>;
|
|
345
|
+
onWhatsApp: (...phoneNumber: any[]) => Promise<any>;
|
|
346
|
+
fetchAccountReachoutTimelock: () => Promise<{
|
|
347
|
+
isActive: boolean;
|
|
348
|
+
timeEnforcementEnds: Date | undefined;
|
|
349
|
+
enforcementType: any;
|
|
350
|
+
}>;
|
|
351
|
+
fetchNewChatMessageCap: () => Promise<any>;
|
|
352
|
+
};
|
|
353
|
+
import { MessageRetryManager } from '../Utils/index.js';
|