@lansweeper/discovery-sensor-proto 2.27.4 → 2.28.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.
|
|
4
|
+
"version": "2.28.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": "e8550c368bb76b0d8bb239dcc6de87e1f7e34b63"
|
|
20
20
|
}
|
|
@@ -164,7 +164,7 @@ message NetworkVolume {
|
|
|
164
164
|
google.protobuf.StringValue mnt_from_name = 5;
|
|
165
165
|
}
|
|
166
166
|
|
|
167
|
-
/* Section element for
|
|
167
|
+
/* Section element for OS info on Mac */
|
|
168
168
|
message MacOsInfo {
|
|
169
169
|
google.protobuf.StringValue system_version = 1;
|
|
170
170
|
google.protobuf.StringValue kernel_version = 2;
|
|
@@ -1643,6 +1643,16 @@ message CertificateLocation {
|
|
|
1643
1643
|
}
|
|
1644
1644
|
|
|
1645
1645
|
/* Section element for open ports on Windows */
|
|
1646
|
-
message
|
|
1646
|
+
message WindowsOpenPorts {
|
|
1647
1647
|
repeated com.lansweeper.discovery.sensor.common.v1.OpenPort entries = 1;
|
|
1648
1648
|
}
|
|
1649
|
+
|
|
1650
|
+
/* Section element for firewall rules on Windows: See https://learn.microsoft.com/en-us/openspecs/windows_protocols/ms-gpfas/2efe0b76-7b4a-41ff-9050-1023f8196d16 */
|
|
1651
|
+
message WindowsFirewallRules {
|
|
1652
|
+
repeated FirewallRule entries = 1;
|
|
1653
|
+
}
|
|
1654
|
+
|
|
1655
|
+
message FirewallRule {
|
|
1656
|
+
string version = 1;
|
|
1657
|
+
map<string, string> properties = 2;
|
|
1658
|
+
}
|