@lansweeper/discovery-sensor-proto 2.65.1 → 2.66.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_api_pb.d.ts +6 -6
- package/gen-proto/discovery_sections_api_pb.js +52 -52
- package/gen-proto/discovery_sections_windows_pb.d.ts +51 -0
- package/gen-proto/discovery_sections_windows_pb.js +406 -0
- package/gen-proto/image.json +1 -1
- package/package.json +2 -2
- package/proto/discovery_sections_api.proto +3 -1
- package/proto/discovery_sections_windows.proto +10 -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.66.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": "07cb7048a9170d3166633b92421eccb9fde0474e"
|
|
20
20
|
}
|
|
@@ -16,12 +16,13 @@ message ActiveDirectoryScanResult {
|
|
|
16
16
|
}
|
|
17
17
|
|
|
18
18
|
message ActiveDirectoryObject {
|
|
19
|
+
reserved 5;
|
|
20
|
+
|
|
19
21
|
string domain_object_guid = 1;
|
|
20
22
|
|
|
21
23
|
string distinguished_name = 2;
|
|
22
24
|
string object_sid = 3;
|
|
23
25
|
string object_guid = 4;
|
|
24
|
-
google.protobuf.StringValue domain_dns = 5;
|
|
25
26
|
google.protobuf.StringValue name = 6;
|
|
26
27
|
google.protobuf.StringValue object_class = 7;
|
|
27
28
|
optional google.protobuf.Timestamp when_created = 8;
|
|
@@ -113,6 +114,7 @@ message ActiveDirectoryGroup {
|
|
|
113
114
|
message ActiveDirectoryDomain {
|
|
114
115
|
google.protobuf.Int32Value minimum_password_age = 1; // in days
|
|
115
116
|
google.protobuf.Int32Value maximum_password_age = 2; // in days
|
|
117
|
+
google.protobuf.StringValue domain_dns = 3;
|
|
116
118
|
}
|
|
117
119
|
|
|
118
120
|
message ActiveDirectoryComputer {
|
|
@@ -215,6 +215,16 @@ message User {
|
|
|
215
215
|
google.protobuf.BoolValue local_account = 16;
|
|
216
216
|
}
|
|
217
217
|
|
|
218
|
+
/* Section element for user logons on Windows */
|
|
219
|
+
message WindowsUserLogons {
|
|
220
|
+
repeated UserLogonEntry entries = 1;
|
|
221
|
+
}
|
|
222
|
+
|
|
223
|
+
message UserLogonEntry {
|
|
224
|
+
google.protobuf.StringValue user_name = 1;
|
|
225
|
+
optional google.protobuf.Timestamp logon_time = 2;
|
|
226
|
+
}
|
|
227
|
+
|
|
218
228
|
/* Section element for USB controllers on Windows */
|
|
219
229
|
message WindowsUsbController {
|
|
220
230
|
repeated UsbController entries = 1;
|