@lansweeper/discovery-sensor-proto 2.29.0 → 2.29.1

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.29.0",
4
+ "version": "2.29.1",
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": "1fe71ab1b9066255aad33eefc3cd481bfaacc5c4"
19
+ "gitHead": "96f74329c356b5028b48a2508f71a1cb243761d0"
20
20
  }
@@ -1654,6 +1654,11 @@ message WindowsFirewallRules {
1654
1654
 
1655
1655
  message FirewallRule {
1656
1656
  string version = 1;
1657
- map<string, string> properties = 2;
1658
- string name = 3;
1657
+ string name = 2;
1658
+ repeated FirewallRuleProperty properties = 3;
1659
+ }
1660
+
1661
+ message FirewallRuleProperty {
1662
+ string key = 1;
1663
+ google.protobuf.StringValue value = 2;
1659
1664
  }