@lansweeper/integrations-assets-grpc 0.1.5 → 0.1.6

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 CHANGED
@@ -3,6 +3,10 @@
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.6](https://github.com/Lansweeper/lansweeperapis/compare/@lansweeper/integrations-assets-grpc@0.1.5...@lansweeper/integrations-assets-grpc@0.1.6) (2026-01-29)
7
+
8
+ **Note:** Version bump only for package @lansweeper/integrations-assets-grpc
9
+
6
10
  ## [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
11
 
8
12
  **Note:** Version bump only for package @lansweeper/integrations-assets-grpc
@@ -279,6 +279,11 @@ export class AssetCustom extends jspb.Message {
279
279
  getStateName(): string | undefined;
280
280
  setStateName(value: string): AssetCustom;
281
281
 
282
+ hasComment(): boolean;
283
+ clearComment(): void;
284
+ getComment(): string | undefined;
285
+ setComment(value: string): AssetCustom;
286
+
282
287
  serializeBinary(): Uint8Array;
283
288
  toObject(includeInstance?: boolean): AssetCustom.AsObject;
284
289
  static toObject(includeInstance: boolean, msg: AssetCustom): AssetCustom.AsObject;
@@ -312,6 +317,7 @@ export namespace AssetCustom {
312
317
  lastFullImage?: string,
313
318
  fieldsList: Array<CustomField.AsObject>,
314
319
  stateName?: string,
320
+ comment?: string,
315
321
  }
316
322
  }
317
323
 
@@ -1490,7 +1490,8 @@ proto.lansweeper.integrations.assets.v1.AssetCustom.toObject = function(includeI
1490
1490
  lastFullImage: jspb.Message.getFieldWithDefault(msg, 19, ""),
1491
1491
  fieldsList: jspb.Message.toObjectList(msg.getFieldsList(),
1492
1492
  proto.lansweeper.integrations.assets.v1.CustomField.toObject, includeInstance),
1493
- stateName: jspb.Message.getFieldWithDefault(msg, 21, "")
1493
+ stateName: jspb.Message.getFieldWithDefault(msg, 21, ""),
1494
+ comment: jspb.Message.getFieldWithDefault(msg, 22, "")
1494
1495
  };
1495
1496
 
1496
1497
  if (includeInstance) {
@@ -1612,6 +1613,10 @@ proto.lansweeper.integrations.assets.v1.AssetCustom.deserializeBinaryFromReader
1612
1613
  var value = /** @type {string} */ (reader.readString());
1613
1614
  msg.setStateName(value);
1614
1615
  break;
1616
+ case 22:
1617
+ var value = /** @type {string} */ (reader.readString());
1618
+ msg.setComment(value);
1619
+ break;
1615
1620
  default:
1616
1621
  reader.skipField();
1617
1622
  break;
@@ -1789,6 +1794,13 @@ proto.lansweeper.integrations.assets.v1.AssetCustom.serializeBinaryToWriter = fu
1789
1794
  f
1790
1795
  );
1791
1796
  }
1797
+ f = /** @type {string} */ (jspb.Message.getField(message, 22));
1798
+ if (f != null) {
1799
+ writer.writeString(
1800
+ 22,
1801
+ f
1802
+ );
1803
+ }
1792
1804
  };
1793
1805
 
1794
1806
 
@@ -2532,6 +2544,42 @@ proto.lansweeper.integrations.assets.v1.AssetCustom.prototype.hasStateName = fun
2532
2544
  };
2533
2545
 
2534
2546
 
2547
+ /**
2548
+ * optional string comment = 22;
2549
+ * @return {string}
2550
+ */
2551
+ proto.lansweeper.integrations.assets.v1.AssetCustom.prototype.getComment = function() {
2552
+ return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 22, ""));
2553
+ };
2554
+
2555
+
2556
+ /**
2557
+ * @param {string} value
2558
+ * @return {!proto.lansweeper.integrations.assets.v1.AssetCustom} returns this
2559
+ */
2560
+ proto.lansweeper.integrations.assets.v1.AssetCustom.prototype.setComment = function(value) {
2561
+ return jspb.Message.setField(this, 22, value);
2562
+ };
2563
+
2564
+
2565
+ /**
2566
+ * Clears the field making it undefined.
2567
+ * @return {!proto.lansweeper.integrations.assets.v1.AssetCustom} returns this
2568
+ */
2569
+ proto.lansweeper.integrations.assets.v1.AssetCustom.prototype.clearComment = function() {
2570
+ return jspb.Message.setField(this, 22, undefined);
2571
+ };
2572
+
2573
+
2574
+ /**
2575
+ * Returns whether this field is set.
2576
+ * @return {boolean}
2577
+ */
2578
+ proto.lansweeper.integrations.assets.v1.AssetCustom.prototype.hasComment = function() {
2579
+ return jspb.Message.getField(this, 22) != null;
2580
+ };
2581
+
2582
+
2535
2583
 
2536
2584
 
2537
2585