core-3nweb-client-lib 0.42.3 → 0.42.4

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 (23) hide show
  1. package/build/core/asmail/inbox/inbox-events.d.ts +3 -2
  2. package/build/core/asmail/inbox/inbox-events.js +21 -13
  3. package/build/core/asmail/inbox/index.d.ts +1 -0
  4. package/build/core/asmail/inbox/index.js +19 -1
  5. package/package.json +1 -1
  6. package/{test-data-1-1759691784470/util/logs/2025-10-05.log.txt → test-data-1-1759766726524/util/logs/2025-10-06.log.txt} +4 -4
  7. package/{test-data-10-1759691821007/util/logs/2025-10-05.log.txt → test-data-10-1759766763382/util/logs/2025-10-06.log.txt} +4 -4
  8. package/{test-data-11-1759691821008/util/logs/2025-10-05.log.txt → test-data-11-1759766763382/util/logs/2025-10-06.log.txt} +4 -4
  9. package/{test-data-12-1759691824688/util/logs/2025-10-05.log.txt → test-data-12-1759766767122/util/logs/2025-10-06.log.txt} +4 -4
  10. package/{test-data-13-1759691825525/util/logs/2025-10-05.log.txt → test-data-13-1759766767971/util/logs/2025-10-06.log.txt} +8 -8
  11. package/test-data-2-1759766726527/util/logs/2025-10-06.log.txt +14 -0
  12. package/{test-data-3-1759691789049/util/logs/2025-10-05.log.txt → test-data-3-1759766731046/util/logs/2025-10-06.log.txt} +8 -8
  13. package/{test-data-4-1759691794994/util/logs/2025-10-05.log.txt → test-data-4-1759766737027/util/logs/2025-10-06.log.txt} +8 -8
  14. package/test-data-5-1759766746387/util/logs/2025-10-06.log.txt +14 -0
  15. package/test-data-6-1759766748340/util/logs/2025-10-06.log.txt +14 -0
  16. package/test-data-7-1759766750334/util/logs/2025-10-06.log.txt +14 -0
  17. package/test-data-8-1759766759011/util/logs/2025-10-06.log.txt +14 -0
  18. package/{test-data-9-1759691817611/util/logs/2025-10-05.log.txt → test-data-9-1759766759878/util/logs/2025-10-06.log.txt} +8 -8
  19. package/test-data-2-1759691784473/util/logs/2025-10-05.log.txt +0 -14
  20. package/test-data-5-1759691804247/util/logs/2025-10-05.log.txt +0 -14
  21. package/test-data-6-1759691806167/util/logs/2025-10-05.log.txt +0 -14
  22. package/test-data-7-1759691808152/util/logs/2025-10-05.log.txt +0 -14
  23. package/test-data-8-1759691816773/util/logs/2025-10-05.log.txt +0 -14
@@ -15,8 +15,9 @@ type MsgInfo = web3n.asmail.MsgInfo;
15
15
  * Hence, this should do restarts to server around wakeup events.
16
16
  */
17
17
  export declare class InboxEvents {
18
+ private readonly msgReceiver;
18
19
  private readonly getMsg;
19
- private readonly listMsgs;
20
+ private readonly listNewMsgs;
20
21
  private readonly rmMsg;
21
22
  private readonly logError;
22
23
  private readonly newMsgs;
@@ -25,7 +26,7 @@ export declare class InboxEvents {
25
26
  private readonly makeServerEvents;
26
27
  private networkActive;
27
28
  private disconnectedAt;
28
- constructor(msgReceiver: MailRecipient, getMsg: (msgId: string) => Promise<IncomingMessage>, listMsgs: (fromTS: number) => Promise<MsgInfo[]>, rmMsg: (msgId: string) => Promise<void>, logError: LogError);
29
+ constructor(msgReceiver: MailRecipient, getMsg: (msgId: string) => Promise<IncomingMessage>, listNewMsgs: (fromTS: number) => Promise<MsgInfo[]>, rmMsg: (msgId: string) => Promise<void>, logError: LogError);
29
30
  private startListening;
30
31
  private sleepAndRestart;
31
32
  private getMessage;
@@ -36,9 +36,10 @@ const BUFFER_MILLIS_FOR_LISTING = 2 * 60 * 1000;
36
36
  * Hence, this should do restarts to server around wakeup events.
37
37
  */
38
38
  class InboxEvents {
39
- constructor(msgReceiver, getMsg, listMsgs, rmMsg, logError) {
39
+ constructor(msgReceiver, getMsg, listNewMsgs, rmMsg, logError) {
40
+ this.msgReceiver = msgReceiver;
40
41
  this.getMsg = getMsg;
41
- this.listMsgs = listMsgs;
42
+ this.listNewMsgs = listNewMsgs;
42
43
  this.rmMsg = rmMsg;
43
44
  this.logError = logError;
44
45
  this.newMsgs = new rxjs_1.Subject();
@@ -155,20 +156,27 @@ class InboxEvents {
155
156
  if (!this.disconnectedAt) {
156
157
  return;
157
158
  }
158
- const fromTS = this.disconnectedAt - BUFFER_MILLIS_FOR_LISTING;
159
- let msgInfos = (await this.listMsgs(fromTS))
160
- .filter(info => (fromTS <= info.deliveryTS))
161
- .sort((a, b) => (a.deliveryTS - b.deliveryTS));
162
- for (const info of msgInfos) {
163
- const msg = await this.getMessage(info.msgId);
164
- if (msg) {
165
- this.newMsgs.next(msg);
159
+ try {
160
+ const fromTS = this.disconnectedAt - BUFFER_MILLIS_FOR_LISTING;
161
+ const msgInfos = (await this.listNewMsgs(fromTS))
162
+ .sort((a, b) => (a.deliveryTS - b.deliveryTS));
163
+ for (const info of msgInfos) {
164
+ const msg = await this.getMessage(info.msgId);
165
+ if (msg) {
166
+ this.newMsgs.next(msg);
167
+ this.disconnectedAt = msg.deliveryTS;
168
+ }
169
+ else if (!this.networkActive) {
170
+ return;
171
+ }
166
172
  }
167
- else if (!this.networkActive) {
168
- return;
173
+ this.disconnectedAt = undefined;
174
+ }
175
+ catch (err) {
176
+ if (err.type !== 'connect') {
177
+ await this.logError(err, `Error while retrieving messages, from disconnected period`);
169
178
  }
170
179
  }
171
- this.disconnectedAt = undefined;
172
180
  }
173
181
  }
174
182
  exports.InboxEvents = InboxEvents;
@@ -94,6 +94,7 @@ export declare class InboxOnServer {
94
94
  private absorbSendingParams;
95
95
  private checkServerAuthIfPresent;
96
96
  private listMsgs;
97
+ private listNewMsgs;
97
98
  private getMsg;
98
99
  private msgToUIForm;
99
100
  suspendNetworkActivity(): void;
@@ -51,7 +51,7 @@ class InboxOnServer {
51
51
  this.logError = logError;
52
52
  this.procs = new synced_1.NamedProcs();
53
53
  this.recentlyOpenedMsgs = (0, timed_cache_1.makeTimedCache)(60 * 1000);
54
- this.inboxEvents = new inbox_events_1.InboxEvents(this.msgReceiver, this.getMsg.bind(this), this.listMsgs.bind(this), this.removeMsg.bind(this), this.logError);
54
+ this.inboxEvents = new inbox_events_1.InboxEvents(this.msgReceiver, this.getMsg.bind(this), this.listNewMsgs.bind(this), this.removeMsg.bind(this), this.logError);
55
55
  Object.seal(this);
56
56
  }
57
57
  static async makeAndStart(cachePath, syncedFS, r) {
@@ -237,6 +237,24 @@ class InboxOnServer {
237
237
  return this.index.listMsgs(fromTS);
238
238
  });
239
239
  }
240
+ async listNewMsgs(fromTS) {
241
+ const msgIds = await this.msgReceiver.listMsgs(fromTS);
242
+ // remove from listing messages already in index
243
+ const indexedMsgs = await this.index.listMsgs(fromTS);
244
+ for (const info of indexedMsgs) {
245
+ const ind = msgIds.indexOf(info.msgId);
246
+ if (ind >= 0) {
247
+ msgIds.splice(ind, 1);
248
+ }
249
+ }
250
+ if (msgIds.length === 0) {
251
+ return [];
252
+ }
253
+ // cache and index these
254
+ await Promise.all(msgIds.map(msgId => this.startCachingAndAddKeyToIndex(msgId)));
255
+ // get info's from index, focusing on specific messages only
256
+ return (await this.index.listMsgs(fromTS)).filter(({ msgId }) => msgIds.includes(msgId));
257
+ }
240
258
  async getMsg(msgId) {
241
259
  if (!msgId || (typeof msgId !== 'string')) {
242
260
  throw `Given message id is not a non-empty string`;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "core-3nweb-client-lib",
3
- "version": "0.42.3",
3
+ "version": "0.42.4",
4
4
  "description": "3NWeb client core library, embeddable into different environments",
5
5
  "main": "build/lib-index.js",
6
6
  "types": "build/lib-index.d.ts",
@@ -1,13 +1,13 @@
1
1
 
2
- Sun Oct 05 2025 15:16:42 GMT-0400 (Eastern Daylight Saving Time) ==================================
3
- Core version 0.42.3
2
+ Mon Oct 06 2025 12:05:44 GMT-0400 (Eastern Daylight Saving Time) ==================================
3
+ Core version 0.42.4
4
4
  Log level: error.
5
5
  WebSocket to wss://localhost:8088/asmail/retrieval/events closed with error
6
6
 
7
7
  Error message: undefined
8
8
 
9
- Sun Oct 05 2025 15:16:42 GMT-0400 (Eastern Daylight Saving Time) ==================================
10
- Core version 0.42.3
9
+ Mon Oct 06 2025 12:05:44 GMT-0400 (Eastern Daylight Saving Time) ==================================
10
+ Core version 0.42.4
11
11
  Log level: error.
12
12
  WebSocket to wss://localhost:8088/3nstorage/owner/events closed with error
13
13
 
@@ -1,13 +1,13 @@
1
1
 
2
- Sun Oct 05 2025 15:17:04 GMT-0400 (Eastern Daylight Saving Time) ==================================
3
- Core version 0.42.3
2
+ Mon Oct 06 2025 12:06:07 GMT-0400 (Eastern Daylight Saving Time) ==================================
3
+ Core version 0.42.4
4
4
  Log level: error.
5
5
  WebSocket to wss://localhost:8088/asmail/retrieval/events closed with error
6
6
 
7
7
  Error message: undefined
8
8
 
9
- Sun Oct 05 2025 15:17:04 GMT-0400 (Eastern Daylight Saving Time) ==================================
10
- Core version 0.42.3
9
+ Mon Oct 06 2025 12:06:07 GMT-0400 (Eastern Daylight Saving Time) ==================================
10
+ Core version 0.42.4
11
11
  Log level: error.
12
12
  WebSocket to wss://localhost:8088/3nstorage/owner/events closed with error
13
13
 
@@ -1,13 +1,13 @@
1
1
 
2
- Sun Oct 05 2025 15:17:04 GMT-0400 (Eastern Daylight Saving Time) ==================================
3
- Core version 0.42.3
2
+ Mon Oct 06 2025 12:06:07 GMT-0400 (Eastern Daylight Saving Time) ==================================
3
+ Core version 0.42.4
4
4
  Log level: error.
5
5
  WebSocket to wss://localhost:8088/asmail/retrieval/events closed with error
6
6
 
7
7
  Error message: undefined
8
8
 
9
- Sun Oct 05 2025 15:17:04 GMT-0400 (Eastern Daylight Saving Time) ==================================
10
- Core version 0.42.3
9
+ Mon Oct 06 2025 12:06:07 GMT-0400 (Eastern Daylight Saving Time) ==================================
10
+ Core version 0.42.4
11
11
  Log level: error.
12
12
  WebSocket to wss://localhost:8088/3nstorage/owner/events closed with error
13
13
 
@@ -1,13 +1,13 @@
1
1
 
2
- Sun Oct 05 2025 15:17:07 GMT-0400 (Eastern Daylight Saving Time) ==================================
3
- Core version 0.42.3
2
+ Mon Oct 06 2025 12:06:10 GMT-0400 (Eastern Daylight Saving Time) ==================================
3
+ Core version 0.42.4
4
4
  Log level: error.
5
5
  WebSocket to wss://localhost:8088/asmail/retrieval/events closed with error
6
6
 
7
7
  Error message: undefined
8
8
 
9
- Sun Oct 05 2025 15:17:07 GMT-0400 (Eastern Daylight Saving Time) ==================================
10
- Core version 0.42.3
9
+ Mon Oct 06 2025 12:06:10 GMT-0400 (Eastern Daylight Saving Time) ==================================
10
+ Core version 0.42.4
11
11
  Log level: error.
12
12
  WebSocket to wss://localhost:8088/3nstorage/owner/events closed with error
13
13
 
@@ -1,27 +1,27 @@
1
1
 
2
- Sun Oct 05 2025 15:17:07 GMT-0400 (Eastern Daylight Saving Time) ==================================
3
- Core version 0.42.3
2
+ Mon Oct 06 2025 12:06:10 GMT-0400 (Eastern Daylight Saving Time) ==================================
3
+ Core version 0.42.4
4
4
  Log level: error.
5
5
  WebSocket to wss://localhost:8088/asmail/retrieval/events closed with error
6
6
 
7
7
  Error message: undefined
8
8
 
9
- Sun Oct 05 2025 15:17:07 GMT-0400 (Eastern Daylight Saving Time) ==================================
10
- Core version 0.42.3
9
+ Mon Oct 06 2025 12:06:10 GMT-0400 (Eastern Daylight Saving Time) ==================================
10
+ Core version 0.42.4
11
11
  Log level: error.
12
12
  WebSocket to wss://localhost:8088/asmail/retrieval/events closed with error
13
13
 
14
14
  Error message: undefined
15
15
 
16
- Sun Oct 05 2025 15:17:07 GMT-0400 (Eastern Daylight Saving Time) ==================================
17
- Core version 0.42.3
16
+ Mon Oct 06 2025 12:06:10 GMT-0400 (Eastern Daylight Saving Time) ==================================
17
+ Core version 0.42.4
18
18
  Log level: error.
19
19
  WebSocket to wss://localhost:8088/3nstorage/owner/events closed with error
20
20
 
21
21
  Error message: undefined
22
22
 
23
- Sun Oct 05 2025 15:17:07 GMT-0400 (Eastern Daylight Saving Time) ==================================
24
- Core version 0.42.3
23
+ Mon Oct 06 2025 12:06:10 GMT-0400 (Eastern Daylight Saving Time) ==================================
24
+ Core version 0.42.4
25
25
  Log level: error.
26
26
  WebSocket to wss://localhost:8088/3nstorage/owner/events closed with error
27
27
 
@@ -0,0 +1,14 @@
1
+
2
+ Mon Oct 06 2025 12:05:46 GMT-0400 (Eastern Daylight Saving Time) ==================================
3
+ Core version 0.42.4
4
+ Log level: error.
5
+ WebSocket to wss://localhost:8088/asmail/retrieval/events closed with error
6
+
7
+ Error message: undefined
8
+
9
+ Mon Oct 06 2025 12:05:46 GMT-0400 (Eastern Daylight Saving Time) ==================================
10
+ Core version 0.42.4
11
+ Log level: error.
12
+ WebSocket to wss://localhost:8088/3nstorage/owner/events closed with error
13
+
14
+ Error message: undefined
@@ -1,27 +1,27 @@
1
1
 
2
- Sun Oct 05 2025 15:16:34 GMT-0400 (Eastern Daylight Saving Time) ==================================
3
- Core version 0.42.3
2
+ Mon Oct 06 2025 12:05:37 GMT-0400 (Eastern Daylight Saving Time) ==================================
3
+ Core version 0.42.4
4
4
  Log level: error.
5
5
  WebSocket to wss://localhost:8088/asmail/retrieval/events closed with error
6
6
 
7
7
  Error message: undefined
8
8
 
9
- Sun Oct 05 2025 15:16:34 GMT-0400 (Eastern Daylight Saving Time) ==================================
10
- Core version 0.42.3
9
+ Mon Oct 06 2025 12:05:37 GMT-0400 (Eastern Daylight Saving Time) ==================================
10
+ Core version 0.42.4
11
11
  Log level: error.
12
12
  WebSocket to wss://localhost:8088/asmail/retrieval/events closed with error
13
13
 
14
14
  Error message: undefined
15
15
 
16
- Sun Oct 05 2025 15:16:34 GMT-0400 (Eastern Daylight Saving Time) ==================================
17
- Core version 0.42.3
16
+ Mon Oct 06 2025 12:05:37 GMT-0400 (Eastern Daylight Saving Time) ==================================
17
+ Core version 0.42.4
18
18
  Log level: error.
19
19
  WebSocket to wss://localhost:8088/3nstorage/owner/events closed with error
20
20
 
21
21
  Error message: undefined
22
22
 
23
- Sun Oct 05 2025 15:16:34 GMT-0400 (Eastern Daylight Saving Time) ==================================
24
- Core version 0.42.3
23
+ Mon Oct 06 2025 12:05:37 GMT-0400 (Eastern Daylight Saving Time) ==================================
24
+ Core version 0.42.4
25
25
  Log level: error.
26
26
  WebSocket to wss://localhost:8088/3nstorage/owner/events closed with error
27
27
 
@@ -1,27 +1,27 @@
1
1
 
2
- Sun Oct 05 2025 15:16:40 GMT-0400 (Eastern Daylight Saving Time) ==================================
3
- Core version 0.42.3
2
+ Mon Oct 06 2025 12:05:42 GMT-0400 (Eastern Daylight Saving Time) ==================================
3
+ Core version 0.42.4
4
4
  Log level: error.
5
5
  WebSocket to wss://localhost:8088/asmail/retrieval/events closed with error
6
6
 
7
7
  Error message: undefined
8
8
 
9
- Sun Oct 05 2025 15:16:40 GMT-0400 (Eastern Daylight Saving Time) ==================================
10
- Core version 0.42.3
9
+ Mon Oct 06 2025 12:05:42 GMT-0400 (Eastern Daylight Saving Time) ==================================
10
+ Core version 0.42.4
11
11
  Log level: error.
12
12
  WebSocket to wss://localhost:8088/asmail/retrieval/events closed with error
13
13
 
14
14
  Error message: undefined
15
15
 
16
- Sun Oct 05 2025 15:16:40 GMT-0400 (Eastern Daylight Saving Time) ==================================
17
- Core version 0.42.3
16
+ Mon Oct 06 2025 12:05:42 GMT-0400 (Eastern Daylight Saving Time) ==================================
17
+ Core version 0.42.4
18
18
  Log level: error.
19
19
  WebSocket to wss://localhost:8088/3nstorage/owner/events closed with error
20
20
 
21
21
  Error message: undefined
22
22
 
23
- Sun Oct 05 2025 15:16:40 GMT-0400 (Eastern Daylight Saving Time) ==================================
24
- Core version 0.42.3
23
+ Mon Oct 06 2025 12:05:42 GMT-0400 (Eastern Daylight Saving Time) ==================================
24
+ Core version 0.42.4
25
25
  Log level: error.
26
26
  WebSocket to wss://localhost:8088/3nstorage/owner/events closed with error
27
27
 
@@ -0,0 +1,14 @@
1
+
2
+ Mon Oct 06 2025 12:05:48 GMT-0400 (Eastern Daylight Saving Time) ==================================
3
+ Core version 0.42.4
4
+ Log level: error.
5
+ WebSocket to wss://localhost:8088/asmail/retrieval/events closed with error
6
+
7
+ Error message: undefined
8
+
9
+ Mon Oct 06 2025 12:05:48 GMT-0400 (Eastern Daylight Saving Time) ==================================
10
+ Core version 0.42.4
11
+ Log level: error.
12
+ WebSocket to wss://localhost:8088/3nstorage/owner/events closed with error
13
+
14
+ Error message: undefined
@@ -0,0 +1,14 @@
1
+
2
+ Mon Oct 06 2025 12:05:50 GMT-0400 (Eastern Daylight Saving Time) ==================================
3
+ Core version 0.42.4
4
+ Log level: error.
5
+ WebSocket to wss://localhost:8088/asmail/retrieval/events closed with error
6
+
7
+ Error message: undefined
8
+
9
+ Mon Oct 06 2025 12:05:50 GMT-0400 (Eastern Daylight Saving Time) ==================================
10
+ Core version 0.42.4
11
+ Log level: error.
12
+ WebSocket to wss://localhost:8088/3nstorage/owner/events closed with error
13
+
14
+ Error message: undefined
@@ -0,0 +1,14 @@
1
+
2
+ Mon Oct 06 2025 12:05:58 GMT-0400 (Eastern Daylight Saving Time) ==================================
3
+ Core version 0.42.4
4
+ Log level: error.
5
+ WebSocket to wss://localhost:8088/asmail/retrieval/events closed with error
6
+
7
+ Error message: undefined
8
+
9
+ Mon Oct 06 2025 12:05:58 GMT-0400 (Eastern Daylight Saving Time) ==================================
10
+ Core version 0.42.4
11
+ Log level: error.
12
+ WebSocket to wss://localhost:8088/3nstorage/owner/events closed with error
13
+
14
+ Error message: undefined
@@ -0,0 +1,14 @@
1
+
2
+ Mon Oct 06 2025 12:06:03 GMT-0400 (Eastern Daylight Saving Time) ==================================
3
+ Core version 0.42.4
4
+ Log level: error.
5
+ WebSocket to wss://localhost:8088/asmail/retrieval/events closed with error
6
+
7
+ Error message: undefined
8
+
9
+ Mon Oct 06 2025 12:06:03 GMT-0400 (Eastern Daylight Saving Time) ==================================
10
+ Core version 0.42.4
11
+ Log level: error.
12
+ WebSocket to wss://localhost:8088/3nstorage/owner/events closed with error
13
+
14
+ Error message: undefined
@@ -1,27 +1,27 @@
1
1
 
2
- Sun Oct 05 2025 15:17:00 GMT-0400 (Eastern Daylight Saving Time) ==================================
3
- Core version 0.42.3
2
+ Mon Oct 06 2025 12:06:03 GMT-0400 (Eastern Daylight Saving Time) ==================================
3
+ Core version 0.42.4
4
4
  Log level: error.
5
5
  WebSocket to wss://localhost:8088/asmail/retrieval/events closed with error
6
6
 
7
7
  Error message: undefined
8
8
 
9
- Sun Oct 05 2025 15:17:00 GMT-0400 (Eastern Daylight Saving Time) ==================================
10
- Core version 0.42.3
9
+ Mon Oct 06 2025 12:06:03 GMT-0400 (Eastern Daylight Saving Time) ==================================
10
+ Core version 0.42.4
11
11
  Log level: error.
12
12
  WebSocket to wss://localhost:8088/asmail/retrieval/events closed with error
13
13
 
14
14
  Error message: undefined
15
15
 
16
- Sun Oct 05 2025 15:17:00 GMT-0400 (Eastern Daylight Saving Time) ==================================
17
- Core version 0.42.3
16
+ Mon Oct 06 2025 12:06:03 GMT-0400 (Eastern Daylight Saving Time) ==================================
17
+ Core version 0.42.4
18
18
  Log level: error.
19
19
  WebSocket to wss://localhost:8088/3nstorage/owner/events closed with error
20
20
 
21
21
  Error message: undefined
22
22
 
23
- Sun Oct 05 2025 15:17:00 GMT-0400 (Eastern Daylight Saving Time) ==================================
24
- Core version 0.42.3
23
+ Mon Oct 06 2025 12:06:03 GMT-0400 (Eastern Daylight Saving Time) ==================================
24
+ Core version 0.42.4
25
25
  Log level: error.
26
26
  WebSocket to wss://localhost:8088/3nstorage/owner/events closed with error
27
27
 
@@ -1,14 +0,0 @@
1
-
2
- Sun Oct 05 2025 15:16:44 GMT-0400 (Eastern Daylight Saving Time) ==================================
3
- Core version 0.42.3
4
- Log level: error.
5
- WebSocket to wss://localhost:8088/asmail/retrieval/events closed with error
6
-
7
- Error message: undefined
8
-
9
- Sun Oct 05 2025 15:16:44 GMT-0400 (Eastern Daylight Saving Time) ==================================
10
- Core version 0.42.3
11
- Log level: error.
12
- WebSocket to wss://localhost:8088/3nstorage/owner/events closed with error
13
-
14
- Error message: undefined
@@ -1,14 +0,0 @@
1
-
2
- Sun Oct 05 2025 15:16:46 GMT-0400 (Eastern Daylight Saving Time) ==================================
3
- Core version 0.42.3
4
- Log level: error.
5
- WebSocket to wss://localhost:8088/asmail/retrieval/events closed with error
6
-
7
- Error message: undefined
8
-
9
- Sun Oct 05 2025 15:16:46 GMT-0400 (Eastern Daylight Saving Time) ==================================
10
- Core version 0.42.3
11
- Log level: error.
12
- WebSocket to wss://localhost:8088/3nstorage/owner/events closed with error
13
-
14
- Error message: undefined
@@ -1,14 +0,0 @@
1
-
2
- Sun Oct 05 2025 15:16:48 GMT-0400 (Eastern Daylight Saving Time) ==================================
3
- Core version 0.42.3
4
- Log level: error.
5
- WebSocket to wss://localhost:8088/asmail/retrieval/events closed with error
6
-
7
- Error message: undefined
8
-
9
- Sun Oct 05 2025 15:16:48 GMT-0400 (Eastern Daylight Saving Time) ==================================
10
- Core version 0.42.3
11
- Log level: error.
12
- WebSocket to wss://localhost:8088/3nstorage/owner/events closed with error
13
-
14
- Error message: undefined
@@ -1,14 +0,0 @@
1
-
2
- Sun Oct 05 2025 15:16:56 GMT-0400 (Eastern Daylight Saving Time) ==================================
3
- Core version 0.42.3
4
- Log level: error.
5
- WebSocket to wss://localhost:8088/asmail/retrieval/events closed with error
6
-
7
- Error message: undefined
8
-
9
- Sun Oct 05 2025 15:16:56 GMT-0400 (Eastern Daylight Saving Time) ==================================
10
- Core version 0.42.3
11
- Log level: error.
12
- WebSocket to wss://localhost:8088/3nstorage/owner/events closed with error
13
-
14
- Error message: undefined
@@ -1,14 +0,0 @@
1
-
2
- Sun Oct 05 2025 15:17:00 GMT-0400 (Eastern Daylight Saving Time) ==================================
3
- Core version 0.42.3
4
- Log level: error.
5
- WebSocket to wss://localhost:8088/asmail/retrieval/events closed with error
6
-
7
- Error message: undefined
8
-
9
- Sun Oct 05 2025 15:17:00 GMT-0400 (Eastern Daylight Saving Time) ==================================
10
- Core version 0.42.3
11
- Log level: error.
12
- WebSocket to wss://localhost:8088/3nstorage/owner/events closed with error
13
-
14
- Error message: undefined