@lansweeper/data-platform-outbound-grpc 0.16.3 → 0.17.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/CHANGELOG.md +14 -0
- package/Lansweeper.DataPlatform.Outbound.csproj +29 -0
- package/Lansweeper.DataPlatform.Outbound.sln +25 -0
- package/gen-proto/image.json +1 -1
- package/gen-proto/outbound_pb.d.ts +18 -0
- package/gen-proto/outbound_pb.js +147 -3
- package/generated-go/outbound.pb.go +11913 -11876
- package/java.json +1 -1
- package/model/src/main/proto/outbound.proto +7 -0
- package/model/target/classes/outbound.proto +7 -0
- package/model/target/maven-archiver/pom.properties +2 -2
- package/model/target/{outbound-model-0.16.2-sources.jar → outbound-model-0.16.4-sources.jar} +0 -0
- package/model/target/{outbound-model-0.16.2.jar → outbound-model-0.16.4.jar} +0 -0
- package/package.json +1 -1
- package/proto/outbound.proto +7 -0
- package/service/target/maven-archiver/pom.properties +2 -2
- package/service/target/{outbound-service-0.16.2-sources.jar → outbound-service-0.16.4-sources.jar} +0 -0
- package/service/target/{outbound-service-0.16.2.jar → outbound-service-0.16.4.jar} +0 -0
package/java.json
CHANGED
|
@@ -9,6 +9,7 @@ syntax = "proto3";
|
|
|
9
9
|
package com.lansweeper.dp.outbound.v1;
|
|
10
10
|
option go_package = "./generated-go";
|
|
11
11
|
option java_multiple_files = true;
|
|
12
|
+
option csharp_namespace = "Lansweeper.DataPlatform.Outbound";
|
|
12
13
|
|
|
13
14
|
import "google/protobuf/timestamp.proto";
|
|
14
15
|
import "google/protobuf/any.proto";
|
|
@@ -379,6 +380,8 @@ message Asset {
|
|
|
379
380
|
optional LockedFields manual_asset_locked_fields = 97; // fields locked by the user in the manual asset UI
|
|
380
381
|
|
|
381
382
|
repeated AiDetection ai_detections = 99; // AI scan results from LS Discovery
|
|
383
|
+
|
|
384
|
+
optional bool is_licensed = 100;
|
|
382
385
|
}
|
|
383
386
|
|
|
384
387
|
message AiDetection {
|
|
@@ -4111,6 +4114,8 @@ message User {
|
|
|
4111
4114
|
optional ActiveDirectoryUser ad_user = 21;
|
|
4112
4115
|
optional Office365User office_365_user = 22;
|
|
4113
4116
|
// optional LastUser asset_user = 22; <- refine here with also link/relation to originating asset?
|
|
4117
|
+
|
|
4118
|
+
optional bool is_licensed = 24;
|
|
4114
4119
|
}
|
|
4115
4120
|
|
|
4116
4121
|
/* Core fields for users */
|
|
@@ -4158,6 +4163,8 @@ message Group {
|
|
|
4158
4163
|
|
|
4159
4164
|
optional ActiveDirectoryGroup ad_group = 21;
|
|
4160
4165
|
optional Office365Group office_365_group = 23;
|
|
4166
|
+
|
|
4167
|
+
optional bool is_licensed = 24;
|
|
4161
4168
|
}
|
|
4162
4169
|
|
|
4163
4170
|
/* Core fields for groups */
|
|
@@ -9,6 +9,7 @@ syntax = "proto3";
|
|
|
9
9
|
package com.lansweeper.dp.outbound.v1;
|
|
10
10
|
option go_package = "./generated-go";
|
|
11
11
|
option java_multiple_files = true;
|
|
12
|
+
option csharp_namespace = "Lansweeper.DataPlatform.Outbound";
|
|
12
13
|
|
|
13
14
|
import "google/protobuf/timestamp.proto";
|
|
14
15
|
import "google/protobuf/any.proto";
|
|
@@ -379,6 +380,8 @@ message Asset {
|
|
|
379
380
|
optional LockedFields manual_asset_locked_fields = 97; // fields locked by the user in the manual asset UI
|
|
380
381
|
|
|
381
382
|
repeated AiDetection ai_detections = 99; // AI scan results from LS Discovery
|
|
383
|
+
|
|
384
|
+
optional bool is_licensed = 100;
|
|
382
385
|
}
|
|
383
386
|
|
|
384
387
|
message AiDetection {
|
|
@@ -4111,6 +4114,8 @@ message User {
|
|
|
4111
4114
|
optional ActiveDirectoryUser ad_user = 21;
|
|
4112
4115
|
optional Office365User office_365_user = 22;
|
|
4113
4116
|
// optional LastUser asset_user = 22; <- refine here with also link/relation to originating asset?
|
|
4117
|
+
|
|
4118
|
+
optional bool is_licensed = 24;
|
|
4114
4119
|
}
|
|
4115
4120
|
|
|
4116
4121
|
/* Core fields for users */
|
|
@@ -4158,6 +4163,8 @@ message Group {
|
|
|
4158
4163
|
|
|
4159
4164
|
optional ActiveDirectoryGroup ad_group = 21;
|
|
4160
4165
|
optional Office365Group office_365_group = 23;
|
|
4166
|
+
|
|
4167
|
+
optional bool is_licensed = 24;
|
|
4161
4168
|
}
|
|
4162
4169
|
|
|
4163
4170
|
/* Core fields for groups */
|
package/model/target/{outbound-model-0.16.2-sources.jar → outbound-model-0.16.4-sources.jar}
RENAMED
|
Binary file
|
|
Binary file
|
package/package.json
CHANGED
package/proto/outbound.proto
CHANGED
|
@@ -9,6 +9,7 @@ syntax = "proto3";
|
|
|
9
9
|
package com.lansweeper.dp.outbound.v1;
|
|
10
10
|
option go_package = "./generated-go";
|
|
11
11
|
option java_multiple_files = true;
|
|
12
|
+
option csharp_namespace = "Lansweeper.DataPlatform.Outbound";
|
|
12
13
|
|
|
13
14
|
import "google/protobuf/timestamp.proto";
|
|
14
15
|
import "google/protobuf/any.proto";
|
|
@@ -379,6 +380,8 @@ message Asset {
|
|
|
379
380
|
optional LockedFields manual_asset_locked_fields = 97; // fields locked by the user in the manual asset UI
|
|
380
381
|
|
|
381
382
|
repeated AiDetection ai_detections = 99; // AI scan results from LS Discovery
|
|
383
|
+
|
|
384
|
+
optional bool is_licensed = 100;
|
|
382
385
|
}
|
|
383
386
|
|
|
384
387
|
message AiDetection {
|
|
@@ -4111,6 +4114,8 @@ message User {
|
|
|
4111
4114
|
optional ActiveDirectoryUser ad_user = 21;
|
|
4112
4115
|
optional Office365User office_365_user = 22;
|
|
4113
4116
|
// optional LastUser asset_user = 22; <- refine here with also link/relation to originating asset?
|
|
4117
|
+
|
|
4118
|
+
optional bool is_licensed = 24;
|
|
4114
4119
|
}
|
|
4115
4120
|
|
|
4116
4121
|
/* Core fields for users */
|
|
@@ -4158,6 +4163,8 @@ message Group {
|
|
|
4158
4163
|
|
|
4159
4164
|
optional ActiveDirectoryGroup ad_group = 21;
|
|
4160
4165
|
optional Office365Group office_365_group = 23;
|
|
4166
|
+
|
|
4167
|
+
optional bool is_licensed = 24;
|
|
4161
4168
|
}
|
|
4162
4169
|
|
|
4163
4170
|
/* Core fields for groups */
|
package/service/target/{outbound-service-0.16.2-sources.jar → outbound-service-0.16.4-sources.jar}
RENAMED
|
index 458a675..feb6371 100644
|
|
|
Binary file
|
|
index 533edd7..415ec46 100644
|
|
|
Binary file
|