@lansweeper/data-platform-outbound-grpc 0.1.111 → 0.1.113

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.110",
2
+ "version": "0.1.112",
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.111",
3
+ "version": "0.1.113",
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": "b6df66f63bac0c9fe8014f18acfca2e5cb6008bb"
12
+ "gitHead": "06e1040b071bce1d7738e35b29bfc7f71cce6c0a"
13
13
  }
@@ -272,6 +272,7 @@ message Computer {
272
272
  repeated ComputerMacWifiController mac_wifi_controller = 34;
273
273
  repeated ComputerMacBluetooth mac_bluetooth = 35;
274
274
  repeated ComputerMacNetworkLocation mac_network_location = 36;
275
+ optional ComputerMacSecureElements mac_secure_elements = 37;
275
276
 
276
277
 
277
278
  // OS
@@ -954,7 +955,7 @@ message NetworkInterfaces {
954
955
  }
955
956
 
956
957
  message NetworkInterface {
957
- string name = 1;
958
+ string name = 1; // note for macOS -> to Be mapped from BSD name or fallback to confirmed_interface_name in Network IPV6 model
958
959
  string type = 2;
959
960
  string sub_type = 3;
960
961
 
@@ -972,7 +973,7 @@ message NetworkInterface {
972
973
 
973
974
  repeated string dns_server = 11;
974
975
  optional string dns_host_name = 12;
975
- optional string dns_domain_suffix_search_order = 13;
976
+ optional string dns_domain_suffix_search_order = 13; // to be mapped from Windows fields and from macOS NetworkDns.search_domains field
976
977
 
977
978
  optional string service_name = 14;
978
979
  optional string database_path = 15;
@@ -987,6 +988,9 @@ message NetworkInterface {
987
988
 
988
989
  repeated string connected_devices = 23;
989
990
  repeated string vlans = 24;
991
+
992
+ optional uint64 ipv6_prefix_length = 25; // macOS only for now
993
+ optional string network_signature = 26; // macOS only for now
990
994
  }
991
995
 
992
996
  /* Network IP address with IP and subnet */
@@ -1502,6 +1506,23 @@ message ComputerMacAccessibility {
1502
1506
  optional string zoom_mode = 11;
1503
1507
  }
1504
1508
 
1509
+ // Apple Pay - Secure Elements - macOS Only
1510
+ message ComputerMacSecureElements {
1511
+ optional string controller_firmware = 1;
1512
+ optional string controller_hardware = 2;
1513
+ optional string controller_info = 3;
1514
+ optional string controller_middleware = 4;
1515
+ optional string secure_elements_device = 5;
1516
+ optional string secure_elements_firmware = 6;
1517
+ optional string secure_elements_hardware = 7;
1518
+ optional string secure_elements_id = 8;
1519
+ optional bool secure_elements_restricted_mode = 9;
1520
+ optional string secure_elements_info = 10;
1521
+ optional string secure_elements_os_version = 11;
1522
+ optional string secure_elements_platform_id = 12;
1523
+ optional bool secure_elements_production_signed = 13;
1524
+ }
1525
+
1505
1526
  // Network Location Info from macOS, to be mapped from MacNetworkLocation. NetworkInterface message is shared.
1506
1527
  message ComputerMacNetworkLocation {
1507
1528
  optional string name = 1;
@@ -1510,17 +1531,26 @@ message ComputerMacNetworkLocation {
1510
1531
  }
1511
1532
 
1512
1533
  /**
1513
- * Sound Card for computers: Windows.WindowsSound, Unix.SoundCards (=PciCards)
1534
+ * Sound Card for computers: Windows.WindowsSound, Unix.SoundCards (=PciCards), macOS (MacAudio)
1514
1535
  **/
1515
1536
  message SoundCard {
1516
- optional string caption = 1; // Windows, Linux(name)
1537
+ optional string caption = 1; // Windows, Linux(name), Mac (name)
1517
1538
  optional string device_id = 2; // Windows, Linux
1518
- optional string manufacturer = 3; // Windows, Linux
1539
+ optional string manufacturer = 3; // Windows, Linux, mac(coreaudio_device_manufacturer)
1519
1540
 
1520
1541
  optional string type = 4; // Linux
1521
1542
  optional string subsystem_name = 5; // Linux
1522
1543
  optional string subsystem_manufacturer = 6; // Linux
1523
1544
  optional string parent = 7; // Linux
1545
+
1546
+ optional string input_source = 8; // macOS
1547
+ optional string output_source = 9; // macOS
1548
+ optional string device_srate = 10; // macOS
1549
+ optional string device_trasport = 11; // macOS
1550
+
1551
+ optional bool default_input_device = 12; // macOS
1552
+ optional bool default_output_device = 13; // macOS
1553
+ optional bool default_system_device = 14; // macOS
1524
1554
  }
1525
1555
 
1526
1556
  /**
@@ -1759,6 +1789,8 @@ message Memory {
1759
1789
  int64 installed_size = 1;
1760
1790
  repeated PhysicalMemory physical_memory = 2;
1761
1791
  repeated MemoryArray memory_array = 3;
1792
+ optional string global_ecc_state = 4; // macOS only
1793
+ optional bool is_memory_upgradable = 5; // macOS only
1762
1794
  }
1763
1795
 
1764
1796
  /** MemoryEntry **/
@@ -1773,11 +1805,11 @@ message PhysicalMemory
1773
1805
  optional MappedValue form_factor= 6; // Windows, Linux
1774
1806
  optional int32 interleave_data_depth= 7; // Windows
1775
1807
  optional MappedValue interleave_position= 8; // Windows
1776
- optional string manufacturer= 9; // Windows, Linux
1808
+ optional string manufacturer= 9; // Windows, Mac, Linux
1777
1809
  optional string name= 10; // Mac
1778
- optional string part_number= 11; // Windows
1810
+ optional string part_number= 11; // Windows, Mac
1779
1811
  optional int32 position_in_row= 12; // Windows
1780
- optional string serial_number= 13; // Windows, Linux
1812
+ optional string serial_number= 13; // Windows, Mac, Linux
1781
1813
  optional string set= 14; // Linux
1782
1814
  optional string sku= 15; // Windows
1783
1815
  optional int32 speed= 16; // Windows, Linux, Mac
@@ -2625,6 +2657,8 @@ message Software {
2625
2657
  optional string build = 14;
2626
2658
  optional string arch = 20;
2627
2659
  optional string lang = 21;
2660
+ optional string obtained_from = 22;
2661
+ repeated string signed_by = 23;
2628
2662
 
2629
2663
  optional string cpe = 15;
2630
2664