@lansweeper/integrations-assets-grpc 0.1.1 → 0.1.3

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/.ignorecompat ADDED
File without changes
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.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
+
8
+ **Note:** Version bump only for package @lansweeper/integrations-assets-grpc
9
+
10
+ ## [0.1.2](https://github.com/Lansweeper/lansweeperapis/compare/@lansweeper/integrations-assets-grpc@0.1.1...@lansweeper/integrations-assets-grpc@0.1.2) (2025-08-25)
11
+
12
+ **Note:** Version bump only for package @lansweeper/integrations-assets-grpc
13
+
6
14
  ## 0.1.1 (2025-08-25)
7
15
 
8
16
  **Note:** Version bump only for package @lansweeper/integrations-assets-grpc
@@ -33,6 +33,11 @@ export class Asset extends jspb.Message {
33
33
  getLockedFields(): LockedFields | undefined;
34
34
  setLockedFields(value?: LockedFields): Asset;
35
35
 
36
+ hasIsFederated(): boolean;
37
+ clearIsFederated(): void;
38
+ getIsFederated(): boolean | undefined;
39
+ setIsFederated(value: boolean): Asset;
40
+
36
41
  serializeBinary(): Uint8Array;
37
42
  toObject(includeInstance?: boolean): Asset.AsObject;
38
43
  static toObject(includeInstance: boolean, msg: Asset): Asset.AsObject;
@@ -50,6 +55,7 @@ export namespace Asset {
50
55
  cloudAssetCustom?: CloudAssetCustom.AsObject,
51
56
  otData?: OtData.AsObject,
52
57
  lockedFields?: LockedFields.AsObject,
58
+ isFederated?: boolean,
53
59
  }
54
60
  }
55
61
 
@@ -211,7 +211,8 @@ proto.lansweeper.integrations.assets.v1.Asset.toObject = function(includeInstanc
211
211
  assetCustom: (f = msg.getAssetCustom()) && proto.lansweeper.integrations.assets.v1.AssetCustom.toObject(includeInstance, f),
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
- lockedFields: (f = msg.getLockedFields()) && proto.lansweeper.integrations.assets.v1.LockedFields.toObject(includeInstance, f)
214
+ lockedFields: (f = msg.getLockedFields()) && proto.lansweeper.integrations.assets.v1.LockedFields.toObject(includeInstance, f),
215
+ isFederated: jspb.Message.getBooleanFieldWithDefault(msg, 6, false)
215
216
  };
216
217
 
217
218
  if (includeInstance) {
@@ -273,6 +274,10 @@ proto.lansweeper.integrations.assets.v1.Asset.deserializeBinaryFromReader = func
273
274
  reader.readMessage(value,proto.lansweeper.integrations.assets.v1.LockedFields.deserializeBinaryFromReader);
274
275
  msg.setLockedFields(value);
275
276
  break;
277
+ case 6:
278
+ var value = /** @type {boolean} */ (reader.readBool());
279
+ msg.setIsFederated(value);
280
+ break;
276
281
  default:
277
282
  reader.skipField();
278
283
  break;
@@ -342,6 +347,13 @@ proto.lansweeper.integrations.assets.v1.Asset.serializeBinaryToWriter = function
342
347
  proto.lansweeper.integrations.assets.v1.LockedFields.serializeBinaryToWriter
343
348
  );
344
349
  }
350
+ f = /** @type {boolean} */ (jspb.Message.getField(message, 6));
351
+ if (f != null) {
352
+ writer.writeBool(
353
+ 6,
354
+ f
355
+ );
356
+ }
345
357
  };
346
358
 
347
359
 
@@ -530,6 +542,42 @@ proto.lansweeper.integrations.assets.v1.Asset.prototype.hasLockedFields = functi
530
542
  };
531
543
 
532
544
 
545
+ /**
546
+ * optional bool is_federated = 6;
547
+ * @return {boolean}
548
+ */
549
+ proto.lansweeper.integrations.assets.v1.Asset.prototype.getIsFederated = function() {
550
+ return /** @type {boolean} */ (jspb.Message.getBooleanFieldWithDefault(this, 6, false));
551
+ };
552
+
553
+
554
+ /**
555
+ * @param {boolean} value
556
+ * @return {!proto.lansweeper.integrations.assets.v1.Asset} returns this
557
+ */
558
+ proto.lansweeper.integrations.assets.v1.Asset.prototype.setIsFederated = function(value) {
559
+ return jspb.Message.setField(this, 6, value);
560
+ };
561
+
562
+
563
+ /**
564
+ * Clears the field making it undefined.
565
+ * @return {!proto.lansweeper.integrations.assets.v1.Asset} returns this
566
+ */
567
+ proto.lansweeper.integrations.assets.v1.Asset.prototype.clearIsFederated = function() {
568
+ return jspb.Message.setField(this, 6, undefined);
569
+ };
570
+
571
+
572
+ /**
573
+ * Returns whether this field is set.
574
+ * @return {boolean}
575
+ */
576
+ proto.lansweeper.integrations.assets.v1.Asset.prototype.hasIsFederated = function() {
577
+ return jspb.Message.getField(this, 6) != null;
578
+ };
579
+
580
+
533
581
 
534
582
 
535
583