@lansweeper/data-platform-outbound-grpc 0.1.120 → 0.1.121

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/java.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "0.1.119",
2
+ "version": "0.1.120",
3
3
  "package": "com.lansweeper.dp.outbound.v1",
4
4
  "service": true
5
5
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lansweeper/data-platform-outbound-grpc",
3
- "version": "0.1.120",
3
+ "version": "0.1.121",
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": "b977380281e9b3751ae134a8de986604223e3629"
12
+ "gitHead": "f63308f1effbcd06916970f626c886f68dc8a0f1"
13
13
  }
@@ -2084,7 +2084,7 @@ message TrustedPlatformModule {
2084
2084
  }
2085
2085
 
2086
2086
  /**
2087
- * ComputerConnectedUsbController, only Windows atm.
2087
+ * ComputerConnectedUsbController, Windows and macOS.
2088
2088
  * WMI mappings at: https://learn.microsoft.com/en-us/windows/win32/cimwin32prov/win32-usbcontroller
2089
2089
  */
2090
2090
  message ComputerConnectedUsbController {
@@ -2513,6 +2513,61 @@ message ComputerWindowsIdeController {
2513
2513
  optional string device_id = 2;
2514
2514
  optional string manufacturer = 3;
2515
2515
  optional MappedValue protocol_supported = 4;
2516
+
2517
+ oneof controller {
2518
+ MacUSBController mac_usb_controller = 5;
2519
+ MacThunderboltController mac_thunderbolt_controller = 6;
2520
+ }
2521
+ }
2522
+
2523
+ message MacUSBController {
2524
+ optional string name = 1;
2525
+ optional string host_controller_driver = 2;
2526
+ optional string pci_device_id = 3;
2527
+ optional string pci_revision_id = 4;
2528
+ optional string pci_vendor_id = 5;
2529
+ repeated MacUSBDevice devices = 6;
2530
+ }
2531
+
2532
+ message MacUSBDevice {
2533
+ optional string name = 1;
2534
+ optional string bcd_device_version = 2;
2535
+ optional bool built_in_device = 3;
2536
+ optional string bus_power_available = 4;
2537
+ optional string bus_power_used = 5;
2538
+ optional string device_speed = 6;
2539
+ optional string extra_current_used = 7;
2540
+ optional string location_id = 8;
2541
+ optional string manufacturer = 9;
2542
+ optional string product_id = 10;
2543
+ optional string serial_number = 11;
2544
+ optional string vendor_id = 12;
2545
+ repeated MacUSBDevice sub_devices = 13;
2546
+ }
2547
+
2548
+ message MacThunderboltController {
2549
+ optional string name = 1;
2550
+ optional string device_name = 2;
2551
+ optional string domain_uuid = 3;
2552
+ optional string route_string = 4;
2553
+ optional string switch_uid = 5;
2554
+ optional string switch_version = 6;
2555
+ optional string vendor_name = 7;
2556
+ repeated ThunderboltPort ports = 8;
2557
+ optional string device_id = 9;
2558
+ optional string device_revision = 10;
2559
+ optional string vendor_id = 11;
2560
+ }
2561
+
2562
+ message ThunderboltPort {
2563
+ optional string current_link_width = 1;
2564
+ optional string current_speed = 2;
2565
+ optional string link_status = 3;
2566
+ optional string receptacle_id = 4;
2567
+ optional string receptacle_status = 5;
2568
+ optional string cable_firmware_version = 6;
2569
+ optional string cable_serial_number = 7;
2570
+ optional string link_controller_firmware_version = 8;
2516
2571
  }
2517
2572
 
2518
2573
  /**