@lansweeper/data-platform-outbound-grpc 0.1.110 → 0.1.112
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 +79 -5
- package/gen-proto/outbound_pb.js +654 -27
- package/generated-go/outbound.pb.go +6485 -6304
- package/java.json +1 -1
- package/package.json +2 -2
- package/proto/outbound.proto +21 -6
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.112",
|
|
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": "2e16cdb4ad4e3b06093f3c621e720e26c66c0786"
|
|
13
13
|
}
|
package/proto/outbound.proto
CHANGED
|
@@ -269,8 +269,9 @@ message Computer {
|
|
|
269
269
|
repeated ComputerWindowsDisplayController windows_display_controller = 29;
|
|
270
270
|
repeated ComputerWindowsIdeController windows_ide_controller = 30;
|
|
271
271
|
repeated ComputerWindowsDiskPartition windows_disk_partition = 31;
|
|
272
|
-
repeated ComputerMacBluetooth mac_bluetooth = 35;
|
|
273
272
|
repeated ComputerMacWifiController mac_wifi_controller = 34;
|
|
273
|
+
repeated ComputerMacBluetooth mac_bluetooth = 35;
|
|
274
|
+
repeated ComputerMacNetworkLocation mac_network_location = 36;
|
|
274
275
|
|
|
275
276
|
|
|
276
277
|
// OS
|
|
@@ -953,7 +954,7 @@ message NetworkInterfaces {
|
|
|
953
954
|
}
|
|
954
955
|
|
|
955
956
|
message NetworkInterface {
|
|
956
|
-
string name = 1;
|
|
957
|
+
string name = 1; // note for macOS -> to Be mapped from BSD name or fallback to confirmed_interface_name in Network IPV6 model
|
|
957
958
|
string type = 2;
|
|
958
959
|
string sub_type = 3;
|
|
959
960
|
|
|
@@ -971,7 +972,7 @@ message NetworkInterface {
|
|
|
971
972
|
|
|
972
973
|
repeated string dns_server = 11;
|
|
973
974
|
optional string dns_host_name = 12;
|
|
974
|
-
optional string dns_domain_suffix_search_order = 13;
|
|
975
|
+
optional string dns_domain_suffix_search_order = 13; // to be mapped from Windows fields and from macOS NetworkDns.search_domains field
|
|
975
976
|
|
|
976
977
|
optional string service_name = 14;
|
|
977
978
|
optional string database_path = 15;
|
|
@@ -986,6 +987,9 @@ message NetworkInterface {
|
|
|
986
987
|
|
|
987
988
|
repeated string connected_devices = 23;
|
|
988
989
|
repeated string vlans = 24;
|
|
990
|
+
|
|
991
|
+
optional uint64 ipv6_prefix_length = 25; // macOS only for now
|
|
992
|
+
optional string network_signature = 26; // macOS only for now
|
|
989
993
|
}
|
|
990
994
|
|
|
991
995
|
/* Network IP address with IP and subnet */
|
|
@@ -1501,6 +1505,13 @@ message ComputerMacAccessibility {
|
|
|
1501
1505
|
optional string zoom_mode = 11;
|
|
1502
1506
|
}
|
|
1503
1507
|
|
|
1508
|
+
// Network Location Info from macOS, to be mapped from MacNetworkLocation. NetworkInterface message is shared.
|
|
1509
|
+
message ComputerMacNetworkLocation {
|
|
1510
|
+
optional string name = 1;
|
|
1511
|
+
optional bool location_active = 2;
|
|
1512
|
+
repeated NetworkInterface location_services = 3;
|
|
1513
|
+
}
|
|
1514
|
+
|
|
1504
1515
|
/**
|
|
1505
1516
|
* Sound Card for computers: Windows.WindowsSound, Unix.SoundCards (=PciCards)
|
|
1506
1517
|
**/
|
|
@@ -1751,6 +1762,8 @@ message Memory {
|
|
|
1751
1762
|
int64 installed_size = 1;
|
|
1752
1763
|
repeated PhysicalMemory physical_memory = 2;
|
|
1753
1764
|
repeated MemoryArray memory_array = 3;
|
|
1765
|
+
optional string global_ecc_state = 4; // macOS only
|
|
1766
|
+
optional bool is_memory_upgradable = 5; // macOS only
|
|
1754
1767
|
}
|
|
1755
1768
|
|
|
1756
1769
|
/** MemoryEntry **/
|
|
@@ -1765,11 +1778,11 @@ message PhysicalMemory
|
|
|
1765
1778
|
optional MappedValue form_factor= 6; // Windows, Linux
|
|
1766
1779
|
optional int32 interleave_data_depth= 7; // Windows
|
|
1767
1780
|
optional MappedValue interleave_position= 8; // Windows
|
|
1768
|
-
optional string manufacturer= 9; // Windows, Linux
|
|
1781
|
+
optional string manufacturer= 9; // Windows, Mac, Linux
|
|
1769
1782
|
optional string name= 10; // Mac
|
|
1770
|
-
optional string part_number= 11; // Windows
|
|
1783
|
+
optional string part_number= 11; // Windows, Mac
|
|
1771
1784
|
optional int32 position_in_row= 12; // Windows
|
|
1772
|
-
optional string serial_number= 13; // Windows, Linux
|
|
1785
|
+
optional string serial_number= 13; // Windows, Mac, Linux
|
|
1773
1786
|
optional string set= 14; // Linux
|
|
1774
1787
|
optional string sku= 15; // Windows
|
|
1775
1788
|
optional int32 speed= 16; // Windows, Linux, Mac
|
|
@@ -2617,6 +2630,8 @@ message Software {
|
|
|
2617
2630
|
optional string build = 14;
|
|
2618
2631
|
optional string arch = 20;
|
|
2619
2632
|
optional string lang = 21;
|
|
2633
|
+
optional string obtained_from = 22;
|
|
2634
|
+
repeated string signed_by = 23;
|
|
2620
2635
|
|
|
2621
2636
|
optional string cpe = 15;
|
|
2622
2637
|
|