core-3nweb-client-lib 0.30.5 → 0.31.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/id-manager/mailerid-cap-ipc.js +10 -56
- package/build/core/startup/startup-cap.js +96 -286
- package/build/core-ipc/json-ipc-wrapping/caller-side-wrap.d.ts +14 -0
- package/build/core-ipc/json-ipc-wrapping/caller-side-wrap.js +91 -0
- package/build/core-ipc/json-ipc-wrapping/json-n-binary.d.ts +5 -0
- package/build/core-ipc/json-ipc-wrapping/json-n-binary.js +216 -0
- package/build/core-ipc/json-ipc-wrapping/service-side-wrap.d.ts +16 -0
- package/build/core-ipc/json-ipc-wrapping/service-side-wrap.js +87 -0
- package/build/core-ipc/log-cap.js +7 -19
- package/build/ipc.d.ts +2 -0
- package/build/ipc.js +4 -2
- package/build/lib-client/cryptor/cryptor-wasm.js +1 -1
- package/build/lib-client/cryptor/cryptor.wasm +0 -0
- package/build/lib-client/service-locator.js +8 -6
- package/build/protos/json-ipc.proto.js +1093 -0
- package/package.json +1 -1
- package/protos/json-ipc.proto +22 -0
- package/build/protos/logger.proto.js +0 -2278
- package/build/protos/mailerid.proto.js +0 -2429
- package/build/protos/startup.proto.js +0 -3966
- package/protos/logger.proto +0 -13
- package/protos/mailerid.proto +0 -18
- package/protos/startup.proto +0 -76
package/protos/logger.proto
DELETED
package/protos/mailerid.proto
DELETED
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
syntax = "proto3";
|
|
2
|
-
|
|
3
|
-
import "common.proto";
|
|
4
|
-
|
|
5
|
-
package mailerid;
|
|
6
|
-
|
|
7
|
-
// --- getUserId ---
|
|
8
|
-
// Request body is empty
|
|
9
|
-
// Reply body contains utf8 bytes of user id
|
|
10
|
-
|
|
11
|
-
// --- login ---
|
|
12
|
-
// Reply is status only and body is empty
|
|
13
|
-
message LoginRequestBody {
|
|
14
|
-
string service_url = 1;
|
|
15
|
-
}
|
|
16
|
-
message LoginReplyBody {
|
|
17
|
-
string session_id = 1;
|
|
18
|
-
}
|
package/protos/startup.proto
DELETED
|
@@ -1,76 +0,0 @@
|
|
|
1
|
-
syntax = "proto3";
|
|
2
|
-
|
|
3
|
-
import "common.proto";
|
|
4
|
-
|
|
5
|
-
package startup;
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
// ==== signUp capability ====
|
|
9
|
-
|
|
10
|
-
message SetSignUpServerRequestBody {
|
|
11
|
-
string service_url = 1;
|
|
12
|
-
}
|
|
13
|
-
|
|
14
|
-
// --- signUp.getAvailableAddresses ---
|
|
15
|
-
// Reply body is common.StringArrayValue
|
|
16
|
-
message GetAvailableAddressesRequestBody {
|
|
17
|
-
string name = 1;
|
|
18
|
-
common.StringValue token = 2;
|
|
19
|
-
}
|
|
20
|
-
|
|
21
|
-
// --- signUp.getAvailableDomians ---
|
|
22
|
-
// Reply body is common.StringArrayValue
|
|
23
|
-
message GetAvailableDomainsRequestBody {
|
|
24
|
-
common.StringValue token = 2;
|
|
25
|
-
}
|
|
26
|
-
|
|
27
|
-
// --- signUp.addUser ---
|
|
28
|
-
// Reply body is common.BooleanValue
|
|
29
|
-
message AddUserRequestBody {
|
|
30
|
-
string user_id = 1;
|
|
31
|
-
common.StringValue token = 2;
|
|
32
|
-
}
|
|
33
|
-
|
|
34
|
-
// --- signUp.isActivated ---
|
|
35
|
-
// Reply body is common.BooleanValue
|
|
36
|
-
message IsActivatedRequestBody {
|
|
37
|
-
string user_id = 1;
|
|
38
|
-
}
|
|
39
|
-
|
|
40
|
-
// --- signUp.createUserParams ---
|
|
41
|
-
// Its an observable call, and initial request is PassOnlyRequestBody.
|
|
42
|
-
// Intermediate values are ProgressValue.
|
|
43
|
-
|
|
44
|
-
message PassOnlyRequestBody {
|
|
45
|
-
string pass = 1;
|
|
46
|
-
}
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
// ==== signIn capability ====
|
|
50
|
-
|
|
51
|
-
// --- signIn.getUsersOnDisk ---
|
|
52
|
-
// Request body is empty
|
|
53
|
-
// Reply body is common.StringArrayValue
|
|
54
|
-
|
|
55
|
-
// --- signIn.startLoginToRemoteStorage ---
|
|
56
|
-
// Reply body is common.BooleanValue
|
|
57
|
-
message StartLoginToRemoteStorageRequestBody {
|
|
58
|
-
string address = 1;
|
|
59
|
-
}
|
|
60
|
-
|
|
61
|
-
// --- signIn.completeLoginAndLocalSetup ---
|
|
62
|
-
// Its an observable call, and initial request is PassOnlyRequestBody.
|
|
63
|
-
// Intermediate values are ProgressValue.
|
|
64
|
-
|
|
65
|
-
message ProgressValue {
|
|
66
|
-
float p = 1;
|
|
67
|
-
common.BooleanValue decr_result = 2;
|
|
68
|
-
}
|
|
69
|
-
|
|
70
|
-
// --- signIn.useExistingStorage ---
|
|
71
|
-
// Its an observable call, and initial request is UseExistingStorageRequestBody.
|
|
72
|
-
// Intermediate values are ProgressValue.
|
|
73
|
-
message UseExistingStorageRequestBody {
|
|
74
|
-
string address = 1;
|
|
75
|
-
string pass = 2;
|
|
76
|
-
}
|