@lansweeper/discovery-sensor-proto 2.27.2 → 2.27.4
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.27.
|
|
4
|
+
"version": "2.27.4",
|
|
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": "5c89766b466e167c8945b79647195225fe75aad8"
|
|
20
20
|
}
|
|
@@ -268,7 +268,7 @@ message SystemHardware {
|
|
|
268
268
|
google.protobuf.StringValue boot_rom_version = 9;
|
|
269
269
|
google.protobuf.StringValue serial_number = 10;
|
|
270
270
|
google.protobuf.StringValue packages = 11;
|
|
271
|
-
google.protobuf.StringValue platform_uuid = 12;
|
|
271
|
+
google.protobuf.StringValue platform_uuid = 12; // Hardware UUID: Can be used to uniquely identify the device
|
|
272
272
|
google.protobuf.StringValue smc_version_system = 13;
|
|
273
273
|
}
|
|
274
274
|
|
|
@@ -103,7 +103,7 @@ message ComputerSystem {
|
|
|
103
103
|
google.protobuf.StringValue model = 6;
|
|
104
104
|
google.protobuf.StringValue version = 7;
|
|
105
105
|
google.protobuf.StringValue serial = 8;
|
|
106
|
-
google.protobuf.StringValue uuid = 9;
|
|
106
|
+
google.protobuf.StringValue uuid = 9; // Hardware UUID: Can be used to uniquely identify the device
|
|
107
107
|
google.protobuf.StringValue wakeup_time = 10;
|
|
108
108
|
google.protobuf.StringValue boot_status = 11;
|
|
109
109
|
google.protobuf.StringValue network_node_hostname = 12;
|
|
@@ -1173,7 +1173,7 @@ message WindowsComputerSystemProduct {
|
|
|
1173
1173
|
message ComputerSystemProduct {
|
|
1174
1174
|
google.protobuf.StringValue identifying_number = 1;
|
|
1175
1175
|
google.protobuf.StringValue name = 2;
|
|
1176
|
-
google.protobuf.StringValue uUID = 3;
|
|
1176
|
+
google.protobuf.StringValue uUID = 3; // Hardware UUID: Can be used to uniquely identify the device
|
|
1177
1177
|
google.protobuf.StringValue vendor = 4;
|
|
1178
1178
|
google.protobuf.StringValue version = 5;
|
|
1179
1179
|
}
|
|
@@ -15,6 +15,7 @@ message OpenPort {
|
|
|
15
15
|
google.protobuf.StringValue process_name = 3;
|
|
16
16
|
google.protobuf.StringValue banner = 4; // Banner (Any non-HTTP response we get back)
|
|
17
17
|
optional HttpServerInfo http_server = 5;
|
|
18
|
+
google.protobuf.StringValue protocol = 6; // Protocol: tcp4, tcp6 (and on mac, sometimes tcp46)
|
|
18
19
|
}
|
|
19
20
|
|
|
20
21
|
message HttpServerInfo {
|