core-3nweb-client-lib 0.30.6 → 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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "core-3nweb-client-lib",
3
- "version": "0.30.6",
3
+ "version": "0.31.0",
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",
@@ -0,0 +1,22 @@
1
+ syntax = "proto3";
2
+
3
+ package json_ipc;
4
+
5
+ message ValuesSequence {
6
+ message BinaryValue {
7
+ bytes arr = 1;
8
+ repeated string obj_location = 2;
9
+ }
10
+ message TransferredObj {
11
+ uint32 index_in_passed = 1;
12
+ repeated string obj_location = 2;
13
+ }
14
+ message Value {
15
+ string json = 1;
16
+ repeated BinaryValue binary_in_json = 2;
17
+ repeated TransferredObj transferred_in_json = 3;
18
+ BinaryValue arr = 4;
19
+ TransferredObj transferred = 5;
20
+ }
21
+ repeated Value values = 1;
22
+ }