@lansweeper/discovery-sensor-proto 2.15.1 → 2.16.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,7 +1,7 @@
1
1
  {
2
2
  "name": "@lansweeper/discovery-sensor-proto",
3
3
  "description": "Discovery Sensor proto",
4
- "version": "2.15.1",
4
+ "version": "2.16.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": "781df20e359e663e8f138a6a3eb8191055fc0317"
19
+ "gitHead": "736f4555ac2d6aebb6e9aa0cd3731dcdc1172594"
20
20
  }
@@ -83,7 +83,7 @@ message Bios {
83
83
  optional google.protobuf.Timestamp release_date_utc = 7;
84
84
  }
85
85
 
86
- /* Contains info about the availability of unix commands */
86
+ /* Contains info about the availability of Unix commands */
87
87
  message CommandInformation {
88
88
  google.protobuf.StringValue command = 1;
89
89
  google.protobuf.BoolValue is_command_available = 2;
@@ -1657,4 +1657,14 @@ message CertificateKeyUsage {
1657
1657
  message CertificateLocation {
1658
1658
  string store = 1;
1659
1659
  string folder = 2;
1660
+ }
1661
+
1662
+ /* Section element for open ports on Windows */
1663
+ message OpenPorts {
1664
+ repeated OpenPort entries = 1;
1665
+ }
1666
+
1667
+ message OpenPort {
1668
+ int32 local_port = 1;
1669
+ google.protobuf.StringValue local_address = 2;
1660
1670
  }