core-3nweb-client-lib 0.41.5 → 0.41.7
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-ipc/json-ipc-wrapping/caller-side-wrap.d.ts +6 -7
- package/build/core-ipc/json-ipc-wrapping/caller-side-wrap.js +20 -26
- package/build/core-ipc/json-ipc-wrapping/json-n-binary.d.ts +5 -5
- package/build/core-ipc/json-ipc-wrapping/json-n-binary.js +39 -58
- package/build/core-ipc/json-ipc-wrapping/service-side-wrap.d.ts +6 -7
- package/build/core-ipc/json-ipc-wrapping/service-side-wrap.js +16 -24
- package/build/protos/json-ipc.proto.js +2026 -22
- package/package.json +1 -1
- package/protos/json-ipc.proto +4 -2
package/package.json
CHANGED
package/protos/json-ipc.proto
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
syntax = "proto3";
|
|
2
2
|
|
|
3
|
+
import "common.proto";
|
|
4
|
+
|
|
3
5
|
package json_ipc;
|
|
4
6
|
|
|
5
7
|
message ValuesSequence {
|
|
@@ -8,8 +10,8 @@ message ValuesSequence {
|
|
|
8
10
|
repeated string obj_location = 2;
|
|
9
11
|
}
|
|
10
12
|
message TransferredObj {
|
|
11
|
-
|
|
12
|
-
|
|
13
|
+
repeated string obj_location = 1;
|
|
14
|
+
common.ObjectReference obj_ref = 2;
|
|
13
15
|
}
|
|
14
16
|
message Value {
|
|
15
17
|
string json = 1;
|