core-3nweb-client-lib 0.41.13 → 0.42.0
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 +16 -2
- package/build/core/asmail/inbox/inbox-events.js +91 -17
- package/build/core/asmail/inbox/index.d.ts +2 -0
- package/build/core/asmail/inbox/index.js +9 -2
- package/build/core/asmail/index.d.ts +2 -0
- package/build/core/asmail/index.js +6 -0
- package/build/core/index.d.ts +2 -0
- package/build/core/index.js +8 -0
- package/build/core/storage/index.d.ts +2 -19
- package/build/core/storage/index.js +10 -3
- package/build/core/storage/synced/remote-events.d.ts +2 -0
- package/build/core/storage/synced/remote-events.js +19 -3
- package/build/core/storage/synced/storage.d.ts +2 -0
- package/build/core/storage/synced/storage.js +7 -1
- 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 -3
- package/build/lib-client/server-events.js +6 -34
- package/build/lib-client/xsp-fs/common.d.ts +2 -0
- package/build/lib-client/xsp-fs/common.js +3 -1
- package/build/lib-common/ipc/ws-ipc.js +2 -2
- package/build/lib-index.d.ts +1 -1
- package/build/lib-index.js +1 -2
- package/package.json +1 -1
- package/{test-data-10-1759442625007/util/logs/2025-10-02.log.txt → test-data-1-1759545630658/util/logs/2025-10-04.log.txt} +10 -7
- package/test-data-10-1759545670471/util/logs/2025-10-04.log.txt +14 -0
- package/test-data-11-1759545670472/util/logs/2025-10-04.log.txt +14 -0
- package/test-data-12-1759545674484/util/logs/2025-10-04.log.txt +14 -0
- package/test-data-13-1759545675527/util/logs/2025-10-04.log.txt +28 -0
- package/test-data-2-1759545630661/util/logs/2025-10-04.log.txt +14 -0
- package/test-data-3-1759545636022/util/logs/2025-10-04.log.txt +28 -0
- package/test-data-4-1759545642255/util/logs/2025-10-04.log.txt +28 -0
- package/test-data-5-1759545652091/util/logs/2025-10-04.log.txt +14 -0
- package/test-data-6-1759545654150/util/logs/2025-10-04.log.txt +14 -0
- package/test-data-7-1759545656281/util/logs/2025-10-04.log.txt +14 -0
- package/test-data-8-1759545665798/util/logs/2025-10-04.log.txt +14 -0
- package/test-data-9-1759545666746/util/logs/2025-10-04.log.txt +28 -0
- package/test-data-1-1759442588983/util/logs/2025-10-02.log.txt +0 -6
- package/test-data-11-1759442625008/util/logs/2025-10-02.log.txt +0 -6
- package/test-data-12-1759442628713/util/logs/2025-10-02.log.txt +0 -6
- package/test-data-13-1759442629512/util/logs/2025-10-02.log.txt +0 -11
- package/test-data-2-1759442588985/util/logs/2025-10-02.log.txt +0 -6
- package/test-data-3-1759442593521/util/logs/2025-10-02.log.txt +0 -11
- package/test-data-4-1759442599428/util/logs/2025-10-02.log.txt +0 -11
- package/test-data-5-1759442608549/util/logs/2025-10-02.log.txt +0 -6
- package/test-data-6-1759442610426/util/logs/2025-10-02.log.txt +0 -6
- package/test-data-7-1759442612369/util/logs/2025-10-02.log.txt +0 -6
- package/test-data-8-1759442620927/util/logs/2025-10-02.log.txt +0 -6
- package/test-data-9-1759442621732/util/logs/2025-10-02.log.txt +0 -11
|
Binary file
|
|
@@ -3,11 +3,10 @@ import { Observable } from 'rxjs';
|
|
|
3
3
|
import { LogError } from './logging/log-to-file';
|
|
4
4
|
export declare class ServerEvents<N extends string, T> {
|
|
5
5
|
private readonly subscribeToServer;
|
|
6
|
-
private restartWaitSecs;
|
|
7
6
|
private readonly logError;
|
|
8
7
|
private server;
|
|
9
8
|
private openningServer;
|
|
10
|
-
constructor(subscribeToServer: () => Promise<SubscribingClient>,
|
|
9
|
+
constructor(subscribeToServer: () => Promise<SubscribingClient>, logError: LogError);
|
|
11
10
|
/**
|
|
12
11
|
* This method creates an observable of server's events.
|
|
13
12
|
* @param event is an event on server, to which to subscribe.
|
|
@@ -15,5 +14,4 @@ export declare class ServerEvents<N extends string, T> {
|
|
|
15
14
|
observe(event: N): Observable<T>;
|
|
16
15
|
private setServer;
|
|
17
16
|
private shouldRestartAfterErr;
|
|
18
|
-
private restartObservation;
|
|
19
17
|
}
|
|
@@ -19,13 +19,11 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
19
19
|
exports.ServerEvents = void 0;
|
|
20
20
|
const rxjs_1 = require("rxjs");
|
|
21
21
|
const synced_1 = require("../lib-common/processes/synced");
|
|
22
|
-
const sleep_1 = require("../lib-common/processes/sleep");
|
|
23
|
-
const operators_1 = require("rxjs/operators");
|
|
24
|
-
const error_1 = require("../lib-common/exceptions/error");
|
|
25
22
|
class ServerEvents {
|
|
26
|
-
constructor(subscribeToServer,
|
|
23
|
+
constructor(subscribeToServer,
|
|
24
|
+
// private restartWaitSecs: number,
|
|
25
|
+
logError) {
|
|
27
26
|
this.subscribeToServer = subscribeToServer;
|
|
28
|
-
this.restartWaitSecs = restartWaitSecs;
|
|
29
27
|
this.logError = logError;
|
|
30
28
|
this.server = undefined;
|
|
31
29
|
this.openningServer = new synced_1.SingleProc();
|
|
@@ -36,7 +34,7 @@ class ServerEvents {
|
|
|
36
34
|
* @param event is an event on server, to which to subscribe.
|
|
37
35
|
*/
|
|
38
36
|
observe(event) {
|
|
39
|
-
|
|
37
|
+
return new rxjs_1.Observable(observer => {
|
|
40
38
|
// simple sync creation of detach function
|
|
41
39
|
if (this.server) {
|
|
42
40
|
return this.server.subscribe(event, observer);
|
|
@@ -58,9 +56,7 @@ class ServerEvents {
|
|
|
58
56
|
obs = undefined;
|
|
59
57
|
})
|
|
60
58
|
.catch(err => {
|
|
61
|
-
|
|
62
|
-
obs.error(err);
|
|
63
|
-
}
|
|
59
|
+
obs === null || obs === void 0 ? void 0 : obs.error(err);
|
|
64
60
|
obs = undefined;
|
|
65
61
|
});
|
|
66
62
|
return () => {
|
|
@@ -72,23 +68,7 @@ class ServerEvents {
|
|
|
72
68
|
obs = undefined;
|
|
73
69
|
}
|
|
74
70
|
};
|
|
75
|
-
})
|
|
76
|
-
.pipe(
|
|
77
|
-
// XXX tap to log more details
|
|
78
|
-
(0, operators_1.tap)({
|
|
79
|
-
complete: () => this.logError({}, `ServerEvents.observe stream completes`),
|
|
80
|
-
error: err => this.logError(err, `ServerEvents.observe stream has error,
|
|
81
|
-
${(0, error_1.stringifyErr)(err)}`)
|
|
82
|
-
}), (0, operators_1.catchError)(err => {
|
|
83
|
-
if (this.shouldRestartAfterErr(err)) {
|
|
84
|
-
console.error((0, error_1.stringifyErr)(err));
|
|
85
|
-
return this.restartObservation(event);
|
|
86
|
-
}
|
|
87
|
-
else {
|
|
88
|
-
return (0, rxjs_1.throwError)(() => err);
|
|
89
|
-
}
|
|
90
|
-
}));
|
|
91
|
-
return event$;
|
|
71
|
+
});
|
|
92
72
|
}
|
|
93
73
|
setServer(server) {
|
|
94
74
|
this.server = server;
|
|
@@ -115,14 +95,6 @@ ${(0, error_1.stringifyErr)(err)}`)
|
|
|
115
95
|
return false;
|
|
116
96
|
}
|
|
117
97
|
}
|
|
118
|
-
restartObservation(event) {
|
|
119
|
-
return (0, rxjs_1.from)((0, sleep_1.sleep)(this.restartWaitSecs * 1000))
|
|
120
|
-
.pipe(
|
|
121
|
-
// XXX tap to log more details
|
|
122
|
-
(0, operators_1.tap)({
|
|
123
|
-
next: () => this.logError({}, `ServerEvents.restartObservation of ${event} events`)
|
|
124
|
-
}), (0, operators_1.mergeMap)(() => this.observe(event)));
|
|
125
|
-
}
|
|
126
98
|
}
|
|
127
99
|
exports.ServerEvents = ServerEvents;
|
|
128
100
|
Object.freeze(ServerEvents.prototype);
|
|
@@ -120,6 +120,8 @@ export interface SyncedStorage extends Storage {
|
|
|
120
120
|
dropCachedLocalObjVersionsLessOrEqual(objId: ObjId, localVersion: number): void;
|
|
121
121
|
uploadObjRemoval(objId: ObjId): Promise<void>;
|
|
122
122
|
status(objId: ObjId): Promise<SyncedObjStatus>;
|
|
123
|
+
suspendNetworkActivity(): void;
|
|
124
|
+
resumeNetworkActivity(): void;
|
|
123
125
|
}
|
|
124
126
|
export interface SyncedObjStatus extends LocalObjStatus {
|
|
125
127
|
syncStatus(): SyncStatus;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
/*
|
|
3
|
-
Copyright (C) 2015 - 2017, 2019 - 2020, 2022 3NSoft Inc.
|
|
3
|
+
Copyright (C) 2015 - 2017, 2019 - 2020, 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
|
|
@@ -136,6 +136,8 @@ function wrapSyncStorageImplementation(impl) {
|
|
|
136
136
|
wrap.dropCachedLocalObjVersionsLessOrEqual = impl.dropCachedLocalObjVersionsLessOrEqual.bind(impl);
|
|
137
137
|
wrap.adoptRemote = impl.adoptRemote.bind(impl);
|
|
138
138
|
wrap.updateStatusInfo = impl.updateStatusInfo.bind(impl);
|
|
139
|
+
wrap.suspendNetworkActivity = impl.suspendNetworkActivity.bind(impl);
|
|
140
|
+
wrap.resumeNetworkActivity = impl.resumeNetworkActivity.bind(impl);
|
|
139
141
|
return Object.freeze(wrap);
|
|
140
142
|
}
|
|
141
143
|
function isSyncedStorage(storage) {
|
|
@@ -132,10 +132,10 @@ function makeSignalsTimeObserver(url, log) {
|
|
|
132
132
|
return (done, err) => {
|
|
133
133
|
if (done) {
|
|
134
134
|
if (err) {
|
|
135
|
-
log(`WebSocket to ${url} closed with error
|
|
135
|
+
log(err, `WebSocket to ${url} closed with error`);
|
|
136
136
|
}
|
|
137
137
|
else {
|
|
138
|
-
log(`WebSocket to ${url} closed`);
|
|
138
|
+
log(null, `WebSocket to ${url} closed`);
|
|
139
139
|
}
|
|
140
140
|
resetWait(false);
|
|
141
141
|
}
|
package/build/lib-index.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
export * from "./core";
|
|
3
3
|
export { SignUp, CreatedUser } from './core/startup/sign-up';
|
|
4
4
|
export { IdManager } from './core/id-manager';
|
|
5
|
-
export { Storages, FactoryOfFSs, reverseDomain
|
|
5
|
+
export { Storages, FactoryOfFSs, reverseDomain } from './core/storage';
|
|
6
6
|
export { SignIn, GenerateKey, CompleteInitWithoutCache } from './core/startup/sign-in';
|
|
7
7
|
export { ASMail } from './core/asmail';
|
|
8
8
|
export { makeServiceLocator, ServiceLocatorMaker } from "./lib-client/service-locator";
|
package/build/lib-index.js
CHANGED
|
@@ -30,7 +30,7 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
30
30
|
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
31
31
|
};
|
|
32
32
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
33
|
-
exports.makeLogger = exports.DeviceFS = exports.sysFolders = exports.appDirs = exports.makeNetClient = exports.makeServiceLocator = exports.ASMail = exports.SignIn = exports.
|
|
33
|
+
exports.makeLogger = exports.DeviceFS = exports.sysFolders = exports.appDirs = exports.makeNetClient = exports.makeServiceLocator = exports.ASMail = exports.SignIn = exports.reverseDomain = exports.Storages = exports.IdManager = exports.SignUp = void 0;
|
|
34
34
|
__exportStar(require("./core"), exports);
|
|
35
35
|
var sign_up_1 = require("./core/startup/sign-up");
|
|
36
36
|
Object.defineProperty(exports, "SignUp", { enumerable: true, get: function () { return sign_up_1.SignUp; } });
|
|
@@ -39,7 +39,6 @@ Object.defineProperty(exports, "IdManager", { enumerable: true, get: function ()
|
|
|
39
39
|
var storage_1 = require("./core/storage");
|
|
40
40
|
Object.defineProperty(exports, "Storages", { enumerable: true, get: function () { return storage_1.Storages; } });
|
|
41
41
|
Object.defineProperty(exports, "reverseDomain", { enumerable: true, get: function () { return storage_1.reverseDomain; } });
|
|
42
|
-
Object.defineProperty(exports, "PerAppStorage", { enumerable: true, get: function () { return storage_1.PerAppStorage; } });
|
|
43
42
|
var sign_in_1 = require("./core/startup/sign-in");
|
|
44
43
|
Object.defineProperty(exports, "SignIn", { enumerable: true, get: function () { return sign_in_1.SignIn; } });
|
|
45
44
|
var asmail_1 = require("./core/asmail");
|
package/package.json
CHANGED
|
@@ -1,11 +1,14 @@
|
|
|
1
1
|
|
|
2
|
-
|
|
3
|
-
Core version 0.
|
|
2
|
+
Fri Oct 03 2025 22:40:50 GMT-0400 (Eastern Daylight Saving Time) ==================================
|
|
3
|
+
Core version 0.42.0
|
|
4
4
|
Log level: error.
|
|
5
|
-
[object Object]
|
|
6
5
|
WebSocket to wss://localhost:8088/asmail/retrieval/events closed with error
|
|
7
|
-
|
|
8
|
-
|
|
6
|
+
|
|
7
|
+
Error message: undefined
|
|
8
|
+
|
|
9
|
+
Fri Oct 03 2025 22:40:50 GMT-0400 (Eastern Daylight Saving Time) ==================================
|
|
10
|
+
Core version 0.42.0
|
|
9
11
|
Log level: error.
|
|
10
|
-
|
|
11
|
-
|
|
12
|
+
WebSocket to wss://localhost:8088/3nstorage/owner/events closed with error
|
|
13
|
+
|
|
14
|
+
Error message: undefined
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
|
|
2
|
+
Fri Oct 03 2025 22:41:14 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:14 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
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
|
|
2
|
+
Fri Oct 03 2025 22:41:14 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:14 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
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
|
|
2
|
+
Fri Oct 03 2025 22:41:18 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:18 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
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
|
|
2
|
+
Fri Oct 03 2025 22:41:18 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:18 GMT-0400 (Eastern Daylight Saving Time) ==================================
|
|
10
|
+
Core version 0.42.0
|
|
11
|
+
Log level: error.
|
|
12
|
+
WebSocket to wss://localhost:8088/asmail/retrieval/events closed with error
|
|
13
|
+
|
|
14
|
+
Error message: undefined
|
|
15
|
+
|
|
16
|
+
Fri Oct 03 2025 22:41:18 GMT-0400 (Eastern Daylight Saving Time) ==================================
|
|
17
|
+
Core version 0.42.0
|
|
18
|
+
Log level: error.
|
|
19
|
+
WebSocket to wss://localhost:8088/3nstorage/owner/events closed with error
|
|
20
|
+
|
|
21
|
+
Error message: undefined
|
|
22
|
+
|
|
23
|
+
Fri Oct 03 2025 22:41:18 GMT-0400 (Eastern Daylight Saving Time) ==================================
|
|
24
|
+
Core version 0.42.0
|
|
25
|
+
Log level: error.
|
|
26
|
+
WebSocket to wss://localhost:8088/3nstorage/owner/events closed with error
|
|
27
|
+
|
|
28
|
+
Error message: undefined
|
|
@@ -0,0 +1,14 @@
|
|
|
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
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
|
|
2
|
+
Fri Oct 03 2025 22:40:42 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:42 GMT-0400 (Eastern Daylight Saving Time) ==================================
|
|
10
|
+
Core version 0.42.0
|
|
11
|
+
Log level: error.
|
|
12
|
+
WebSocket to wss://localhost:8088/asmail/retrieval/events closed with error
|
|
13
|
+
|
|
14
|
+
Error message: undefined
|
|
15
|
+
|
|
16
|
+
Fri Oct 03 2025 22:40:42 GMT-0400 (Eastern Daylight Saving Time) ==================================
|
|
17
|
+
Core version 0.42.0
|
|
18
|
+
Log level: error.
|
|
19
|
+
WebSocket to wss://localhost:8088/3nstorage/owner/events closed with error
|
|
20
|
+
|
|
21
|
+
Error message: undefined
|
|
22
|
+
|
|
23
|
+
Fri Oct 03 2025 22:40:42 GMT-0400 (Eastern Daylight Saving Time) ==================================
|
|
24
|
+
Core version 0.42.0
|
|
25
|
+
Log level: error.
|
|
26
|
+
WebSocket to wss://localhost:8088/3nstorage/owner/events closed with error
|
|
27
|
+
|
|
28
|
+
Error message: undefined
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
|
|
2
|
+
Fri Oct 03 2025 22:40:48 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:48 GMT-0400 (Eastern Daylight Saving Time) ==================================
|
|
10
|
+
Core version 0.42.0
|
|
11
|
+
Log level: error.
|
|
12
|
+
WebSocket to wss://localhost:8088/asmail/retrieval/events closed with error
|
|
13
|
+
|
|
14
|
+
Error message: undefined
|
|
15
|
+
|
|
16
|
+
Fri Oct 03 2025 22:40:48 GMT-0400 (Eastern Daylight Saving Time) ==================================
|
|
17
|
+
Core version 0.42.0
|
|
18
|
+
Log level: error.
|
|
19
|
+
WebSocket to wss://localhost:8088/3nstorage/owner/events closed with error
|
|
20
|
+
|
|
21
|
+
Error message: undefined
|
|
22
|
+
|
|
23
|
+
Fri Oct 03 2025 22:40:48 GMT-0400 (Eastern Daylight Saving Time) ==================================
|
|
24
|
+
Core version 0.42.0
|
|
25
|
+
Log level: error.
|
|
26
|
+
WebSocket to wss://localhost:8088/3nstorage/owner/events closed with error
|
|
27
|
+
|
|
28
|
+
Error message: undefined
|
|
@@ -0,0 +1,14 @@
|
|
|
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
|
|
@@ -0,0 +1,14 @@
|
|
|
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
|
|
@@ -0,0 +1,14 @@
|
|
|
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
|
|
@@ -0,0 +1,14 @@
|
|
|
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
|
|
@@ -0,0 +1,28 @@
|
|
|
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/asmail/retrieval/events closed with error
|
|
13
|
+
|
|
14
|
+
Error message: undefined
|
|
15
|
+
|
|
16
|
+
Fri Oct 03 2025 22:41:10 GMT-0400 (Eastern Daylight Saving Time) ==================================
|
|
17
|
+
Core version 0.42.0
|
|
18
|
+
Log level: error.
|
|
19
|
+
WebSocket to wss://localhost:8088/3nstorage/owner/events closed with error
|
|
20
|
+
|
|
21
|
+
Error message: undefined
|
|
22
|
+
|
|
23
|
+
Fri Oct 03 2025 22:41:10 GMT-0400 (Eastern Daylight Saving Time) ==================================
|
|
24
|
+
Core version 0.42.0
|
|
25
|
+
Log level: error.
|
|
26
|
+
WebSocket to wss://localhost:8088/3nstorage/owner/events closed with error
|
|
27
|
+
|
|
28
|
+
Error message: undefined
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
|
|
2
|
-
Thu Oct 02 2025 18:03:51 GMT-0400 (Eastern Daylight Saving Time) ==================================
|
|
3
|
-
Core version 0.41.13
|
|
4
|
-
Log level: error.
|
|
5
|
-
[object Object]
|
|
6
|
-
WebSocket to wss://localhost:8088/3nstorage/owner/events closed with error
|
|
7
|
-
Thu Oct 02 2025 18:03:51 GMT-0400 (Eastern Daylight Saving Time) ==================================
|
|
8
|
-
Core version 0.41.13
|
|
9
|
-
Log level: error.
|
|
10
|
-
[object Object]
|
|
11
|
-
WebSocket to wss://localhost:8088/3nstorage/owner/events closed with error
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
|
|
2
|
-
Thu Oct 02 2025 18:03:19 GMT-0400 (Eastern Daylight Saving Time) ==================================
|
|
3
|
-
Core version 0.41.13
|
|
4
|
-
Log level: error.
|
|
5
|
-
[object Object]
|
|
6
|
-
WebSocket to wss://localhost:8088/3nstorage/owner/events closed with error
|
|
7
|
-
Thu Oct 02 2025 18:03:19 GMT-0400 (Eastern Daylight Saving Time) ==================================
|
|
8
|
-
Core version 0.41.13
|
|
9
|
-
Log level: error.
|
|
10
|
-
[object Object]
|
|
11
|
-
WebSocket to wss://localhost:8088/3nstorage/owner/events closed with error
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
|
|
2
|
-
Thu Oct 02 2025 18:03:24 GMT-0400 (Eastern Daylight Saving Time) ==================================
|
|
3
|
-
Core version 0.41.13
|
|
4
|
-
Log level: error.
|
|
5
|
-
[object Object]
|
|
6
|
-
WebSocket to wss://localhost:8088/3nstorage/owner/events closed with error
|
|
7
|
-
Thu Oct 02 2025 18:03:24 GMT-0400 (Eastern Daylight Saving Time) ==================================
|
|
8
|
-
Core version 0.41.13
|
|
9
|
-
Log level: error.
|
|
10
|
-
[object Object]
|
|
11
|
-
WebSocket to wss://localhost:8088/3nstorage/owner/events closed with error
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
|
|
2
|
-
Thu Oct 02 2025 18:03:44 GMT-0400 (Eastern Daylight Saving Time) ==================================
|
|
3
|
-
Core version 0.41.13
|
|
4
|
-
Log level: error.
|
|
5
|
-
[object Object]
|
|
6
|
-
WebSocket to wss://localhost:8088/3nstorage/owner/events closed with error
|
|
7
|
-
Thu Oct 02 2025 18:03:44 GMT-0400 (Eastern Daylight Saving Time) ==================================
|
|
8
|
-
Core version 0.41.13
|
|
9
|
-
Log level: error.
|
|
10
|
-
[object Object]
|
|
11
|
-
WebSocket to wss://localhost:8088/3nstorage/owner/events closed with error
|