@jkt48connect-corp/baileys 7.2.8 → 7.2.9

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 (78) hide show
  1. package/lib/Socket/socket.js +1 -1
  2. package/package.json +1 -1
  3. package/WAProto/index.d.ts +0 -48955
  4. package/lib/Defaults/index.d.ts +0 -282
  5. package/lib/Signal/libsignal.d.ts +0 -3
  6. package/lib/Socket/Client/abstract-socket-client.d.ts +0 -15
  7. package/lib/Socket/Client/index.d.ts +0 -3
  8. package/lib/Socket/Client/mobile-socket-client.d.ts +0 -12
  9. package/lib/Socket/Client/web-socket-client.d.ts +0 -12
  10. package/lib/Socket/business.d.ts +0 -170
  11. package/lib/Socket/chats.d.ts +0 -79
  12. package/lib/Socket/groups.d.ts +0 -113
  13. package/lib/Socket/index.d.ts +0 -172
  14. package/lib/Socket/messages-recv.d.ts +0 -158
  15. package/lib/Socket/messages-send.d.ts +0 -149
  16. package/lib/Socket/newsletter.d.ts +0 -132
  17. package/lib/Socket/registration.d.ts +0 -264
  18. package/lib/Socket/socket.d.ts +0 -42
  19. package/lib/Store/index.d.ts +0 -3
  20. package/lib/Store/make-cache-manager-store.d.ts +0 -14
  21. package/lib/Store/make-in-memory-store.d.ts +0 -117
  22. package/lib/Store/make-ordered-dictionary.d.ts +0 -13
  23. package/lib/Store/object-repository.d.ts +0 -10
  24. package/lib/Types/Auth.d.ts +0 -109
  25. package/lib/Types/Call.d.ts +0 -13
  26. package/lib/Types/Chat.d.ts +0 -107
  27. package/lib/Types/Contact.d.ts +0 -19
  28. package/lib/Types/Events.d.ts +0 -172
  29. package/lib/Types/GroupMetadata.d.ts +0 -56
  30. package/lib/Types/Label.d.ts +0 -46
  31. package/lib/Types/LabelAssociation.d.ts +0 -29
  32. package/lib/Types/Message.d.ts +0 -424
  33. package/lib/Types/Newsletter.d.ts +0 -92
  34. package/lib/Types/Product.d.ts +0 -78
  35. package/lib/Types/Signal.d.ts +0 -57
  36. package/lib/Types/Socket.d.ts +0 -116
  37. package/lib/Types/State.d.ts +0 -27
  38. package/lib/Types/index.d.ts +0 -66
  39. package/lib/Utils/auth-utils.d.ts +0 -18
  40. package/lib/Utils/baileys-event-stream.d.ts +0 -16
  41. package/lib/Utils/business.d.ts +0 -22
  42. package/lib/Utils/chat-utils.d.ts +0 -70
  43. package/lib/Utils/crypto.d.ts +0 -40
  44. package/lib/Utils/decode-wa-message.d.ts +0 -36
  45. package/lib/Utils/event-buffer.d.ts +0 -35
  46. package/lib/Utils/generics.d.ts +0 -88
  47. package/lib/Utils/history.d.ts +0 -19
  48. package/lib/Utils/index.d.ts +0 -17
  49. package/lib/Utils/link-preview.d.ts +0 -21
  50. package/lib/Utils/logger.d.ts +0 -2
  51. package/lib/Utils/lt-hash.d.ts +0 -12
  52. package/lib/Utils/make-mutex.d.ts +0 -7
  53. package/lib/Utils/messages-media.d.ts +0 -113
  54. package/lib/Utils/messages.d.ts +0 -74
  55. package/lib/Utils/noise-handler.d.ts +0 -20
  56. package/lib/Utils/process-message.d.ts +0 -41
  57. package/lib/Utils/signal.d.ts +0 -32
  58. package/lib/Utils/use-multi-file-auth-state.d.ts +0 -12
  59. package/lib/Utils/validate-connection.d.ts +0 -11
  60. package/lib/WABinary/constants.d.ts +0 -27
  61. package/lib/WABinary/decode.d.ts +0 -6
  62. package/lib/WABinary/encode.d.ts +0 -2
  63. package/lib/WABinary/generic-utils.d.ts +0 -14
  64. package/lib/WABinary/index.d.ts +0 -5
  65. package/lib/WABinary/jid-utils.d.ts +0 -31
  66. package/lib/WABinary/types.d.ts +0 -18
  67. package/lib/WAM/BinaryInfo.d.ts +0 -8
  68. package/lib/WAM/constants.d.ts +0 -38
  69. package/lib/WAM/encode.d.ts +0 -2
  70. package/lib/WAM/index.d.ts +0 -3
  71. package/lib/WAUSync/Protocols/USyncContactProtocol.d.ts +0 -9
  72. package/lib/WAUSync/Protocols/USyncDeviceProtocol.d.ts +0 -22
  73. package/lib/WAUSync/Protocols/USyncDisappearingModeProtocol.d.ts +0 -12
  74. package/lib/WAUSync/Protocols/USyncStatusProtocol.d.ts +0 -12
  75. package/lib/WAUSync/Protocols/index.d.ts +0 -4
  76. package/lib/WAUSync/USyncQuery.d.ts +0 -26
  77. package/lib/WAUSync/USyncUser.d.ts +0 -10
  78. package/lib/WAUSync/index.d.ts +0 -3
@@ -1,132 +0,0 @@
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;
@@ -1,264 +0,0 @@
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
- }
@@ -1,42 +0,0 @@
1
- import { Boom } from '@hapi/boom';
2
- import { SocketConfig } from '../Types';
3
- import { BinaryNode } from '../WABinary';
4
- /**
5
- * Connects to WA servers and performs:
6
- * - simple queries (no retry mechanism, wait for connection establishment)
7
- * - listen to messages and emit events
8
- * - query phone connection
9
- */
10
- export declare const makeSocket: (config: SocketConfig) => {
11
- type: "md";
12
- ws: any;
13
- ev: import("../Types").BaileysEventEmitter & {
14
- process(handler: (events: Partial<import("../Types").BaileysEventMap>) => void | Promise<void>): (() => void);
15
- buffer(): void;
16
- createBufferedFunction<A extends any[], T>(work: (...args: A) => Promise<T>): ((...args: A) => Promise<T>);
17
- flush(force?: boolean): boolean;
18
- isBuffering(): boolean;
19
- };
20
- authState: {
21
- creds: import("../Types").AuthenticationCreds;
22
- keys: import("../Types").SignalKeyStoreWithTransaction;
23
- };
24
- signalRepository: import("../Types").SignalRepository;
25
- readonly user: import("../Types").Contact | undefined;
26
- generateMessageTag: () => string;
27
- query: (node: BinaryNode, timeoutMs?: number) => Promise<BinaryNode>;
28
- waitForMessage: <T>(msgId: string, timeoutMs?: number | undefined) => Promise<T>;
29
- waitForSocketOpen: () => Promise<void>;
30
- sendRawMessage: (data: Uint8Array | Buffer) => Promise<void>;
31
- sendNode: (frame: BinaryNode) => Promise<void>;
32
- logout: (msg?: string) => Promise<void>;
33
- end: (error: Error | undefined) => void;
34
- onUnexpectedError: (err: Error | Boom, msg: string) => void;
35
- uploadPreKeys: (count?: number) => Promise<void>;
36
- uploadPreKeysToServerIfRequired: () => Promise<void>;
37
- requestPairingCode: (phoneNumber: string, pairCode: string) => Promise<string>;
38
- /** Waits for the connection to WA to reach a state */
39
- waitForConnectionUpdate: (check: (u: Partial<import("../Types").ConnectionState>) => boolean | undefined, timeoutMs?: number) => Promise<void>;
40
- sendWAMBuffer: (wamBuffer: Buffer) => Promise<BinaryNode>;
41
- };
42
- export type Socket = ReturnType<typeof makeSocket>;
@@ -1,3 +0,0 @@
1
- import makeCacheManagerAuthState from './make-cache-manager-store';
2
- import makeInMemoryStore from './make-in-memory-store';
3
- export { makeInMemoryStore, makeCacheManagerAuthState };
@@ -1,14 +0,0 @@
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;
@@ -1,117 +0,0 @@
1
- import type { Comparable } from '@adiwajshing/keyed-db/lib/Types';
2
- import type { Logger } from 'pino';
3
- import { proto } from '../../WAProto';
4
- import type makeMDSocket from '../Socket';
5
- import type { BaileysEventEmitter, Chat, ConnectionState, Contact, GroupMetadata, PresenceData, WAMessage, WAMessageCursor, WAMessageKey } from '../Types';
6
- import { Label } from '../Types/Label';
7
- import { LabelAssociation } from '../Types/LabelAssociation';
8
- import { ObjectRepository } from './object-repository';
9
- type WASocket = ReturnType<typeof makeMDSocket>;
10
- export declare const waChatKey: (pin: boolean) => {
11
- key: (c: Chat) => string;
12
- compare: (k1: string, k2: string) => number;
13
- };
14
- export declare const waMessageID: (m: WAMessage) => string;
15
- export declare const waLabelAssociationKey: Comparable<LabelAssociation, string>;
16
- export type BaileysInMemoryStoreConfig = {
17
- chatKey?: Comparable<Chat, string>;
18
- labelAssociationKey?: Comparable<LabelAssociation, string>;
19
- logger?: Logger;
20
- socket?: WASocket;
21
- };
22
- declare const _default: (config: BaileysInMemoryStoreConfig) => {
23
- chats: KeyedDB<Chat, string>;
24
- contacts: {
25
- [_: string]: Contact;
26
- };
27
- messages: {
28
- [_: string]: {
29
- array: proto.IWebMessageInfo[];
30
- get: (id: string) => proto.IWebMessageInfo | undefined;
31
- upsert: (item: proto.IWebMessageInfo, mode: "append" | "prepend") => void;
32
- update: (item: proto.IWebMessageInfo) => boolean;
33
- remove: (item: proto.IWebMessageInfo) => boolean;
34
- updateAssign: (id: string, update: Partial<proto.IWebMessageInfo>) => boolean;
35
- clear: () => void;
36
- filter: (contain: (item: proto.IWebMessageInfo) => boolean) => void;
37
- toJSON: () => proto.IWebMessageInfo[];
38
- fromJSON: (newItems: proto.IWebMessageInfo[]) => void;
39
- };
40
- };
41
- groupMetadata: {
42
- [_: string]: GroupMetadata;
43
- };
44
- state: ConnectionState;
45
- presences: {
46
- [id: string]: {
47
- [participant: string]: PresenceData;
48
- };
49
- };
50
- labels: ObjectRepository<Label>;
51
- labelAssociations: KeyedDB<LabelAssociation, string>;
52
- bind: (ev: BaileysEventEmitter) => void;
53
- /** loads messages from the store, if not found -- uses the legacy connection */
54
- loadMessages: (jid: string, count: number, cursor: WAMessageCursor) => Promise<proto.IWebMessageInfo[]>;
55
- /**
56
- * Get all available labels for profile
57
- *
58
- * Keep in mind that the list is formed from predefined tags and tags
59
- * that were "caught" during their editing.
60
- */
61
- getLabels: () => ObjectRepository<Label>;
62
- /**
63
- * Get labels for chat
64
- *
65
- * @returns Label IDs
66
- **/
67
- getChatLabels: (chatId: string) => any;
68
- /**
69
- * Get labels for message
70
- *
71
- * @returns Label IDs
72
- **/
73
- getMessageLabels: (messageId: string) => any;
74
- loadMessage: (jid: string, id: string) => Promise<proto.IWebMessageInfo | undefined>;
75
- mostRecentMessage: (jid: string) => Promise<proto.IWebMessageInfo>;
76
- fetchImageUrl: (jid: string, sock: WASocket | undefined) => Promise<string | null | undefined>;
77
- fetchGroupMetadata: (jid: string, sock: WASocket | undefined) => Promise<GroupMetadata>;
78
- fetchMessageReceipts: ({ remoteJid, id }: WAMessageKey) => Promise<proto.IUserReceipt[] | null | undefined>;
79
- toJSON: () => {
80
- chats: KeyedDB<Chat, string>;
81
- contacts: {
82
- [_: string]: Contact;
83
- };
84
- messages: {
85
- [_: string]: {
86
- array: proto.IWebMessageInfo[];
87
- get: (id: string) => proto.IWebMessageInfo | undefined;
88
- upsert: (item: proto.IWebMessageInfo, mode: "append" | "prepend") => void;
89
- update: (item: proto.IWebMessageInfo) => boolean;
90
- remove: (item: proto.IWebMessageInfo) => boolean;
91
- updateAssign: (id: string, update: Partial<proto.IWebMessageInfo>) => boolean;
92
- clear: () => void;
93
- filter: (contain: (item: proto.IWebMessageInfo) => boolean) => void;
94
- toJSON: () => proto.IWebMessageInfo[];
95
- fromJSON: (newItems: proto.IWebMessageInfo[]) => void;
96
- };
97
- };
98
- labels: ObjectRepository<Label>;
99
- labelAssociations: KeyedDB<LabelAssociation, string>;
100
- };
101
- fromJSON: (json: {
102
- chats: Chat[];
103
- contacts: {
104
- [id: string]: Contact;
105
- };
106
- messages: {
107
- [id: string]: WAMessage[];
108
- };
109
- labels: {
110
- [labelId: string]: Label;
111
- };
112
- labelAssociations: LabelAssociation[];
113
- }) => void;
114
- writeToFile: (path: string) => void;
115
- readFromFile: (path: string) => void;
116
- };
117
- export default _default;
@@ -1,13 +0,0 @@
1
- declare function makeOrderedDictionary<T>(idGetter: (item: T) => string): {
2
- array: T[];
3
- get: (id: string) => T | undefined;
4
- upsert: (item: T, mode: "append" | "prepend") => void;
5
- update: (item: T) => boolean;
6
- remove: (item: T) => boolean;
7
- updateAssign: (id: string, update: Partial<T>) => boolean;
8
- clear: () => void;
9
- filter: (contain: (item: T) => boolean) => void;
10
- toJSON: () => T[];
11
- fromJSON: (newItems: T[]) => void;
12
- };
13
- export default makeOrderedDictionary;
@@ -1,10 +0,0 @@
1
- export declare class ObjectRepository<T extends object> {
2
- readonly entityMap: Map<string, T>;
3
- constructor(entities?: Record<string, T>);
4
- findById(id: string): T | undefined;
5
- findAll(): T[];
6
- upsertById(id: string, entity: T): Map<string, T>;
7
- deleteById(id: string): boolean;
8
- count(): number;
9
- toJSON(): T[];
10
- }