@lansweeper/discovery-sensor-proto 2.36.0 → 2.37.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/gen-proto/discovery_sections_mac_pb.d.ts +6 -0
- package/gen-proto/discovery_sections_mac_pb.js +52 -1
- package/gen-proto/discovery_sections_windows_pb.d.ts +153 -0
- package/gen-proto/discovery_sections_windows_pb.js +1218 -0
- package/gen-proto/image.json +1 -1
- package/package.json +2 -2
- package/proto/discovery_sections_mac.proto +1 -0
- package/proto/discovery_sections_windows.proto +30 -0
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.37.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": "
|
|
19
|
+
"gitHead": "8275872ef401a9b49b1f96dbf1801e495c190b45"
|
|
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 */
|
|
@@ -1738,4 +1738,34 @@ message FirewallRule {
|
|
|
1738
1738
|
message FirewallRuleProperty {
|
|
1739
1739
|
string key = 1;
|
|
1740
1740
|
google.protobuf.StringValue value = 2;
|
|
1741
|
+
}
|
|
1742
|
+
|
|
1743
|
+
/* Section element for COM Applications on Windows */
|
|
1744
|
+
message WindowsComApplication {
|
|
1745
|
+
repeated ComApplication entries = 1;
|
|
1746
|
+
}
|
|
1747
|
+
|
|
1748
|
+
message ComApplication {
|
|
1749
|
+
google.protobuf.StringValue app_id = 1;
|
|
1750
|
+
google.protobuf.StringValue caption = 2;
|
|
1751
|
+
}
|
|
1752
|
+
|
|
1753
|
+
/* Section element for DCOM Applications on Windows */
|
|
1754
|
+
message WindowsDcomApplication {
|
|
1755
|
+
repeated DcomApplication entries = 1;
|
|
1756
|
+
}
|
|
1757
|
+
|
|
1758
|
+
message DcomApplication {
|
|
1759
|
+
google.protobuf.StringValue app_id = 1;
|
|
1760
|
+
google.protobuf.StringValue caption = 2;
|
|
1761
|
+
}
|
|
1762
|
+
|
|
1763
|
+
/* Section element for Component categories on Windows*/
|
|
1764
|
+
message WindowsComponentCategory {
|
|
1765
|
+
repeated ComponentCategory entries = 1;
|
|
1766
|
+
}
|
|
1767
|
+
|
|
1768
|
+
message ComponentCategory {
|
|
1769
|
+
google.protobuf.StringValue category_id = 1;
|
|
1770
|
+
google.protobuf.StringValue caption = 2;
|
|
1741
1771
|
}
|