@agenticmail/enterprise 0.5.362 → 0.5.364
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/dist/{agent-tools-5RTLYQBG.js → agent-tools-WE35CALJ.js} +2 -2
- package/dist/{chunk-6QNUG3TN.js → chunk-GQWPMU5G.js} +1 -1
- package/dist/{chunk-WMTAORKP.js → chunk-XETBBD3K.js} +2 -2
- package/dist/{chunk-4JPQXVO5.js → chunk-ZMSWJFRX.js} +2 -2
- package/dist/{cli-agent-4ISAILXX.js → cli-agent-34VINSC3.js} +2 -2
- package/dist/{cli-serve-2MX7MWVM.js → cli-serve-XD6GIKKV.js} +1 -1
- package/dist/cli.js +3 -3
- package/dist/index.js +3 -3
- package/dist/{runtime-CIGENFWR.js → runtime-MQB6MSYG.js} +1 -1
- package/dist/{server-OS4KT44P.js → server-EG3L2NQG.js} +1 -1
- package/dist/{setup-XWVY6YGP.js → setup-OEJQGMPH.js} +1 -1
- package/logs/enterprise-error.log +3 -0
- package/logs/enterprise-out.log +130 -0
- package/package.json +1 -1
|
@@ -13777,9 +13777,9 @@ async function createAllTools(options) {
|
|
|
13777
13777
|
}),
|
|
13778
13778
|
description: def.desc,
|
|
13779
13779
|
category: "communication",
|
|
13780
|
-
|
|
13780
|
+
input_schema: def.params,
|
|
13781
13781
|
execute: /* @__PURE__ */ (function(tid) {
|
|
13782
|
-
return async function(params) {
|
|
13782
|
+
return async function(_id, params) {
|
|
13783
13783
|
var ctx = { emailConfig: emailCfg };
|
|
13784
13784
|
var result = await executeSmtpEmailTool(tid, ctx, params);
|
|
13785
13785
|
if (result.error) return { content: [{ type: "text", text: "Error: " + result.error }] };
|
|
@@ -3385,7 +3385,7 @@ function createRequestToolsTool(allTools, activeSets, _context) {
|
|
|
3385
3385
|
};
|
|
3386
3386
|
}
|
|
3387
3387
|
async function createToolsForContext(options, context, opts) {
|
|
3388
|
-
const { createAllTools } = await import("./agent-tools-
|
|
3388
|
+
const { createAllTools } = await import("./agent-tools-WE35CALJ.js");
|
|
3389
3389
|
if (context === "full") {
|
|
3390
3390
|
return createAllTools(options);
|
|
3391
3391
|
}
|
|
@@ -4691,7 +4691,7 @@ function createServer(config) {
|
|
|
4691
4691
|
engineInitialized = true;
|
|
4692
4692
|
if (config.runtime?.enabled) {
|
|
4693
4693
|
try {
|
|
4694
|
-
const { createAgentRuntime } = await import("./runtime-
|
|
4694
|
+
const { createAgentRuntime } = await import("./runtime-MQB6MSYG.js");
|
|
4695
4695
|
const { mountRuntimeApp, setRuntime } = await import("./routes-OKGFOUUP.js");
|
|
4696
4696
|
let getEmailConfig;
|
|
4697
4697
|
let onTokenRefresh;
|
|
@@ -4960,7 +4960,7 @@ function createServer(config) {
|
|
|
4960
4960
|
await setEngineDb(engineDb, config.db);
|
|
4961
4961
|
if (config.runtime?.enabled) {
|
|
4962
4962
|
try {
|
|
4963
|
-
const { createAgentRuntime } = await import("./runtime-
|
|
4963
|
+
const { createAgentRuntime } = await import("./runtime-MQB6MSYG.js");
|
|
4964
4964
|
const { mountRuntimeApp, setRuntime } = await import("./routes-OKGFOUUP.js");
|
|
4965
4965
|
let getEmailConfig;
|
|
4966
4966
|
let onTokenRefresh;
|
|
@@ -1234,7 +1234,7 @@ async function deploy(config, db, jwtSecret, vaultKey, spinner, chalk) {
|
|
|
1234
1234
|
const { deployTarget, company, database, domain, tunnel, cloud } = config;
|
|
1235
1235
|
if (deployTarget === "cloudflare-tunnel" && tunnel) {
|
|
1236
1236
|
spinner.start(`Starting local server on port ${tunnel.port}...`);
|
|
1237
|
-
const { createServer: createServer2 } = await import("./server-
|
|
1237
|
+
const { createServer: createServer2 } = await import("./server-EG3L2NQG.js");
|
|
1238
1238
|
const server2 = createServer2({ port: tunnel.port, db, jwtSecret });
|
|
1239
1239
|
const handle2 = await server2.start();
|
|
1240
1240
|
spinner.succeed("Server running");
|
|
@@ -1535,7 +1535,7 @@ async function deploy(config, db, jwtSecret, vaultKey, spinner, chalk) {
|
|
|
1535
1535
|
return {};
|
|
1536
1536
|
}
|
|
1537
1537
|
spinner.start("Starting local server...");
|
|
1538
|
-
const { createServer } = await import("./server-
|
|
1538
|
+
const { createServer } = await import("./server-EG3L2NQG.js");
|
|
1539
1539
|
const server = createServer({ port: 3e3, db, jwtSecret });
|
|
1540
1540
|
const handle = await server.start();
|
|
1541
1541
|
spinner.succeed("Server running");
|
|
@@ -820,7 +820,7 @@ async function runAgent(_args) {
|
|
|
820
820
|
}
|
|
821
821
|
} catch {
|
|
822
822
|
}
|
|
823
|
-
const { createAgentRuntime } = await import("./runtime-
|
|
823
|
+
const { createAgentRuntime } = await import("./runtime-MQB6MSYG.js");
|
|
824
824
|
let orgIntMgr = null;
|
|
825
825
|
try {
|
|
826
826
|
const { orgIntegrations: oi } = await import("./routes-OKGFOUUP.js");
|
|
@@ -2126,7 +2126,7 @@ Available tools: ${providerType === "imap" ? "email_send (to, subject, body)" :
|
|
|
2126
2126
|
}
|
|
2127
2127
|
}
|
|
2128
2128
|
} catch (err) {
|
|
2129
|
-
console.
|
|
2129
|
+
console.warn(`[welcome] Failed to send welcome email: ${err.message} \u2014 will not retry`);
|
|
2130
2130
|
}
|
|
2131
2131
|
} else {
|
|
2132
2132
|
if (!managerEmail) console.log("[welcome] No manager email configured, skipping welcome email");
|
|
@@ -94,7 +94,7 @@ async function runServe(_args) {
|
|
|
94
94
|
process.exit(1);
|
|
95
95
|
}
|
|
96
96
|
const { createAdapter, smartDbConfig } = await import("./factory-RTZU2K54.js");
|
|
97
|
-
const { createServer } = await import("./server-
|
|
97
|
+
const { createServer } = await import("./server-EG3L2NQG.js");
|
|
98
98
|
const db = await createAdapter(smartDbConfig(DATABASE_URL));
|
|
99
99
|
await db.migrate();
|
|
100
100
|
const server = createServer({
|
package/dist/cli.js
CHANGED
|
@@ -57,14 +57,14 @@ Skill Development:
|
|
|
57
57
|
break;
|
|
58
58
|
case "serve":
|
|
59
59
|
case "start":
|
|
60
|
-
import("./cli-serve-
|
|
60
|
+
import("./cli-serve-XD6GIKKV.js").then((m) => m.runServe(args.slice(1))).catch(fatal);
|
|
61
61
|
break;
|
|
62
62
|
case "agent":
|
|
63
|
-
import("./cli-agent-
|
|
63
|
+
import("./cli-agent-34VINSC3.js").then((m) => m.runAgent(args.slice(1))).catch(fatal);
|
|
64
64
|
break;
|
|
65
65
|
case "setup":
|
|
66
66
|
default:
|
|
67
|
-
import("./setup-
|
|
67
|
+
import("./setup-OEJQGMPH.js").then((m) => m.runSetupWizard()).catch(fatal);
|
|
68
68
|
break;
|
|
69
69
|
}
|
|
70
70
|
function fatal(err) {
|
package/dist/index.js
CHANGED
|
@@ -13,7 +13,7 @@ import {
|
|
|
13
13
|
import {
|
|
14
14
|
provision,
|
|
15
15
|
runSetupWizard
|
|
16
|
-
} from "./chunk-
|
|
16
|
+
} from "./chunk-ZMSWJFRX.js";
|
|
17
17
|
import {
|
|
18
18
|
AgentRuntime,
|
|
19
19
|
EmailChannel,
|
|
@@ -28,7 +28,7 @@ import {
|
|
|
28
28
|
executeTool,
|
|
29
29
|
runAgentLoop,
|
|
30
30
|
toolsToDefinitions
|
|
31
|
-
} from "./chunk-
|
|
31
|
+
} from "./chunk-GQWPMU5G.js";
|
|
32
32
|
import {
|
|
33
33
|
ValidationError,
|
|
34
34
|
auditLogger,
|
|
@@ -42,7 +42,7 @@ import {
|
|
|
42
42
|
requireRole,
|
|
43
43
|
securityHeaders,
|
|
44
44
|
validate
|
|
45
|
-
} from "./chunk-
|
|
45
|
+
} from "./chunk-XETBBD3K.js";
|
|
46
46
|
import "./chunk-DJBCRQTD.js";
|
|
47
47
|
import {
|
|
48
48
|
PROVIDER_REGISTRY,
|
|
@@ -6,3 +6,6 @@
|
|
|
6
6
|
2026-03-05 16:18:12: [chat-poller] 1 consecutive errors, backing off 30s
|
|
7
7
|
2026-03-05 20:20:42: [chat-poller] Error polling Agentic Mail Support Space: The operation was aborted due to timeout
|
|
8
8
|
2026-03-05 20:20:42: [chat-poller] 1 consecutive errors, backing off 30s
|
|
9
|
+
2026-03-05 20:43:44: [wa:3eecd57d] Media download failed: Cannot derive from empty media key
|
|
10
|
+
2026-03-05 20:54:12: [chat-poller] Error polling Agentic Mail Support Space: The operation was aborted due to timeout
|
|
11
|
+
2026-03-05 20:54:12: [chat-poller] 1 consecutive errors, backing off 30s
|
package/logs/enterprise-out.log
CHANGED
|
@@ -91,3 +91,133 @@
|
|
|
91
91
|
2026-03-05 19:56:06: preKeyId: 1135
|
|
92
92
|
2026-03-05 19:56:06: }
|
|
93
93
|
2026-03-05 19:56:06: }
|
|
94
|
+
2026-03-05 20:49:13: Closing session: SessionEntry {
|
|
95
|
+
2026-03-05 20:49:13: _chains: {
|
|
96
|
+
2026-03-05 20:49:13: 'BaiDuy+N7fCHD7T6oeA8TuZN6Xsr8iLIHCeHeCSXcBwV': { chainKey: [Object], chainType: 2, messageKeys: {} },
|
|
97
|
+
2026-03-05 20:49:13: 'Bd+qwvySvuVtIeGFHdKS56pX+7FcFU9FjP3al4jHfjRd': { chainKey: [Object], chainType: 1, messageKeys: {} }
|
|
98
|
+
2026-03-05 20:49:13: },
|
|
99
|
+
2026-03-05 20:49:13: registrationId: 977788814,
|
|
100
|
+
2026-03-05 20:49:13: currentRatchet: {
|
|
101
|
+
2026-03-05 20:49:13: ephemeralKeyPair: {
|
|
102
|
+
2026-03-05 20:49:13: pubKey: <Buffer 05 df aa c2 fc 92 be e5 6d 21 e1 85 1d d2 92 e7 aa 57 fb b1 5c 15 4f 45 8c fd da 97 88 c7 7e 34 5d>,
|
|
103
|
+
2026-03-05 20:49:13: privKey: <Buffer e0 3e c6 67 4c 82 66 15 cb d2 a2 e9 1d 8e 17 7a 7c 9a a0 42 bd 40 37 44 ff 51 83 d1 31 57 88 75>
|
|
104
|
+
2026-03-05 20:49:13: },
|
|
105
|
+
2026-03-05 20:49:13: lastRemoteEphemeralKey: <Buffer 05 a8 83 bb 2f 8d ed f0 87 0f b4 fa a1 e0 3c 4e e6 4d e9 7b 2b f2 22 c8 1c 27 87 78 24 97 70 1c 15>,
|
|
106
|
+
2026-03-05 20:49:13: previousCounter: 0,
|
|
107
|
+
2026-03-05 20:49:13: rootKey: <Buffer d9 e3 94 7f 44 6c 50 fb 44 2a 9b e9 e0 0a 55 61 eb 73 c5 07 fd c4 98 f8 75 09 a2 80 91 7c 36 02>
|
|
108
|
+
2026-03-05 20:49:13: },
|
|
109
|
+
2026-03-05 20:49:13: indexInfo: {
|
|
110
|
+
2026-03-05 20:49:13: baseKey: <Buffer 05 f0 8a 17 a6 e7 ee 58 72 76 5f e6 84 ee 58 e4 8c e4 f3 3d 67 b1 a3 d8 d5 12 0a 49 07 c4 ed 59 69>,
|
|
111
|
+
2026-03-05 20:49:13: baseKeyType: 2,
|
|
112
|
+
2026-03-05 20:49:13: closed: -1,
|
|
113
|
+
2026-03-05 20:49:13: used: 1772740144455,
|
|
114
|
+
2026-03-05 20:49:13: created: 1772740144455,
|
|
115
|
+
2026-03-05 20:49:13: remoteIdentityKey: <Buffer 05 83 ba 3f 77 34 ca 33 6e 30 61 b6 c3 52 10 07 cf 0a 78 d6 35 d1 77 b3 97 92 68 ca 1c f6 18 72 04>
|
|
116
|
+
2026-03-05 20:49:13: }
|
|
117
|
+
2026-03-05 20:49:13: }
|
|
118
|
+
2026-03-05 20:49:13: Closing session: SessionEntry {
|
|
119
|
+
2026-03-05 20:49:13: _chains: {
|
|
120
|
+
2026-03-05 20:49:13: 'BS5GeRIyj+cAkW+pMdIuHmXY/39WHlp5QN5Zj/H/W5sW': { chainKey: [Object], chainType: 2, messageKeys: {} },
|
|
121
|
+
2026-03-05 20:49:13: 'BYYlkjKWmD3S75q0j6Ac6SS1/zxPF72GS7JbhA3c6TZo': { chainKey: [Object], chainType: 2, messageKeys: {} },
|
|
122
|
+
2026-03-05 20:49:13: BdYZgbhOZwk0ms4z7DHr3mJxH9sZPurFjrSCipRt5idc: { chainKey: [Object], chainType: 1, messageKeys: {} }
|
|
123
|
+
2026-03-05 20:49:13: },
|
|
124
|
+
2026-03-05 20:49:13: registrationId: 6971310,
|
|
125
|
+
2026-03-05 20:49:13: currentRatchet: {
|
|
126
|
+
2026-03-05 20:49:13: ephemeralKeyPair: {
|
|
127
|
+
2026-03-05 20:49:13: pubKey: <Buffer 05 d6 19 81 b8 4e 67 09 34 9a ce 33 ec 31 eb de 62 71 1f db 19 3e ea c5 8e b4 82 8a 94 6d e6 27 5c>,
|
|
128
|
+
2026-03-05 20:49:13: privKey: <Buffer c8 19 b4 db ea aa ac 24 86 4b fb 79 36 f8 17 32 bc 68 10 7b 98 a9 3a fc 65 e7 45 0f fe db 1c 59>
|
|
129
|
+
2026-03-05 20:49:13: },
|
|
130
|
+
2026-03-05 20:49:13: lastRemoteEphemeralKey: <Buffer 05 86 25 92 32 96 98 3d d2 ef 9a b4 8f a0 1c e9 24 b5 ff 3c 4f 17 bd 86 4b b2 5b 84 0d dc e9 36 68>,
|
|
131
|
+
2026-03-05 20:49:13: previousCounter: 1,
|
|
132
|
+
2026-03-05 20:49:13: rootKey: <Buffer cd 97 ee 11 a5 ca 4d 3f 96 98 55 32 96 a6 95 12 ec 2d e5 63 e8 45 d0 71 43 23 db 11 e0 1d c8 cb>
|
|
133
|
+
2026-03-05 20:49:13: },
|
|
134
|
+
2026-03-05 20:49:13: indexInfo: {
|
|
135
|
+
2026-03-05 20:49:13: baseKey: <Buffer 05 c6 9c 81 b5 26 b5 bb 7e 16 47 55 19 37 ac 36 38 56 0b 3a 4e bc d0 d7 82 59 8c 97 67 e8 c5 a2 69>,
|
|
136
|
+
2026-03-05 20:49:13: baseKeyType: 1,
|
|
137
|
+
2026-03-05 20:49:13: closed: -1,
|
|
138
|
+
2026-03-05 20:49:13: used: 1772736969904,
|
|
139
|
+
2026-03-05 20:49:13: created: 1772736961874,
|
|
140
|
+
2026-03-05 20:49:13: remoteIdentityKey: <Buffer 05 77 f5 0b 9d bd dc 37 d4 af cf 0e ba 1e f9 62 e2 31 0c d6 13 ce 68 ff 0c f9 a7 d4 7b fb ec ce 1d>
|
|
141
|
+
2026-03-05 20:49:13: }
|
|
142
|
+
2026-03-05 20:49:13: }
|
|
143
|
+
2026-03-05 20:49:36: Closing session: SessionEntry {
|
|
144
|
+
2026-03-05 20:49:36: _chains: {
|
|
145
|
+
2026-03-05 20:49:36: 'Bbj4wLq07ghcw/HFbfvmkwtPjjk2wBYBhHo8fkrZlyMa': { chainKey: [Object], chainType: 1, messageKeys: {} }
|
|
146
|
+
2026-03-05 20:49:36: },
|
|
147
|
+
2026-03-05 20:49:36: registrationId: 422,
|
|
148
|
+
2026-03-05 20:49:36: currentRatchet: {
|
|
149
|
+
2026-03-05 20:49:36: ephemeralKeyPair: {
|
|
150
|
+
2026-03-05 20:49:36: pubKey: <Buffer 05 b8 f8 c0 ba b4 ee 08 5c c3 f1 c5 6d fb e6 93 0b 4f 8e 39 36 c0 16 01 84 7a 3c 7e 4a d9 97 23 1a>,
|
|
151
|
+
2026-03-05 20:49:36: privKey: <Buffer d8 f8 aa 82 92 9b 63 72 ae 58 5a dd 39 04 67 fc 28 47 62 81 28 3c 91 e1 56 7c 19 d5 07 ea 7b 7b>
|
|
152
|
+
2026-03-05 20:49:36: },
|
|
153
|
+
2026-03-05 20:49:36: lastRemoteEphemeralKey: <Buffer 05 89 c8 a8 b7 d3 8a 1f 8d 68 fd 4a 9c 61 0c 7b 2d 4a 11 45 fd a2 a2 e1 13 5e 49 74 6e ae 68 7d 5a>,
|
|
154
|
+
2026-03-05 20:49:36: previousCounter: 0,
|
|
155
|
+
2026-03-05 20:49:36: rootKey: <Buffer c5 ec 97 58 1d 9a fb 7a f7 e7 19 d0 de 32 40 15 2b 53 ce ce 89 64 c8 5d 2c 0e 87 e8 ac 6f fa a6>
|
|
156
|
+
2026-03-05 20:49:36: },
|
|
157
|
+
2026-03-05 20:49:36: indexInfo: {
|
|
158
|
+
2026-03-05 20:49:36: baseKey: <Buffer 05 29 d3 1b a3 89 30 dc 7d 6a 47 5a 3f e3 4a ec 41 ee 44 7a 10 76 8e ed 33 84 8d 09 9d 6c ad 76 6f>,
|
|
159
|
+
2026-03-05 20:49:36: baseKeyType: 1,
|
|
160
|
+
2026-03-05 20:49:36: closed: -1,
|
|
161
|
+
2026-03-05 20:49:36: used: 1772740153878,
|
|
162
|
+
2026-03-05 20:49:36: created: 1772740153878,
|
|
163
|
+
2026-03-05 20:49:36: remoteIdentityKey: <Buffer 05 33 42 49 7e 7c 3b 6a cc 15 82 fa e0 25 b2 97 a7 ab ac dd 32 06 d5 a0 d6 8f dc f2 0f aa 84 d9 05>
|
|
164
|
+
2026-03-05 20:49:36: },
|
|
165
|
+
2026-03-05 20:49:36: pendingPreKey: {
|
|
166
|
+
2026-03-05 20:49:36: signedKeyId: 1,
|
|
167
|
+
2026-03-05 20:49:36: baseKey: <Buffer 05 29 d3 1b a3 89 30 dc 7d 6a 47 5a 3f e3 4a ec 41 ee 44 7a 10 76 8e ed 33 84 8d 09 9d 6c ad 76 6f>
|
|
168
|
+
2026-03-05 20:49:36: }
|
|
169
|
+
2026-03-05 20:49:36: }
|
|
170
|
+
2026-03-05 20:50:09: Closing session: SessionEntry {
|
|
171
|
+
2026-03-05 20:50:09: _chains: {
|
|
172
|
+
2026-03-05 20:50:09: 'BSgc1HfBPHg8XYscByeek1QpxZAIzws39RKGoqZT+Il+': { chainKey: [Object], chainType: 1, messageKeys: {} }
|
|
173
|
+
2026-03-05 20:50:09: },
|
|
174
|
+
2026-03-05 20:50:09: registrationId: 422,
|
|
175
|
+
2026-03-05 20:50:09: currentRatchet: {
|
|
176
|
+
2026-03-05 20:50:09: ephemeralKeyPair: {
|
|
177
|
+
2026-03-05 20:50:09: pubKey: <Buffer 05 28 1c d4 77 c1 3c 78 3c 5d 8b 1c 07 27 9e 93 54 29 c5 90 08 cf 0b 37 f5 12 86 a2 a6 53 f8 89 7e>,
|
|
178
|
+
2026-03-05 20:50:09: privKey: <Buffer c0 9a 7f cc 7c 0b ef ee 1f 4e ff 6e 60 93 2a 87 66 c3 05 25 db be a1 5a 1d 65 f1 a6 6e 91 0f 63>
|
|
179
|
+
2026-03-05 20:50:09: },
|
|
180
|
+
2026-03-05 20:50:09: lastRemoteEphemeralKey: <Buffer 05 89 c8 a8 b7 d3 8a 1f 8d 68 fd 4a 9c 61 0c 7b 2d 4a 11 45 fd a2 a2 e1 13 5e 49 74 6e ae 68 7d 5a>,
|
|
181
|
+
2026-03-05 20:50:09: previousCounter: 0,
|
|
182
|
+
2026-03-05 20:50:09: rootKey: <Buffer d2 26 0b be cd 3f 30 e5 92 f9 e3 9b 61 b8 a1 6e 51 85 83 09 04 3e 59 6e 1d 63 c1 8d 6e 77 55 88>
|
|
183
|
+
2026-03-05 20:50:09: },
|
|
184
|
+
2026-03-05 20:50:09: indexInfo: {
|
|
185
|
+
2026-03-05 20:50:09: baseKey: <Buffer 05 83 0b ae da bc 20 6e 67 c1 62 bb 96 7b f2 ce 7a 20 1f 5e ec 2d b8 bf 3e 3f 24 66 55 7c a3 30 17>,
|
|
186
|
+
2026-03-05 20:50:09: baseKeyType: 1,
|
|
187
|
+
2026-03-05 20:50:09: closed: -1,
|
|
188
|
+
2026-03-05 20:50:09: used: 1772740176339,
|
|
189
|
+
2026-03-05 20:50:09: created: 1772740176339,
|
|
190
|
+
2026-03-05 20:50:09: remoteIdentityKey: <Buffer 05 33 42 49 7e 7c 3b 6a cc 15 82 fa e0 25 b2 97 a7 ab ac dd 32 06 d5 a0 d6 8f dc f2 0f aa 84 d9 05>
|
|
191
|
+
2026-03-05 20:50:09: },
|
|
192
|
+
2026-03-05 20:50:09: pendingPreKey: {
|
|
193
|
+
2026-03-05 20:50:09: signedKeyId: 1,
|
|
194
|
+
2026-03-05 20:50:09: baseKey: <Buffer 05 83 0b ae da bc 20 6e 67 c1 62 bb 96 7b f2 ce 7a 20 1f 5e ec 2d b8 bf 3e 3f 24 66 55 7c a3 30 17>
|
|
195
|
+
2026-03-05 20:50:09: }
|
|
196
|
+
2026-03-05 20:50:09: }
|
|
197
|
+
2026-03-05 20:50:21: Closing session: SessionEntry {
|
|
198
|
+
2026-03-05 20:50:21: _chains: {
|
|
199
|
+
2026-03-05 20:50:21: 'BSgReSi8i9LEF9w33LZART3LFMyTk1Ar4hacG/ZTP/0L': { chainKey: [Object], chainType: 1, messageKeys: {} }
|
|
200
|
+
2026-03-05 20:50:21: },
|
|
201
|
+
2026-03-05 20:50:21: registrationId: 422,
|
|
202
|
+
2026-03-05 20:50:21: currentRatchet: {
|
|
203
|
+
2026-03-05 20:50:21: ephemeralKeyPair: {
|
|
204
|
+
2026-03-05 20:50:21: pubKey: <Buffer 05 28 11 79 28 bc 8b d2 c4 17 dc 37 dc b6 40 45 3d cb 14 cc 93 93 50 2b e2 16 9c 1b f6 53 3f fd 0b>,
|
|
205
|
+
2026-03-05 20:50:21: privKey: <Buffer 90 03 ea 9d f6 ab a9 5d c7 68 e5 c7 6a c9 42 bd 6d 3e 03 92 13 4b a2 1f 08 1a 3f bb cc b8 08 78>
|
|
206
|
+
2026-03-05 20:50:21: },
|
|
207
|
+
2026-03-05 20:50:21: lastRemoteEphemeralKey: <Buffer 05 89 c8 a8 b7 d3 8a 1f 8d 68 fd 4a 9c 61 0c 7b 2d 4a 11 45 fd a2 a2 e1 13 5e 49 74 6e ae 68 7d 5a>,
|
|
208
|
+
2026-03-05 20:50:21: previousCounter: 0,
|
|
209
|
+
2026-03-05 20:50:21: rootKey: <Buffer f3 ad e2 47 7d fa 61 88 7b 0c 95 cb f6 b5 22 ca 6b 4c cf 1f 3e 07 34 b2 4f 99 13 db 3e c9 e2 34>
|
|
210
|
+
2026-03-05 20:50:21: },
|
|
211
|
+
2026-03-05 20:50:21: indexInfo: {
|
|
212
|
+
2026-03-05 20:50:21: baseKey: <Buffer 05 dd 01 3c d7 48 7f 65 e3 1d 5a f7 f9 bd 34 83 67 9d 73 c5 20 b1 82 08 6c 50 b3 74 f3 c7 32 fe 2f>,
|
|
213
|
+
2026-03-05 20:50:21: baseKeyType: 1,
|
|
214
|
+
2026-03-05 20:50:21: closed: -1,
|
|
215
|
+
2026-03-05 20:50:21: used: 1772740209737,
|
|
216
|
+
2026-03-05 20:50:21: created: 1772740209737,
|
|
217
|
+
2026-03-05 20:50:21: remoteIdentityKey: <Buffer 05 33 42 49 7e 7c 3b 6a cc 15 82 fa e0 25 b2 97 a7 ab ac dd 32 06 d5 a0 d6 8f dc f2 0f aa 84 d9 05>
|
|
218
|
+
2026-03-05 20:50:21: },
|
|
219
|
+
2026-03-05 20:50:21: pendingPreKey: {
|
|
220
|
+
2026-03-05 20:50:21: signedKeyId: 1,
|
|
221
|
+
2026-03-05 20:50:21: baseKey: <Buffer 05 dd 01 3c d7 48 7f 65 e3 1d 5a f7 f9 bd 34 83 67 9d 73 c5 20 b1 82 08 6c 50 b3 74 f3 c7 32 fe 2f>
|
|
222
|
+
2026-03-05 20:50:21: }
|
|
223
|
+
2026-03-05 20:50:21: }
|