@lansweeper/data-platform-outbound-grpc 0.16.3 → 0.16.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.
@@ -1082,6 +1082,11 @@ export class Asset extends jspb.Message {
1082
1082
  setAiDetectionsList(value: Array<AiDetection>): Asset;
1083
1083
  addAiDetections(value?: AiDetection, index?: number): AiDetection;
1084
1084
 
1085
+ hasIsLicensed(): boolean;
1086
+ clearIsLicensed(): void;
1087
+ getIsLicensed(): boolean | undefined;
1088
+ setIsLicensed(value: boolean): Asset;
1089
+
1085
1090
  serializeBinary(): Uint8Array;
1086
1091
  toObject(includeInstance?: boolean): Asset.AsObject;
1087
1092
  static toObject(includeInstance: boolean, msg: Asset): Asset.AsObject;
@@ -1138,6 +1143,7 @@ export namespace Asset {
1138
1143
  citrix?: Citrix.AsObject,
1139
1144
  manualAssetLockedFields?: LockedFields.AsObject,
1140
1145
  aiDetectionsList: Array<AiDetection.AsObject>,
1146
+ isLicensed?: boolean,
1141
1147
  }
1142
1148
  }
1143
1149
 
@@ -17779,6 +17785,11 @@ export class User extends jspb.Message {
17779
17785
  getOffice365User(): Office365User | undefined;
17780
17786
  setOffice365User(value?: Office365User): User;
17781
17787
 
17788
+ hasIsLicensed(): boolean;
17789
+ clearIsLicensed(): void;
17790
+ getIsLicensed(): boolean | undefined;
17791
+ setIsLicensed(value: boolean): User;
17792
+
17782
17793
  serializeBinary(): Uint8Array;
17783
17794
  toObject(includeInstance?: boolean): User.AsObject;
17784
17795
  static toObject(includeInstance: boolean, msg: User): User.AsObject;
@@ -17811,6 +17822,7 @@ export namespace User {
17811
17822
  core?: UserCoreFields.AsObject,
17812
17823
  adUser?: ActiveDirectoryUser.AsObject,
17813
17824
  office365User?: Office365User.AsObject,
17825
+ isLicensed?: boolean,
17814
17826
  }
17815
17827
  }
17816
17828
 
@@ -17951,6 +17963,11 @@ export class Group extends jspb.Message {
17951
17963
  getOffice365Group(): Office365Group | undefined;
17952
17964
  setOffice365Group(value?: Office365Group): Group;
17953
17965
 
17966
+ hasIsLicensed(): boolean;
17967
+ clearIsLicensed(): void;
17968
+ getIsLicensed(): boolean | undefined;
17969
+ setIsLicensed(value: boolean): Group;
17970
+
17954
17971
  serializeBinary(): Uint8Array;
17955
17972
  toObject(includeInstance?: boolean): Group.AsObject;
17956
17973
  static toObject(includeInstance: boolean, msg: Group): Group.AsObject;
@@ -17983,6 +18000,7 @@ export namespace Group {
17983
18000
  core?: GroupCoreFields.AsObject,
17984
18001
  adGroup?: ActiveDirectoryGroup.AsObject,
17985
18002
  office365Group?: Office365Group.AsObject,
18003
+ isLicensed?: boolean,
17986
18004
  }
17987
18005
  }
17988
18006
 
@@ -13137,7 +13137,8 @@ proto.com.lansweeper.dp.outbound.v1.Asset.toObject = function(includeInstance, m
13137
13137
  citrix: (f = msg.getCitrix()) && proto.com.lansweeper.dp.outbound.v1.Citrix.toObject(includeInstance, f),
13138
13138
  manualAssetLockedFields: (f = msg.getManualAssetLockedFields()) && proto.com.lansweeper.dp.outbound.v1.LockedFields.toObject(includeInstance, f),
13139
13139
  aiDetectionsList: jspb.Message.toObjectList(msg.getAiDetectionsList(),
13140
- proto.com.lansweeper.dp.outbound.v1.AiDetection.toObject, includeInstance)
13140
+ proto.com.lansweeper.dp.outbound.v1.AiDetection.toObject, includeInstance),
13141
+ isLicensed: jspb.Message.getBooleanFieldWithDefault(msg, 100, false)
13141
13142
  };
13142
13143
 
13143
13144
  if (includeInstance) {
@@ -13391,6 +13392,10 @@ proto.com.lansweeper.dp.outbound.v1.Asset.deserializeBinaryFromReader = function
13391
13392
  reader.readMessage(value,proto.com.lansweeper.dp.outbound.v1.AiDetection.deserializeBinaryFromReader);
13392
13393
  msg.addAiDetections(value);
13393
13394
  break;
13395
+ case 100:
13396
+ var value = /** @type {boolean} */ (reader.readBool());
13397
+ msg.setIsLicensed(value);
13398
+ break;
13394
13399
  default:
13395
13400
  reader.skipField();
13396
13401
  break;
@@ -13769,6 +13774,13 @@ proto.com.lansweeper.dp.outbound.v1.Asset.serializeBinaryToWriter = function(mes
13769
13774
  proto.com.lansweeper.dp.outbound.v1.AiDetection.serializeBinaryToWriter
13770
13775
  );
13771
13776
  }
13777
+ f = /** @type {boolean} */ (jspb.Message.getField(message, 100));
13778
+ if (f != null) {
13779
+ writer.writeBool(
13780
+ 100,
13781
+ f
13782
+ );
13783
+ }
13772
13784
  };
13773
13785
 
13774
13786
 
@@ -15407,6 +15419,42 @@ proto.com.lansweeper.dp.outbound.v1.Asset.prototype.clearAiDetectionsList = func
15407
15419
  };
15408
15420
 
15409
15421
 
15422
+ /**
15423
+ * optional bool is_licensed = 100;
15424
+ * @return {boolean}
15425
+ */
15426
+ proto.com.lansweeper.dp.outbound.v1.Asset.prototype.getIsLicensed = function() {
15427
+ return /** @type {boolean} */ (jspb.Message.getBooleanFieldWithDefault(this, 100, false));
15428
+ };
15429
+
15430
+
15431
+ /**
15432
+ * @param {boolean} value
15433
+ * @return {!proto.com.lansweeper.dp.outbound.v1.Asset} returns this
15434
+ */
15435
+ proto.com.lansweeper.dp.outbound.v1.Asset.prototype.setIsLicensed = function(value) {
15436
+ return jspb.Message.setField(this, 100, value);
15437
+ };
15438
+
15439
+
15440
+ /**
15441
+ * Clears the field making it undefined.
15442
+ * @return {!proto.com.lansweeper.dp.outbound.v1.Asset} returns this
15443
+ */
15444
+ proto.com.lansweeper.dp.outbound.v1.Asset.prototype.clearIsLicensed = function() {
15445
+ return jspb.Message.setField(this, 100, undefined);
15446
+ };
15447
+
15448
+
15449
+ /**
15450
+ * Returns whether this field is set.
15451
+ * @return {boolean}
15452
+ */
15453
+ proto.com.lansweeper.dp.outbound.v1.Asset.prototype.hasIsLicensed = function() {
15454
+ return jspb.Message.getField(this, 100) != null;
15455
+ };
15456
+
15457
+
15410
15458
 
15411
15459
 
15412
15460
 
@@ -143092,7 +143140,8 @@ proto.com.lansweeper.dp.outbound.v1.User.toObject = function(includeInstance, ms
143092
143140
  reconciliation: (f = msg.getReconciliation()) && proto.com.lansweeper.dp.outbound.v1.ReconciliationInfo.toObject(includeInstance, f),
143093
143141
  core: (f = msg.getCore()) && proto.com.lansweeper.dp.outbound.v1.UserCoreFields.toObject(includeInstance, f),
143094
143142
  adUser: (f = msg.getAdUser()) && proto.com.lansweeper.dp.outbound.v1.ActiveDirectoryUser.toObject(includeInstance, f),
143095
- office365User: (f = msg.getOffice365User()) && proto.com.lansweeper.dp.outbound.v1.Office365User.toObject(includeInstance, f)
143143
+ office365User: (f = msg.getOffice365User()) && proto.com.lansweeper.dp.outbound.v1.Office365User.toObject(includeInstance, f),
143144
+ isLicensed: jspb.Message.getBooleanFieldWithDefault(msg, 24, false)
143096
143145
  };
143097
143146
 
143098
143147
  if (includeInstance) {
@@ -143226,6 +143275,10 @@ proto.com.lansweeper.dp.outbound.v1.User.deserializeBinaryFromReader = function(
143226
143275
  reader.readMessage(value,proto.com.lansweeper.dp.outbound.v1.Office365User.deserializeBinaryFromReader);
143227
143276
  msg.setOffice365User(value);
143228
143277
  break;
143278
+ case 24:
143279
+ var value = /** @type {boolean} */ (reader.readBool());
143280
+ msg.setIsLicensed(value);
143281
+ break;
143229
143282
  default:
143230
143283
  reader.skipField();
143231
143284
  break;
@@ -143412,6 +143465,13 @@ proto.com.lansweeper.dp.outbound.v1.User.serializeBinaryToWriter = function(mess
143412
143465
  proto.com.lansweeper.dp.outbound.v1.Office365User.serializeBinaryToWriter
143413
143466
  );
143414
143467
  }
143468
+ f = /** @type {boolean} */ (jspb.Message.getField(message, 24));
143469
+ if (f != null) {
143470
+ writer.writeBool(
143471
+ 24,
143472
+ f
143473
+ );
143474
+ }
143415
143475
  };
143416
143476
 
143417
143477
 
@@ -144158,6 +144218,42 @@ proto.com.lansweeper.dp.outbound.v1.User.prototype.hasOffice365User = function()
144158
144218
  };
144159
144219
 
144160
144220
 
144221
+ /**
144222
+ * optional bool is_licensed = 24;
144223
+ * @return {boolean}
144224
+ */
144225
+ proto.com.lansweeper.dp.outbound.v1.User.prototype.getIsLicensed = function() {
144226
+ return /** @type {boolean} */ (jspb.Message.getBooleanFieldWithDefault(this, 24, false));
144227
+ };
144228
+
144229
+
144230
+ /**
144231
+ * @param {boolean} value
144232
+ * @return {!proto.com.lansweeper.dp.outbound.v1.User} returns this
144233
+ */
144234
+ proto.com.lansweeper.dp.outbound.v1.User.prototype.setIsLicensed = function(value) {
144235
+ return jspb.Message.setField(this, 24, value);
144236
+ };
144237
+
144238
+
144239
+ /**
144240
+ * Clears the field making it undefined.
144241
+ * @return {!proto.com.lansweeper.dp.outbound.v1.User} returns this
144242
+ */
144243
+ proto.com.lansweeper.dp.outbound.v1.User.prototype.clearIsLicensed = function() {
144244
+ return jspb.Message.setField(this, 24, undefined);
144245
+ };
144246
+
144247
+
144248
+ /**
144249
+ * Returns whether this field is set.
144250
+ * @return {boolean}
144251
+ */
144252
+ proto.com.lansweeper.dp.outbound.v1.User.prototype.hasIsLicensed = function() {
144253
+ return jspb.Message.getField(this, 24) != null;
144254
+ };
144255
+
144256
+
144161
144257
 
144162
144258
 
144163
144259
 
@@ -144514,7 +144610,8 @@ proto.com.lansweeper.dp.outbound.v1.Group.toObject = function(includeInstance, m
144514
144610
  reconciliation: (f = msg.getReconciliation()) && proto.com.lansweeper.dp.outbound.v1.ReconciliationInfo.toObject(includeInstance, f),
144515
144611
  core: (f = msg.getCore()) && proto.com.lansweeper.dp.outbound.v1.GroupCoreFields.toObject(includeInstance, f),
144516
144612
  adGroup: (f = msg.getAdGroup()) && proto.com.lansweeper.dp.outbound.v1.ActiveDirectoryGroup.toObject(includeInstance, f),
144517
- office365Group: (f = msg.getOffice365Group()) && proto.com.lansweeper.dp.outbound.v1.Office365Group.toObject(includeInstance, f)
144613
+ office365Group: (f = msg.getOffice365Group()) && proto.com.lansweeper.dp.outbound.v1.Office365Group.toObject(includeInstance, f),
144614
+ isLicensed: jspb.Message.getBooleanFieldWithDefault(msg, 24, false)
144518
144615
  };
144519
144616
 
144520
144617
  if (includeInstance) {
@@ -144648,6 +144745,10 @@ proto.com.lansweeper.dp.outbound.v1.Group.deserializeBinaryFromReader = function
144648
144745
  reader.readMessage(value,proto.com.lansweeper.dp.outbound.v1.Office365Group.deserializeBinaryFromReader);
144649
144746
  msg.setOffice365Group(value);
144650
144747
  break;
144748
+ case 24:
144749
+ var value = /** @type {boolean} */ (reader.readBool());
144750
+ msg.setIsLicensed(value);
144751
+ break;
144651
144752
  default:
144652
144753
  reader.skipField();
144653
144754
  break;
@@ -144834,6 +144935,13 @@ proto.com.lansweeper.dp.outbound.v1.Group.serializeBinaryToWriter = function(mes
144834
144935
  proto.com.lansweeper.dp.outbound.v1.Office365Group.serializeBinaryToWriter
144835
144936
  );
144836
144937
  }
144938
+ f = /** @type {boolean} */ (jspb.Message.getField(message, 24));
144939
+ if (f != null) {
144940
+ writer.writeBool(
144941
+ 24,
144942
+ f
144943
+ );
144944
+ }
144837
144945
  };
144838
144946
 
144839
144947
 
@@ -145580,6 +145688,42 @@ proto.com.lansweeper.dp.outbound.v1.Group.prototype.hasOffice365Group = function
145580
145688
  };
145581
145689
 
145582
145690
 
145691
+ /**
145692
+ * optional bool is_licensed = 24;
145693
+ * @return {boolean}
145694
+ */
145695
+ proto.com.lansweeper.dp.outbound.v1.Group.prototype.getIsLicensed = function() {
145696
+ return /** @type {boolean} */ (jspb.Message.getBooleanFieldWithDefault(this, 24, false));
145697
+ };
145698
+
145699
+
145700
+ /**
145701
+ * @param {boolean} value
145702
+ * @return {!proto.com.lansweeper.dp.outbound.v1.Group} returns this
145703
+ */
145704
+ proto.com.lansweeper.dp.outbound.v1.Group.prototype.setIsLicensed = function(value) {
145705
+ return jspb.Message.setField(this, 24, value);
145706
+ };
145707
+
145708
+
145709
+ /**
145710
+ * Clears the field making it undefined.
145711
+ * @return {!proto.com.lansweeper.dp.outbound.v1.Group} returns this
145712
+ */
145713
+ proto.com.lansweeper.dp.outbound.v1.Group.prototype.clearIsLicensed = function() {
145714
+ return jspb.Message.setField(this, 24, undefined);
145715
+ };
145716
+
145717
+
145718
+ /**
145719
+ * Returns whether this field is set.
145720
+ * @return {boolean}
145721
+ */
145722
+ proto.com.lansweeper.dp.outbound.v1.Group.prototype.hasIsLicensed = function() {
145723
+ return jspb.Message.getField(this, 24) != null;
145724
+ };
145725
+
145726
+
145583
145727
 
145584
145728
 
145585
145729