@lansweeper/data-platform-outbound-grpc 0.1.31 → 0.1.33

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.
@@ -467,10 +467,15 @@ export class Relation extends jspb.Message {
467
467
  getTo(): EntityPath | undefined;
468
468
  setTo(value?: EntityPath): Relation;
469
469
 
470
- hasTime(): boolean;
471
- clearTime(): void;
472
- getTime(): google_protobuf_timestamp_pb.Timestamp | undefined;
473
- setTime(value?: google_protobuf_timestamp_pb.Timestamp): Relation;
470
+ hasStart(): boolean;
471
+ clearStart(): void;
472
+ getStart(): google_protobuf_timestamp_pb.Timestamp | undefined;
473
+ setStart(value?: google_protobuf_timestamp_pb.Timestamp): Relation;
474
+
475
+ hasEnd(): boolean;
476
+ clearEnd(): void;
477
+ getEnd(): google_protobuf_timestamp_pb.Timestamp | undefined;
478
+ setEnd(value?: google_protobuf_timestamp_pb.Timestamp): Relation;
474
479
  getName(): string;
475
480
  setName(value: string): Relation;
476
481
  clearTagList(): void;
@@ -492,7 +497,8 @@ export namespace Relation {
492
497
  export type AsObject = {
493
498
  from?: EntityPath.AsObject,
494
499
  to?: EntityPath.AsObject,
495
- time?: google_protobuf_timestamp_pb.Timestamp.AsObject,
500
+ start?: google_protobuf_timestamp_pb.Timestamp.AsObject,
501
+ end?: google_protobuf_timestamp_pb.Timestamp.AsObject,
496
502
  name: string,
497
503
  tagList: Array<Tag.AsObject>,
498
504
  }
@@ -1039,8 +1045,8 @@ export class OperatingSystem extends jspb.Message {
1039
1045
 
1040
1046
  hasProductSuite(): boolean;
1041
1047
  clearProductSuite(): void;
1042
- getProductSuite(): string | undefined;
1043
- setProductSuite(value: string): OperatingSystem;
1048
+ getProductSuite(): MappedValue | undefined;
1049
+ setProductSuite(value?: MappedValue): OperatingSystem;
1044
1050
 
1045
1051
  hasRegisteredUser(): boolean;
1046
1052
  clearRegisteredUser(): void;
@@ -1061,16 +1067,15 @@ export class OperatingSystem extends jspb.Message {
1061
1067
  clearSpMinorVersion(): void;
1062
1068
  getSpMinorVersion(): number | undefined;
1063
1069
  setSpMinorVersion(value: number): OperatingSystem;
1064
-
1065
- hasSuiteMask(): boolean;
1066
- clearSuiteMask(): void;
1067
- getSuiteMask(): string | undefined;
1068
- setSuiteMask(value: string): OperatingSystem;
1070
+ clearSuiteMaskList(): void;
1071
+ getSuiteMaskList(): Array<MappedValue>;
1072
+ setSuiteMaskList(value: Array<MappedValue>): OperatingSystem;
1073
+ addSuiteMask(value?: MappedValue, index?: number): MappedValue;
1069
1074
 
1070
1075
  hasSystemRole(): boolean;
1071
1076
  clearSystemRole(): void;
1072
- getSystemRole(): string | undefined;
1073
- setSystemRole(value: string): OperatingSystem;
1077
+ getSystemRole(): MappedValue | undefined;
1078
+ setSystemRole(value?: MappedValue): OperatingSystem;
1074
1079
 
1075
1080
  hasUuid(): boolean;
1076
1081
  clearUuid(): void;
@@ -1145,13 +1150,13 @@ export namespace OperatingSystem {
1145
1150
  osSerialNumber?: string,
1146
1151
  osSystemDirectory?: string,
1147
1152
  otherTypeDescription?: string,
1148
- productSuite?: string,
1153
+ productSuite?: MappedValue.AsObject,
1149
1154
  registeredUser?: string,
1150
1155
  servicePackName?: string,
1151
1156
  spMajorVersion?: number,
1152
1157
  spMinorVersion?: number,
1153
- suiteMask?: string,
1154
- systemRole?: string,
1158
+ suiteMaskList: Array<MappedValue.AsObject>,
1159
+ systemRole?: MappedValue.AsObject,
1155
1160
  uuid?: string,
1156
1161
  version?: string,
1157
1162
  versionFull?: string,
@@ -477,7 +477,7 @@ if (goog.DEBUG && !COMPILED) {
477
477
  * @constructor
478
478
  */
479
479
  proto.com.lansweeper.dp.outbound.v1.OperatingSystem = function(opt_data) {
480
- jspb.Message.initialize(this, opt_data, 0, -1, null, null);
480
+ jspb.Message.initialize(this, opt_data, 0, -1, proto.com.lansweeper.dp.outbound.v1.OperatingSystem.repeatedFields_, null);
481
481
  };
482
482
  goog.inherits(proto.com.lansweeper.dp.outbound.v1.OperatingSystem, jspb.Message);
483
483
  if (goog.DEBUG && !COMPILED) {
@@ -4512,7 +4512,7 @@ proto.com.lansweeper.dp.outbound.v1.Tag.prototype.hasValue = function() {
4512
4512
  * @private {!Array<number>}
4513
4513
  * @const
4514
4514
  */
4515
- proto.com.lansweeper.dp.outbound.v1.Relation.repeatedFields_ = [5];
4515
+ proto.com.lansweeper.dp.outbound.v1.Relation.repeatedFields_ = [6];
4516
4516
 
4517
4517
 
4518
4518
 
@@ -4547,8 +4547,9 @@ proto.com.lansweeper.dp.outbound.v1.Relation.toObject = function(includeInstance
4547
4547
  var f, obj = {
4548
4548
  from: (f = msg.getFrom()) && proto.com.lansweeper.dp.outbound.v1.EntityPath.toObject(includeInstance, f),
4549
4549
  to: (f = msg.getTo()) && proto.com.lansweeper.dp.outbound.v1.EntityPath.toObject(includeInstance, f),
4550
- time: (f = msg.getTime()) && google_protobuf_timestamp_pb.Timestamp.toObject(includeInstance, f),
4551
- name: jspb.Message.getFieldWithDefault(msg, 4, ""),
4550
+ start: (f = msg.getStart()) && google_protobuf_timestamp_pb.Timestamp.toObject(includeInstance, f),
4551
+ end: (f = msg.getEnd()) && google_protobuf_timestamp_pb.Timestamp.toObject(includeInstance, f),
4552
+ name: jspb.Message.getFieldWithDefault(msg, 5, ""),
4552
4553
  tagList: jspb.Message.toObjectList(msg.getTagList(),
4553
4554
  proto.com.lansweeper.dp.outbound.v1.Tag.toObject, includeInstance)
4554
4555
  };
@@ -4600,13 +4601,18 @@ proto.com.lansweeper.dp.outbound.v1.Relation.deserializeBinaryFromReader = funct
4600
4601
  case 3:
4601
4602
  var value = new google_protobuf_timestamp_pb.Timestamp;
4602
4603
  reader.readMessage(value,google_protobuf_timestamp_pb.Timestamp.deserializeBinaryFromReader);
4603
- msg.setTime(value);
4604
+ msg.setStart(value);
4604
4605
  break;
4605
4606
  case 4:
4607
+ var value = new google_protobuf_timestamp_pb.Timestamp;
4608
+ reader.readMessage(value,google_protobuf_timestamp_pb.Timestamp.deserializeBinaryFromReader);
4609
+ msg.setEnd(value);
4610
+ break;
4611
+ case 5:
4606
4612
  var value = /** @type {string} */ (reader.readString());
4607
4613
  msg.setName(value);
4608
4614
  break;
4609
- case 5:
4615
+ case 6:
4610
4616
  var value = new proto.com.lansweeper.dp.outbound.v1.Tag;
4611
4617
  reader.readMessage(value,proto.com.lansweeper.dp.outbound.v1.Tag.deserializeBinaryFromReader);
4612
4618
  msg.addTag(value);
@@ -4656,7 +4662,7 @@ proto.com.lansweeper.dp.outbound.v1.Relation.serializeBinaryToWriter = function(
4656
4662
  proto.com.lansweeper.dp.outbound.v1.EntityPath.serializeBinaryToWriter
4657
4663
  );
4658
4664
  }
4659
- f = message.getTime();
4665
+ f = message.getStart();
4660
4666
  if (f != null) {
4661
4667
  writer.writeMessage(
4662
4668
  3,
@@ -4664,17 +4670,25 @@ proto.com.lansweeper.dp.outbound.v1.Relation.serializeBinaryToWriter = function(
4664
4670
  google_protobuf_timestamp_pb.Timestamp.serializeBinaryToWriter
4665
4671
  );
4666
4672
  }
4673
+ f = message.getEnd();
4674
+ if (f != null) {
4675
+ writer.writeMessage(
4676
+ 4,
4677
+ f,
4678
+ google_protobuf_timestamp_pb.Timestamp.serializeBinaryToWriter
4679
+ );
4680
+ }
4667
4681
  f = message.getName();
4668
4682
  if (f.length > 0) {
4669
4683
  writer.writeString(
4670
- 4,
4684
+ 5,
4671
4685
  f
4672
4686
  );
4673
4687
  }
4674
4688
  f = message.getTagList();
4675
4689
  if (f.length > 0) {
4676
4690
  writer.writeRepeatedMessage(
4677
- 5,
4691
+ 6,
4678
4692
  f,
4679
4693
  proto.com.lansweeper.dp.outbound.v1.Tag.serializeBinaryToWriter
4680
4694
  );
@@ -4757,10 +4771,10 @@ proto.com.lansweeper.dp.outbound.v1.Relation.prototype.hasTo = function() {
4757
4771
 
4758
4772
 
4759
4773
  /**
4760
- * optional google.protobuf.Timestamp time = 3;
4774
+ * optional google.protobuf.Timestamp start = 3;
4761
4775
  * @return {?proto.google.protobuf.Timestamp}
4762
4776
  */
4763
- proto.com.lansweeper.dp.outbound.v1.Relation.prototype.getTime = function() {
4777
+ proto.com.lansweeper.dp.outbound.v1.Relation.prototype.getStart = function() {
4764
4778
  return /** @type{?proto.google.protobuf.Timestamp} */ (
4765
4779
  jspb.Message.getWrapperField(this, google_protobuf_timestamp_pb.Timestamp, 3));
4766
4780
  };
@@ -4770,7 +4784,7 @@ proto.com.lansweeper.dp.outbound.v1.Relation.prototype.getTime = function() {
4770
4784
  * @param {?proto.google.protobuf.Timestamp|undefined} value
4771
4785
  * @return {!proto.com.lansweeper.dp.outbound.v1.Relation} returns this
4772
4786
  */
4773
- proto.com.lansweeper.dp.outbound.v1.Relation.prototype.setTime = function(value) {
4787
+ proto.com.lansweeper.dp.outbound.v1.Relation.prototype.setStart = function(value) {
4774
4788
  return jspb.Message.setWrapperField(this, 3, value);
4775
4789
  };
4776
4790
 
@@ -4779,8 +4793,8 @@ proto.com.lansweeper.dp.outbound.v1.Relation.prototype.setTime = function(value)
4779
4793
  * Clears the message field making it undefined.
4780
4794
  * @return {!proto.com.lansweeper.dp.outbound.v1.Relation} returns this
4781
4795
  */
4782
- proto.com.lansweeper.dp.outbound.v1.Relation.prototype.clearTime = function() {
4783
- return this.setTime(undefined);
4796
+ proto.com.lansweeper.dp.outbound.v1.Relation.prototype.clearStart = function() {
4797
+ return this.setStart(undefined);
4784
4798
  };
4785
4799
 
4786
4800
 
@@ -4788,17 +4802,54 @@ proto.com.lansweeper.dp.outbound.v1.Relation.prototype.clearTime = function() {
4788
4802
  * Returns whether this field is set.
4789
4803
  * @return {boolean}
4790
4804
  */
4791
- proto.com.lansweeper.dp.outbound.v1.Relation.prototype.hasTime = function() {
4805
+ proto.com.lansweeper.dp.outbound.v1.Relation.prototype.hasStart = function() {
4792
4806
  return jspb.Message.getField(this, 3) != null;
4793
4807
  };
4794
4808
 
4795
4809
 
4796
4810
  /**
4797
- * optional string name = 4;
4811
+ * optional google.protobuf.Timestamp end = 4;
4812
+ * @return {?proto.google.protobuf.Timestamp}
4813
+ */
4814
+ proto.com.lansweeper.dp.outbound.v1.Relation.prototype.getEnd = function() {
4815
+ return /** @type{?proto.google.protobuf.Timestamp} */ (
4816
+ jspb.Message.getWrapperField(this, google_protobuf_timestamp_pb.Timestamp, 4));
4817
+ };
4818
+
4819
+
4820
+ /**
4821
+ * @param {?proto.google.protobuf.Timestamp|undefined} value
4822
+ * @return {!proto.com.lansweeper.dp.outbound.v1.Relation} returns this
4823
+ */
4824
+ proto.com.lansweeper.dp.outbound.v1.Relation.prototype.setEnd = function(value) {
4825
+ return jspb.Message.setWrapperField(this, 4, value);
4826
+ };
4827
+
4828
+
4829
+ /**
4830
+ * Clears the message field making it undefined.
4831
+ * @return {!proto.com.lansweeper.dp.outbound.v1.Relation} returns this
4832
+ */
4833
+ proto.com.lansweeper.dp.outbound.v1.Relation.prototype.clearEnd = function() {
4834
+ return this.setEnd(undefined);
4835
+ };
4836
+
4837
+
4838
+ /**
4839
+ * Returns whether this field is set.
4840
+ * @return {boolean}
4841
+ */
4842
+ proto.com.lansweeper.dp.outbound.v1.Relation.prototype.hasEnd = function() {
4843
+ return jspb.Message.getField(this, 4) != null;
4844
+ };
4845
+
4846
+
4847
+ /**
4848
+ * optional string name = 5;
4798
4849
  * @return {string}
4799
4850
  */
4800
4851
  proto.com.lansweeper.dp.outbound.v1.Relation.prototype.getName = function() {
4801
- return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 4, ""));
4852
+ return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 5, ""));
4802
4853
  };
4803
4854
 
4804
4855
 
@@ -4807,17 +4858,17 @@ proto.com.lansweeper.dp.outbound.v1.Relation.prototype.getName = function() {
4807
4858
  * @return {!proto.com.lansweeper.dp.outbound.v1.Relation} returns this
4808
4859
  */
4809
4860
  proto.com.lansweeper.dp.outbound.v1.Relation.prototype.setName = function(value) {
4810
- return jspb.Message.setProto3StringField(this, 4, value);
4861
+ return jspb.Message.setProto3StringField(this, 5, value);
4811
4862
  };
4812
4863
 
4813
4864
 
4814
4865
  /**
4815
- * repeated Tag tag = 5;
4866
+ * repeated Tag tag = 6;
4816
4867
  * @return {!Array<!proto.com.lansweeper.dp.outbound.v1.Tag>}
4817
4868
  */
4818
4869
  proto.com.lansweeper.dp.outbound.v1.Relation.prototype.getTagList = function() {
4819
4870
  return /** @type{!Array<!proto.com.lansweeper.dp.outbound.v1.Tag>} */ (
4820
- jspb.Message.getRepeatedWrapperField(this, proto.com.lansweeper.dp.outbound.v1.Tag, 5));
4871
+ jspb.Message.getRepeatedWrapperField(this, proto.com.lansweeper.dp.outbound.v1.Tag, 6));
4821
4872
  };
4822
4873
 
4823
4874
 
@@ -4826,7 +4877,7 @@ proto.com.lansweeper.dp.outbound.v1.Relation.prototype.getTagList = function() {
4826
4877
  * @return {!proto.com.lansweeper.dp.outbound.v1.Relation} returns this
4827
4878
  */
4828
4879
  proto.com.lansweeper.dp.outbound.v1.Relation.prototype.setTagList = function(value) {
4829
- return jspb.Message.setRepeatedWrapperField(this, 5, value);
4880
+ return jspb.Message.setRepeatedWrapperField(this, 6, value);
4830
4881
  };
4831
4882
 
4832
4883
 
@@ -4836,7 +4887,7 @@ proto.com.lansweeper.dp.outbound.v1.Relation.prototype.setTagList = function(val
4836
4887
  * @return {!proto.com.lansweeper.dp.outbound.v1.Tag}
4837
4888
  */
4838
4889
  proto.com.lansweeper.dp.outbound.v1.Relation.prototype.addTag = function(opt_value, opt_index) {
4839
- return jspb.Message.addToRepeatedWrapperField(this, 5, opt_value, proto.com.lansweeper.dp.outbound.v1.Tag, opt_index);
4890
+ return jspb.Message.addToRepeatedWrapperField(this, 6, opt_value, proto.com.lansweeper.dp.outbound.v1.Tag, opt_index);
4840
4891
  };
4841
4892
 
4842
4893
 
@@ -8128,6 +8179,13 @@ proto.com.lansweeper.dp.outbound.v1.NormalizedOperatingSystem.prototype.hasCatal
8128
8179
 
8129
8180
 
8130
8181
 
8182
+ /**
8183
+ * List of repeated fields within this message type.
8184
+ * @private {!Array<number>}
8185
+ * @const
8186
+ */
8187
+ proto.com.lansweeper.dp.outbound.v1.OperatingSystem.repeatedFields_ = [34];
8188
+
8131
8189
 
8132
8190
 
8133
8191
  if (jspb.Message.GENERATE_TO_OBJECT) {
@@ -8180,13 +8238,14 @@ proto.com.lansweeper.dp.outbound.v1.OperatingSystem.toObject = function(includeI
8180
8238
  osSerialNumber: jspb.Message.getFieldWithDefault(msg, 26, ""),
8181
8239
  osSystemDirectory: jspb.Message.getFieldWithDefault(msg, 27, ""),
8182
8240
  otherTypeDescription: jspb.Message.getFieldWithDefault(msg, 28, ""),
8183
- productSuite: jspb.Message.getFieldWithDefault(msg, 29, ""),
8241
+ productSuite: (f = msg.getProductSuite()) && proto.com.lansweeper.dp.outbound.v1.MappedValue.toObject(includeInstance, f),
8184
8242
  registeredUser: jspb.Message.getFieldWithDefault(msg, 30, ""),
8185
8243
  servicePackName: jspb.Message.getFieldWithDefault(msg, 31, ""),
8186
8244
  spMajorVersion: jspb.Message.getFieldWithDefault(msg, 32, 0),
8187
8245
  spMinorVersion: jspb.Message.getFieldWithDefault(msg, 33, 0),
8188
- suiteMask: jspb.Message.getFieldWithDefault(msg, 34, ""),
8189
- systemRole: jspb.Message.getFieldWithDefault(msg, 35, ""),
8246
+ suiteMaskList: jspb.Message.toObjectList(msg.getSuiteMaskList(),
8247
+ proto.com.lansweeper.dp.outbound.v1.MappedValue.toObject, includeInstance),
8248
+ systemRole: (f = msg.getSystemRole()) && proto.com.lansweeper.dp.outbound.v1.MappedValue.toObject(includeInstance, f),
8190
8249
  uuid: jspb.Message.getFieldWithDefault(msg, 36, ""),
8191
8250
  version: jspb.Message.getFieldWithDefault(msg, 37, ""),
8192
8251
  versionFull: jspb.Message.getFieldWithDefault(msg, 38, ""),
@@ -8318,7 +8377,8 @@ proto.com.lansweeper.dp.outbound.v1.OperatingSystem.deserializeBinaryFromReader
8318
8377
  msg.setOtherTypeDescription(value);
8319
8378
  break;
8320
8379
  case 29:
8321
- var value = /** @type {string} */ (reader.readString());
8380
+ var value = new proto.com.lansweeper.dp.outbound.v1.MappedValue;
8381
+ reader.readMessage(value,proto.com.lansweeper.dp.outbound.v1.MappedValue.deserializeBinaryFromReader);
8322
8382
  msg.setProductSuite(value);
8323
8383
  break;
8324
8384
  case 30:
@@ -8338,11 +8398,13 @@ proto.com.lansweeper.dp.outbound.v1.OperatingSystem.deserializeBinaryFromReader
8338
8398
  msg.setSpMinorVersion(value);
8339
8399
  break;
8340
8400
  case 34:
8341
- var value = /** @type {string} */ (reader.readString());
8342
- msg.setSuiteMask(value);
8401
+ var value = new proto.com.lansweeper.dp.outbound.v1.MappedValue;
8402
+ reader.readMessage(value,proto.com.lansweeper.dp.outbound.v1.MappedValue.deserializeBinaryFromReader);
8403
+ msg.addSuiteMask(value);
8343
8404
  break;
8344
8405
  case 35:
8345
- var value = /** @type {string} */ (reader.readString());
8406
+ var value = new proto.com.lansweeper.dp.outbound.v1.MappedValue;
8407
+ reader.readMessage(value,proto.com.lansweeper.dp.outbound.v1.MappedValue.deserializeBinaryFromReader);
8346
8408
  msg.setSystemRole(value);
8347
8409
  break;
8348
8410
  case 36:
@@ -8555,11 +8617,12 @@ proto.com.lansweeper.dp.outbound.v1.OperatingSystem.serializeBinaryToWriter = fu
8555
8617
  f
8556
8618
  );
8557
8619
  }
8558
- f = /** @type {string} */ (jspb.Message.getField(message, 29));
8620
+ f = message.getProductSuite();
8559
8621
  if (f != null) {
8560
- writer.writeString(
8622
+ writer.writeMessage(
8561
8623
  29,
8562
- f
8624
+ f,
8625
+ proto.com.lansweeper.dp.outbound.v1.MappedValue.serializeBinaryToWriter
8563
8626
  );
8564
8627
  }
8565
8628
  f = /** @type {string} */ (jspb.Message.getField(message, 30));
@@ -8590,18 +8653,20 @@ proto.com.lansweeper.dp.outbound.v1.OperatingSystem.serializeBinaryToWriter = fu
8590
8653
  f
8591
8654
  );
8592
8655
  }
8593
- f = /** @type {string} */ (jspb.Message.getField(message, 34));
8594
- if (f != null) {
8595
- writer.writeString(
8656
+ f = message.getSuiteMaskList();
8657
+ if (f.length > 0) {
8658
+ writer.writeRepeatedMessage(
8596
8659
  34,
8597
- f
8660
+ f,
8661
+ proto.com.lansweeper.dp.outbound.v1.MappedValue.serializeBinaryToWriter
8598
8662
  );
8599
8663
  }
8600
- f = /** @type {string} */ (jspb.Message.getField(message, 35));
8664
+ f = message.getSystemRole();
8601
8665
  if (f != null) {
8602
- writer.writeString(
8666
+ writer.writeMessage(
8603
8667
  35,
8604
- f
8668
+ f,
8669
+ proto.com.lansweeper.dp.outbound.v1.MappedValue.serializeBinaryToWriter
8605
8670
  );
8606
8671
  }
8607
8672
  f = /** @type {string} */ (jspb.Message.getField(message, 36));
@@ -9422,29 +9487,30 @@ proto.com.lansweeper.dp.outbound.v1.OperatingSystem.prototype.hasOtherTypeDescri
9422
9487
 
9423
9488
 
9424
9489
  /**
9425
- * optional string product_suite = 29;
9426
- * @return {string}
9490
+ * optional MappedValue product_suite = 29;
9491
+ * @return {?proto.com.lansweeper.dp.outbound.v1.MappedValue}
9427
9492
  */
9428
9493
  proto.com.lansweeper.dp.outbound.v1.OperatingSystem.prototype.getProductSuite = function() {
9429
- return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 29, ""));
9494
+ return /** @type{?proto.com.lansweeper.dp.outbound.v1.MappedValue} */ (
9495
+ jspb.Message.getWrapperField(this, proto.com.lansweeper.dp.outbound.v1.MappedValue, 29));
9430
9496
  };
9431
9497
 
9432
9498
 
9433
9499
  /**
9434
- * @param {string} value
9500
+ * @param {?proto.com.lansweeper.dp.outbound.v1.MappedValue|undefined} value
9435
9501
  * @return {!proto.com.lansweeper.dp.outbound.v1.OperatingSystem} returns this
9436
- */
9502
+ */
9437
9503
  proto.com.lansweeper.dp.outbound.v1.OperatingSystem.prototype.setProductSuite = function(value) {
9438
- return jspb.Message.setField(this, 29, value);
9504
+ return jspb.Message.setWrapperField(this, 29, value);
9439
9505
  };
9440
9506
 
9441
9507
 
9442
9508
  /**
9443
- * Clears the field making it undefined.
9509
+ * Clears the message field making it undefined.
9444
9510
  * @return {!proto.com.lansweeper.dp.outbound.v1.OperatingSystem} returns this
9445
9511
  */
9446
9512
  proto.com.lansweeper.dp.outbound.v1.OperatingSystem.prototype.clearProductSuite = function() {
9447
- return jspb.Message.setField(this, 29, undefined);
9513
+ return this.setProductSuite(undefined);
9448
9514
  };
9449
9515
 
9450
9516
 
@@ -9602,65 +9668,68 @@ proto.com.lansweeper.dp.outbound.v1.OperatingSystem.prototype.hasSpMinorVersion
9602
9668
 
9603
9669
 
9604
9670
  /**
9605
- * optional string suite_mask = 34;
9606
- * @return {string}
9671
+ * repeated MappedValue suite_mask = 34;
9672
+ * @return {!Array<!proto.com.lansweeper.dp.outbound.v1.MappedValue>}
9607
9673
  */
9608
- proto.com.lansweeper.dp.outbound.v1.OperatingSystem.prototype.getSuiteMask = function() {
9609
- return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 34, ""));
9674
+ proto.com.lansweeper.dp.outbound.v1.OperatingSystem.prototype.getSuiteMaskList = function() {
9675
+ return /** @type{!Array<!proto.com.lansweeper.dp.outbound.v1.MappedValue>} */ (
9676
+ jspb.Message.getRepeatedWrapperField(this, proto.com.lansweeper.dp.outbound.v1.MappedValue, 34));
9610
9677
  };
9611
9678
 
9612
9679
 
9613
9680
  /**
9614
- * @param {string} value
9681
+ * @param {!Array<!proto.com.lansweeper.dp.outbound.v1.MappedValue>} value
9615
9682
  * @return {!proto.com.lansweeper.dp.outbound.v1.OperatingSystem} returns this
9616
- */
9617
- proto.com.lansweeper.dp.outbound.v1.OperatingSystem.prototype.setSuiteMask = function(value) {
9618
- return jspb.Message.setField(this, 34, value);
9683
+ */
9684
+ proto.com.lansweeper.dp.outbound.v1.OperatingSystem.prototype.setSuiteMaskList = function(value) {
9685
+ return jspb.Message.setRepeatedWrapperField(this, 34, value);
9619
9686
  };
9620
9687
 
9621
9688
 
9622
9689
  /**
9623
- * Clears the field making it undefined.
9624
- * @return {!proto.com.lansweeper.dp.outbound.v1.OperatingSystem} returns this
9690
+ * @param {!proto.com.lansweeper.dp.outbound.v1.MappedValue=} opt_value
9691
+ * @param {number=} opt_index
9692
+ * @return {!proto.com.lansweeper.dp.outbound.v1.MappedValue}
9625
9693
  */
9626
- proto.com.lansweeper.dp.outbound.v1.OperatingSystem.prototype.clearSuiteMask = function() {
9627
- return jspb.Message.setField(this, 34, undefined);
9694
+ proto.com.lansweeper.dp.outbound.v1.OperatingSystem.prototype.addSuiteMask = function(opt_value, opt_index) {
9695
+ return jspb.Message.addToRepeatedWrapperField(this, 34, opt_value, proto.com.lansweeper.dp.outbound.v1.MappedValue, opt_index);
9628
9696
  };
9629
9697
 
9630
9698
 
9631
9699
  /**
9632
- * Returns whether this field is set.
9633
- * @return {boolean}
9700
+ * Clears the list making it empty but non-null.
9701
+ * @return {!proto.com.lansweeper.dp.outbound.v1.OperatingSystem} returns this
9634
9702
  */
9635
- proto.com.lansweeper.dp.outbound.v1.OperatingSystem.prototype.hasSuiteMask = function() {
9636
- return jspb.Message.getField(this, 34) != null;
9703
+ proto.com.lansweeper.dp.outbound.v1.OperatingSystem.prototype.clearSuiteMaskList = function() {
9704
+ return this.setSuiteMaskList([]);
9637
9705
  };
9638
9706
 
9639
9707
 
9640
9708
  /**
9641
- * optional string system_role = 35;
9642
- * @return {string}
9709
+ * optional MappedValue system_role = 35;
9710
+ * @return {?proto.com.lansweeper.dp.outbound.v1.MappedValue}
9643
9711
  */
9644
9712
  proto.com.lansweeper.dp.outbound.v1.OperatingSystem.prototype.getSystemRole = function() {
9645
- return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 35, ""));
9713
+ return /** @type{?proto.com.lansweeper.dp.outbound.v1.MappedValue} */ (
9714
+ jspb.Message.getWrapperField(this, proto.com.lansweeper.dp.outbound.v1.MappedValue, 35));
9646
9715
  };
9647
9716
 
9648
9717
 
9649
9718
  /**
9650
- * @param {string} value
9719
+ * @param {?proto.com.lansweeper.dp.outbound.v1.MappedValue|undefined} value
9651
9720
  * @return {!proto.com.lansweeper.dp.outbound.v1.OperatingSystem} returns this
9652
- */
9721
+ */
9653
9722
  proto.com.lansweeper.dp.outbound.v1.OperatingSystem.prototype.setSystemRole = function(value) {
9654
- return jspb.Message.setField(this, 35, value);
9723
+ return jspb.Message.setWrapperField(this, 35, value);
9655
9724
  };
9656
9725
 
9657
9726
 
9658
9727
  /**
9659
- * Clears the field making it undefined.
9728
+ * Clears the message field making it undefined.
9660
9729
  * @return {!proto.com.lansweeper.dp.outbound.v1.OperatingSystem} returns this
9661
9730
  */
9662
9731
  proto.com.lansweeper.dp.outbound.v1.OperatingSystem.prototype.clearSystemRole = function() {
9663
- return jspb.Message.setField(this, 35, undefined);
9732
+ return this.setSystemRole(undefined);
9664
9733
  };
9665
9734
 
9666
9735