core-3nweb-client-lib 0.24.0 → 0.24.3
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/api-defs/web3n.d.ts +6 -6
- package/build/ipc-via-protobuf/asmail-cap.js +17 -18
- package/build/ipc-via-protobuf/bytes.js +10 -11
- package/build/ipc-via-protobuf/connector.d.ts +2 -1
- package/build/ipc-via-protobuf/connector.js +4 -2
- package/build/ipc-via-protobuf/file.d.ts +1 -1
- package/build/ipc-via-protobuf/file.js +30 -31
- package/build/ipc-via-protobuf/fs.d.ts +1 -1
- package/build/ipc-via-protobuf/fs.js +37 -38
- package/build/ipc-via-protobuf/log-cap.js +4 -5
- package/build/ipc-via-protobuf/mailerid.js +5 -7
- package/build/ipc-via-protobuf/protobuf-msg.d.ts +1 -2
- package/build/ipc-via-protobuf/protobuf-msg.js +9 -24
- package/build/ipc-via-protobuf/startup-cap.js +10 -11
- package/build/ipc-via-protobuf/storage-cap.js +7 -8
- package/build/lib-client/cryptor/cryptor-in-worker.js +7 -20
- package/build/lib-client/cryptor/cryptor-wasm.js +1 -1
- package/build/lib-client/cryptor/cryptor.wasm +0 -0
- package/build/lib-client/cryptor/in-proc-wasm.js +7 -20
- package/build/lib-client/{protobuf-loader.d.ts → protobuf-type.d.ts} +2 -4
- package/build/lib-client/{protobuf-loader.js → protobuf-type.js} +3 -43
- package/build/protos/asmail.proto.js +22296 -0
- package/build/protos/bytes.proto.js +3614 -0
- package/build/protos/common.proto.js +1863 -0
- package/build/protos/cryptor.proto.js +1667 -0
- package/build/protos/file.proto.js +7264 -0
- package/build/protos/fs.proto.js +17142 -0
- package/build/protos/ipc.proto.js +2349 -0
- package/build/protos/logger.proto.js +2112 -0
- package/build/protos/mailerid.proto.js +2249 -0
- package/build/protos/startup.proto.js +3291 -0
- package/build/protos/storage.proto.js +2689 -0
- package/package.json +2 -2
- package/{build/ipc-via-protobuf/protos → protos}/asmail.proto +0 -0
- package/{build/ipc-via-protobuf/protos → protos}/bytes.proto +0 -0
- package/{build/ipc-via-protobuf/protos → protos}/common.proto +0 -0
- package/{build/ipc-via-protobuf/protos → protos}/file.proto +0 -0
- package/{build/ipc-via-protobuf/protos → protos}/fs.proto +0 -0
- package/{build/ipc-via-protobuf/protos → protos}/ipc.proto +0 -0
- package/{build/ipc-via-protobuf/protos → protos}/logger.proto +0 -0
- package/{build/ipc-via-protobuf/protos → protos}/mailerid.proto +0 -0
- package/{build/ipc-via-protobuf/protos → protos}/startup.proto +0 -0
- package/{build/ipc-via-protobuf/protos → protos}/storage.proto +0 -0
- package/build/ipc-via-protobuf/proto-defs.js +0 -1092
- package/build/lib-client/cryptor/proto-defs.js +0 -50
- package/build/lib-client/cryptor/protos/cryptor.proto +0 -45
|
@@ -1,50 +0,0 @@
|
|
|
1
|
-
exports.protos = {};
|
|
2
|
-
exports.protos['cryptor.proto'] = `
|
|
3
|
-
syntax = "proto3";
|
|
4
|
-
|
|
5
|
-
package cryptor;
|
|
6
|
-
|
|
7
|
-
message Request {
|
|
8
|
-
|
|
9
|
-
message ScryptArgs {
|
|
10
|
-
bytes passwd = 1;
|
|
11
|
-
bytes salt = 2;
|
|
12
|
-
uint32 logN = 3;
|
|
13
|
-
uint32 r = 4;
|
|
14
|
-
uint32 p = 5;
|
|
15
|
-
uint32 dkLen = 6;
|
|
16
|
-
}
|
|
17
|
-
|
|
18
|
-
uint32 func = 1;
|
|
19
|
-
repeated BytesVal byte_args = 2;
|
|
20
|
-
ScryptArgs scrypt_args = 3;
|
|
21
|
-
|
|
22
|
-
}
|
|
23
|
-
|
|
24
|
-
message BytesVal {
|
|
25
|
-
bytes val = 1;
|
|
26
|
-
}
|
|
27
|
-
|
|
28
|
-
message Reply {
|
|
29
|
-
|
|
30
|
-
message Error {
|
|
31
|
-
string condition = 1;
|
|
32
|
-
string message = 2;
|
|
33
|
-
}
|
|
34
|
-
|
|
35
|
-
BytesVal res = 1;
|
|
36
|
-
BytesVal interim = 2;
|
|
37
|
-
Error err = 3;
|
|
38
|
-
}
|
|
39
|
-
|
|
40
|
-
message BoolVal {
|
|
41
|
-
bool val = 1;
|
|
42
|
-
}
|
|
43
|
-
|
|
44
|
-
message Keypair {
|
|
45
|
-
bytes skey = 1;
|
|
46
|
-
bytes pkey = 2;
|
|
47
|
-
}
|
|
48
|
-
`;
|
|
49
|
-
Object.freeze(exports.protos);
|
|
50
|
-
Object.freeze(exports);
|
|
@@ -1,45 +0,0 @@
|
|
|
1
|
-
syntax = "proto3";
|
|
2
|
-
|
|
3
|
-
package cryptor;
|
|
4
|
-
|
|
5
|
-
message Request {
|
|
6
|
-
|
|
7
|
-
message ScryptArgs {
|
|
8
|
-
bytes passwd = 1;
|
|
9
|
-
bytes salt = 2;
|
|
10
|
-
uint32 logN = 3;
|
|
11
|
-
uint32 r = 4;
|
|
12
|
-
uint32 p = 5;
|
|
13
|
-
uint32 dkLen = 6;
|
|
14
|
-
}
|
|
15
|
-
|
|
16
|
-
uint32 func = 1;
|
|
17
|
-
repeated BytesVal byte_args = 2;
|
|
18
|
-
ScryptArgs scrypt_args = 3;
|
|
19
|
-
|
|
20
|
-
}
|
|
21
|
-
|
|
22
|
-
message BytesVal {
|
|
23
|
-
bytes val = 1;
|
|
24
|
-
}
|
|
25
|
-
|
|
26
|
-
message Reply {
|
|
27
|
-
|
|
28
|
-
message Error {
|
|
29
|
-
string condition = 1;
|
|
30
|
-
string message = 2;
|
|
31
|
-
}
|
|
32
|
-
|
|
33
|
-
BytesVal res = 1;
|
|
34
|
-
BytesVal interim = 2;
|
|
35
|
-
Error err = 3;
|
|
36
|
-
}
|
|
37
|
-
|
|
38
|
-
message BoolVal {
|
|
39
|
-
bool val = 1;
|
|
40
|
-
}
|
|
41
|
-
|
|
42
|
-
message Keypair {
|
|
43
|
-
bytes skey = 1;
|
|
44
|
-
bytes pkey = 2;
|
|
45
|
-
}
|