@lansweeper/discovery-sensor-proto 2.53.0 → 2.54.1
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.1",
|
|
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": "e637925f90722e4c94d84414298ae1fa0175337a"
|
|
20
20
|
}
|
|
@@ -850,3 +850,70 @@ message WiFiSoftware {
|
|
|
850
850
|
google.protobuf.StringValue menu_extra_version = 6;
|
|
851
851
|
google.protobuf.StringValue system_information_version = 7;
|
|
852
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
|
+
}
|
|
@@ -89,22 +89,22 @@ message SnmpCustomOid {
|
|
|
89
89
|
}
|
|
90
90
|
|
|
91
91
|
message SnmpInterfaceInfo {
|
|
92
|
-
google.protobuf.StringValue index= 1;
|
|
93
|
-
google.protobuf.StringValue description= 2;
|
|
94
|
-
google.protobuf.StringValue name= 3;
|
|
95
|
-
google.protobuf.StringValue alias= 4;
|
|
96
|
-
google.protobuf.StringValue type= 5;
|
|
97
|
-
google.protobuf.StringValue mtu= 6;
|
|
98
|
-
google.protobuf.StringValue speed= 7;
|
|
99
|
-
google.protobuf.StringValue high_speed= 8;
|
|
100
|
-
google.protobuf.StringValue phys_address= 9;
|
|
101
|
-
google.protobuf.StringValue admin_status= 10;
|
|
102
|
-
google.protobuf.StringValue oper_status= 11;
|
|
103
|
-
google.protobuf.StringValue default_gateway= 12;
|
|
104
|
-
google.protobuf.StringValue ip_address= 13;
|
|
105
|
-
google.protobuf.StringValue mask= 14;
|
|
106
|
-
repeated string connected_devices= 15;
|
|
107
|
-
repeated string vlans= 16;
|
|
92
|
+
google.protobuf.StringValue index = 1;
|
|
93
|
+
google.protobuf.StringValue description = 2;
|
|
94
|
+
google.protobuf.StringValue name = 3;
|
|
95
|
+
google.protobuf.StringValue alias = 4;
|
|
96
|
+
google.protobuf.StringValue type = 5; // As defined in https://www.iana.org/assignments/ianaiftype-mib/ianaiftype-mib
|
|
97
|
+
google.protobuf.StringValue mtu = 6;
|
|
98
|
+
google.protobuf.StringValue speed = 7;
|
|
99
|
+
google.protobuf.StringValue high_speed = 8;
|
|
100
|
+
google.protobuf.StringValue phys_address = 9;
|
|
101
|
+
google.protobuf.StringValue admin_status = 10;
|
|
102
|
+
google.protobuf.StringValue oper_status = 11;
|
|
103
|
+
google.protobuf.StringValue default_gateway = 12;
|
|
104
|
+
google.protobuf.StringValue ip_address = 13;
|
|
105
|
+
google.protobuf.StringValue mask = 14;
|
|
106
|
+
repeated string connected_devices = 15;
|
|
107
|
+
repeated string vlans = 16;
|
|
108
108
|
}
|
|
109
109
|
|
|
110
110
|
message SnmpPrinterInfo {
|