@alannxd/baileys 6.0.5 → 6.0.6
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/WAProto/fix-import.js +29 -0
- package/WAProto/index.js +160 -201
- package/engine-requirements.js +1 -1
- package/lib/Defaults/baileys-version.json +3 -0
- package/lib/Defaults/index.d.ts +15 -37
- package/lib/Defaults/index.js +136 -119
- package/lib/Defaults/phonenumber-mcc.json +223 -0
- package/lib/Signal/Group/ciphertext-message.d.ts +0 -1
- package/lib/Signal/Group/ciphertext-message.js +5 -2
- package/lib/Signal/Group/group-session-builder.d.ts +3 -4
- package/lib/Signal/Group/group-session-builder.js +41 -7
- package/lib/Signal/Group/group_cipher.d.ts +4 -4
- package/lib/Signal/Group/group_cipher.js +51 -37
- package/lib/Signal/Group/index.d.ts +11 -12
- package/lib/Signal/Group/index.js +57 -12
- package/lib/Signal/Group/keyhelper.d.ts +1 -2
- package/lib/Signal/Group/keyhelper.js +44 -7
- package/lib/Signal/Group/queue-job.d.ts +1 -0
- package/lib/Signal/Group/queue-job.js +57 -0
- package/lib/Signal/Group/sender-chain-key.d.ts +2 -3
- package/lib/Signal/Group/sender-chain-key.js +15 -7
- package/lib/Signal/Group/sender-key-distribution-message.d.ts +1 -2
- package/lib/Signal/Group/sender-key-distribution-message.js +11 -8
- package/lib/Signal/Group/sender-key-message.d.ts +1 -2
- package/lib/Signal/Group/sender-key-message.js +12 -9
- package/lib/Signal/Group/sender-key-name.d.ts +0 -1
- package/lib/Signal/Group/sender-key-name.js +5 -2
- package/lib/Signal/Group/sender-key-record.d.ts +2 -3
- package/lib/Signal/Group/sender-key-record.js +21 -9
- package/lib/Signal/Group/sender-key-state.d.ts +6 -7
- package/lib/Signal/Group/sender-key-state.js +42 -27
- package/lib/Signal/Group/sender-message-key.d.ts +0 -1
- package/lib/Signal/Group/sender-message-key.js +7 -4
- package/lib/Signal/libsignal.d.ts +3 -5
- package/lib/Signal/libsignal.js +90 -347
- package/lib/Socket/Client/{types.d.ts → abstract-socket-client.d.ts} +5 -4
- package/lib/Socket/Client/abstract-socket-client.js +13 -0
- package/lib/Socket/Client/index.d.ts +3 -3
- package/lib/Socket/Client/index.js +19 -3
- package/lib/Socket/Client/mobile-socket-client.d.ts +13 -0
- package/lib/Socket/Client/mobile-socket-client.js +65 -0
- package/lib/Socket/Client/{websocket.d.ts → web-socket-client.d.ts} +2 -3
- package/lib/Socket/Client/web-socket-client.js +62 -0
- package/lib/Socket/business.d.ts +108 -154
- package/lib/Socket/business.js +43 -162
- package/lib/Socket/chats.d.ts +239 -96
- package/lib/Socket/chats.js +427 -627
- package/lib/Socket/communities.d.ts +146 -239
- package/lib/Socket/communities.js +80 -90
- package/lib/Socket/groups.d.ts +57 -104
- package/lib/Socket/groups.js +161 -154
- package/lib/Socket/index.d.ts +115 -202
- package/lib/Socket/index.js +10 -11
- package/lib/Socket/luxu.d.ts +266 -22
- package/lib/Socket/luxu.js +465 -422
- package/lib/Socket/messages-recv.d.ts +84 -136
- package/lib/Socket/messages-recv.js +615 -1421
- package/lib/Socket/messages-send.d.ts +126 -142
- package/lib/Socket/messages-send.js +671 -878
- package/lib/Socket/newsletter.d.ts +85 -121
- package/lib/Socket/newsletter.js +272 -147
- package/lib/Socket/registration.d.ts +267 -0
- package/lib/Socket/registration.js +166 -0
- package/lib/Socket/socket.d.ts +19 -34
- package/lib/Socket/socket.js +313 -544
- package/lib/Socket/usync.d.ts +36 -0
- package/lib/Socket/usync.js +70 -0
- package/lib/Store/index.d.ts +3 -10
- package/lib/Store/index.js +10 -10
- package/lib/Store/make-cache-manager-store.d.ts +11 -17
- package/lib/Store/make-cache-manager-store.js +41 -43
- package/lib/Store/make-in-memory-store.d.ts +118 -39
- package/lib/Store/make-in-memory-store.js +341 -112
- package/lib/Store/make-ordered-dictionary.d.ts +10 -11
- package/lib/Store/make-ordered-dictionary.js +20 -14
- package/lib/Store/object-repository.d.ts +9 -10
- package/lib/Store/object-repository.js +6 -11
- package/lib/Types/Auth.d.ts +12 -19
- package/lib/Types/Auth.js +2 -2
- package/lib/Types/Call.d.ts +1 -3
- package/lib/Types/Call.js +2 -2
- package/lib/Types/Chat.d.ts +13 -35
- package/lib/Types/Chat.js +4 -8
- package/lib/Types/Contact.d.ts +1 -8
- package/lib/Types/Contact.js +2 -2
- package/lib/Types/Events.d.ts +17 -116
- package/lib/Types/Events.js +2 -2
- package/lib/Types/GroupMetadata.d.ts +5 -21
- package/lib/Types/GroupMetadata.js +2 -2
- package/lib/Types/Label.d.ts +0 -12
- package/lib/Types/Label.js +5 -3
- package/lib/Types/LabelAssociation.d.ts +0 -1
- package/lib/Types/LabelAssociation.js +5 -3
- package/lib/Types/Message.d.ts +58 -105
- package/lib/Types/Message.js +9 -11
- package/lib/Types/Newsletter.d.ts +103 -0
- package/lib/Types/Newsletter.js +38 -0
- package/lib/Types/Product.d.ts +1 -2
- package/lib/Types/Product.js +2 -2
- package/lib/Types/Signal.d.ts +2 -32
- package/lib/Types/Signal.js +2 -2
- package/lib/Types/Socket.d.ts +25 -50
- package/lib/Types/Socket.js +2 -3
- package/lib/Types/State.d.ts +2 -72
- package/lib/Types/State.js +2 -56
- package/lib/Types/USync.d.ts +2 -3
- package/lib/Types/USync.js +2 -2
- package/lib/Types/index.d.ts +14 -22
- package/lib/Types/index.js +31 -15
- package/lib/Utils/auth-utils.d.ts +6 -12
- package/lib/Utils/auth-utils.js +143 -239
- package/lib/Utils/baileys-event-stream.d.ts +16 -0
- package/lib/Utils/baileys-event-stream.js +63 -0
- package/lib/Utils/business.d.ts +2 -3
- package/lib/Utils/business.js +69 -66
- package/lib/Utils/chat-utils.d.ts +23 -52
- package/lib/Utils/chat-utils.js +253 -396
- package/lib/Utils/crypto.d.ts +22 -18
- package/lib/Utils/crypto.js +90 -57
- package/lib/Utils/decode-wa-message.d.ts +8 -55
- package/lib/Utils/decode-wa-message.js +84 -203
- package/lib/Utils/event-buffer.d.ts +8 -9
- package/lib/Utils/event-buffer.js +77 -185
- package/lib/Utils/generics.d.ts +29 -28
- package/lib/Utils/generics.js +210 -180
- package/lib/Utils/history.d.ts +9 -18
- package/lib/Utils/history.js +55 -93
- package/lib/Utils/index.d.ts +17 -22
- package/lib/Utils/index.js +33 -22
- package/lib/Utils/link-preview.d.ts +5 -5
- package/lib/Utils/link-preview.js +24 -16
- package/lib/Utils/logger.d.ts +3 -11
- package/lib/Utils/logger.js +7 -3
- package/lib/Utils/lt-hash.d.ts +12 -8
- package/lib/Utils/lt-hash.js +46 -3
- package/lib/Utils/make-mutex.d.ts +2 -4
- package/lib/Utils/make-mutex.js +34 -24
- package/lib/Utils/messages-media.d.ts +44 -61
- package/lib/Utils/messages-media.js +482 -451
- package/lib/Utils/messages.d.ts +18 -32
- package/lib/Utils/messages.js +369 -458
- package/lib/Utils/noise-handler.d.ts +14 -13
- package/lib/Utils/noise-handler.js +99 -145
- package/lib/Utils/process-message.d.ts +12 -31
- package/lib/Utils/process-message.js +150 -459
- package/lib/Utils/signal.d.ts +5 -20
- package/lib/Utils/signal.js +72 -120
- package/lib/Utils/use-multi-file-auth-state.d.ts +2 -2
- package/lib/Utils/use-multi-file-auth-state.js +27 -29
- package/lib/Utils/validate-connection.d.ts +7 -7
- package/lib/Utils/validate-connection.js +99 -73
- package/lib/WABinary/constants.d.ts +27 -25
- package/lib/WABinary/constants.js +20 -1281
- package/lib/WABinary/decode.d.ts +5 -5
- package/lib/WABinary/decode.js +42 -52
- package/lib/WABinary/encode.d.ts +3 -3
- package/lib/WABinary/encode.js +155 -110
- package/lib/WABinary/generic-utils.d.ts +7 -8
- package/lib/WABinary/generic-utils.js +49 -48
- package/lib/WABinary/index.d.ts +5 -6
- package/lib/WABinary/index.js +21 -6
- package/lib/WABinary/jid-utils.d.ts +8 -25
- package/lib/WABinary/jid-utils.js +40 -74
- package/lib/WABinary/types.d.ts +1 -2
- package/lib/WABinary/types.js +2 -2
- package/lib/WAM/BinaryInfo.d.ts +11 -3
- package/lib/WAM/BinaryInfo.js +5 -2
- package/lib/WAM/constants.d.ts +3 -5
- package/lib/WAM/constants.js +11958 -19461
- package/lib/WAM/encode.d.ts +3 -3
- package/lib/WAM/encode.js +22 -17
- package/lib/WAM/index.d.ts +3 -4
- package/lib/WAM/index.js +19 -4
- package/lib/WAUSync/Protocols/USyncContactProtocol.d.ts +3 -4
- package/lib/WAUSync/Protocols/USyncContactProtocol.js +13 -33
- package/lib/WAUSync/Protocols/USyncDeviceProtocol.d.ts +2 -3
- package/lib/WAUSync/Protocols/USyncDeviceProtocol.js +14 -11
- package/lib/WAUSync/Protocols/USyncDisappearingModeProtocol.d.ts +2 -3
- package/lib/WAUSync/Protocols/USyncDisappearingModeProtocol.js +12 -9
- package/lib/WAUSync/Protocols/USyncStatusProtocol.d.ts +2 -3
- package/lib/WAUSync/Protocols/USyncStatusProtocol.js +13 -9
- package/lib/WAUSync/Protocols/UsyncBotProfileProtocol.d.ts +3 -4
- package/lib/WAUSync/Protocols/UsyncBotProfileProtocol.js +22 -20
- package/lib/WAUSync/Protocols/UsyncLIDProtocol.d.ts +3 -5
- package/lib/WAUSync/Protocols/UsyncLIDProtocol.js +8 -13
- package/lib/WAUSync/Protocols/index.d.ts +4 -6
- package/lib/WAUSync/Protocols/index.js +20 -6
- package/lib/WAUSync/USyncQuery.d.ts +4 -6
- package/lib/WAUSync/USyncQuery.js +35 -44
- package/lib/WAUSync/USyncUser.d.ts +5 -10
- package/lib/WAUSync/USyncUser.js +5 -10
- package/lib/WAUSync/index.js +19 -4
- package/lib/index.d.ts +9 -10
- package/lib/index.js +34 -12
- package/package.json +50 -83
- package/WAProto/GenerateStatics.sh +0 -3
- package/WAProto/WAProto.proto +0 -5479
- package/WAProto/fix-imports.js +0 -85
- package/WAProto/index.d.ts +0 -14017
- package/lib/Signal/lid-mapping.d.ts +0 -23
- package/lib/Signal/lid-mapping.js +0 -277
- package/lib/Socket/Client/types.js +0 -11
- package/lib/Socket/Client/websocket.js +0 -54
- package/lib/Socket/mex.d.ts +0 -3
- package/lib/Socket/mex.js +0 -42
- package/lib/Store/keyed-db.d.ts +0 -22
- package/lib/Store/keyed-db.js +0 -108
- package/lib/Types/Bussines.d.ts +0 -25
- package/lib/Types/Bussines.js +0 -2
- package/lib/Types/Mex.d.ts +0 -141
- package/lib/Types/Mex.js +0 -37
- package/lib/Utils/browser-utils.d.ts +0 -4
- package/lib/Utils/browser-utils.js +0 -28
- package/lib/Utils/companion-reg-client-utils.d.ts +0 -17
- package/lib/Utils/companion-reg-client-utils.js +0 -35
- package/lib/Utils/identity-change-handler.d.ts +0 -44
- package/lib/Utils/identity-change-handler.js +0 -50
- package/lib/Utils/message-retry-manager.d.ts +0 -115
- package/lib/Utils/message-retry-manager.js +0 -265
- package/lib/Utils/offline-node-processor.d.ts +0 -17
- package/lib/Utils/offline-node-processor.js +0 -40
- package/lib/Utils/pre-key-manager.d.ts +0 -28
- package/lib/Utils/pre-key-manager.js +0 -106
- package/lib/Utils/reporting-utils.d.ts +0 -11
- package/lib/Utils/reporting-utils.js +0 -258
- package/lib/Utils/stanza-ack.d.ts +0 -11
- package/lib/Utils/stanza-ack.js +0 -38
- package/lib/Utils/sync-action-utils.d.ts +0 -19
- package/lib/Utils/sync-action-utils.js +0 -49
- package/lib/Utils/tc-token-utils.d.ts +0 -37
- package/lib/Utils/tc-token-utils.js +0 -163
- package/lib/WAUSync/Protocols/USyncUsernameProtocol.d.ts +0 -10
- package/lib/WAUSync/Protocols/USyncUsernameProtocol.js +0 -25
- package/lib/WAUSync/index.d.ts +0 -4
package/engine-requirements.js
CHANGED
package/lib/Defaults/index.d.ts
CHANGED
|
@@ -1,39 +1,23 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
1
|
+
/// <reference types="node" />
|
|
2
|
+
/// <reference types="node" />
|
|
3
|
+
import { proto } from '../../WAProto';
|
|
4
|
+
import type { MediaType, SocketConfig } from '../Types';
|
|
3
5
|
export declare const UNAUTHORIZED_CODES: number[];
|
|
4
6
|
export declare const DEFAULT_ORIGIN = "https://web.whatsapp.com";
|
|
5
|
-
export declare const CALL_VIDEO_PREFIX = "https://call.whatsapp.com/video/";
|
|
6
|
-
export declare const CALL_AUDIO_PREFIX = "https://call.whatsapp.com/voice/";
|
|
7
7
|
export declare const DEF_CALLBACK_PREFIX = "CB:";
|
|
8
8
|
export declare const DEF_TAG_PREFIX = "TAG:";
|
|
9
9
|
export declare const PHONE_CONNECTION_CB = "CB:Pong";
|
|
10
|
-
export declare const WA_ADV_ACCOUNT_SIG_PREFIX: Buffer<ArrayBuffer>;
|
|
11
|
-
export declare const WA_ADV_DEVICE_SIG_PREFIX: Buffer<ArrayBuffer>;
|
|
12
|
-
export declare const WA_ADV_HOSTED_ACCOUNT_SIG_PREFIX: Buffer<ArrayBuffer>;
|
|
13
|
-
export declare const WA_ADV_HOSTED_DEVICE_SIG_PREFIX: Buffer<ArrayBuffer>;
|
|
14
10
|
export declare const WA_DEFAULT_EPHEMERAL: number;
|
|
15
|
-
/** Status messages older than 24 hours are considered expired */
|
|
16
|
-
export declare const STATUS_EXPIRY_SECONDS: number;
|
|
17
|
-
/** WA Web enforces a 14-day maximum age for placeholder resend requests */
|
|
18
|
-
export declare const PLACEHOLDER_MAX_AGE_SECONDS: number;
|
|
19
11
|
export declare const NOISE_MODE = "Noise_XX_25519_AESGCM_SHA256\0\0\0\0";
|
|
20
|
-
export declare const DICT_VERSION =
|
|
21
|
-
export declare const KEY_BUNDLE_TYPE: Buffer
|
|
22
|
-
export declare const NOISE_WA_HEADER: Buffer
|
|
12
|
+
export declare const DICT_VERSION = 2;
|
|
13
|
+
export declare const KEY_BUNDLE_TYPE: Buffer;
|
|
14
|
+
export declare const NOISE_WA_HEADER: Buffer;
|
|
23
15
|
/** from: https://stackoverflow.com/questions/3809401/what-is-a-good-regular-expression-to-match-a-url */
|
|
24
16
|
export declare const URL_REGEX: RegExp;
|
|
25
17
|
export declare const WA_CERT_DETAILS: {
|
|
26
18
|
SERIAL: number;
|
|
27
|
-
ISSUER: string;
|
|
28
|
-
PUBLIC_KEY: Buffer<ArrayBuffer>;
|
|
29
|
-
};
|
|
30
|
-
export declare const PROCESSABLE_HISTORY_TYPES: proto.HistorySync.HistorySyncType[];
|
|
31
|
-
export declare const DEFAULT_CACHE_TTLS: {
|
|
32
|
-
SIGNAL_STORE: number;
|
|
33
|
-
MSG_RETRY: number;
|
|
34
|
-
CALL_OFFER: number;
|
|
35
|
-
USER_DEVICES: number;
|
|
36
19
|
};
|
|
20
|
+
export declare const PROCESSABLE_HISTORY_TYPES: proto.Message.HistorySyncNotification.HistorySyncType[];
|
|
37
21
|
export declare const DEFAULT_CONNECTION_CONFIG: SocketConfig;
|
|
38
22
|
export declare const MEDIA_PATH_MAP: {
|
|
39
23
|
[T in MediaType]?: string;
|
|
@@ -57,19 +41,13 @@ export declare const MEDIA_HKDF_KEY_MAPPING: {
|
|
|
57
41
|
'product-catalog-image': string;
|
|
58
42
|
'payment-bg-image': string;
|
|
59
43
|
ptv: string;
|
|
60
|
-
'biz-cover-photo': string;
|
|
61
44
|
};
|
|
62
|
-
export
|
|
63
|
-
export declare const MEDIA_KEYS: MediaType[];
|
|
64
|
-
/** 120s timeout for history sync stall detection, same as WA Web's handleChunkProgress / restartPausedTimer (g = 120) */
|
|
65
|
-
export declare const HISTORY_SYNC_PAUSED_TIMEOUT_MS = 120000;
|
|
45
|
+
export declare const MEDIA_KEYS: ("ppic" | "product" | "image" | "video" | "sticker" | "audio" | "gif" | "ptt" | "thumbnail-document" | "thumbnail-image" | "thumbnail-link" | "thumbnail-video" | "md-app-state" | "md-msg-hist" | "document" | "product-catalog-image" | "payment-bg-image" | "ptv")[];
|
|
66
46
|
export declare const MIN_PREKEY_COUNT = 5;
|
|
67
|
-
export declare const INITIAL_PREKEY_COUNT =
|
|
68
|
-
export declare const
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
Week: number;
|
|
47
|
+
export declare const INITIAL_PREKEY_COUNT = 30;
|
|
48
|
+
export declare const DEFAULT_CACHE_TTLS: {
|
|
49
|
+
SIGNAL_STORE: number;
|
|
50
|
+
MSG_RETRY: number;
|
|
51
|
+
CALL_OFFER: number;
|
|
52
|
+
USER_DEVICES: number;
|
|
74
53
|
};
|
|
75
|
-
//# sourceMappingURL=index.d.ts.map
|
package/lib/Defaults/index.js
CHANGED
|
@@ -1,130 +1,147 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
import { Browsers } from '../Utils/browser-utils.js';
|
|
4
|
-
import logger from '../Utils/logger.js';
|
|
5
|
-
const version = [2, 3000, 1035194821];
|
|
6
|
-
export const UNAUTHORIZED_CODES = [401, 403, 419];
|
|
7
|
-
export const DEFAULT_ORIGIN = 'https://web.whatsapp.com';
|
|
8
|
-
export const CALL_VIDEO_PREFIX = 'https://call.whatsapp.com/video/';
|
|
9
|
-
export const CALL_AUDIO_PREFIX = 'https://call.whatsapp.com/voice/';
|
|
10
|
-
export const DEF_CALLBACK_PREFIX = 'CB:';
|
|
11
|
-
export const DEF_TAG_PREFIX = 'TAG:';
|
|
12
|
-
export const PHONE_CONNECTION_CB = 'CB:Pong';
|
|
13
|
-
export const WA_ADV_ACCOUNT_SIG_PREFIX = Buffer.from([6, 0]);
|
|
14
|
-
export const WA_ADV_DEVICE_SIG_PREFIX = Buffer.from([6, 1]);
|
|
15
|
-
export const WA_ADV_HOSTED_ACCOUNT_SIG_PREFIX = Buffer.from([6, 5]);
|
|
16
|
-
export const WA_ADV_HOSTED_DEVICE_SIG_PREFIX = Buffer.from([6, 6]);
|
|
17
|
-
export const WA_DEFAULT_EPHEMERAL = 7 * 24 * 60 * 60;
|
|
18
|
-
/** Status messages older than 24 hours are considered expired */
|
|
19
|
-
export const STATUS_EXPIRY_SECONDS = 24 * 60 * 60;
|
|
20
|
-
/** WA Web enforces a 14-day maximum age for placeholder resend requests */
|
|
21
|
-
export const PLACEHOLDER_MAX_AGE_SECONDS = 14 * 24 * 60 * 60;
|
|
22
|
-
export const NOISE_MODE = 'Noise_XX_25519_AESGCM_SHA256\0\0\0\0';
|
|
23
|
-
export const DICT_VERSION = 3;
|
|
24
|
-
export const KEY_BUNDLE_TYPE = Buffer.from([5]);
|
|
25
|
-
export const NOISE_WA_HEADER = Buffer.from([87, 65, 6, DICT_VERSION]); // last is "DICT_VERSION"
|
|
26
|
-
/** from: https://stackoverflow.com/questions/3809401/what-is-a-good-regular-expression-to-match-a-url */
|
|
27
|
-
export const URL_REGEX = /https:\/\/(?![^:@\/\s]+:[^:@\/\s]+@)[a-zA-Z0-9.-]+\.[a-zA-Z]{2,}(:\d+)?(\/[^\s]*)?/g;
|
|
28
|
-
export const WA_CERT_DETAILS = {
|
|
29
|
-
SERIAL: 0,
|
|
30
|
-
ISSUER: 'WhatsAppLongTerm1',
|
|
31
|
-
PUBLIC_KEY: Buffer.from('142375574d0a587166aae71ebe516437c4a28b73e3695c6ce1f7f9545da8ee6b', 'hex')
|
|
1
|
+
var __importDefault = this && this.__importDefault || function (a) {
|
|
2
|
+
return a && a.__esModule ? a : { "default": a }
|
|
32
3
|
};
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
4
|
+
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: !0 });
|
|
6
|
+
|
|
7
|
+
exports.DEFAULT_CACHE_TTLS =
|
|
8
|
+
exports.INITIAL_PREKEY_COUNT =
|
|
9
|
+
exports.MIN_PREKEY_COUNT =
|
|
10
|
+
exports.MEDIA_KEYS =
|
|
11
|
+
exports.MEDIA_HKDF_KEY_MAPPING =
|
|
12
|
+
exports.MEDIA_PATH_MAP =
|
|
13
|
+
exports.DEFAULT_CONNECTION_CONFIG =
|
|
14
|
+
exports.PROCESSABLE_HISTORY_TYPES =
|
|
15
|
+
exports.WA_CERT_DETAILS =
|
|
16
|
+
exports.URL_REGEX =
|
|
17
|
+
exports.NOISE_WA_HEADER =
|
|
18
|
+
exports.KEY_BUNDLE_TYPE =
|
|
19
|
+
exports.DICT_VERSION =
|
|
20
|
+
exports.NOISE_MODE =
|
|
21
|
+
exports.WA_DEFAULT_EPHEMERAL =
|
|
22
|
+
exports.PHONE_CONNECTION_CB =
|
|
23
|
+
exports.DEF_TAG_PREFIX =
|
|
24
|
+
exports.DEF_CALLBACK_PREFIX =
|
|
25
|
+
exports.DEFAULT_ORIGIN =
|
|
26
|
+
exports.UNAUTHORIZED_CODES =
|
|
27
|
+
void 0;
|
|
28
|
+
|
|
29
|
+
const crypto_1 = require("crypto");
|
|
30
|
+
const { proto } = require("../../WAProto"),
|
|
31
|
+
libsignal_1 = require("../Signal/libsignal"),
|
|
32
|
+
Utils_1 = require("../Utils"),
|
|
33
|
+
logger_1 = __importDefault(require("../Utils/logger")),
|
|
34
|
+
baileys_version_json_1 = require("./baileys-version.json"),
|
|
35
|
+
phonenumber_mcc_json_1 = __importDefault(require("./phonenumber-mcc.json"));
|
|
36
|
+
|
|
37
|
+
exports.UNAUTHORIZED_CODES = [401, 403, 419];
|
|
38
|
+
exports.version = [2, 3000, 1027934701];
|
|
39
|
+
exports.PHONENUMBER_MCC = phonenumber_mcc_json_1.default;
|
|
40
|
+
exports.DEFAULT_ORIGIN = "https://web.whatsapp.com";
|
|
41
|
+
exports.MOBILE_ENDPOINT = 'g.whatsapp.net';
|
|
42
|
+
exports.MOBILE_PORT = 443;
|
|
43
|
+
exports.DEF_CALLBACK_PREFIX = "CB:";
|
|
44
|
+
exports.DEF_TAG_PREFIX = "TAG:";
|
|
45
|
+
exports.PHONE_CONNECTION_CB = "CB:Pong";
|
|
46
|
+
exports.WA_DEFAULT_EPHEMERAL = 604800;
|
|
47
|
+
const WA_VERSION = '2.25.23.24';
|
|
48
|
+
const WA_VERSION_HASH = (0, crypto_1.createHash)('md5').update(WA_VERSION).digest('hex');
|
|
49
|
+
exports.MOBILE_TOKEN = Buffer.from('0a1mLfGUIBVrMKF1RdvLI5lkRBvof6vn0fD2QRSM' + WA_VERSION_HASH);
|
|
50
|
+
exports.MOBILE_REGISTRATION_ENDPOINT = 'https://v.whatsapp.net/v2';
|
|
51
|
+
exports.MOBILE_USERAGENT = `WhatsApp/${WA_VERSION} iOS/17.5.1 Device/Apple-iPhone_13`;
|
|
52
|
+
exports.REGISTRATION_PUBLIC_KEY = Buffer.from([
|
|
53
|
+
5, 142, 140, 15, 116, 195, 235, 197, 215, 166, 134, 92, 108, 60, 132, 56, 86, 176, 97, 33, 204, 232, 234, 119, 77,
|
|
54
|
+
34, 251, 111, 18, 37, 18, 48, 45,
|
|
55
|
+
]);
|
|
56
|
+
exports.NOISE_MODE = "Noise_XX_25519_AESGCM_SHA256\x00\x00\x00\x00";
|
|
57
|
+
exports.DICT_VERSION = 2;
|
|
58
|
+
exports.KEY_BUNDLE_TYPE = Buffer.from([5]);
|
|
59
|
+
exports.NOISE_WA_HEADER = Buffer.from([87, 65, 6, exports.DICT_VERSION]);
|
|
60
|
+
exports.PROTOCOL_VERSION = [5, 2];
|
|
61
|
+
exports.MOBILE_NOISE_HEADER = Buffer.concat([Buffer.from('WA'), Buffer.from(exports.PROTOCOL_VERSION)]);
|
|
62
|
+
|
|
63
|
+
exports.URL_REGEX = /https:\/\/(?![^:@\/\s]+:[^:@\/\s]+@)[a-zA-Z0-9.-]+\.[a-zA-Z]{2,}(:\d+)?(\/[^\s]*)?/g;
|
|
64
|
+
exports.WA_CERT_DETAILS = { SERIAL: 0 };
|
|
65
|
+
|
|
66
|
+
exports.PROCESSABLE_HISTORY_TYPES = [
|
|
67
|
+
"INITIAL_BOOTSTRAP",
|
|
68
|
+
"PUSH_NAME",
|
|
69
|
+
"RECENT",
|
|
70
|
+
"FULL",
|
|
71
|
+
"ON_DEMAND"
|
|
41
72
|
];
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
keepAliveIntervalMs: 30000,
|
|
54
|
-
logger: logger.child({ class: 'baileys' }),
|
|
55
|
-
emitOwnEvents: true,
|
|
56
|
-
defaultQueryTimeoutMs: 60000,
|
|
73
|
+
|
|
74
|
+
exports.DEFAULT_CONNECTION_CONFIG = {
|
|
75
|
+
version: baileys_version_json_1.version,
|
|
76
|
+
browser: Utils_1.Browsers("Chrome"),
|
|
77
|
+
waWebSocketUrl: "wss://web.whatsapp.com/ws/chat",
|
|
78
|
+
connectTimeoutMs: 2E4,
|
|
79
|
+
keepAliveIntervalMs: 3E4,
|
|
80
|
+
logger: logger_1.default.child({ class: "baileys" }),
|
|
81
|
+
printQRInTerminal: !1,
|
|
82
|
+
emitOwnEvents: !0,
|
|
83
|
+
defaultQueryTimeoutMs: 6E4,
|
|
57
84
|
customUploadHosts: [],
|
|
58
85
|
retryRequestDelayMs: 250,
|
|
59
86
|
maxMsgRetryCount: 5,
|
|
60
|
-
fireInitQueries:
|
|
61
|
-
auth:
|
|
62
|
-
markOnlineOnConnect:
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
return syncType !== proto.HistorySync.HistorySyncType.FULL;
|
|
68
|
-
},
|
|
69
|
-
shouldIgnoreJid: () => false,
|
|
87
|
+
fireInitQueries: !0,
|
|
88
|
+
auth: void 0,
|
|
89
|
+
markOnlineOnConnect: !0,
|
|
90
|
+
syncFullHistory: !1,
|
|
91
|
+
patchMessageBeforeSending: a => a,
|
|
92
|
+
shouldSyncHistoryMessage: () => !0,
|
|
93
|
+
shouldIgnoreJid: () => !1,
|
|
70
94
|
linkPreviewImageThumbnailWidth: 192,
|
|
71
|
-
transactionOpts: { maxCommitRetries: 10, delayBetweenTriesMs:
|
|
72
|
-
generateHighQualityLinkPreview:
|
|
73
|
-
enableAutoSessionRecreation: true,
|
|
74
|
-
enableRecentMessageCache: true,
|
|
95
|
+
transactionOpts: { maxCommitRetries: 10, delayBetweenTriesMs: 3E3 },
|
|
96
|
+
generateHighQualityLinkPreview: !1,
|
|
75
97
|
options: {},
|
|
76
|
-
appStateMacVerification: {
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
},
|
|
80
|
-
|
|
81
|
-
getMessage: async () => undefined,
|
|
82
|
-
cachedGroupMetadata: async () => undefined,
|
|
83
|
-
makeSignalRepository: makeLibSignalRepository
|
|
98
|
+
appStateMacVerification: { patch: !1, snapshot: !1 },
|
|
99
|
+
countryCode: "US",
|
|
100
|
+
getMessage: async () => { },
|
|
101
|
+
cachedGroupMetadata: async () => { },
|
|
102
|
+
makeSignalRepository: libsignal_1.makeLibSignalRepository
|
|
84
103
|
};
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
104
|
+
|
|
105
|
+
exports.MEDIA_PATH_MAP = {
|
|
106
|
+
image: "/mms/image",
|
|
107
|
+
video: "/mms/video",
|
|
108
|
+
document: "/mms/document",
|
|
109
|
+
audio: "/mms/audio",
|
|
110
|
+
sticker: "/mms/image",
|
|
111
|
+
"thumbnail-link": "/mms/image",
|
|
112
|
+
"product-catalog-image": "/product/image",
|
|
113
|
+
"md-app-state": "",
|
|
114
|
+
"md-msg-hist": "/mms/md-app-state"
|
|
96
115
|
};
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
116
|
+
|
|
117
|
+
exports.MEDIA_HKDF_KEY_MAPPING = {
|
|
118
|
+
audio: "Audio",
|
|
119
|
+
document: "Document",
|
|
120
|
+
gif: "Video",
|
|
121
|
+
image: "Image",
|
|
122
|
+
ppic: "",
|
|
123
|
+
product: "Image",
|
|
124
|
+
ptt: "Audio",
|
|
125
|
+
sticker: "Image",
|
|
126
|
+
video: "Video",
|
|
127
|
+
"thumbnail-document": "Document Thumbnail",
|
|
128
|
+
"thumbnail-image": "Image Thumbnail",
|
|
129
|
+
"thumbnail-video": "Video Thumbnail",
|
|
130
|
+
"thumbnail-link": "Link Thumbnail",
|
|
131
|
+
"md-msg-hist": "History",
|
|
132
|
+
"md-app-state": "App State",
|
|
133
|
+
"product-catalog-image": "",
|
|
134
|
+
"payment-bg-image": "Payment Background",
|
|
135
|
+
ptv: "Video"
|
|
117
136
|
};
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
Week: 7 * 24 * 60 * 60 * 1000
|
|
137
|
+
|
|
138
|
+
exports.MEDIA_KEYS = Object.keys(exports.MEDIA_PATH_MAP);
|
|
139
|
+
exports.MIN_PREKEY_COUNT = 5;
|
|
140
|
+
exports.INITIAL_PREKEY_COUNT = 30;
|
|
141
|
+
|
|
142
|
+
exports.DEFAULT_CACHE_TTLS = {
|
|
143
|
+
SIGNAL_STORE: 300,
|
|
144
|
+
MSG_RETRY: 3600,
|
|
145
|
+
CALL_OFFER: 300,
|
|
146
|
+
USER_DEVICES: 300
|
|
129
147
|
};
|
|
130
|
-
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1,223 @@
|
|
|
1
|
+
{
|
|
2
|
+
"93": 412,
|
|
3
|
+
"355": 276,
|
|
4
|
+
"213": 603,
|
|
5
|
+
"1-684": 544,
|
|
6
|
+
"376": 213,
|
|
7
|
+
"244": 631,
|
|
8
|
+
"1-264": 365,
|
|
9
|
+
"1-268": 344,
|
|
10
|
+
"54": 722,
|
|
11
|
+
"374": 283,
|
|
12
|
+
"297": 363,
|
|
13
|
+
"61": 505,
|
|
14
|
+
"43": 232,
|
|
15
|
+
"994": 400,
|
|
16
|
+
"1-242": 364,
|
|
17
|
+
"973": 426,
|
|
18
|
+
"880": 470,
|
|
19
|
+
"1-246": 342,
|
|
20
|
+
"375": 257,
|
|
21
|
+
"32": 206,
|
|
22
|
+
"501": 702,
|
|
23
|
+
"229": 616,
|
|
24
|
+
"1-441": 350,
|
|
25
|
+
"975": 402,
|
|
26
|
+
"591": 736,
|
|
27
|
+
"387": 218,
|
|
28
|
+
"267": 652,
|
|
29
|
+
"55": 724,
|
|
30
|
+
"1-284": 348,
|
|
31
|
+
"673": 528,
|
|
32
|
+
"359": 284,
|
|
33
|
+
"226": 613,
|
|
34
|
+
"257": 642,
|
|
35
|
+
"855": 456,
|
|
36
|
+
"237": 624,
|
|
37
|
+
"238": 625,
|
|
38
|
+
"1-345": 346,
|
|
39
|
+
"236": 623,
|
|
40
|
+
"235": 622,
|
|
41
|
+
"56": 730,
|
|
42
|
+
"86": 454,
|
|
43
|
+
"57": 732,
|
|
44
|
+
"269": 654,
|
|
45
|
+
"682": 548,
|
|
46
|
+
"506": 712,
|
|
47
|
+
"385": 219,
|
|
48
|
+
"53": 368,
|
|
49
|
+
"357": 280,
|
|
50
|
+
"420": 230,
|
|
51
|
+
"243": 630,
|
|
52
|
+
"45": 238,
|
|
53
|
+
"253": 638,
|
|
54
|
+
"1-767": 366,
|
|
55
|
+
"1-809": 370,
|
|
56
|
+
"1-849": 370,
|
|
57
|
+
"1-829": 370,
|
|
58
|
+
"593": 740,
|
|
59
|
+
"20": 602,
|
|
60
|
+
"503": 706,
|
|
61
|
+
"240": 627,
|
|
62
|
+
"291": 657,
|
|
63
|
+
"372": 248,
|
|
64
|
+
"251": 636,
|
|
65
|
+
"500": 750,
|
|
66
|
+
"298": 288,
|
|
67
|
+
"679": 542,
|
|
68
|
+
"358": 244,
|
|
69
|
+
"33": 208,
|
|
70
|
+
"689": 547,
|
|
71
|
+
"241": 628,
|
|
72
|
+
"220": 607,
|
|
73
|
+
"995": 282,
|
|
74
|
+
"49": 262,
|
|
75
|
+
"233": 620,
|
|
76
|
+
"350": 266,
|
|
77
|
+
"30": 202,
|
|
78
|
+
"299": 290,
|
|
79
|
+
"1-473": 352,
|
|
80
|
+
"1-671": 535,
|
|
81
|
+
"502": 704,
|
|
82
|
+
"224": 537,
|
|
83
|
+
"592": 738,
|
|
84
|
+
"509": 372,
|
|
85
|
+
"504": 708,
|
|
86
|
+
"852": 454,
|
|
87
|
+
"36": 216,
|
|
88
|
+
"354": 274,
|
|
89
|
+
"91": 404,
|
|
90
|
+
"62": 510,
|
|
91
|
+
"98": 432,
|
|
92
|
+
"964": 418,
|
|
93
|
+
"353": 234,
|
|
94
|
+
"972": 425,
|
|
95
|
+
"39": 222,
|
|
96
|
+
"225": 612,
|
|
97
|
+
"1-876": 338,
|
|
98
|
+
"81": 440,
|
|
99
|
+
"962": 416,
|
|
100
|
+
"254": 639,
|
|
101
|
+
"686": 545,
|
|
102
|
+
"383": 221,
|
|
103
|
+
"965": 419,
|
|
104
|
+
"371": 247,
|
|
105
|
+
"961": 415,
|
|
106
|
+
"266": 651,
|
|
107
|
+
"231": 618,
|
|
108
|
+
"218": 606,
|
|
109
|
+
"423": 295,
|
|
110
|
+
"370": 246,
|
|
111
|
+
"352": 270,
|
|
112
|
+
"389": 294,
|
|
113
|
+
"261": 646,
|
|
114
|
+
"265": 650,
|
|
115
|
+
"60": 502,
|
|
116
|
+
"960": 472,
|
|
117
|
+
"223": 610,
|
|
118
|
+
"356": 278,
|
|
119
|
+
"692": 551,
|
|
120
|
+
"222": 609,
|
|
121
|
+
"230": 617,
|
|
122
|
+
"52": 334,
|
|
123
|
+
"691": 550,
|
|
124
|
+
"373": 259,
|
|
125
|
+
"377": 212,
|
|
126
|
+
"976": 428,
|
|
127
|
+
"382": 297,
|
|
128
|
+
"1-664": 354,
|
|
129
|
+
"212": 604,
|
|
130
|
+
"258": 643,
|
|
131
|
+
"95": 414,
|
|
132
|
+
"264": 649,
|
|
133
|
+
"674": 536,
|
|
134
|
+
"977": 429,
|
|
135
|
+
"31": 204,
|
|
136
|
+
"687": 546,
|
|
137
|
+
"64": 530,
|
|
138
|
+
"505": 710,
|
|
139
|
+
"227": 614,
|
|
140
|
+
"234": 621,
|
|
141
|
+
"683": 555,
|
|
142
|
+
"1-670": 534,
|
|
143
|
+
"47": 242,
|
|
144
|
+
"968": 226,
|
|
145
|
+
"92": 410,
|
|
146
|
+
"680": 552,
|
|
147
|
+
"970": 423,
|
|
148
|
+
"507": 714,
|
|
149
|
+
"675": 537,
|
|
150
|
+
"595": 744,
|
|
151
|
+
"51": 716,
|
|
152
|
+
"63": 515,
|
|
153
|
+
"48": 260,
|
|
154
|
+
"351": 268,
|
|
155
|
+
"1-787, 1-939": 330,
|
|
156
|
+
"974": 427,
|
|
157
|
+
"242": 630,
|
|
158
|
+
"40": 226,
|
|
159
|
+
"7": 250,
|
|
160
|
+
"250": 635,
|
|
161
|
+
"290": 658,
|
|
162
|
+
"1-869": 356,
|
|
163
|
+
"1-758": 358,
|
|
164
|
+
"508": 308,
|
|
165
|
+
"1-784": 360,
|
|
166
|
+
"685": 544,
|
|
167
|
+
"378": 292,
|
|
168
|
+
"239": 626,
|
|
169
|
+
"966": 420,
|
|
170
|
+
"221": 608,
|
|
171
|
+
"381": 220,
|
|
172
|
+
"248": 633,
|
|
173
|
+
"232": 619,
|
|
174
|
+
"65": 525,
|
|
175
|
+
"386": 293,
|
|
176
|
+
"677": 540,
|
|
177
|
+
"27": 655,
|
|
178
|
+
"211": 659,
|
|
179
|
+
"34": 214,
|
|
180
|
+
"94": 413,
|
|
181
|
+
"249": 634,
|
|
182
|
+
"597": 746,
|
|
183
|
+
"268": 653,
|
|
184
|
+
"46": 240,
|
|
185
|
+
"41": 228,
|
|
186
|
+
"963": 417,
|
|
187
|
+
"886": 466,
|
|
188
|
+
"992": 436,
|
|
189
|
+
"255": 640,
|
|
190
|
+
"66": 520,
|
|
191
|
+
"228": 615,
|
|
192
|
+
"690": 554,
|
|
193
|
+
"676": 539,
|
|
194
|
+
"1-868": 374,
|
|
195
|
+
"216": 605,
|
|
196
|
+
"90": 286,
|
|
197
|
+
"993": 438,
|
|
198
|
+
"1-649": 376,
|
|
199
|
+
"688": 553,
|
|
200
|
+
"1-340": 332,
|
|
201
|
+
"256": 641,
|
|
202
|
+
"380": 255,
|
|
203
|
+
"971": 424,
|
|
204
|
+
"44": 234,
|
|
205
|
+
"1": 310,
|
|
206
|
+
"598": 748,
|
|
207
|
+
"998": 434,
|
|
208
|
+
"678": 541,
|
|
209
|
+
"379": 225,
|
|
210
|
+
"58": 734,
|
|
211
|
+
"681": 543,
|
|
212
|
+
"967": 421,
|
|
213
|
+
"260": 645,
|
|
214
|
+
"263": 648,
|
|
215
|
+
"670": 514,
|
|
216
|
+
"245": 632,
|
|
217
|
+
"856": 457,
|
|
218
|
+
"599": 362,
|
|
219
|
+
"850": 467,
|
|
220
|
+
"262": 647,
|
|
221
|
+
"82": 450,
|
|
222
|
+
"84": 452
|
|
223
|
+
}
|
|
@@ -1,4 +1,7 @@
|
|
|
1
|
-
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.CiphertextMessage = void 0;
|
|
4
|
+
class CiphertextMessage {
|
|
2
5
|
constructor() {
|
|
3
6
|
this.UNSUPPORTED_VERSION = 1;
|
|
4
7
|
this.CURRENT_VERSION = 3;
|
|
@@ -9,4 +12,4 @@ export class CiphertextMessage {
|
|
|
9
12
|
this.ENCRYPTED_MESSAGE_OVERHEAD = 53;
|
|
10
13
|
}
|
|
11
14
|
}
|
|
12
|
-
|
|
15
|
+
exports.CiphertextMessage = CiphertextMessage;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { SenderKeyDistributionMessage } from './sender-key-distribution-message
|
|
2
|
-
import { SenderKeyName } from './sender-key-name
|
|
3
|
-
import { SenderKeyRecord } from './sender-key-record
|
|
1
|
+
import { SenderKeyDistributionMessage } from './sender-key-distribution-message';
|
|
2
|
+
import { SenderKeyName } from './sender-key-name';
|
|
3
|
+
import { SenderKeyRecord } from './sender-key-record';
|
|
4
4
|
interface SenderKeyStore {
|
|
5
5
|
loadSenderKey(senderKeyName: SenderKeyName): Promise<SenderKeyRecord>;
|
|
6
6
|
storeSenderKey(senderKeyName: SenderKeyName, record: SenderKeyRecord): Promise<void>;
|
|
@@ -12,4 +12,3 @@ export declare class GroupSessionBuilder {
|
|
|
12
12
|
create(senderKeyName: SenderKeyName): Promise<SenderKeyDistributionMessage>;
|
|
13
13
|
}
|
|
14
14
|
export {};
|
|
15
|
-
//# sourceMappingURL=group-session-builder.d.ts.map
|
|
@@ -1,8 +1,42 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
14
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
15
|
+
}) : function(o, v) {
|
|
16
|
+
o["default"] = v;
|
|
17
|
+
});
|
|
18
|
+
var __importStar = (this && this.__importStar) || (function () {
|
|
19
|
+
var ownKeys = function(o) {
|
|
20
|
+
ownKeys = Object.getOwnPropertyNames || function (o) {
|
|
21
|
+
var ar = [];
|
|
22
|
+
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
|
23
|
+
return ar;
|
|
24
|
+
};
|
|
25
|
+
return ownKeys(o);
|
|
26
|
+
};
|
|
27
|
+
return function (mod) {
|
|
28
|
+
if (mod && mod.__esModule) return mod;
|
|
29
|
+
var result = {};
|
|
30
|
+
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
|
31
|
+
__setModuleDefault(result, mod);
|
|
32
|
+
return result;
|
|
33
|
+
};
|
|
34
|
+
})();
|
|
35
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
36
|
+
exports.GroupSessionBuilder = void 0;
|
|
37
|
+
const keyhelper = __importStar(require("./keyhelper"));
|
|
38
|
+
const sender_key_distribution_message_1 = require("./sender-key-distribution-message");
|
|
39
|
+
class GroupSessionBuilder {
|
|
6
40
|
constructor(senderKeyStore) {
|
|
7
41
|
this.senderKeyStore = senderKeyStore;
|
|
8
42
|
}
|
|
@@ -24,7 +58,7 @@ export class GroupSessionBuilder {
|
|
|
24
58
|
if (!state) {
|
|
25
59
|
throw new Error('No session state available');
|
|
26
60
|
}
|
|
27
|
-
return new SenderKeyDistributionMessage(state.getKeyId(), state.getSenderChainKey().getIteration(), state.getSenderChainKey().getSeed(), state.getSigningKeyPublic());
|
|
61
|
+
return new sender_key_distribution_message_1.SenderKeyDistributionMessage(state.getKeyId(), state.getSenderChainKey().getIteration(), state.getSenderChainKey().getSeed(), state.getSigningKeyPublic());
|
|
28
62
|
}
|
|
29
63
|
}
|
|
30
|
-
|
|
64
|
+
exports.GroupSessionBuilder = GroupSessionBuilder;
|