core-3nweb-client-lib 0.42.0 → 0.42.2
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/build/core/asmail/inbox/inbox-events.d.ts +7 -1
- package/build/core/asmail/inbox/inbox-events.js +57 -15
- package/build/core/asmail/inbox/index.js +3 -4
- package/build/core/storage/synced/remote-events.js +1 -3
- package/build/lib-client/asmail/recipient.js +1 -2
- package/build/lib-client/cryptor/cryptor-wasm.js +1 -1
- package/build/lib-client/cryptor/cryptor.wasm +0 -0
- package/build/lib-client/server-events.d.ts +1 -4
- package/build/lib-client/server-events.js +2 -22
- package/build/lib-common/service-api/asmail/retrieval.d.ts +6 -1
- package/build/lib-common/service-api/asmail/retrieval.js +7 -2
- package/package.json +2 -2
- package/{test-data-1-1759545630658/util/logs/2025-10-04.log.txt → test-data-1-1759677394615/util/logs/2025-10-05.log.txt} +4 -4
- package/{test-data-10-1759545670471/util/logs/2025-10-04.log.txt → test-data-10-1759677431029/util/logs/2025-10-05.log.txt} +4 -4
- package/{test-data-11-1759545670472/util/logs/2025-10-04.log.txt → test-data-11-1759677431029/util/logs/2025-10-05.log.txt} +4 -4
- package/{test-data-12-1759545674484/util/logs/2025-10-04.log.txt → test-data-12-1759677434728/util/logs/2025-10-05.log.txt} +4 -4
- package/{test-data-13-1759545675527/util/logs/2025-10-04.log.txt → test-data-13-1759677435553/util/logs/2025-10-05.log.txt} +8 -8
- package/test-data-2-1759677394617/util/logs/2025-10-05.log.txt +14 -0
- package/{test-data-3-1759545636022/util/logs/2025-10-04.log.txt → test-data-3-1759677399141/util/logs/2025-10-05.log.txt} +8 -8
- package/{test-data-4-1759545642255/util/logs/2025-10-04.log.txt → test-data-4-1759677405076/util/logs/2025-10-05.log.txt} +8 -8
- package/test-data-5-1759677414316/util/logs/2025-10-05.log.txt +14 -0
- package/test-data-6-1759677416229/util/logs/2025-10-05.log.txt +14 -0
- package/test-data-7-1759677418207/util/logs/2025-10-05.log.txt +14 -0
- package/test-data-8-1759677426790/util/logs/2025-10-05.log.txt +14 -0
- package/{test-data-9-1759545666746/util/logs/2025-10-04.log.txt → test-data-9-1759677427624/util/logs/2025-10-05.log.txt} +8 -8
- package/test-data-2-1759545630661/util/logs/2025-10-04.log.txt +0 -14
- package/test-data-5-1759545652091/util/logs/2025-10-04.log.txt +0 -14
- package/test-data-6-1759545654150/util/logs/2025-10-04.log.txt +0 -14
- package/test-data-7-1759545656281/util/logs/2025-10-04.log.txt +0 -14
- package/test-data-8-1759545665798/util/logs/2025-10-04.log.txt +0 -14
|
Binary file
|
|
@@ -1,17 +1,14 @@
|
|
|
1
1
|
import { SubscribingClient } from '../lib-common/ipc/generic-ipc';
|
|
2
2
|
import { Observable } from 'rxjs';
|
|
3
|
-
import { LogError } from './logging/log-to-file';
|
|
4
3
|
export declare class ServerEvents<N extends string, T> {
|
|
5
4
|
private readonly subscribeToServer;
|
|
6
|
-
private readonly logError;
|
|
7
5
|
private server;
|
|
8
6
|
private openningServer;
|
|
9
|
-
constructor(subscribeToServer: () => Promise<SubscribingClient
|
|
7
|
+
constructor(subscribeToServer: () => Promise<SubscribingClient>);
|
|
10
8
|
/**
|
|
11
9
|
* This method creates an observable of server's events.
|
|
12
10
|
* @param event is an event on server, to which to subscribe.
|
|
13
11
|
*/
|
|
14
12
|
observe(event: N): Observable<T>;
|
|
15
13
|
private setServer;
|
|
16
|
-
private shouldRestartAfterErr;
|
|
17
14
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
/*
|
|
3
|
-
Copyright (C) 2017, 2019, 2022 3NSoft Inc.
|
|
3
|
+
Copyright (C) 2017, 2019, 2022, 2025 3NSoft Inc.
|
|
4
4
|
|
|
5
5
|
This program is free software: you can redistribute it and/or modify it under
|
|
6
6
|
the terms of the GNU General Public License as published by the Free Software
|
|
@@ -20,11 +20,8 @@ exports.ServerEvents = void 0;
|
|
|
20
20
|
const rxjs_1 = require("rxjs");
|
|
21
21
|
const synced_1 = require("../lib-common/processes/synced");
|
|
22
22
|
class ServerEvents {
|
|
23
|
-
constructor(subscribeToServer
|
|
24
|
-
// private restartWaitSecs: number,
|
|
25
|
-
logError) {
|
|
23
|
+
constructor(subscribeToServer) {
|
|
26
24
|
this.subscribeToServer = subscribeToServer;
|
|
27
|
-
this.logError = logError;
|
|
28
25
|
this.server = undefined;
|
|
29
26
|
this.openningServer = new synced_1.SingleProc();
|
|
30
27
|
Object.seal(this);
|
|
@@ -78,23 +75,6 @@ class ServerEvents {
|
|
|
78
75
|
}
|
|
79
76
|
});
|
|
80
77
|
}
|
|
81
|
-
shouldRestartAfterErr(exc) {
|
|
82
|
-
if (!exc.runtimeException) {
|
|
83
|
-
return false;
|
|
84
|
-
}
|
|
85
|
-
if (exc.type === 'connect') {
|
|
86
|
-
return true;
|
|
87
|
-
}
|
|
88
|
-
else if (exc.type === 'http-request') {
|
|
89
|
-
return false;
|
|
90
|
-
}
|
|
91
|
-
else if (exc.type === 'websocket') {
|
|
92
|
-
return true;
|
|
93
|
-
}
|
|
94
|
-
else {
|
|
95
|
-
return false;
|
|
96
|
-
}
|
|
97
|
-
}
|
|
98
78
|
}
|
|
99
79
|
exports.ServerEvents = ServerEvents;
|
|
100
80
|
Object.freeze(ServerEvents.prototype);
|
|
@@ -19,8 +19,13 @@ export declare namespace midLogin {
|
|
|
19
19
|
export declare namespace closeSession {
|
|
20
20
|
const URL_END = "close-session";
|
|
21
21
|
}
|
|
22
|
+
export interface ListMsgsOpts {
|
|
23
|
+
from?: number;
|
|
24
|
+
to?: number;
|
|
25
|
+
}
|
|
22
26
|
export declare namespace listMsgs {
|
|
23
|
-
const
|
|
27
|
+
const EXPRESS_URL_END = "msg/ids";
|
|
28
|
+
function genUrlEnd(opts?: ListMsgsOpts): string;
|
|
24
29
|
interface Reply extends Array<string> {
|
|
25
30
|
}
|
|
26
31
|
const SC: {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
/*
|
|
3
|
-
Copyright (C) 2015, 2017, 2019 3NSoft Inc.
|
|
3
|
+
Copyright (C) 2015, 2017, 2019, 2025 3NSoft Inc.
|
|
4
4
|
|
|
5
5
|
This program is free software: you can redistribute it and/or modify it under
|
|
6
6
|
the terms of the GNU General Public License as published by the Free Software
|
|
@@ -50,7 +50,12 @@ var closeSession;
|
|
|
50
50
|
Object.freeze(closeSession);
|
|
51
51
|
var listMsgs;
|
|
52
52
|
(function (listMsgs) {
|
|
53
|
-
listMsgs.
|
|
53
|
+
listMsgs.EXPRESS_URL_END = 'msg/ids';
|
|
54
|
+
function genUrlEnd(opts) {
|
|
55
|
+
let optStr = (opts ? '?' + (0, querystring_1.stringify)(opts) : '');
|
|
56
|
+
return `msg/ids${optStr}`;
|
|
57
|
+
}
|
|
58
|
+
listMsgs.genUrlEnd = genUrlEnd;
|
|
54
59
|
listMsgs.SC = {
|
|
55
60
|
ok: 200,
|
|
56
61
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "core-3nweb-client-lib",
|
|
3
|
-
"version": "0.42.
|
|
3
|
+
"version": "0.42.2",
|
|
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",
|
|
@@ -41,7 +41,7 @@
|
|
|
41
41
|
"@types/ws": "^7.4.7",
|
|
42
42
|
"jasmine": "^3.9.0",
|
|
43
43
|
"protobufjs-cli": "^1.0.2",
|
|
44
|
-
"spec-3nweb-server": "^1.
|
|
44
|
+
"spec-3nweb-server": "^1.8.0",
|
|
45
45
|
"tsuml2": "^0.17.1",
|
|
46
46
|
"typescript": "^5.5.3"
|
|
47
47
|
}
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
|
|
2
|
-
|
|
3
|
-
Core version 0.42.
|
|
2
|
+
Sun Oct 05 2025 11:16:52 GMT-0400 (Eastern Daylight Saving Time) ==================================
|
|
3
|
+
Core version 0.42.2
|
|
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
|
-
|
|
10
|
-
Core version 0.42.
|
|
9
|
+
Sun Oct 05 2025 11:16:52 GMT-0400 (Eastern Daylight Saving Time) ==================================
|
|
10
|
+
Core version 0.42.2
|
|
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
|
-
|
|
3
|
-
Core version 0.42.
|
|
2
|
+
Sun Oct 05 2025 11:17:14 GMT-0400 (Eastern Daylight Saving Time) ==================================
|
|
3
|
+
Core version 0.42.2
|
|
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
|
-
|
|
10
|
-
Core version 0.42.
|
|
9
|
+
Sun Oct 05 2025 11:17:14 GMT-0400 (Eastern Daylight Saving Time) ==================================
|
|
10
|
+
Core version 0.42.2
|
|
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
|
-
|
|
3
|
-
Core version 0.42.
|
|
2
|
+
Sun Oct 05 2025 11:17:14 GMT-0400 (Eastern Daylight Saving Time) ==================================
|
|
3
|
+
Core version 0.42.2
|
|
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
|
-
|
|
10
|
-
Core version 0.42.
|
|
9
|
+
Sun Oct 05 2025 11:17:14 GMT-0400 (Eastern Daylight Saving Time) ==================================
|
|
10
|
+
Core version 0.42.2
|
|
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
|
-
|
|
3
|
-
Core version 0.42.
|
|
2
|
+
Sun Oct 05 2025 11:17:17 GMT-0400 (Eastern Daylight Saving Time) ==================================
|
|
3
|
+
Core version 0.42.2
|
|
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
|
-
|
|
10
|
-
Core version 0.42.
|
|
9
|
+
Sun Oct 05 2025 11:17:17 GMT-0400 (Eastern Daylight Saving Time) ==================================
|
|
10
|
+
Core version 0.42.2
|
|
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
|
-
|
|
3
|
-
Core version 0.42.
|
|
2
|
+
Sun Oct 05 2025 11:17:17 GMT-0400 (Eastern Daylight Saving Time) ==================================
|
|
3
|
+
Core version 0.42.2
|
|
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
|
-
|
|
10
|
-
Core version 0.42.
|
|
9
|
+
Sun Oct 05 2025 11:17:17 GMT-0400 (Eastern Daylight Saving Time) ==================================
|
|
10
|
+
Core version 0.42.2
|
|
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
|
-
|
|
17
|
-
Core version 0.42.
|
|
16
|
+
Sun Oct 05 2025 11:17:17 GMT-0400 (Eastern Daylight Saving Time) ==================================
|
|
17
|
+
Core version 0.42.2
|
|
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
|
-
|
|
24
|
-
Core version 0.42.
|
|
23
|
+
Sun Oct 05 2025 11:17:17 GMT-0400 (Eastern Daylight Saving Time) ==================================
|
|
24
|
+
Core version 0.42.2
|
|
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
|
+
Sun Oct 05 2025 11:16:54 GMT-0400 (Eastern Daylight Saving Time) ==================================
|
|
3
|
+
Core version 0.42.2
|
|
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 11:16:54 GMT-0400 (Eastern Daylight Saving Time) ==================================
|
|
10
|
+
Core version 0.42.2
|
|
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
|
-
|
|
3
|
-
Core version 0.42.
|
|
2
|
+
Sun Oct 05 2025 11:16:45 GMT-0400 (Eastern Daylight Saving Time) ==================================
|
|
3
|
+
Core version 0.42.2
|
|
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
|
-
|
|
10
|
-
Core version 0.42.
|
|
9
|
+
Sun Oct 05 2025 11:16:45 GMT-0400 (Eastern Daylight Saving Time) ==================================
|
|
10
|
+
Core version 0.42.2
|
|
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
|
-
|
|
17
|
-
Core version 0.42.
|
|
16
|
+
Sun Oct 05 2025 11:16:45 GMT-0400 (Eastern Daylight Saving Time) ==================================
|
|
17
|
+
Core version 0.42.2
|
|
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
|
-
|
|
24
|
-
Core version 0.42.
|
|
23
|
+
Sun Oct 05 2025 11:16:45 GMT-0400 (Eastern Daylight Saving Time) ==================================
|
|
24
|
+
Core version 0.42.2
|
|
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
|
-
|
|
3
|
-
Core version 0.42.
|
|
2
|
+
Sun Oct 05 2025 11:16:50 GMT-0400 (Eastern Daylight Saving Time) ==================================
|
|
3
|
+
Core version 0.42.2
|
|
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
|
-
|
|
10
|
-
Core version 0.42.
|
|
9
|
+
Sun Oct 05 2025 11:16:50 GMT-0400 (Eastern Daylight Saving Time) ==================================
|
|
10
|
+
Core version 0.42.2
|
|
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
|
-
|
|
17
|
-
Core version 0.42.
|
|
16
|
+
Sun Oct 05 2025 11:16:50 GMT-0400 (Eastern Daylight Saving Time) ==================================
|
|
17
|
+
Core version 0.42.2
|
|
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
|
-
|
|
24
|
-
Core version 0.42.
|
|
23
|
+
Sun Oct 05 2025 11:16:50 GMT-0400 (Eastern Daylight Saving Time) ==================================
|
|
24
|
+
Core version 0.42.2
|
|
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
|
+
Sun Oct 05 2025 11:16:56 GMT-0400 (Eastern Daylight Saving Time) ==================================
|
|
3
|
+
Core version 0.42.2
|
|
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 11:16:56 GMT-0400 (Eastern Daylight Saving Time) ==================================
|
|
10
|
+
Core version 0.42.2
|
|
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
|
+
Sun Oct 05 2025 11:16:58 GMT-0400 (Eastern Daylight Saving Time) ==================================
|
|
3
|
+
Core version 0.42.2
|
|
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 11:16:58 GMT-0400 (Eastern Daylight Saving Time) ==================================
|
|
10
|
+
Core version 0.42.2
|
|
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
|
+
Sun Oct 05 2025 11:17:06 GMT-0400 (Eastern Daylight Saving Time) ==================================
|
|
3
|
+
Core version 0.42.2
|
|
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 11:17:06 GMT-0400 (Eastern Daylight Saving Time) ==================================
|
|
10
|
+
Core version 0.42.2
|
|
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
|
+
Sun Oct 05 2025 11:17:11 GMT-0400 (Eastern Daylight Saving Time) ==================================
|
|
3
|
+
Core version 0.42.2
|
|
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 11:17:11 GMT-0400 (Eastern Daylight Saving Time) ==================================
|
|
10
|
+
Core version 0.42.2
|
|
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
|
-
|
|
3
|
-
Core version 0.42.
|
|
2
|
+
Sun Oct 05 2025 11:17:11 GMT-0400 (Eastern Daylight Saving Time) ==================================
|
|
3
|
+
Core version 0.42.2
|
|
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
|
-
|
|
10
|
-
Core version 0.42.
|
|
9
|
+
Sun Oct 05 2025 11:17:11 GMT-0400 (Eastern Daylight Saving Time) ==================================
|
|
10
|
+
Core version 0.42.2
|
|
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
|
-
|
|
17
|
-
Core version 0.42.
|
|
16
|
+
Sun Oct 05 2025 11:17:11 GMT-0400 (Eastern Daylight Saving Time) ==================================
|
|
17
|
+
Core version 0.42.2
|
|
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
|
-
|
|
24
|
-
Core version 0.42.
|
|
23
|
+
Sun Oct 05 2025 11:17:11 GMT-0400 (Eastern Daylight Saving Time) ==================================
|
|
24
|
+
Core version 0.42.2
|
|
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
|
-
Fri Oct 03 2025 22:40:52 GMT-0400 (Eastern Daylight Saving Time) ==================================
|
|
3
|
-
Core version 0.42.0
|
|
4
|
-
Log level: error.
|
|
5
|
-
WebSocket to wss://localhost:8088/asmail/retrieval/events closed with error
|
|
6
|
-
|
|
7
|
-
Error message: undefined
|
|
8
|
-
|
|
9
|
-
Fri Oct 03 2025 22:40:52 GMT-0400 (Eastern Daylight Saving Time) ==================================
|
|
10
|
-
Core version 0.42.0
|
|
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
|
-
Fri Oct 03 2025 22:40:54 GMT-0400 (Eastern Daylight Saving Time) ==================================
|
|
3
|
-
Core version 0.42.0
|
|
4
|
-
Log level: error.
|
|
5
|
-
WebSocket to wss://localhost:8088/asmail/retrieval/events closed with error
|
|
6
|
-
|
|
7
|
-
Error message: undefined
|
|
8
|
-
|
|
9
|
-
Fri Oct 03 2025 22:40:54 GMT-0400 (Eastern Daylight Saving Time) ==================================
|
|
10
|
-
Core version 0.42.0
|
|
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
|
-
Fri Oct 03 2025 22:40:56 GMT-0400 (Eastern Daylight Saving Time) ==================================
|
|
3
|
-
Core version 0.42.0
|
|
4
|
-
Log level: error.
|
|
5
|
-
WebSocket to wss://localhost:8088/asmail/retrieval/events closed with error
|
|
6
|
-
|
|
7
|
-
Error message: undefined
|
|
8
|
-
|
|
9
|
-
Fri Oct 03 2025 22:40:56 GMT-0400 (Eastern Daylight Saving Time) ==================================
|
|
10
|
-
Core version 0.42.0
|
|
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
|
-
Fri Oct 03 2025 22:41:05 GMT-0400 (Eastern Daylight Saving Time) ==================================
|
|
3
|
-
Core version 0.42.0
|
|
4
|
-
Log level: error.
|
|
5
|
-
WebSocket to wss://localhost:8088/asmail/retrieval/events closed with error
|
|
6
|
-
|
|
7
|
-
Error message: undefined
|
|
8
|
-
|
|
9
|
-
Fri Oct 03 2025 22:41:05 GMT-0400 (Eastern Daylight Saving Time) ==================================
|
|
10
|
-
Core version 0.42.0
|
|
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
|
-
Fri Oct 03 2025 22:41:10 GMT-0400 (Eastern Daylight Saving Time) ==================================
|
|
3
|
-
Core version 0.42.0
|
|
4
|
-
Log level: error.
|
|
5
|
-
WebSocket to wss://localhost:8088/asmail/retrieval/events closed with error
|
|
6
|
-
|
|
7
|
-
Error message: undefined
|
|
8
|
-
|
|
9
|
-
Fri Oct 03 2025 22:41:10 GMT-0400 (Eastern Daylight Saving Time) ==================================
|
|
10
|
-
Core version 0.42.0
|
|
11
|
-
Log level: error.
|
|
12
|
-
WebSocket to wss://localhost:8088/3nstorage/owner/events closed with error
|
|
13
|
-
|
|
14
|
-
Error message: undefined
|