@lansweeper/discovery-sensor-proto 2.52.0 → 2.54.0
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/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lansweeper/discovery-sensor-proto",
|
|
3
3
|
"description": "Discovery Sensor proto",
|
|
4
|
-
"version": "2.
|
|
4
|
+
"version": "2.54.0",
|
|
5
5
|
"main": "gen-proto/index.js",
|
|
6
6
|
"types": "gen-proto/index.d.ts",
|
|
7
7
|
"license": "MIT",
|
|
@@ -16,5 +16,5 @@
|
|
|
16
16
|
"devDependencies": {
|
|
17
17
|
"@types/google-protobuf": "^3.15.5"
|
|
18
18
|
},
|
|
19
|
-
"gitHead": "
|
|
19
|
+
"gitHead": "0ce6e0b6b6e0f3b90d250a223e6800062ddc114c"
|
|
20
20
|
}
|
|
@@ -799,3 +799,121 @@ message ThunderboltPort {
|
|
|
799
799
|
google.protobuf.StringValue receptacle_id = 4;
|
|
800
800
|
google.protobuf.StringValue receptacle_status = 5;
|
|
801
801
|
}
|
|
802
|
+
|
|
803
|
+
/* Section element for Wi-Fi (AirPort) info on Mac */
|
|
804
|
+
message MacWiFi {
|
|
805
|
+
repeated WiFiController entries = 1;
|
|
806
|
+
}
|
|
807
|
+
|
|
808
|
+
message WiFiController {
|
|
809
|
+
repeated WiFiInterface airport_interfaces = 1;
|
|
810
|
+
optional WiFiSoftware software_information = 2;
|
|
811
|
+
}
|
|
812
|
+
|
|
813
|
+
message WiFiInterface {
|
|
814
|
+
google.protobuf.StringValue name = 1;
|
|
815
|
+
google.protobuf.StringValue airdrop_channel = 2;
|
|
816
|
+
google.protobuf.StringValue airdrop_supported = 3;
|
|
817
|
+
google.protobuf.StringValue auto_unlock_supported = 4;
|
|
818
|
+
google.protobuf.StringValue card_type = 5;
|
|
819
|
+
google.protobuf.StringValue country_code = 6;
|
|
820
|
+
google.protobuf.StringValue firmware_version = 7;
|
|
821
|
+
google.protobuf.StringValue locale = 8;
|
|
822
|
+
google.protobuf.StringValue mac_address = 9;
|
|
823
|
+
google.protobuf.StringValue status_information = 10;
|
|
824
|
+
repeated string supported_channels = 11;
|
|
825
|
+
google.protobuf.StringValue supported_phy_modes = 12;
|
|
826
|
+
google.protobuf.StringValue wake_on_wireless_supported = 13;
|
|
827
|
+
optional WiFiNetwork current_network = 14;
|
|
828
|
+
repeated WiFiNetwork other_local_networks = 15;
|
|
829
|
+
}
|
|
830
|
+
|
|
831
|
+
message WiFiNetwork {
|
|
832
|
+
google.protobuf.StringValue name = 1;
|
|
833
|
+
google.protobuf.StringValue network_bssid = 2;
|
|
834
|
+
google.protobuf.StringValue network_channel = 3;
|
|
835
|
+
google.protobuf.StringValue network_country_code = 4;
|
|
836
|
+
google.protobuf.StringValue network_mcs_index = 5;
|
|
837
|
+
google.protobuf.StringValue network_phy_mode = 6;
|
|
838
|
+
google.protobuf.StringValue network_transmit_rate = 7;
|
|
839
|
+
google.protobuf.StringValue network_type = 8;
|
|
840
|
+
google.protobuf.StringValue security_mode = 9;
|
|
841
|
+
google.protobuf.StringValue signal_noise = 10;
|
|
842
|
+
}
|
|
843
|
+
|
|
844
|
+
message WiFiSoftware {
|
|
845
|
+
google.protobuf.StringValue airport_utility_version = 1;
|
|
846
|
+
google.protobuf.StringValue core_wlan_version = 2;
|
|
847
|
+
google.protobuf.StringValue core_wlan_kit_version = 3;
|
|
848
|
+
google.protobuf.StringValue diagnostics_version = 4;
|
|
849
|
+
google.protobuf.StringValue io80211_family_version = 5;
|
|
850
|
+
google.protobuf.StringValue menu_extra_version = 6;
|
|
851
|
+
google.protobuf.StringValue system_information_version = 7;
|
|
852
|
+
}
|
|
853
|
+
|
|
854
|
+
/* Section element for software extensions info on Mac */
|
|
855
|
+
message MacExtension {
|
|
856
|
+
repeated Extension entries = 1;
|
|
857
|
+
}
|
|
858
|
+
|
|
859
|
+
message Extension {
|
|
860
|
+
google.protobuf.StringValue name = 1;
|
|
861
|
+
google.protobuf.StringValue has64_bit_intel_code = 2;
|
|
862
|
+
repeated string architectures = 3;
|
|
863
|
+
google.protobuf.StringValue bundle_id = 4;
|
|
864
|
+
google.protobuf.StringValue dependencies = 5;
|
|
865
|
+
repeated ExtensionErrorType dependency_errors = 6;
|
|
866
|
+
google.protobuf.StringValue info = 7;
|
|
867
|
+
google.protobuf.StringValue last_modified = 8;
|
|
868
|
+
google.protobuf.StringValue load_address = 9;
|
|
869
|
+
google.protobuf.StringValue loadable = 10;
|
|
870
|
+
google.protobuf.StringValue loaded = 11;
|
|
871
|
+
google.protobuf.StringValue notarized = 12;
|
|
872
|
+
google.protobuf.StringValue obtained_from = 13;
|
|
873
|
+
google.protobuf.StringValue path_location = 14;
|
|
874
|
+
google.protobuf.StringValue runtime_environment = 15;
|
|
875
|
+
google.protobuf.StringValue signed_by = 16;
|
|
876
|
+
google.protobuf.StringValue signing_errors = 17;
|
|
877
|
+
repeated ExtensionErrorType validity_errors = 18;
|
|
878
|
+
google.protobuf.StringValue version = 19;
|
|
879
|
+
google.protobuf.StringValue version_kext = 20;
|
|
880
|
+
}
|
|
881
|
+
|
|
882
|
+
message ExtensionErrorType {
|
|
883
|
+
google.protobuf.StringValue error_type = 1;
|
|
884
|
+
repeated ExtensionError errors = 2;
|
|
885
|
+
}
|
|
886
|
+
|
|
887
|
+
message ExtensionError {
|
|
888
|
+
google.protobuf.StringValue error_description = 1;
|
|
889
|
+
repeated string values = 2;
|
|
890
|
+
}
|
|
891
|
+
|
|
892
|
+
/* Section element for software frameworks info on Mac */
|
|
893
|
+
message MacFramework {
|
|
894
|
+
repeated Framework entries = 1;
|
|
895
|
+
}
|
|
896
|
+
|
|
897
|
+
message Framework {
|
|
898
|
+
google.protobuf.StringValue name = 1;
|
|
899
|
+
google.protobuf.StringValue arch_kind = 2;
|
|
900
|
+
google.protobuf.StringValue info = 3;
|
|
901
|
+
google.protobuf.StringValue last_modified = 4;
|
|
902
|
+
google.protobuf.StringValue obtained_from = 5;
|
|
903
|
+
google.protobuf.StringValue path_location = 6;
|
|
904
|
+
google.protobuf.StringValue private_framework = 7;
|
|
905
|
+
repeated string signed_by = 8;
|
|
906
|
+
google.protobuf.StringValue version = 9;
|
|
907
|
+
}
|
|
908
|
+
|
|
909
|
+
/* Section element for software install history info on Mac */
|
|
910
|
+
message MacInstallHistory {
|
|
911
|
+
repeated InstallHistory entries = 1;
|
|
912
|
+
}
|
|
913
|
+
|
|
914
|
+
message InstallHistory {
|
|
915
|
+
google.protobuf.StringValue name = 1;
|
|
916
|
+
google.protobuf.StringValue install_date = 2;
|
|
917
|
+
google.protobuf.StringValue install_version = 3;
|
|
918
|
+
google.protobuf.StringValue package_source = 4;
|
|
919
|
+
}
|