@lansweeper/discovery-sensor-proto 2.51.0 → 2.52.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.52.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": "c69939087da4e63fd1680ea3db2f16245d27babb"
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;