@lansweeper/discovery-sensor-proto 2.76.0 → 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.
|
|
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": "
|
|
19
|
+
"gitHead": "4d5a9d2bee666a4800a37b991759f233081ab87a"
|
|
20
20
|
}
|
|
@@ -659,10 +659,10 @@ 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
|
-
repeated Office365AssignedPlan assigned_plans = 16;
|
|
665
|
+
repeated Office365AssignedPlan assigned_plans = 16 [deprecated=true];
|
|
666
666
|
repeated Office365Contact contacts = 17;
|
|
667
667
|
repeated Office365Mailbox mailboxes = 18;
|
|
668
668
|
}
|
|
@@ -718,8 +718,10 @@ message Office365Group {
|
|
|
718
718
|
google.protobuf.StringValue mail = 6;
|
|
719
719
|
google.protobuf.StringValue mail_nickname = 7;
|
|
720
720
|
google.protobuf.StringValue proxy_addresses = 8;
|
|
721
|
-
repeated Office365User users = 9;
|
|
721
|
+
repeated Office365User users = 9 [deprecated=true];
|
|
722
722
|
google.protobuf.StringValue type = 10;
|
|
723
|
+
repeated string user_ids = 11 [deprecated=true];
|
|
724
|
+
string tenant_id = 12;
|
|
723
725
|
}
|
|
724
726
|
|
|
725
727
|
message Office365License {
|
|
@@ -731,9 +733,10 @@ message Office365License {
|
|
|
731
733
|
google.protobuf.StringValue sku_part_number = 6;
|
|
732
734
|
google.protobuf.StringValue applies_to = 7;
|
|
733
735
|
google.protobuf.StringValue capability_status = 8;
|
|
734
|
-
repeated Office365User users = 9;
|
|
736
|
+
repeated Office365User users = 9 [deprecated=true];
|
|
735
737
|
repeated Office365ServicePlan service_plans = 10;
|
|
736
738
|
google.protobuf.StringValue name = 11;
|
|
739
|
+
repeated string user_ids = 12;
|
|
737
740
|
}
|
|
738
741
|
|
|
739
742
|
message Office365ServicePlan {
|
|
@@ -785,4 +788,6 @@ message Office365User {
|
|
|
785
788
|
repeated Office365AssignedPlan assigned_plans = 40;
|
|
786
789
|
google.protobuf.StringValue name = 41;
|
|
787
790
|
google.protobuf.StringValue type = 42;
|
|
791
|
+
string tenant_id = 43;
|
|
792
|
+
repeated string group_ids = 44;
|
|
788
793
|
}
|