@lansweeper/data-platform-outbound-grpc 0.3.30 → 0.3.31
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/CHANGELOG.md +8 -0
- package/gen-proto/image.json +1 -1
- package/gen-proto/outbound_pb.d.ts +43 -0
- package/gen-proto/outbound_pb.js +388 -3
- package/generated-go/outbound.pb.go +482 -337
- package/java.json +1 -1
- package/model/pom.xml +1 -1
- package/model/src/main/proto/outbound.proto +11 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/Office365AssignedLicense$1.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/Office365AssignedLicense$Builder.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/Office365AssignedLicense.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/Office365AssignedLicenseOrBuilder.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/Office365AssignedPlan$1.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/Office365AssignedPlan$Builder.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/Office365AssignedPlan$UsersKeysDefaultEntryHolder.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/Office365AssignedPlan.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/Office365AssignedPlanOrBuilder.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/Office365Organization$1.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/Office365Organization$AssignedPlansDefaultEntryHolder.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/Office365Organization$Builder$AssignedPlansConverter.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/Office365Organization$Builder.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/Office365Organization.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/Office365OrganizationOrBuilder.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/Outbound.class +0 -0
- package/model/target/classes/outbound.proto +11 -0
- package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/Office365AssignedLicense.java +1086 -0
- package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/Office365AssignedLicenseOrBuilder.java +70 -0
- package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/Office365AssignedPlan.java +272 -0
- package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/Office365AssignedPlanOrBuilder.java +24 -0
- package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/Office365Organization.java +351 -0
- package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/Office365OrganizationOrBuilder.java +24 -0
- package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/Outbound.java +200 -181
- package/model/target/maven-archiver/pom.properties +2 -2
- package/model/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst +4 -0
- package/model/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst +2 -0
- package/model/target/{outbound-model-0.3.29-sources.jar → outbound-model-0.3.30-sources.jar} +0 -0
- package/model/target/{outbound-model-0.3.29.jar → outbound-model-0.3.30.jar} +0 -0
- package/package.json +2 -2
- package/pom.xml +1 -1
- package/proto/outbound.proto +11 -0
- package/service/pom.xml +1 -1
- package/service/target/maven-archiver/pom.properties +2 -2
- package/service/target/{outbound-service-0.3.29-sources.jar → outbound-service-0.3.30-sources.jar} +0 -0
- package/service/target/{outbound-service-0.3.29.jar → outbound-service-0.3.30.jar} +0 -0
package/java.json
CHANGED
package/model/pom.xml
CHANGED
|
@@ -4214,6 +4214,7 @@ message Office365Organization {
|
|
|
4214
4214
|
map<string, Office365AssignedPlan> assigned_plans = 16; // The key is the service plan id
|
|
4215
4215
|
repeated Office365Contact contacts = 17;
|
|
4216
4216
|
repeated Office365Mailbox mailboxes = 18;
|
|
4217
|
+
repeated Office365AssignedLicense assigned_licenses = 19;
|
|
4217
4218
|
}
|
|
4218
4219
|
|
|
4219
4220
|
message Office365Mailbox {
|
|
@@ -4237,6 +4238,16 @@ message Office365AssignedPlan {
|
|
|
4237
4238
|
optional string capability_status = 3;
|
|
4238
4239
|
optional google.protobuf.Timestamp assigned_time_stamp = 4;
|
|
4239
4240
|
map<string, bool> users_keys = 5; // Entity keys of users assigned to this plan
|
|
4241
|
+
string o365_assigned_plan_id = 6;
|
|
4242
|
+
string o365_user_id = 8;
|
|
4243
|
+
}
|
|
4244
|
+
|
|
4245
|
+
message Office365AssignedLicense {
|
|
4246
|
+
string o365_assigned_license_id = 1;
|
|
4247
|
+
string o365_license_id = 2;
|
|
4248
|
+
string o365_user_id = 3;
|
|
4249
|
+
string o365_assigned_license_key = 4;
|
|
4250
|
+
string o365_license_key = 5;
|
|
4240
4251
|
}
|
|
4241
4252
|
|
|
4242
4253
|
message Office365Contact {
|
|
Binary file
|
package/model/target/classes/com/lansweeper/dp/outbound/v1/Office365AssignedLicense$Builder.class
ADDED
|
Binary file
|
|
Binary file
|
package/model/target/classes/com/lansweeper/dp/outbound/v1/Office365AssignedLicenseOrBuilder.class
ADDED
|
Binary file
|
|
Binary file
|
package/model/target/classes/com/lansweeper/dp/outbound/v1/Office365AssignedPlan$Builder.class
CHANGED
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/model/target/classes/com/lansweeper/dp/outbound/v1/Office365AssignedPlanOrBuilder.class
CHANGED
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/model/target/classes/com/lansweeper/dp/outbound/v1/Office365Organization$Builder.class
CHANGED
|
Binary file
|
|
Binary file
|
package/model/target/classes/com/lansweeper/dp/outbound/v1/Office365OrganizationOrBuilder.class
CHANGED
|
Binary file
|
|
Binary file
|
|
@@ -4214,6 +4214,7 @@ message Office365Organization {
|
|
|
4214
4214
|
map<string, Office365AssignedPlan> assigned_plans = 16; // The key is the service plan id
|
|
4215
4215
|
repeated Office365Contact contacts = 17;
|
|
4216
4216
|
repeated Office365Mailbox mailboxes = 18;
|
|
4217
|
+
repeated Office365AssignedLicense assigned_licenses = 19;
|
|
4217
4218
|
}
|
|
4218
4219
|
|
|
4219
4220
|
message Office365Mailbox {
|
|
@@ -4237,6 +4238,16 @@ message Office365AssignedPlan {
|
|
|
4237
4238
|
optional string capability_status = 3;
|
|
4238
4239
|
optional google.protobuf.Timestamp assigned_time_stamp = 4;
|
|
4239
4240
|
map<string, bool> users_keys = 5; // Entity keys of users assigned to this plan
|
|
4241
|
+
string o365_assigned_plan_id = 6;
|
|
4242
|
+
string o365_user_id = 8;
|
|
4243
|
+
}
|
|
4244
|
+
|
|
4245
|
+
message Office365AssignedLicense {
|
|
4246
|
+
string o365_assigned_license_id = 1;
|
|
4247
|
+
string o365_license_id = 2;
|
|
4248
|
+
string o365_user_id = 3;
|
|
4249
|
+
string o365_assigned_license_key = 4;
|
|
4250
|
+
string o365_license_key = 5;
|
|
4240
4251
|
}
|
|
4241
4252
|
|
|
4242
4253
|
message Office365Contact {
|