@lansweeper/discovery-sensor-proto 2.63.2 → 2.65.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_drac_grpc_pb.js +1 -0
- package/gen-proto/discovery_sections_drac_pb.d.ts +46 -0
- package/gen-proto/discovery_sections_drac_pb.js +331 -0
- 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_drac.proto +17 -0
package/gen-proto/index.d.ts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
export * from "./discovery_events_pb.d";
|
|
2
2
|
export * from "./discovery_sections_api_pb.d";
|
|
3
|
+
export * from "./discovery_sections_drac_pb.d";
|
|
3
4
|
export * from "./discovery_sections_mac_pb.d";
|
|
4
5
|
export * from "./discovery_sections_ot_pb.d";
|
|
5
6
|
export * from "./discovery_sections_other_pb.d";
|
package/gen-proto/index.js
CHANGED
|
@@ -2,6 +2,8 @@ const discovery_events_grpc_pb = require("./discovery_events_grpc_pb");
|
|
|
2
2
|
const discovery_events_pb = require("./discovery_events_pb");
|
|
3
3
|
const discovery_sections_api_grpc_pb = require("./discovery_sections_api_grpc_pb");
|
|
4
4
|
const discovery_sections_api_pb = require("./discovery_sections_api_pb");
|
|
5
|
+
const discovery_sections_drac_grpc_pb = require("./discovery_sections_drac_grpc_pb");
|
|
6
|
+
const discovery_sections_drac_pb = require("./discovery_sections_drac_pb");
|
|
5
7
|
const discovery_sections_mac_grpc_pb = require("./discovery_sections_mac_grpc_pb");
|
|
6
8
|
const discovery_sections_mac_pb = require("./discovery_sections_mac_pb");
|
|
7
9
|
const discovery_sections_ot_grpc_pb = require("./discovery_sections_ot_grpc_pb");
|
|
@@ -12,4 +14,4 @@ const discovery_sections_unix_grpc_pb = require("./discovery_sections_unix_grpc_
|
|
|
12
14
|
const discovery_sections_unix_pb = require("./discovery_sections_unix_pb");
|
|
13
15
|
const discovery_sections_windows_grpc_pb = require("./discovery_sections_windows_grpc_pb");
|
|
14
16
|
const discovery_sections_windows_pb = require("./discovery_sections_windows_pb");
|
|
15
|
-
Object.assign(exports, discovery_events_grpc_pb, discovery_events_pb, 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)
|
|
17
|
+
Object.assign(exports, discovery_events_grpc_pb, discovery_events_pb, discovery_sections_api_grpc_pb, discovery_sections_api_pb, discovery_sections_drac_grpc_pb, discovery_sections_drac_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.65.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": "045549381bdb6e7922c2fa6b67c705e2ec385dee"
|
|
20
20
|
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
syntax = "proto3";
|
|
2
|
+
|
|
3
|
+
package com.lansweeper.discovery.sensor.drac.v1;
|
|
4
|
+
|
|
5
|
+
option java_multiple_files = true;
|
|
6
|
+
|
|
7
|
+
option csharp_namespace = "Lansweeper.Discovery.Model.Proto.Sensor.Drac";
|
|
8
|
+
|
|
9
|
+
import "google/protobuf/wrappers.proto";
|
|
10
|
+
|
|
11
|
+
/* Section element for DRAC info*/
|
|
12
|
+
message DracInfo {
|
|
13
|
+
bool is_drac = 1;
|
|
14
|
+
google.protobuf.StringValue serialnumber = 2;
|
|
15
|
+
google.protobuf.StringValue dns = 3;
|
|
16
|
+
google.protobuf.StringValue uuid = 4;
|
|
17
|
+
}
|