@lansweeper/integrations-assets-grpc 0.1.3 → 0.1.4

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.4](https://github.com/Lansweeper/lansweeperapis/compare/@lansweeper/integrations-assets-grpc@0.1.3...@lansweeper/integrations-assets-grpc@0.1.4) (2025-10-03)
7
+
8
+ **Note:** Version bump only for package @lansweeper/integrations-assets-grpc
9
+
6
10
  ## [0.1.3](https://github.com/Lansweeper/lansweeperapis/compare/@lansweeper/integrations-assets-grpc@0.1.2...@lansweeper/integrations-assets-grpc@0.1.3) (2025-10-03)
7
11
 
8
12
  **Note:** Version bump only for package @lansweeper/integrations-assets-grpc
@@ -38,6 +38,11 @@ export class Asset extends jspb.Message {
38
38
  getIsFederated(): boolean | undefined;
39
39
  setIsFederated(value: boolean): Asset;
40
40
 
41
+ hasFederatedCustomFields(): boolean;
42
+ clearFederatedCustomFields(): void;
43
+ getFederatedCustomFields(): boolean | undefined;
44
+ setFederatedCustomFields(value: boolean): Asset;
45
+
41
46
  serializeBinary(): Uint8Array;
42
47
  toObject(includeInstance?: boolean): Asset.AsObject;
43
48
  static toObject(includeInstance: boolean, msg: Asset): Asset.AsObject;
@@ -56,6 +61,7 @@ export namespace Asset {
56
61
  otData?: OtData.AsObject,
57
62
  lockedFields?: LockedFields.AsObject,
58
63
  isFederated?: boolean,
64
+ federatedCustomFields?: boolean,
59
65
  }
60
66
  }
61
67
 
@@ -212,7 +212,8 @@ proto.lansweeper.integrations.assets.v1.Asset.toObject = function(includeInstanc
212
212
  cloudAssetCustom: (f = msg.getCloudAssetCustom()) && proto.lansweeper.integrations.assets.v1.CloudAssetCustom.toObject(includeInstance, f),
213
213
  otData: (f = msg.getOtData()) && proto.lansweeper.integrations.assets.v1.OtData.toObject(includeInstance, f),
214
214
  lockedFields: (f = msg.getLockedFields()) && proto.lansweeper.integrations.assets.v1.LockedFields.toObject(includeInstance, f),
215
- isFederated: jspb.Message.getBooleanFieldWithDefault(msg, 6, false)
215
+ isFederated: jspb.Message.getBooleanFieldWithDefault(msg, 6, false),
216
+ federatedCustomFields: jspb.Message.getBooleanFieldWithDefault(msg, 7, false)
216
217
  };
217
218
 
218
219
  if (includeInstance) {
@@ -278,6 +279,10 @@ proto.lansweeper.integrations.assets.v1.Asset.deserializeBinaryFromReader = func
278
279
  var value = /** @type {boolean} */ (reader.readBool());
279
280
  msg.setIsFederated(value);
280
281
  break;
282
+ case 7:
283
+ var value = /** @type {boolean} */ (reader.readBool());
284
+ msg.setFederatedCustomFields(value);
285
+ break;
281
286
  default:
282
287
  reader.skipField();
283
288
  break;
@@ -354,6 +359,13 @@ proto.lansweeper.integrations.assets.v1.Asset.serializeBinaryToWriter = function
354
359
  f
355
360
  );
356
361
  }
362
+ f = /** @type {boolean} */ (jspb.Message.getField(message, 7));
363
+ if (f != null) {
364
+ writer.writeBool(
365
+ 7,
366
+ f
367
+ );
368
+ }
357
369
  };
358
370
 
359
371
 
@@ -578,6 +590,42 @@ proto.lansweeper.integrations.assets.v1.Asset.prototype.hasIsFederated = functio
578
590
  };
579
591
 
580
592
 
593
+ /**
594
+ * optional bool federated_custom_fields = 7;
595
+ * @return {boolean}
596
+ */
597
+ proto.lansweeper.integrations.assets.v1.Asset.prototype.getFederatedCustomFields = function() {
598
+ return /** @type {boolean} */ (jspb.Message.getBooleanFieldWithDefault(this, 7, false));
599
+ };
600
+
601
+
602
+ /**
603
+ * @param {boolean} value
604
+ * @return {!proto.lansweeper.integrations.assets.v1.Asset} returns this
605
+ */
606
+ proto.lansweeper.integrations.assets.v1.Asset.prototype.setFederatedCustomFields = function(value) {
607
+ return jspb.Message.setField(this, 7, value);
608
+ };
609
+
610
+
611
+ /**
612
+ * Clears the field making it undefined.
613
+ * @return {!proto.lansweeper.integrations.assets.v1.Asset} returns this
614
+ */
615
+ proto.lansweeper.integrations.assets.v1.Asset.prototype.clearFederatedCustomFields = function() {
616
+ return jspb.Message.setField(this, 7, undefined);
617
+ };
618
+
619
+
620
+ /**
621
+ * Returns whether this field is set.
622
+ * @return {boolean}
623
+ */
624
+ proto.lansweeper.integrations.assets.v1.Asset.prototype.hasFederatedCustomFields = function() {
625
+ return jspb.Message.getField(this, 7) != null;
626
+ };
627
+
628
+
581
629
 
582
630
 
583
631