@lansweeper/data-platform-outbound-grpc 0.16.2 → 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
 
@@ -20217,6 +20235,10 @@ export class CitrixPool extends jspb.Message {
20217
20235
  getCitrixUserList(): Array<CitrixUser>;
20218
20236
  setCitrixUserList(value: Array<CitrixUser>): CitrixPool;
20219
20237
  addCitrixUser(value?: CitrixUser, index?: number): CitrixUser;
20238
+ clearHostAssetRefsList(): void;
20239
+ getHostAssetRefsList(): Array<string>;
20240
+ setHostAssetRefsList(value: Array<string>): CitrixPool;
20241
+ addHostAssetRefs(value: string, index?: number): string;
20220
20242
 
20221
20243
  serializeBinary(): Uint8Array;
20222
20244
  toObject(includeInstance?: boolean): CitrixPool.AsObject;
@@ -20256,6 +20278,7 @@ export namespace CitrixPool {
20256
20278
  physicalInterfacesList: Array<CitrixPhysicalInterface.AsObject>,
20257
20279
  virtualInterfacesList: Array<CitrixVirtualInterface.AsObject>,
20258
20280
  citrixUserList: Array<CitrixUser.AsObject>,
20281
+ hostAssetRefsList: Array<string>,
20259
20282
  }
20260
20283
  }
20261
20284
 
@@ -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
 
@@ -161811,7 +161955,7 @@ proto.com.lansweeper.dp.outbound.v1.Citrix.prototype.hasCitrixGuest = function()
161811
161955
  * @private {!Array<number>}
161812
161956
  * @const
161813
161957
  */
161814
- proto.com.lansweeper.dp.outbound.v1.CitrixPool.repeatedFields_ = [18,19,20,21,22,23,24,25,26];
161958
+ proto.com.lansweeper.dp.outbound.v1.CitrixPool.repeatedFields_ = [18,19,20,21,22,23,24,25,26,27];
161815
161959
 
161816
161960
 
161817
161961
 
@@ -161877,7 +162021,8 @@ proto.com.lansweeper.dp.outbound.v1.CitrixPool.toObject = function(includeInstan
161877
162021
  virtualInterfacesList: jspb.Message.toObjectList(msg.getVirtualInterfacesList(),
161878
162022
  proto.com.lansweeper.dp.outbound.v1.CitrixVirtualInterface.toObject, includeInstance),
161879
162023
  citrixUserList: jspb.Message.toObjectList(msg.getCitrixUserList(),
161880
- proto.com.lansweeper.dp.outbound.v1.CitrixUser.toObject, includeInstance)
162024
+ proto.com.lansweeper.dp.outbound.v1.CitrixUser.toObject, includeInstance),
162025
+ hostAssetRefsList: (f = jspb.Message.getRepeatedField(msg, 27)) == null ? undefined : f
161881
162026
  };
161882
162027
 
161883
162028
  if (includeInstance) {
@@ -162026,6 +162171,10 @@ proto.com.lansweeper.dp.outbound.v1.CitrixPool.deserializeBinaryFromReader = fun
162026
162171
  reader.readMessage(value,proto.com.lansweeper.dp.outbound.v1.CitrixUser.deserializeBinaryFromReader);
162027
162172
  msg.addCitrixUser(value);
162028
162173
  break;
162174
+ case 27:
162175
+ var value = /** @type {string} */ (reader.readString());
162176
+ msg.addHostAssetRefs(value);
162177
+ break;
162029
162178
  default:
162030
162179
  reader.skipField();
162031
162180
  break;
@@ -162245,6 +162394,13 @@ proto.com.lansweeper.dp.outbound.v1.CitrixPool.serializeBinaryToWriter = functio
162245
162394
  proto.com.lansweeper.dp.outbound.v1.CitrixUser.serializeBinaryToWriter
162246
162395
  );
162247
162396
  }
162397
+ f = message.getHostAssetRefsList();
162398
+ if (f.length > 0) {
162399
+ writer.writeRepeatedString(
162400
+ 27,
162401
+ f
162402
+ );
162403
+ }
162248
162404
  };
162249
162405
 
162250
162406
 
@@ -163201,6 +163357,43 @@ proto.com.lansweeper.dp.outbound.v1.CitrixPool.prototype.clearCitrixUserList = f
163201
163357
  };
163202
163358
 
163203
163359
 
163360
+ /**
163361
+ * repeated string host_asset_refs = 27;
163362
+ * @return {!Array<string>}
163363
+ */
163364
+ proto.com.lansweeper.dp.outbound.v1.CitrixPool.prototype.getHostAssetRefsList = function() {
163365
+ return /** @type {!Array<string>} */ (jspb.Message.getRepeatedField(this, 27));
163366
+ };
163367
+
163368
+
163369
+ /**
163370
+ * @param {!Array<string>} value
163371
+ * @return {!proto.com.lansweeper.dp.outbound.v1.CitrixPool} returns this
163372
+ */
163373
+ proto.com.lansweeper.dp.outbound.v1.CitrixPool.prototype.setHostAssetRefsList = function(value) {
163374
+ return jspb.Message.setField(this, 27, value || []);
163375
+ };
163376
+
163377
+
163378
+ /**
163379
+ * @param {string} value
163380
+ * @param {number=} opt_index
163381
+ * @return {!proto.com.lansweeper.dp.outbound.v1.CitrixPool} returns this
163382
+ */
163383
+ proto.com.lansweeper.dp.outbound.v1.CitrixPool.prototype.addHostAssetRefs = function(value, opt_index) {
163384
+ return jspb.Message.addToRepeatedField(this, 27, value, opt_index);
163385
+ };
163386
+
163387
+
163388
+ /**
163389
+ * Clears the list making it empty but non-null.
163390
+ * @return {!proto.com.lansweeper.dp.outbound.v1.CitrixPool} returns this
163391
+ */
163392
+ proto.com.lansweeper.dp.outbound.v1.CitrixPool.prototype.clearHostAssetRefsList = function() {
163393
+ return this.setHostAssetRefsList([]);
163394
+ };
163395
+
163396
+
163204
163397
 
163205
163398
 
163206
163399