skyeye-sdk-js 1.4.16 → 1.4.18
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/dist/src/proto/line_chart.proto +25 -0
- package/dist/src/proto/line_chart_grpc_pb.js +1 -0
- package/dist/src/proto/line_chart_pb.js +1018 -0
- package/dist/src/proto/protoc.bat +37 -0
- package/dist/src/proto/protoc.sh +32 -0
- package/dist/src/proto/skyeye_rpc.proto +16 -0
- package/dist/src/proto/skyeye_rpc_grpc_pb.js +99 -0
- package/dist/src/proto/skyeye_rpc_pb.d.ts +47 -0
- package/dist/src/proto/skyeye_rpc_pb.js +328 -0
- package/dist/src/proto/tsconfig.json +118 -0
- package/package.json +4 -4
- package/scripts/copy-proto.js +47 -0
- package/src/proto/line_chart_pb.js +394 -57
- package/src/proto/skyeye_rpc_grpc_pb.js +1 -1
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
syntax = "proto3";
|
|
2
|
+
|
|
3
|
+
message Value {
|
|
4
|
+
string type = 1;
|
|
5
|
+
double doubleValue = 2;
|
|
6
|
+
int64 intValue = 3;
|
|
7
|
+
string stringValue = 4;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
message TimeData {
|
|
11
|
+
Value realTime = 1;
|
|
12
|
+
Value simulationTime = 2;
|
|
13
|
+
Value customTime = 3;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
message SeriesData {
|
|
17
|
+
string id = 1;
|
|
18
|
+
string name = 2;
|
|
19
|
+
repeated Value value = 3;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
message Series {
|
|
23
|
+
repeated SeriesData series = 1;
|
|
24
|
+
repeated TimeData time = 2;
|
|
25
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
// GENERATED CODE -- NO SERVICES IN PROTO
|