@lansweeper/discovery-sensor-proto 2.81.1 → 2.82.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_api_pb.d.ts +34 -0
- package/gen-proto/discovery_sections_api_pb.js +286 -2
- package/gen-proto/discovery_sections_other_pb.d.ts +6 -6
- package/gen-proto/discovery_sections_other_pb.js +37 -37
- package/gen-proto/image.json +1 -1
- package/package.json +2 -2
- package/proto/discovery_sections_api.proto +7 -1
- package/proto/discovery_sections_other.proto +2 -1
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.82.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": "cfcd60cc86c5d76984e5351aba827b0ece8a394a"
|
|
20
20
|
}
|
|
@@ -129,7 +129,7 @@ message ActiveDirectoryComputer {
|
|
|
129
129
|
google.protobuf.StringValue location = 7;
|
|
130
130
|
google.protobuf.StringValue ip_address = 8;
|
|
131
131
|
google.protobuf.BoolValue enabled = 9;
|
|
132
|
-
google.protobuf.StringValue bitlocker_recovery_info = 10;
|
|
132
|
+
google.protobuf.StringValue bitlocker_recovery_info = 10 [deprecated=true];
|
|
133
133
|
google.protobuf.StringValue operatingSystem = 11;
|
|
134
134
|
google.protobuf.StringValue operatingSystemVersion = 12;
|
|
135
135
|
|
|
@@ -137,6 +137,12 @@ message ActiveDirectoryComputer {
|
|
|
137
137
|
google.protobuf.StringValue managed_by_group_object_guid = 14;
|
|
138
138
|
|
|
139
139
|
google.protobuf.StringValue dns_hostname = 15;
|
|
140
|
+
repeated BitLockerRecoveryKey bit_locker_recovery_keys = 16;
|
|
141
|
+
}
|
|
142
|
+
|
|
143
|
+
message BitLockerRecoveryKey {
|
|
144
|
+
google.protobuf.StringValue recovery_key = 1;
|
|
145
|
+
google.protobuf.Timestamp last_changed = 2;
|
|
140
146
|
}
|
|
141
147
|
|
|
142
148
|
message ActiveDirectoryPrinter {
|
|
@@ -12,6 +12,7 @@ import "google/protobuf/wrappers.proto";
|
|
|
12
12
|
|
|
13
13
|
/* Section element for SNMP info*/
|
|
14
14
|
message Snmp {
|
|
15
|
+
reserved 26;
|
|
15
16
|
google.protobuf.StringValue object_id = 1;
|
|
16
17
|
google.protobuf.StringValue name = 2;
|
|
17
18
|
google.protobuf.StringValue description = 3;
|
|
@@ -43,8 +44,8 @@ message Snmp {
|
|
|
43
44
|
|
|
44
45
|
repeated SnmpCustomOid custom_oids = 25;
|
|
45
46
|
|
|
46
|
-
google.protobuf.UInt64Value total_memory = 26;
|
|
47
47
|
google.protobuf.StringValue processor_architecture = 27;
|
|
48
|
+
google.protobuf.UInt64Value total_memory = 28;
|
|
48
49
|
}
|
|
49
50
|
|
|
50
51
|
message SnmpCustomOid {
|