@lansweeper/discovery-sensor-proto 2.31.1 → 2.31.2

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,7 +1,7 @@
1
1
  {
2
2
  "name": "@lansweeper/discovery-sensor-proto",
3
3
  "description": "Discovery Sensor proto",
4
- "version": "2.31.1",
4
+ "version": "2.31.2",
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": "ba6221275a3adc8321191ead540010d4cbcd2c0e"
19
+ "gitHead": "7446a6589a7365d80c69ca2e1d4b586d26d53a6b"
20
20
  }
@@ -78,6 +78,14 @@ message SnmpInfo {
78
78
  repeated string mac_addresses = 22;
79
79
  repeated SnmpInterfaceInfo interface_infos = 23;
80
80
  repeated SnmpArpEntry arp_table = 24;
81
+
82
+ repeated SnmpCustomOid custom_oids = 25;
83
+ }
84
+
85
+ message SnmpCustomOid {
86
+ string object_id = 1;
87
+ google.protobuf.StringValue label = 2; // Label set by the customer
88
+ google.protobuf.StringValue value = 3;
81
89
  }
82
90
 
83
91
  message SnmpInterfaceInfo {