@lansweeper/discovery-sensor-proto 2.76.1 → 2.76.2

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.76.1",
4
+ "version": "2.76.2",
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": "6410410f42563dbeccb3fda5e8a45a3a5c7e278e"
19
+ "gitHead": "4d5a9d2bee666a4800a37b991759f233081ab87a"
20
20
  }
@@ -659,8 +659,8 @@ message Office365Organization {
659
659
  optional google.protobuf.Timestamp company_last_dir_sync_time = 10;
660
660
  google.protobuf.BoolValue dir_sync_enabled = 11;
661
661
  repeated Office365Domain domains = 12;
662
- repeated Office365User users = 13;
663
- repeated Office365Group groups = 14;
662
+ repeated Office365User users = 13 [deprecated=true];
663
+ repeated Office365Group groups = 14 [deprecated=true];
664
664
  repeated Office365License licenses = 15;
665
665
  repeated Office365AssignedPlan assigned_plans = 16 [deprecated=true];
666
666
  repeated Office365Contact contacts = 17;
@@ -720,7 +720,8 @@ message Office365Group {
720
720
  google.protobuf.StringValue proxy_addresses = 8;
721
721
  repeated Office365User users = 9 [deprecated=true];
722
722
  google.protobuf.StringValue type = 10;
723
- repeated string user_ids = 11;
723
+ repeated string user_ids = 11 [deprecated=true];
724
+ string tenant_id = 12;
724
725
  }
725
726
 
726
727
  message Office365License {
@@ -787,4 +788,6 @@ message Office365User {
787
788
  repeated Office365AssignedPlan assigned_plans = 40;
788
789
  google.protobuf.StringValue name = 41;
789
790
  google.protobuf.StringValue type = 42;
791
+ string tenant_id = 43;
792
+ repeated string group_ids = 44;
790
793
  }