@lansweeper/data-platform-outbound-grpc 0.10.0 → 0.10.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.
Files changed (27) hide show
  1. package/CHANGELOG.md +11 -0
  2. package/gen-proto/image.json +1 -1
  3. package/gen-proto/outbound_pb.d.ts +12 -0
  4. package/gen-proto/outbound_pb.js +97 -1
  5. package/generated-go/outbound.pb.go +11608 -11586
  6. package/java.json +1 -1
  7. package/model/pom.xml +1 -1
  8. package/model/src/main/proto/outbound.proto +2 -0
  9. package/model/target/classes/com/lansweeper/dp/outbound/v1/LegacyFields$1.class +0 -0
  10. package/model/target/classes/com/lansweeper/dp/outbound/v1/LegacyFields$Builder.class +0 -0
  11. package/model/target/classes/com/lansweeper/dp/outbound/v1/LegacyFields.class +0 -0
  12. package/model/target/classes/com/lansweeper/dp/outbound/v1/LegacyFieldsOrBuilder.class +0 -0
  13. package/model/target/classes/com/lansweeper/dp/outbound/v1/Outbound.class +0 -0
  14. package/model/target/classes/outbound.proto +2 -0
  15. package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/LegacyFields.java +575 -225
  16. package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/LegacyFieldsOrBuilder.java +46 -0
  17. package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/Outbound.java +3807 -3805
  18. package/model/target/maven-archiver/pom.properties +2 -2
  19. package/model/target/{outbound-model-0.9.1-sources.jar → outbound-model-0.10.1-sources.jar} +0 -0
  20. package/model/target/{outbound-model-0.9.1.jar → outbound-model-0.10.1.jar} +0 -0
  21. package/package.json +2 -2
  22. package/pom.xml +1 -1
  23. package/proto/outbound.proto +2 -0
  24. package/service/pom.xml +1 -1
  25. package/service/target/maven-archiver/pom.properties +2 -2
  26. package/service/target/{outbound-service-0.9.1-sources.jar → outbound-service-0.10.1-sources.jar} +0 -0
  27. package/service/target/{outbound-service-0.9.1.jar → outbound-service-0.10.1.jar} +0 -0
@@ -1,5 +1,5 @@
1
1
  #Generated by Maven
2
- #Wed Sep 03 14:59:10 UTC 2025
2
+ #Wed Sep 24 09:34:27 UTC 2025
3
3
  groupId=com.lansweeper.dp.outbound.v1
4
4
  artifactId=outbound-model
5
- version=0.9.1
5
+ version=0.10.1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lansweeper/data-platform-outbound-grpc",
3
- "version": "0.10.0",
3
+ "version": "0.10.2",
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": "c96571678e696bb6328037dd1d527a43e508eaa4"
12
+ "gitHead": "ea7ab26fb7422376e373315f632562e44d49e2ab"
13
13
  }
package/pom.xml CHANGED
@@ -6,7 +6,7 @@
6
6
 
7
7
  <groupId>com.lansweeper.dp.outbound.v1</groupId>
8
8
  <artifactId>parent</artifactId>
9
- <version>0.9.1</version>
9
+ <version>0.10.1</version>
10
10
  <packaging>pom</packaging>
11
11
  <modules>
12
12
  <module>model</module>
@@ -343,6 +343,7 @@ message Asset {
343
343
  * These are the fields that are present in an asset from CLASSIC.
344
344
  */
345
345
  message LegacyFields {
346
+ optional string asset_id = 19; // Numeric ID of the asset in the on prem. It has to be a string to be compliant with the asset.proto model.
346
347
  optional google.protobuf.Timestamp last_tried = 1;
347
348
  optional google.protobuf.Timestamp last_active_scan = 2;
348
349
  optional google.protobuf.Timestamp last_ip_scan = 3;
@@ -362,6 +363,7 @@ message LegacyFields {
362
363
  repeated AssetGroupLink group_link = 16; // asset group link from the asset.group_link section
363
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.
364
365
  optional string ip_location_id = 18; // ip location config ID. Reference the IP Location id in the onprem, if existing.
366
+ optional string asset_type_key = 20;
365
367
  }
366
368
 
367
369
  message AssetCustom {
package/service/pom.xml CHANGED
@@ -6,7 +6,7 @@
6
6
  <parent>
7
7
  <groupId>com.lansweeper.dp.outbound.v1</groupId>
8
8
  <artifactId>parent</artifactId>
9
- <version>0.9.1</version>
9
+ <version>0.10.1</version>
10
10
  </parent>
11
11
 
12
12
  <artifactId>outbound-service</artifactId>
@@ -1,5 +1,5 @@
1
1
  #Generated by Maven
2
- #Wed Sep 03 14:59:16 UTC 2025
2
+ #Wed Sep 24 09:34:32 UTC 2025
3
3
  groupId=com.lansweeper.dp.outbound.v1
4
4
  artifactId=outbound-service
5
- version=0.9.1
5
+ version=0.10.1
index 7b43ffb..481766a 100644
Binary file