@lansweeper/discovery-sensor-proto 2.51.0 → 2.53.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.51.0",
4
+ "version": "2.53.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": "27414c31e1aaa9bba7178c899fa8e00d527e5d65"
19
+ "gitHead": "1c5be69925c3a84c9ea1741097f2d6fed7071fcf"
20
20
  }
@@ -98,6 +98,9 @@ message Network {
98
98
  optional NetworkDhcp dhcp = 11;
99
99
  optional NetworkAppleTalk apple_talk = 12;
100
100
  repeated string ip_addresses = 13;
101
+ google.protobuf.StringValue hardware_address = 14;
102
+ optional NetworkIeee80211 ieee80211 = 15;
103
+ optional NetworkSmb smb = 16;
101
104
  }
102
105
 
103
106
  message NetworkProxies {
@@ -153,6 +156,7 @@ message NetworkEthernet {
153
156
  google.protobuf.StringValue mac_address = 1;
154
157
  google.protobuf.StringValue media_sub_type = 2;
155
158
  repeated string media_options = 3;
159
+ google.protobuf.StringValue maximum_transmission_unit = 4;
156
160
  }
157
161
 
158
162
  message NetworkDhcp {
@@ -173,6 +177,29 @@ message NetworkAppleTalk {
173
177
  google.protobuf.StringValue node_id = 5;
174
178
  }
175
179
 
180
+ message NetworkIeee80211 {
181
+ repeated string join_mode_fallback = 1;
182
+ google.protobuf.StringValue power_enabled = 2;
183
+ google.protobuf.StringValue remember_joined_networks = 3;
184
+ google.protobuf.StringValue version = 4;
185
+ }
186
+
187
+ message NetworkSmb {
188
+ google.protobuf.StringValue netbios_name = 1;
189
+ google.protobuf.StringValue workgroup = 2;
190
+ }
191
+
192
+ /* Section element for network locations on Mac */
193
+ message MacNetworkLocation {
194
+ repeated NetworkLocation entries = 1;
195
+ }
196
+
197
+ message NetworkLocation {
198
+ google.protobuf.StringValue name = 1;
199
+ google.protobuf.StringValue location_active = 2;
200
+ repeated Network location_services = 3;
201
+ }
202
+
176
203
  /* Section element for network volumes on Mac */
177
204
  message MacNetworkVolume {
178
205
  repeated NetworkVolume entries = 1;
@@ -772,3 +799,54 @@ message ThunderboltPort {
772
799
  google.protobuf.StringValue receptacle_id = 4;
773
800
  google.protobuf.StringValue receptacle_status = 5;
774
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
+ }