@lansweeper/discovery-sensor-proto 2.29.0 → 2.30.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/gen-proto/discovery_sections_other_grpc_pb.js +1 -0
- package/gen-proto/discovery_sections_other_pb.d.ts +31 -0
- package/gen-proto/discovery_sections_other_pb.js +199 -0
- package/gen-proto/discovery_sections_windows_pb.d.ts +31 -5
- package/gen-proto/discovery_sections_windows_pb.js +262 -32
- package/gen-proto/image.json +1 -1
- package/gen-proto/index.d.ts +1 -0
- package/gen-proto/index.js +3 -1
- package/package.json +2 -2
- package/proto/discovery_sections_api.proto +938 -938
- package/proto/discovery_sections_other.proto +14 -0
- package/proto/discovery_sections_windows.proto +7 -2
- package/proto/import/discovery_common.proto +95 -0
package/gen-proto/index.d.ts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
export * from "./discovery_sections_api_pb.d";
|
|
2
2
|
export * from "./discovery_sections_mac_pb.d";
|
|
3
3
|
export * from "./discovery_sections_ot_pb.d";
|
|
4
|
+
export * from "./discovery_sections_other_pb.d";
|
|
4
5
|
export * from "./discovery_sections_unix_pb.d";
|
|
5
6
|
export * from "./discovery_sections_windows_pb.d";
|
package/gen-proto/index.js
CHANGED
|
@@ -4,8 +4,10 @@ const discovery_sections_mac_grpc_pb = require("./discovery_sections_mac_grpc_pb
|
|
|
4
4
|
const discovery_sections_mac_pb = require("./discovery_sections_mac_pb");
|
|
5
5
|
const discovery_sections_ot_grpc_pb = require("./discovery_sections_ot_grpc_pb");
|
|
6
6
|
const discovery_sections_ot_pb = require("./discovery_sections_ot_pb");
|
|
7
|
+
const discovery_sections_other_grpc_pb = require("./discovery_sections_other_grpc_pb");
|
|
8
|
+
const discovery_sections_other_pb = require("./discovery_sections_other_pb");
|
|
7
9
|
const discovery_sections_unix_grpc_pb = require("./discovery_sections_unix_grpc_pb");
|
|
8
10
|
const discovery_sections_unix_pb = require("./discovery_sections_unix_pb");
|
|
9
11
|
const discovery_sections_windows_grpc_pb = require("./discovery_sections_windows_grpc_pb");
|
|
10
12
|
const discovery_sections_windows_pb = require("./discovery_sections_windows_pb");
|
|
11
|
-
Object.assign(exports, discovery_sections_api_grpc_pb, discovery_sections_api_pb, discovery_sections_mac_grpc_pb, discovery_sections_mac_pb, discovery_sections_ot_grpc_pb, discovery_sections_ot_pb, discovery_sections_unix_grpc_pb, discovery_sections_unix_pb, discovery_sections_windows_grpc_pb, discovery_sections_windows_pb)
|
|
13
|
+
Object.assign(exports, discovery_sections_api_grpc_pb, discovery_sections_api_pb, discovery_sections_mac_grpc_pb, discovery_sections_mac_pb, discovery_sections_ot_grpc_pb, discovery_sections_ot_pb, discovery_sections_other_grpc_pb, discovery_sections_other_pb, discovery_sections_unix_grpc_pb, discovery_sections_unix_pb, discovery_sections_windows_grpc_pb, discovery_sections_windows_pb)
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lansweeper/discovery-sensor-proto",
|
|
3
3
|
"description": "Discovery Sensor proto",
|
|
4
|
-
"version": "2.
|
|
4
|
+
"version": "2.30.0",
|
|
5
5
|
"main": "gen-proto/index.js",
|
|
6
6
|
"types": "gen-proto/index.d.ts",
|
|
7
7
|
"license": "MIT",
|
|
@@ -16,5 +16,5 @@
|
|
|
16
16
|
"devDependencies": {
|
|
17
17
|
"@types/google-protobuf": "^3.15.5"
|
|
18
18
|
},
|
|
19
|
-
"gitHead": "
|
|
19
|
+
"gitHead": "ef6652b2d308e23ad7b993a022b1e5820e1fe846"
|
|
20
20
|
}
|