@lansweeper/data-platform-outbound-grpc 0.12.0 → 0.13.1
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 +10 -0
- package/gen-proto/image.json +1 -1
- package/gen-proto/outbound_pb.d.ts +12 -0
- package/gen-proto/outbound_pb.js +101 -2
- package/generated-go/outbound.pb.go +9041 -9015
- package/java.json +1 -1
- package/model/pom.xml +1 -1
- package/model/src/main/proto/outbound.proto +2 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/ActiveDirectoryObject$1.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/ActiveDirectoryObject$Builder.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/ActiveDirectoryObject.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/ActiveDirectoryObjectOrBuilder.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/LegacyFields$1.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/LegacyFields$Builder.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/LegacyFields.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/LegacyFieldsOrBuilder.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/Outbound.class +0 -0
- package/model/target/classes/outbound.proto +2 -0
- package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/ActiveDirectoryComputer.java +9 -9
- package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/ActiveDirectoryComputerOrBuilder.java +3 -3
- package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/ActiveDirectoryObject.java +185 -0
- package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/ActiveDirectoryObjectOrBuilder.java +15 -0
- package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/LegacyFields.java +193 -0
- package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/LegacyFieldsOrBuilder.java +29 -0
- package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/Outbound.java +3802 -3799
- package/model/target/maven-archiver/pom.properties +2 -2
- package/model/target/{outbound-model-0.11.0-sources.jar → outbound-model-0.13.0-sources.jar} +0 -0
- package/model/target/{outbound-model-0.11.0.jar → outbound-model-0.13.0.jar} +0 -0
- package/package.json +2 -2
- package/pom.xml +1 -1
- package/proto/outbound.proto +2 -0
- package/service/pom.xml +1 -1
- package/service/target/maven-archiver/pom.properties +2 -2
- package/service/target/{outbound-service-0.11.0-sources.jar → outbound-service-0.13.0-sources.jar} +0 -0
- package/service/target/{outbound-service-0.11.0.jar → outbound-service-0.13.0.jar} +0 -0
package/model/target/{outbound-model-0.11.0-sources.jar → outbound-model-0.13.0-sources.jar}
RENAMED
|
Binary file
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lansweeper/data-platform-outbound-grpc",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.13.1",
|
|
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": "
|
|
12
|
+
"gitHead": "390f91265fb93fa5a34ec8914c9d88f014c5dca9"
|
|
13
13
|
}
|
package/pom.xml
CHANGED
package/proto/outbound.proto
CHANGED
|
@@ -364,6 +364,7 @@ message LegacyFields {
|
|
|
364
364
|
optional string ip_location_key = 17; // ip location config key. Reference the IP Location collection in mongoDB, and it's currently not store in vNEXT model.
|
|
365
365
|
optional string ip_location_id = 18; // ip location config ID. Reference the IP Location id in the onprem, if existing.
|
|
366
366
|
optional string asset_type_key = 20;
|
|
367
|
+
optional string as_server_key = 21; // Base64 encoded (scanServerName-AsServer-installKey) from onprem
|
|
367
368
|
}
|
|
368
369
|
|
|
369
370
|
message AssetCustom {
|
|
@@ -4111,6 +4112,7 @@ message ActiveDirectoryObject {
|
|
|
4111
4112
|
|
|
4112
4113
|
optional google.protobuf.Timestamp creation_time = 8;
|
|
4113
4114
|
optional google.protobuf.Timestamp last_changed = 9;
|
|
4115
|
+
optional google.protobuf.Timestamp last_scanned = 10;
|
|
4114
4116
|
}
|
|
4115
4117
|
|
|
4116
4118
|
/**
|
package/service/pom.xml
CHANGED
package/service/target/{outbound-service-0.11.0-sources.jar → outbound-service-0.13.0-sources.jar}
RENAMED
|
index 3cc8756..ef81d65 100644
|
|
|
Binary file
|
|
index 9428c68..aa94921 100644
|
|
|
Binary file
|