@lansweeper/data-platform-outbound-grpc 0.1.104 → 0.1.106

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.103",
2
+ "version": "0.1.105",
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.104",
3
+ "version": "0.1.106",
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": "1c7b31a1c3325d9f7f84d1e4c2b987392cf15907"
12
+ "gitHead": "8e717ed2b7635a7d06dd446900e9ced0e7741412"
13
13
  }
@@ -268,6 +268,8 @@ 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;
272
+ repeated ComputerMacWifiController mac_wifi_controller = 34;
271
273
 
272
274
 
273
275
  // OS
@@ -1815,6 +1817,33 @@ message PcmciaController {
1815
1817
  optional string manufacturer = 6;
1816
1818
  }
1817
1819
 
1820
+
1821
+ // Bluetooth Card. Only macOS, to be mapped from MacBluetooth inbound model
1822
+ message ComputerMacBluetooth {
1823
+ optional string address = 1;
1824
+ optional string firmware_version = 2;
1825
+ optional bool discoverable = 3;
1826
+ optional string chip_set = 4;
1827
+ optional string product_id = 5;
1828
+ optional bool controller_turned_on = 6;
1829
+ optional string supported_services = 7;
1830
+ optional string transport = 8;
1831
+ optional string vendor_id = 9;
1832
+ repeated BluetoothDevice devices_connected = 10;
1833
+ repeated BluetoothDevice devices_not_connected = 11;
1834
+ }
1835
+
1836
+ message BluetoothDevice {
1837
+ optional string address = 1;
1838
+ optional string firmware_version = 2;
1839
+ optional string minor_type = 3;
1840
+ optional string product_id = 4;
1841
+ optional string rssi = 5;
1842
+ optional string services = 6;
1843
+ optional string vendor_id = 7;
1844
+ optional string name = 8;
1845
+ }
1846
+
1818
1847
  /**
1819
1848
  * PortConnector, only Windows atm.
1820
1849
  * WMI mappings at: https://learn.microsoft.com/en-us/windows/win32/cimwin32prov/win32-portconnector
@@ -2444,6 +2473,53 @@ message WindowsMonitorInfo {
2444
2473
  optional string device_id = 8;
2445
2474
  }
2446
2475
 
2476
+ // Section element for Wi-Fi (AirPort) info on Mac. To be mapper from MacWifi from inbound model
2477
+ message ComputerMacWifiController {
2478
+ repeated WiFiInterface airport_interfaces = 1;
2479
+ optional WiFiSoftware software_information = 2;
2480
+ }
2481
+
2482
+ message WiFiInterface {
2483
+ optional string name = 1;
2484
+ optional string airdrop_channel = 2;
2485
+ optional string airdrop_supported = 3;
2486
+ optional string auto_unlock_supported = 4;
2487
+ optional string card_type = 5;
2488
+ optional string country_code = 6;
2489
+ optional string firmware_version = 7;
2490
+ optional string locale = 8;
2491
+ optional string mac_address = 9;
2492
+ optional string status_information = 10;
2493
+ repeated string supported_channels = 11;
2494
+ optional string supported_phy_modes = 12;
2495
+ optional string wake_on_wireless_supported = 13;
2496
+ optional WiFiNetwork current_network = 14;
2497
+ repeated WiFiNetwork other_local_networks = 15;
2498
+ }
2499
+
2500
+ message WiFiNetwork {
2501
+ optional string name = 1;
2502
+ optional string network_bssid = 2;
2503
+ optional string network_channel = 3;
2504
+ optional string network_country_code = 4;
2505
+ optional string network_mcs_index = 5;
2506
+ optional string network_phy_mode = 6;
2507
+ optional string network_transmit_rate = 7;
2508
+ optional string network_type = 8;
2509
+ optional string security_mode = 9;
2510
+ optional string signal_noise = 10;
2511
+ }
2512
+
2513
+ message WiFiSoftware {
2514
+ optional string airport_utility_version = 1;
2515
+ optional string core_wlan_version = 2;
2516
+ optional string core_wlan_kit_version = 3;
2517
+ optional string diagnostics_version = 4;
2518
+ optional string io80211_family_version = 5;
2519
+ optional string menu_extra_version = 6;
2520
+ optional string system_information_version = 7;
2521
+ }
2522
+
2447
2523
  /**
2448
2524
  Antivirus software (that could be even missing from scanned SW list.
2449
2525
  */