@lansweeper/discovery-sensor-proto 2.35.5 → 2.37.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.35.5",
4
+ "version": "2.37.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": "55d4b9da428d107eb69f5e47bc7c8f59409d6cca"
19
+ "gitHead": "4c94eadd1ba2a35a3b863ebd7f3c63ad799da9ff"
20
20
  }
@@ -176,6 +176,7 @@ message MacOsInfo {
176
176
  google.protobuf.StringValue secure_virtual_memory = 8;
177
177
  google.protobuf.StringValue sixty_four_bit_kernel_and_exts = 9;
178
178
  google.protobuf.StringValue system_integrity = 10;
179
+ google.protobuf.StringValue domain = 11;
179
180
  }
180
181
 
181
182
  /* Section element for power info on Mac */
@@ -387,3 +388,23 @@ message DeviceMedia {
387
388
  message MacOpenPorts {
388
389
  repeated com.lansweeper.discovery.sensor.common.v1.OpenPort entries = 1;
389
390
  }
391
+
392
+ /* Section element for firewall info on Mac */
393
+ message MacFirewall {
394
+ google.protobuf.StringValue global_state = 1;
395
+ google.protobuf.StringValue logging_enabled = 2;
396
+ google.protobuf.StringValue stealth_enabled = 3;
397
+ repeated ApplicationRule application_rules = 4;
398
+ repeated ServiceRule service_rules = 5;
399
+ }
400
+
401
+ message ApplicationRule {
402
+ google.protobuf.StringValue name = 1;
403
+ google.protobuf.StringValue state = 2;
404
+ }
405
+
406
+ message ServiceRule {
407
+ google.protobuf.StringValue name = 1;
408
+ google.protobuf.StringValue state = 2;
409
+ }
410
+