@lansweeper/integrations-assets-grpc 0.1.5 → 0.1.7

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 +8 -0
  2. package/gen-proto/assets_pb.d.ts +12 -6
  3. package/gen-proto/assets_pb.js +98 -50
  4. package/gen-proto/image.json +1 -1
  5. package/generated-go/assets.pb.go +153 -142
  6. package/java.json +1 -1
  7. package/package.json +2 -2
  8. package/pom.xml +1 -1
  9. package/proto/assets.proto +4 -1
  10. package/src/main/proto/assets.proto +4 -1
  11. package/target/classes/assets.proto +4 -1
  12. package/target/classes/lansweeper/integrations/assets/v1/AssetCustom$Builder.class +0 -0
  13. package/target/classes/lansweeper/integrations/assets/v1/AssetCustom.class +0 -0
  14. package/target/classes/lansweeper/integrations/assets/v1/AssetCustomOrBuilder.class +0 -0
  15. package/target/classes/lansweeper/integrations/assets/v1/Assets.class +0 -0
  16. package/target/classes/lansweeper/integrations/assets/v1/CloudAssetCustom$1.class +0 -0
  17. package/target/classes/lansweeper/integrations/assets/v1/CloudAssetCustom$Builder.class +0 -0
  18. package/target/classes/lansweeper/integrations/assets/v1/CloudAssetCustom.class +0 -0
  19. package/target/classes/lansweeper/integrations/assets/v1/CloudAssetCustomOrBuilder.class +0 -0
  20. package/target/generated-sources/protobuf/java/lansweeper/integrations/assets/v1/AssetCustom.java +310 -310
  21. package/target/generated-sources/protobuf/java/lansweeper/integrations/assets/v1/AssetCustomOrBuilder.java +17 -17
  22. package/target/generated-sources/protobuf/java/lansweeper/integrations/assets/v1/Assets.java +31 -30
  23. package/target/generated-sources/protobuf/java/lansweeper/integrations/assets/v1/CloudAssetCustom.java +157 -0
  24. package/target/generated-sources/protobuf/java/lansweeper/integrations/assets/v1/CloudAssetCustomOrBuilder.java +17 -0
  25. package/target/{integrations-assets-model-0.1.4-sources.jar → integrations-assets-model-0.1.6-sources.jar} +0 -0
  26. package/target/{integrations-assets-model-0.1.4.jar → integrations-assets-model-0.1.6.jar} +0 -0
  27. package/target/maven-archiver/pom.properties +2 -2
package/CHANGELOG.md CHANGED
@@ -3,6 +3,14 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [0.1.7](https://github.com/Lansweeper/lansweeperapis/compare/@lansweeper/integrations-assets-grpc@0.1.6...@lansweeper/integrations-assets-grpc@0.1.7) (2026-02-02)
7
+
8
+ **Note:** Version bump only for package @lansweeper/integrations-assets-grpc
9
+
10
+ ## [0.1.6](https://github.com/Lansweeper/lansweeperapis/compare/@lansweeper/integrations-assets-grpc@0.1.5...@lansweeper/integrations-assets-grpc@0.1.6) (2026-01-29)
11
+
12
+ **Note:** Version bump only for package @lansweeper/integrations-assets-grpc
13
+
6
14
  ## [0.1.5](https://github.com/Lansweeper/lansweeperapis/compare/@lansweeper/integrations-assets-grpc@0.1.4...@lansweeper/integrations-assets-grpc@0.1.5) (2025-10-15)
7
15
 
8
16
  **Note:** Version bump only for package @lansweeper/integrations-assets-grpc
@@ -195,11 +195,6 @@ export class AssetCustom extends jspb.Message {
195
195
  getDepartment(): string | undefined;
196
196
  setDepartment(value: string): AssetCustom;
197
197
 
198
- hasIndustry(): boolean;
199
- clearIndustry(): void;
200
- getIndustry(): string | undefined;
201
- setIndustry(value: string): AssetCustom;
202
-
203
198
  hasBarcode(): boolean;
204
199
  clearBarcode(): void;
205
200
  getBarcode(): string | undefined;
@@ -279,6 +274,11 @@ export class AssetCustom extends jspb.Message {
279
274
  getStateName(): string | undefined;
280
275
  setStateName(value: string): AssetCustom;
281
276
 
277
+ hasComment(): boolean;
278
+ clearComment(): void;
279
+ getComment(): string | undefined;
280
+ setComment(value: string): AssetCustom;
281
+
282
282
  serializeBinary(): Uint8Array;
283
283
  toObject(includeInstance?: boolean): AssetCustom.AsObject;
284
284
  static toObject(includeInstance: boolean, msg: AssetCustom): AssetCustom.AsObject;
@@ -295,7 +295,6 @@ export namespace AssetCustom {
295
295
  location?: string,
296
296
  building?: string,
297
297
  department?: string,
298
- industry?: string,
299
298
  barcode?: string,
300
299
  branchOffice?: string,
301
300
  contact?: string,
@@ -312,6 +311,7 @@ export namespace AssetCustom {
312
311
  lastFullImage?: string,
313
312
  fieldsList: Array<CustomField.AsObject>,
314
313
  stateName?: string,
314
+ comment?: string,
315
315
  }
316
316
  }
317
317
 
@@ -347,6 +347,11 @@ export class CloudAssetCustom extends jspb.Message {
347
347
  getOwner(): string | undefined;
348
348
  setOwner(value: string): CloudAssetCustom;
349
349
 
350
+ hasIndustry(): boolean;
351
+ clearIndustry(): void;
352
+ getIndustry(): string | undefined;
353
+ setIndustry(value: string): CloudAssetCustom;
354
+
350
355
  serializeBinary(): Uint8Array;
351
356
  toObject(includeInstance?: boolean): CloudAssetCustom.AsObject;
352
357
  static toObject(includeInstance: boolean, msg: CloudAssetCustom): CloudAssetCustom.AsObject;
@@ -365,6 +370,7 @@ export namespace CloudAssetCustom {
365
370
  invoiceNumber?: string,
366
371
  acquisitionType?: string,
367
372
  owner?: string,
373
+ industry?: string,
368
374
  }
369
375
  }
370
376
 
@@ -1473,7 +1473,6 @@ proto.lansweeper.integrations.assets.v1.AssetCustom.toObject = function(includeI
1473
1473
  location: jspb.Message.getFieldWithDefault(msg, 2, ""),
1474
1474
  building: jspb.Message.getFieldWithDefault(msg, 3, ""),
1475
1475
  department: jspb.Message.getFieldWithDefault(msg, 4, ""),
1476
- industry: jspb.Message.getFieldWithDefault(msg, 5, ""),
1477
1476
  barcode: jspb.Message.getFieldWithDefault(msg, 6, ""),
1478
1477
  branchOffice: jspb.Message.getFieldWithDefault(msg, 7, ""),
1479
1478
  contact: jspb.Message.getFieldWithDefault(msg, 8, ""),
@@ -1490,7 +1489,8 @@ proto.lansweeper.integrations.assets.v1.AssetCustom.toObject = function(includeI
1490
1489
  lastFullImage: jspb.Message.getFieldWithDefault(msg, 19, ""),
1491
1490
  fieldsList: jspb.Message.toObjectList(msg.getFieldsList(),
1492
1491
  proto.lansweeper.integrations.assets.v1.CustomField.toObject, includeInstance),
1493
- stateName: jspb.Message.getFieldWithDefault(msg, 21, "")
1492
+ stateName: jspb.Message.getFieldWithDefault(msg, 21, ""),
1493
+ comment: jspb.Message.getFieldWithDefault(msg, 22, "")
1494
1494
  };
1495
1495
 
1496
1496
  if (includeInstance) {
@@ -1543,10 +1543,6 @@ proto.lansweeper.integrations.assets.v1.AssetCustom.deserializeBinaryFromReader
1543
1543
  var value = /** @type {string} */ (reader.readString());
1544
1544
  msg.setDepartment(value);
1545
1545
  break;
1546
- case 5:
1547
- var value = /** @type {string} */ (reader.readString());
1548
- msg.setIndustry(value);
1549
- break;
1550
1546
  case 6:
1551
1547
  var value = /** @type {string} */ (reader.readString());
1552
1548
  msg.setBarcode(value);
@@ -1612,6 +1608,10 @@ proto.lansweeper.integrations.assets.v1.AssetCustom.deserializeBinaryFromReader
1612
1608
  var value = /** @type {string} */ (reader.readString());
1613
1609
  msg.setStateName(value);
1614
1610
  break;
1611
+ case 22:
1612
+ var value = /** @type {string} */ (reader.readString());
1613
+ msg.setComment(value);
1614
+ break;
1615
1615
  default:
1616
1616
  reader.skipField();
1617
1617
  break;
@@ -1669,13 +1669,6 @@ proto.lansweeper.integrations.assets.v1.AssetCustom.serializeBinaryToWriter = fu
1669
1669
  f
1670
1670
  );
1671
1671
  }
1672
- f = /** @type {string} */ (jspb.Message.getField(message, 5));
1673
- if (f != null) {
1674
- writer.writeString(
1675
- 5,
1676
- f
1677
- );
1678
- }
1679
1672
  f = /** @type {string} */ (jspb.Message.getField(message, 6));
1680
1673
  if (f != null) {
1681
1674
  writer.writeString(
@@ -1789,6 +1782,13 @@ proto.lansweeper.integrations.assets.v1.AssetCustom.serializeBinaryToWriter = fu
1789
1782
  f
1790
1783
  );
1791
1784
  }
1785
+ f = /** @type {string} */ (jspb.Message.getField(message, 22));
1786
+ if (f != null) {
1787
+ writer.writeString(
1788
+ 22,
1789
+ f
1790
+ );
1791
+ }
1792
1792
  };
1793
1793
 
1794
1794
 
@@ -1918,42 +1918,6 @@ proto.lansweeper.integrations.assets.v1.AssetCustom.prototype.hasDepartment = fu
1918
1918
  };
1919
1919
 
1920
1920
 
1921
- /**
1922
- * optional string industry = 5;
1923
- * @return {string}
1924
- */
1925
- proto.lansweeper.integrations.assets.v1.AssetCustom.prototype.getIndustry = function() {
1926
- return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 5, ""));
1927
- };
1928
-
1929
-
1930
- /**
1931
- * @param {string} value
1932
- * @return {!proto.lansweeper.integrations.assets.v1.AssetCustom} returns this
1933
- */
1934
- proto.lansweeper.integrations.assets.v1.AssetCustom.prototype.setIndustry = function(value) {
1935
- return jspb.Message.setField(this, 5, value);
1936
- };
1937
-
1938
-
1939
- /**
1940
- * Clears the field making it undefined.
1941
- * @return {!proto.lansweeper.integrations.assets.v1.AssetCustom} returns this
1942
- */
1943
- proto.lansweeper.integrations.assets.v1.AssetCustom.prototype.clearIndustry = function() {
1944
- return jspb.Message.setField(this, 5, undefined);
1945
- };
1946
-
1947
-
1948
- /**
1949
- * Returns whether this field is set.
1950
- * @return {boolean}
1951
- */
1952
- proto.lansweeper.integrations.assets.v1.AssetCustom.prototype.hasIndustry = function() {
1953
- return jspb.Message.getField(this, 5) != null;
1954
- };
1955
-
1956
-
1957
1921
  /**
1958
1922
  * optional string barcode = 6;
1959
1923
  * @return {string}
@@ -2532,6 +2496,42 @@ proto.lansweeper.integrations.assets.v1.AssetCustom.prototype.hasStateName = fun
2532
2496
  };
2533
2497
 
2534
2498
 
2499
+ /**
2500
+ * optional string comment = 22;
2501
+ * @return {string}
2502
+ */
2503
+ proto.lansweeper.integrations.assets.v1.AssetCustom.prototype.getComment = function() {
2504
+ return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 22, ""));
2505
+ };
2506
+
2507
+
2508
+ /**
2509
+ * @param {string} value
2510
+ * @return {!proto.lansweeper.integrations.assets.v1.AssetCustom} returns this
2511
+ */
2512
+ proto.lansweeper.integrations.assets.v1.AssetCustom.prototype.setComment = function(value) {
2513
+ return jspb.Message.setField(this, 22, value);
2514
+ };
2515
+
2516
+
2517
+ /**
2518
+ * Clears the field making it undefined.
2519
+ * @return {!proto.lansweeper.integrations.assets.v1.AssetCustom} returns this
2520
+ */
2521
+ proto.lansweeper.integrations.assets.v1.AssetCustom.prototype.clearComment = function() {
2522
+ return jspb.Message.setField(this, 22, undefined);
2523
+ };
2524
+
2525
+
2526
+ /**
2527
+ * Returns whether this field is set.
2528
+ * @return {boolean}
2529
+ */
2530
+ proto.lansweeper.integrations.assets.v1.AssetCustom.prototype.hasComment = function() {
2531
+ return jspb.Message.getField(this, 22) != null;
2532
+ };
2533
+
2534
+
2535
2535
 
2536
2536
 
2537
2537
 
@@ -2569,7 +2569,8 @@ proto.lansweeper.integrations.assets.v1.CloudAssetCustom.toObject = function(inc
2569
2569
  vendorName: jspb.Message.getFieldWithDefault(msg, 3, ""),
2570
2570
  invoiceNumber: jspb.Message.getFieldWithDefault(msg, 4, ""),
2571
2571
  acquisitionType: jspb.Message.getFieldWithDefault(msg, 5, ""),
2572
- owner: jspb.Message.getFieldWithDefault(msg, 6, "")
2572
+ owner: jspb.Message.getFieldWithDefault(msg, 6, ""),
2573
+ industry: jspb.Message.getFieldWithDefault(msg, 7, "")
2573
2574
  };
2574
2575
 
2575
2576
  if (includeInstance) {
@@ -2630,6 +2631,10 @@ proto.lansweeper.integrations.assets.v1.CloudAssetCustom.deserializeBinaryFromRe
2630
2631
  var value = /** @type {string} */ (reader.readString());
2631
2632
  msg.setOwner(value);
2632
2633
  break;
2634
+ case 7:
2635
+ var value = /** @type {string} */ (reader.readString());
2636
+ msg.setIndustry(value);
2637
+ break;
2633
2638
  default:
2634
2639
  reader.skipField();
2635
2640
  break;
@@ -2701,6 +2706,13 @@ proto.lansweeper.integrations.assets.v1.CloudAssetCustom.serializeBinaryToWriter
2701
2706
  f
2702
2707
  );
2703
2708
  }
2709
+ f = /** @type {string} */ (jspb.Message.getField(message, 7));
2710
+ if (f != null) {
2711
+ writer.writeString(
2712
+ 7,
2713
+ f
2714
+ );
2715
+ }
2704
2716
  };
2705
2717
 
2706
2718
 
@@ -2920,6 +2932,42 @@ proto.lansweeper.integrations.assets.v1.CloudAssetCustom.prototype.hasOwner = fu
2920
2932
  };
2921
2933
 
2922
2934
 
2935
+ /**
2936
+ * optional string industry = 7;
2937
+ * @return {string}
2938
+ */
2939
+ proto.lansweeper.integrations.assets.v1.CloudAssetCustom.prototype.getIndustry = function() {
2940
+ return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 7, ""));
2941
+ };
2942
+
2943
+
2944
+ /**
2945
+ * @param {string} value
2946
+ * @return {!proto.lansweeper.integrations.assets.v1.CloudAssetCustom} returns this
2947
+ */
2948
+ proto.lansweeper.integrations.assets.v1.CloudAssetCustom.prototype.setIndustry = function(value) {
2949
+ return jspb.Message.setField(this, 7, value);
2950
+ };
2951
+
2952
+
2953
+ /**
2954
+ * Clears the field making it undefined.
2955
+ * @return {!proto.lansweeper.integrations.assets.v1.CloudAssetCustom} returns this
2956
+ */
2957
+ proto.lansweeper.integrations.assets.v1.CloudAssetCustom.prototype.clearIndustry = function() {
2958
+ return jspb.Message.setField(this, 7, undefined);
2959
+ };
2960
+
2961
+
2962
+ /**
2963
+ * Returns whether this field is set.
2964
+ * @return {boolean}
2965
+ */
2966
+ proto.lansweeper.integrations.assets.v1.CloudAssetCustom.prototype.hasIndustry = function() {
2967
+ return jspb.Message.getField(this, 7) != null;
2968
+ };
2969
+
2970
+
2923
2971
 
2924
2972
 
2925
2973