@lansweeper/data-platform-outbound-grpc 0.1.59 → 0.1.61
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/CHANGELOG.md +16 -0
- package/gen-proto/image.json +1 -1
- package/gen-proto/outbound_pb.d.ts +473 -0
- package/gen-proto/outbound_pb.js +3799 -1
- package/generated-go/outbound.pb.go +6311 -5202
- package/java.json +1 -1
- package/package.json +2 -2
- package/proto/outbound.proto +103 -0
package/java.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lansweeper/data-platform-outbound-grpc",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.61",
|
|
4
4
|
"description": "Data Platform Outbound gRPC",
|
|
5
5
|
"main": "gen-proto/index.js",
|
|
6
6
|
"types": "gen-proto/index.d.ts",
|
|
@@ -9,5 +9,5 @@
|
|
|
9
9
|
"@grpc/grpc-js": "^1.5.1",
|
|
10
10
|
"google-protobuf": "^3.17.0"
|
|
11
11
|
},
|
|
12
|
-
"gitHead": "
|
|
12
|
+
"gitHead": "436c28a539b7510f0869be83cfe15c5104197b86"
|
|
13
13
|
}
|
package/proto/outbound.proto
CHANGED
|
@@ -171,6 +171,12 @@ message Asset {
|
|
|
171
171
|
repeated ComputerConnectedModem modem = 60;
|
|
172
172
|
repeated ComputerConnectedPrinter printer = 61;
|
|
173
173
|
repeated ComputerConnectedTapeDrive tape_drive = 62;
|
|
174
|
+
repeated ComputerWindowsDesktop windows_desktop = 63;
|
|
175
|
+
repeated ComputerWindowsDisplay windows_display = 64;
|
|
176
|
+
repeated ComputerWindowsDisplayController windows_display_controller = 65;
|
|
177
|
+
repeated ComputerWindowsNetworkClient windows_network_client = 66;
|
|
178
|
+
repeated ComputerWindowsIdeController windows_ide_controller = 67;
|
|
179
|
+
repeated ComputerWindowsDiskPartition windows_disk_partition = 68;
|
|
174
180
|
|
|
175
181
|
repeated AutoRunCommand auto_run_command = 34;
|
|
176
182
|
optional BootConfig boot_config = 35;
|
|
@@ -1374,6 +1380,103 @@ message ComputerConnectedTapeDrive {
|
|
|
1374
1380
|
optional int32 padding = 15;
|
|
1375
1381
|
}
|
|
1376
1382
|
|
|
1383
|
+
/**
|
|
1384
|
+
* Computer, Windows only.
|
|
1385
|
+
*/
|
|
1386
|
+
message ComputerWindowsDesktop {
|
|
1387
|
+
optional int32 border_width = 1;
|
|
1388
|
+
optional bool cool_switch = 2;
|
|
1389
|
+
optional int32 cursor_blink_rate = 3;
|
|
1390
|
+
optional bool drag_full_windows = 4;
|
|
1391
|
+
optional int32 grid_granularity = 5;
|
|
1392
|
+
optional int32 icon_spacing = 6;
|
|
1393
|
+
optional string icon_title_facename = 7;
|
|
1394
|
+
optional int32 icon_title_size = 8;
|
|
1395
|
+
optional bool icon_title_wrap = 9;
|
|
1396
|
+
optional string name = 10;
|
|
1397
|
+
optional string pattern = 11;
|
|
1398
|
+
optional bool screensaver_active = 12;
|
|
1399
|
+
optional string screensaver_executable = 13;
|
|
1400
|
+
optional bool screensaver_secure = 14;
|
|
1401
|
+
optional int32 screensavertimeout = 15;
|
|
1402
|
+
optional string wallpaper = 16;
|
|
1403
|
+
optional bool wallpaper_stretched = 17;
|
|
1404
|
+
optional bool wallpaper_tiled = 18;
|
|
1405
|
+
}
|
|
1406
|
+
|
|
1407
|
+
/**
|
|
1408
|
+
* Computer, Windows only: from WindowsDisplayConfig.
|
|
1409
|
+
*/
|
|
1410
|
+
message ComputerWindowsDisplay {
|
|
1411
|
+
optional int32 bits_per_pel = 1;
|
|
1412
|
+
optional string caption = 2;
|
|
1413
|
+
optional string device_name = 3;
|
|
1414
|
+
optional int32 display_flags = 4;
|
|
1415
|
+
optional int32 display_frequency = 5;
|
|
1416
|
+
optional string driver_version = 6;
|
|
1417
|
+
optional int32 log_pixels = 7;
|
|
1418
|
+
optional int32 pels_height = 8;
|
|
1419
|
+
optional int32 pels_width = 9;
|
|
1420
|
+
optional int32 specification_version = 10;
|
|
1421
|
+
}
|
|
1422
|
+
|
|
1423
|
+
|
|
1424
|
+
/**
|
|
1425
|
+
* Computer, Windows only: from WindowsDisplayControllerConfig.
|
|
1426
|
+
*/
|
|
1427
|
+
message ComputerWindowsDisplayController {
|
|
1428
|
+
optional int32 bits_per_pixel = 1;
|
|
1429
|
+
optional string caption = 2;
|
|
1430
|
+
optional int32 color_planes = 3;
|
|
1431
|
+
optional int32 device_entries_in_a_color_table = 4;
|
|
1432
|
+
optional int32 device_specific_pens = 5;
|
|
1433
|
+
optional int32 horizontal_resolution = 6;
|
|
1434
|
+
optional string name = 7;
|
|
1435
|
+
optional int32 refresh_rate = 8;
|
|
1436
|
+
optional int32 vertical_resolution = 9;
|
|
1437
|
+
optional string video_mode = 10;
|
|
1438
|
+
}
|
|
1439
|
+
|
|
1440
|
+
/**
|
|
1441
|
+
* Computer Windows only: from WindowsNetworkClient.
|
|
1442
|
+
*/
|
|
1443
|
+
message ComputerWindowsNetworkClient {
|
|
1444
|
+
optional string caption = 1;
|
|
1445
|
+
optional string description = 2;
|
|
1446
|
+
optional string manufacturer = 3;
|
|
1447
|
+
optional string name = 4;
|
|
1448
|
+
}
|
|
1449
|
+
|
|
1450
|
+
|
|
1451
|
+
/**
|
|
1452
|
+
* Computer Windows only: from WindowsIdeController.
|
|
1453
|
+
* WMI mappings from: https://learn.microsoft.com/en-us/windows/win32/cimwin32prov/win32-idecontroller
|
|
1454
|
+
*/
|
|
1455
|
+
message ComputerWindowsIdeController {
|
|
1456
|
+
optional string caption = 1;
|
|
1457
|
+
optional string device_id = 2;
|
|
1458
|
+
optional string manufacturer = 3;
|
|
1459
|
+
repeated MappedValue protocol_supported = 4;
|
|
1460
|
+
}
|
|
1461
|
+
|
|
1462
|
+
/**
|
|
1463
|
+
* Computer Windows only: from WindowsDiskPartition.
|
|
1464
|
+
* As per spec: https://learn.microsoft.com/en-us/windows/win32/cimwin32prov/win32-diskpartition
|
|
1465
|
+
*/
|
|
1466
|
+
message ComputerWindowsDiskPartition {
|
|
1467
|
+
optional int64 block_size = 1;
|
|
1468
|
+
optional bool bootable = 2;
|
|
1469
|
+
optional bool boot_partition = 3;
|
|
1470
|
+
optional string device_id = 4;
|
|
1471
|
+
optional int32 disk_index = 5;
|
|
1472
|
+
optional int32 index = 6;
|
|
1473
|
+
optional int64 number_of_blocks = 7;
|
|
1474
|
+
optional bool primary_partition = 8;
|
|
1475
|
+
optional int64 size = 9;
|
|
1476
|
+
optional int64 starting_offset = 10;
|
|
1477
|
+
optional string type = 11;
|
|
1478
|
+
}
|
|
1479
|
+
|
|
1377
1480
|
|
|
1378
1481
|
/**
|
|
1379
1482
|
* PortableBattery, only Windows atm.
|