@lansweeper/discovery-sensor-proto 2.65.0 → 2.66.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/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.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": "94a325b7e98df50ab5a04b8b1332c3727a65da55"
|
|
20
20
|
}
|
|
@@ -9,7 +9,6 @@ option go_package = "./generated-go";
|
|
|
9
9
|
|
|
10
10
|
import "google/protobuf/timestamp.proto";
|
|
11
11
|
import "google/protobuf/wrappers.proto";
|
|
12
|
-
|
|
13
12
|
import "import/discovery_common.proto";
|
|
14
13
|
|
|
15
14
|
enum WindowsVersion {
|
|
@@ -216,6 +215,16 @@ message User {
|
|
|
216
215
|
google.protobuf.BoolValue local_account = 16;
|
|
217
216
|
}
|
|
218
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
|
+
|
|
219
228
|
/* Section element for USB controllers on Windows */
|
|
220
229
|
message WindowsUsbController {
|
|
221
230
|
repeated UsbController entries = 1;
|