@lansweeper/data-platform-outbound-grpc 0.1.105 → 0.1.107

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.104",
2
+ "version": "0.1.106",
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.105",
3
+ "version": "0.1.107",
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": "7df057668a97fe191d183e82763d957e245e4126"
12
+ "gitHead": "41b6bc123beef65121044b96cc32bbb9bf75bf8a"
13
13
  }
@@ -268,6 +268,7 @@ message Computer {
268
268
  repeated ComputerWindowsDisplayController windows_display_controller = 29;
269
269
  repeated ComputerWindowsIdeController windows_ide_controller = 30;
270
270
  repeated ComputerWindowsDiskPartition windows_disk_partition = 31;
271
+ repeated ComputerMacBluetooth mac_bluetooth = 35;
271
272
  repeated ComputerMacWifiController mac_wifi_controller = 34;
272
273
 
273
274
 
@@ -1354,6 +1355,12 @@ message Driver {
1354
1355
  WindowsPnpSignedDriver win_pnp = 2;
1355
1356
  WindowsPrinterDriver win_printer = 3;
1356
1357
  MacOsKernelExtension mac_kernel_extension = 4;
1358
+ MacPrinterSoftwareItem mac_image_capture_devices = 5;
1359
+ MacPrinterSoftwareItem mac_image_capture_support = 6;
1360
+ MacPrinterSoftwareItem mac_library_extensions = 7;
1361
+ MacPrinterSoftwareItem mac_ppds = 8;
1362
+ MacPrinterSoftwareItem mac_printers = 9;
1363
+ MacPrinterSoftwareItem mac_system_library_extensions = 10;
1357
1364
  }
1358
1365
 
1359
1366
  optional string name = 100;
@@ -1816,6 +1823,33 @@ message PcmciaController {
1816
1823
  optional string manufacturer = 6;
1817
1824
  }
1818
1825
 
1826
+
1827
+ // Bluetooth Card. Only macOS, to be mapped from MacBluetooth inbound model
1828
+ message ComputerMacBluetooth {
1829
+ optional string address = 1;
1830
+ optional string firmware_version = 2;
1831
+ optional bool discoverable = 3;
1832
+ optional string chip_set = 4;
1833
+ optional string product_id = 5;
1834
+ optional bool controller_turned_on = 6;
1835
+ optional string supported_services = 7;
1836
+ optional string transport = 8;
1837
+ optional string vendor_id = 9;
1838
+ repeated BluetoothDevice devices_connected = 10;
1839
+ repeated BluetoothDevice devices_not_connected = 11;
1840
+ }
1841
+
1842
+ message BluetoothDevice {
1843
+ optional string address = 1;
1844
+ optional string firmware_version = 2;
1845
+ optional string minor_type = 3;
1846
+ optional string product_id = 4;
1847
+ optional string rssi = 5;
1848
+ optional string services = 6;
1849
+ optional string vendor_id = 7;
1850
+ optional string name = 8;
1851
+ }
1852
+
1819
1853
  /**
1820
1854
  * PortConnector, only Windows atm.
1821
1855
  * WMI mappings at: https://learn.microsoft.com/en-us/windows/win32/cimwin32prov/win32-portconnector
@@ -2394,6 +2428,12 @@ message ComputerMacOsFramework {
2394
2428
  optional string version = 9;
2395
2429
  }
2396
2430
 
2431
+ // macOS Printer Software. To be mapped from MacPrinterSoftware
2432
+ message MacPrinterSoftwareItem {
2433
+ optional string info_path = 1;
2434
+ optional string info_version = 2;
2435
+ }
2436
+
2397
2437
  /**
2398
2438
  * A Mapped value is a numeric field that can optionally have a text looked up value.
2399
2439
  * Typical in WMI fields.