@lansweeper/discovery-sensor-proto 2.31.2 → 2.33.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/gen-proto/discovery_sections_mac_pb.d.ts +5 -5
- package/gen-proto/discovery_sections_mac_pb.js +9 -9
- package/gen-proto/discovery_sections_ot_pb.d.ts +54 -51
- package/gen-proto/discovery_sections_ot_pb.js +198 -168
- package/gen-proto/image.json +1 -1
- package/package.json +2 -2
- package/proto/discovery_sections_mac.proto +1 -1
- package/proto/discovery_sections_ot.proto +12 -11
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.33.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": "f0d6335bc2aca5b7aabfc8fde2318a8fcc0d3b8d"
|
|
20
20
|
}
|
|
@@ -171,7 +171,7 @@ message MacOsInfo {
|
|
|
171
171
|
google.protobuf.StringValue boot_volume = 3;
|
|
172
172
|
google.protobuf.StringValue boot_mode = 4;
|
|
173
173
|
google.protobuf.StringValue computer_name = 5;
|
|
174
|
-
google.protobuf.StringValue
|
|
174
|
+
google.protobuf.StringValue last_logged_on_user = 6;
|
|
175
175
|
google.protobuf.StringValue up_time = 7;
|
|
176
176
|
google.protobuf.StringValue secure_virtual_memory = 8;
|
|
177
177
|
google.protobuf.StringValue sixty_four_bit_kernel_and_exts = 9;
|
|
@@ -37,17 +37,18 @@ message OtScanConfigData {
|
|
|
37
37
|
google.protobuf.Timestamp last_scan = 10;
|
|
38
38
|
}
|
|
39
39
|
|
|
40
|
-
/* Section element for
|
|
41
|
-
message
|
|
42
|
-
repeated
|
|
40
|
+
/* Section element for BusConfigs on OT */
|
|
41
|
+
message BusConfigData {
|
|
42
|
+
repeated BusConfig entries = 1;
|
|
43
43
|
}
|
|
44
44
|
|
|
45
|
-
message
|
|
46
|
-
|
|
47
|
-
google.protobuf.StringValue
|
|
48
|
-
uint32
|
|
45
|
+
message BusConfig {
|
|
46
|
+
uint32 index = 1;
|
|
47
|
+
google.protobuf.StringValue name = 2;
|
|
48
|
+
uint32 max_size = 3;
|
|
49
49
|
repeated ModuleData modules = 4;
|
|
50
50
|
google.protobuf.StringValue type = 5;
|
|
51
|
+
uint32 module_start_index = 6;
|
|
51
52
|
}
|
|
52
53
|
|
|
53
54
|
message ModuleData {
|
|
@@ -58,11 +59,11 @@ message ModuleData {
|
|
|
58
59
|
google.protobuf.StringValue serial_number = 5;
|
|
59
60
|
google.protobuf.StringValue model = 6;
|
|
60
61
|
google.protobuf.StringValue firmware = 7;
|
|
61
|
-
|
|
62
|
-
google.protobuf.UInt32Value
|
|
63
|
-
google.protobuf.UInt32Value
|
|
62
|
+
google.protobuf.StringValue part_number = 8;
|
|
63
|
+
google.protobuf.UInt32Value position_in_bus_config = 9;
|
|
64
|
+
google.protobuf.UInt32Value width = 10;
|
|
64
65
|
repeated ModuleExtendedInformation extended_information = 11;
|
|
65
|
-
repeated
|
|
66
|
+
repeated BusConfig bus_config = 12;
|
|
66
67
|
}
|
|
67
68
|
|
|
68
69
|
message ModuleExtendedInformation {
|