@lansweeper/discovery-sensor-proto 2.35.5 → 2.36.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.36.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": "d2d8c1654a68762d05ac870c003510cc6505a73e"
|
|
20
20
|
}
|
|
@@ -387,3 +387,23 @@ message DeviceMedia {
|
|
|
387
387
|
message MacOpenPorts {
|
|
388
388
|
repeated com.lansweeper.discovery.sensor.common.v1.OpenPort entries = 1;
|
|
389
389
|
}
|
|
390
|
+
|
|
391
|
+
/* Section element for firewall info on Mac */
|
|
392
|
+
message MacFirewall {
|
|
393
|
+
google.protobuf.StringValue global_state = 1;
|
|
394
|
+
google.protobuf.StringValue logging_enabled = 2;
|
|
395
|
+
google.protobuf.StringValue stealth_enabled = 3;
|
|
396
|
+
repeated ApplicationRule application_rules = 4;
|
|
397
|
+
repeated ServiceRule service_rules = 5;
|
|
398
|
+
}
|
|
399
|
+
|
|
400
|
+
message ApplicationRule {
|
|
401
|
+
google.protobuf.StringValue name = 1;
|
|
402
|
+
google.protobuf.StringValue state = 2;
|
|
403
|
+
}
|
|
404
|
+
|
|
405
|
+
message ServiceRule {
|
|
406
|
+
google.protobuf.StringValue name = 1;
|
|
407
|
+
google.protobuf.StringValue state = 2;
|
|
408
|
+
}
|
|
409
|
+
|