@lansweeper/discovery-sensor-proto 2.54.0 → 2.55.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.54.0",
4
+ "version": "2.55.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": "0ce6e0b6b6e0f3b90d250a223e6800062ddc114c"
19
+ "gitHead": "9d03fa18a594d2de3f5d680746fe1780c68db775"
20
20
  }
@@ -917,3 +917,53 @@ message InstallHistory {
917
917
  google.protobuf.StringValue install_version = 3;
918
918
  google.protobuf.StringValue package_source = 4;
919
919
  }
920
+
921
+ /* Section element for preference panes info on Mac */
922
+ message MacPreferencePanes {
923
+ repeated PreferencePane entries = 1;
924
+ }
925
+
926
+ message PreferencePane {
927
+ google.protobuf.StringValue name = 1;
928
+ google.protobuf.StringValue bundle_path_location = 2;
929
+ google.protobuf.StringValue identifier = 3;
930
+ google.protobuf.StringValue is_visible = 4;
931
+ google.protobuf.StringValue kind = 5;
932
+ google.protobuf.StringValue supported_by = 6;
933
+ google.protobuf.StringValue version = 7;
934
+ }
935
+
936
+ /* Section element for language and region info on Mac */
937
+ message MacRegional {
938
+ optional RegionalUserSettings user_settings = 1;
939
+ optional RegionalSystemSettings system_settings = 2;
940
+ optional RegionalRecoveryOsSettings recovery_os_settings = 3;
941
+ }
942
+
943
+ message RegionalUserSettings {
944
+ repeated string linguistic_data_assets_requested = 1;
945
+ google.protobuf.StringValue user_assistant_language = 2;
946
+ google.protobuf.StringValue user_assistant_voice_language = 3;
947
+ google.protobuf.StringValue user_calendar = 4;
948
+ google.protobuf.StringValue user_country_code = 5;
949
+ google.protobuf.StringValue user_current_input_source = 6;
950
+ google.protobuf.StringValue user_language_code = 7;
951
+ google.protobuf.StringValue user_locale = 8;
952
+ repeated string user_preferred_interface_languages = 9;
953
+ google.protobuf.StringValue user_temperature_unit = 10;
954
+ google.protobuf.StringValue user_uses_metric_system = 11;
955
+ }
956
+
957
+ message RegionalSystemSettings {
958
+ google.protobuf.StringValue system_country = 1;
959
+ repeated string system_interface_languages = 2;
960
+ repeated string system_languages = 3;
961
+ google.protobuf.StringValue system_locale = 4;
962
+ google.protobuf.StringValue system_text_direction = 5;
963
+ google.protobuf.StringValue system_uses_metric_system = 6;
964
+ }
965
+
966
+ message RegionalRecoveryOsSettings {
967
+ google.protobuf.StringValue boot_keyboard_code = 1;
968
+ google.protobuf.StringValue boot_locale = 2;
969
+ }
@@ -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 {