@lansweeper/data-platform-outbound-grpc 0.1.62 → 0.1.63

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/java.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "0.1.61",
2
+ "version": "0.1.62",
3
3
  "package": "com.lansweeper.dp.outbound.v1",
4
4
  "service": true
5
5
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lansweeper/data-platform-outbound-grpc",
3
- "version": "0.1.62",
3
+ "version": "0.1.63",
4
4
  "description": "Data Platform Outbound gRPC",
5
5
  "main": "gen-proto/index.js",
6
6
  "types": "gen-proto/index.d.ts",
@@ -9,5 +9,5 @@
9
9
  "@grpc/grpc-js": "^1.5.1",
10
10
  "google-protobuf": "^3.17.0"
11
11
  },
12
- "gitHead": "7053eb5aed2500682407261564571685d50de7e5"
12
+ "gitHead": "252a7ed4868e9d4ba5f3768c2f473dcce24e7d9f"
13
13
  }
@@ -188,6 +188,7 @@ message Asset {
188
188
  repeated UserAccount user = 69;
189
189
  repeated UserGroup user_group = 70;
190
190
  repeated UserInGroup user_in_group = 71;
191
+ optional InternetExplorer internet_explorer = 72; // specific to IE on Windows
191
192
 
192
193
  optional OtModule ot_module = 16; // OT specific module info when asset type is 'OT'
193
194
 
@@ -398,6 +399,54 @@ message UserInGroup {
398
399
  optional bool is_admin_group = 5;
399
400
  }
400
401
 
402
+ /**
403
+ * IE on Windows. Very specific.
404
+ * From sections: WindowsActiveX, WindowsInternetExplorerBarInfo,
405
+ * WindowsInternetExplorerBrowserObjectInfo, WindowsInternetExplorerExtensionInfo.
406
+ */
407
+ message InternetExplorer {
408
+ // from WindowsActiveX
409
+ message ActiveX {
410
+ optional string control = 1;
411
+ optional string code_base = 2;
412
+ optional string info = 3;
413
+ optional string osd = 4;
414
+ }
415
+
416
+ // InternetExplorerExtensionInfo
417
+ message Extension {
418
+ optional string control = 1;
419
+ optional string button_text = 2;
420
+ optional string cls_id = 3;
421
+ optional string default_visible = 4;
422
+ optional string exec = 5;
423
+ optional string hot_icon = 6;
424
+ optional string icon = 7;
425
+ optional string menu_text = 8;
426
+ optional string tooltip = 9;
427
+ }
428
+
429
+ // from InternetExplorerBrowserObjectInfo
430
+ message BrowserObject {
431
+ string control = 1;
432
+ }
433
+
434
+ // from WindowsInternetExplorerBarInfo
435
+ message BarInfo {
436
+ string control = 1;
437
+ }
438
+
439
+
440
+ repeated ActiveX active_x = 1;
441
+ repeated BrowserObject bar = 2;
442
+ repeated BrowserObject browser_object = 3;
443
+ repeated Extension extension = 4;
444
+ }
445
+
446
+
447
+ /**
448
+ * General section for any HW, normalized and with raw data.
449
+ */
401
450
  message HardwareInfo {
402
451
  optional int64 type_id = 1;
403
452