@lansweeper/data-platform-outbound-grpc 0.15.1 → 0.16.0

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.
@@ -4957,6 +4957,16 @@ export class HardwareInfo extends jspb.Message {
4957
4957
  getTypeGroup(): string | undefined;
4958
4958
  setTypeGroup(value: string): HardwareInfo;
4959
4959
 
4960
+ hasSpecificTypeName(): boolean;
4961
+ clearSpecificTypeName(): void;
4962
+ getSpecificTypeName(): string | undefined;
4963
+ setSpecificTypeName(value: string): HardwareInfo;
4964
+
4965
+ hasSpecificTypeCaption(): boolean;
4966
+ clearSpecificTypeCaption(): void;
4967
+ getSpecificTypeCaption(): string | undefined;
4968
+ setSpecificTypeCaption(value: string): HardwareInfo;
4969
+
4960
4970
  hasMakeName(): boolean;
4961
4971
  clearMakeName(): void;
4962
4972
  getMakeName(): string | undefined;
@@ -5023,6 +5033,8 @@ export namespace HardwareInfo {
5023
5033
  typeName?: string,
5024
5034
  typeCaption?: string,
5025
5035
  typeGroup?: string,
5036
+ specificTypeName?: string,
5037
+ specificTypeCaption?: string,
5026
5038
  makeName?: string,
5027
5039
  modelName?: string,
5028
5040
  familyName?: string,
@@ -16868,6 +16880,11 @@ export class CatalogOs extends jspb.Message {
16868
16880
  getMatchScore(): number | undefined;
16869
16881
  setMatchScore(value: number): CatalogOs;
16870
16882
 
16883
+ hasOsFamily(): boolean;
16884
+ clearOsFamily(): void;
16885
+ getOsFamily(): string | undefined;
16886
+ setOsFamily(value: string): CatalogOs;
16887
+
16871
16888
  serializeBinary(): Uint8Array;
16872
16889
  toObject(includeInstance?: boolean): CatalogOs.AsObject;
16873
16890
  static toObject(includeInstance: boolean, msg: CatalogOs): CatalogOs.AsObject;
@@ -16905,6 +16922,7 @@ export namespace CatalogOs {
16905
16922
  nistCpe?: string,
16906
16923
  lastUpdateTime?: google_protobuf_timestamp_pb.Timestamp.AsObject,
16907
16924
  matchScore?: number,
16925
+ osFamily?: string,
16908
16926
  }
16909
16927
  }
16910
16928
 
@@ -45667,6 +45667,8 @@ proto.com.lansweeper.dp.outbound.v1.HardwareInfo.toObject = function(includeInst
45667
45667
  typeName: jspb.Message.getFieldWithDefault(msg, 10, ""),
45668
45668
  typeCaption: jspb.Message.getFieldWithDefault(msg, 14, ""),
45669
45669
  typeGroup: jspb.Message.getFieldWithDefault(msg, 15, ""),
45670
+ specificTypeName: jspb.Message.getFieldWithDefault(msg, 25, ""),
45671
+ specificTypeCaption: jspb.Message.getFieldWithDefault(msg, 26, ""),
45670
45672
  makeName: jspb.Message.getFieldWithDefault(msg, 11, ""),
45671
45673
  modelName: jspb.Message.getFieldWithDefault(msg, 12, ""),
45672
45674
  familyName: jspb.Message.getFieldWithDefault(msg, 13, ""),
@@ -45748,6 +45750,14 @@ proto.com.lansweeper.dp.outbound.v1.HardwareInfo.deserializeBinaryFromReader = f
45748
45750
  var value = /** @type {string} */ (reader.readString());
45749
45751
  msg.setTypeGroup(value);
45750
45752
  break;
45753
+ case 25:
45754
+ var value = /** @type {string} */ (reader.readString());
45755
+ msg.setSpecificTypeName(value);
45756
+ break;
45757
+ case 26:
45758
+ var value = /** @type {string} */ (reader.readString());
45759
+ msg.setSpecificTypeCaption(value);
45760
+ break;
45751
45761
  case 11:
45752
45762
  var value = /** @type {string} */ (reader.readString());
45753
45763
  msg.setMakeName(value);
@@ -45880,6 +45890,20 @@ proto.com.lansweeper.dp.outbound.v1.HardwareInfo.serializeBinaryToWriter = funct
45880
45890
  f
45881
45891
  );
45882
45892
  }
45893
+ f = /** @type {string} */ (jspb.Message.getField(message, 25));
45894
+ if (f != null) {
45895
+ writer.writeString(
45896
+ 25,
45897
+ f
45898
+ );
45899
+ }
45900
+ f = /** @type {string} */ (jspb.Message.getField(message, 26));
45901
+ if (f != null) {
45902
+ writer.writeString(
45903
+ 26,
45904
+ f
45905
+ );
45906
+ }
45883
45907
  f = /** @type {string} */ (jspb.Message.getField(message, 11));
45884
45908
  if (f != null) {
45885
45909
  writer.writeString(
@@ -46274,6 +46298,78 @@ proto.com.lansweeper.dp.outbound.v1.HardwareInfo.prototype.hasTypeGroup = functi
46274
46298
  };
46275
46299
 
46276
46300
 
46301
+ /**
46302
+ * optional string specific_type_name = 25;
46303
+ * @return {string}
46304
+ */
46305
+ proto.com.lansweeper.dp.outbound.v1.HardwareInfo.prototype.getSpecificTypeName = function() {
46306
+ return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 25, ""));
46307
+ };
46308
+
46309
+
46310
+ /**
46311
+ * @param {string} value
46312
+ * @return {!proto.com.lansweeper.dp.outbound.v1.HardwareInfo} returns this
46313
+ */
46314
+ proto.com.lansweeper.dp.outbound.v1.HardwareInfo.prototype.setSpecificTypeName = function(value) {
46315
+ return jspb.Message.setField(this, 25, value);
46316
+ };
46317
+
46318
+
46319
+ /**
46320
+ * Clears the field making it undefined.
46321
+ * @return {!proto.com.lansweeper.dp.outbound.v1.HardwareInfo} returns this
46322
+ */
46323
+ proto.com.lansweeper.dp.outbound.v1.HardwareInfo.prototype.clearSpecificTypeName = function() {
46324
+ return jspb.Message.setField(this, 25, undefined);
46325
+ };
46326
+
46327
+
46328
+ /**
46329
+ * Returns whether this field is set.
46330
+ * @return {boolean}
46331
+ */
46332
+ proto.com.lansweeper.dp.outbound.v1.HardwareInfo.prototype.hasSpecificTypeName = function() {
46333
+ return jspb.Message.getField(this, 25) != null;
46334
+ };
46335
+
46336
+
46337
+ /**
46338
+ * optional string specific_type_caption = 26;
46339
+ * @return {string}
46340
+ */
46341
+ proto.com.lansweeper.dp.outbound.v1.HardwareInfo.prototype.getSpecificTypeCaption = function() {
46342
+ return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 26, ""));
46343
+ };
46344
+
46345
+
46346
+ /**
46347
+ * @param {string} value
46348
+ * @return {!proto.com.lansweeper.dp.outbound.v1.HardwareInfo} returns this
46349
+ */
46350
+ proto.com.lansweeper.dp.outbound.v1.HardwareInfo.prototype.setSpecificTypeCaption = function(value) {
46351
+ return jspb.Message.setField(this, 26, value);
46352
+ };
46353
+
46354
+
46355
+ /**
46356
+ * Clears the field making it undefined.
46357
+ * @return {!proto.com.lansweeper.dp.outbound.v1.HardwareInfo} returns this
46358
+ */
46359
+ proto.com.lansweeper.dp.outbound.v1.HardwareInfo.prototype.clearSpecificTypeCaption = function() {
46360
+ return jspb.Message.setField(this, 26, undefined);
46361
+ };
46362
+
46363
+
46364
+ /**
46365
+ * Returns whether this field is set.
46366
+ * @return {boolean}
46367
+ */
46368
+ proto.com.lansweeper.dp.outbound.v1.HardwareInfo.prototype.hasSpecificTypeCaption = function() {
46369
+ return jspb.Message.getField(this, 26) != null;
46370
+ };
46371
+
46372
+
46277
46373
  /**
46278
46374
  * optional string make_name = 11;
46279
46375
  * @return {string}
@@ -135795,7 +135891,8 @@ proto.com.lansweeper.dp.outbound.v1.CatalogOs.toObject = function(includeInstanc
135795
135891
  twitterAccount: jspb.Message.getFieldWithDefault(msg, 21, ""),
135796
135892
  nistCpe: jspb.Message.getFieldWithDefault(msg, 23, ""),
135797
135893
  lastUpdateTime: (f = msg.getLastUpdateTime()) && google_protobuf_timestamp_pb.Timestamp.toObject(includeInstance, f),
135798
- matchScore: jspb.Message.getFieldWithDefault(msg, 24, 0)
135894
+ matchScore: jspb.Message.getFieldWithDefault(msg, 24, 0),
135895
+ osFamily: jspb.Message.getFieldWithDefault(msg, 27, "")
135799
135896
  };
135800
135897
 
135801
135898
  if (includeInstance) {
@@ -135937,6 +136034,10 @@ proto.com.lansweeper.dp.outbound.v1.CatalogOs.deserializeBinaryFromReader = func
135937
136034
  var value = /** @type {number} */ (reader.readInt32());
135938
136035
  msg.setMatchScore(value);
135939
136036
  break;
136037
+ case 27:
136038
+ var value = /** @type {string} */ (reader.readString());
136039
+ msg.setOsFamily(value);
136040
+ break;
135940
136041
  default:
135941
136042
  reader.skipField();
135942
136043
  break;
@@ -136146,6 +136247,13 @@ proto.com.lansweeper.dp.outbound.v1.CatalogOs.serializeBinaryToWriter = function
136146
136247
  f
136147
136248
  );
136148
136249
  }
136250
+ f = /** @type {string} */ (jspb.Message.getField(message, 27));
136251
+ if (f != null) {
136252
+ writer.writeString(
136253
+ 27,
136254
+ f
136255
+ );
136256
+ }
136149
136257
  };
136150
136258
 
136151
136259
 
@@ -137018,6 +137126,42 @@ proto.com.lansweeper.dp.outbound.v1.CatalogOs.prototype.hasMatchScore = function
137018
137126
  };
137019
137127
 
137020
137128
 
137129
+ /**
137130
+ * optional string os_family = 27;
137131
+ * @return {string}
137132
+ */
137133
+ proto.com.lansweeper.dp.outbound.v1.CatalogOs.prototype.getOsFamily = function() {
137134
+ return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 27, ""));
137135
+ };
137136
+
137137
+
137138
+ /**
137139
+ * @param {string} value
137140
+ * @return {!proto.com.lansweeper.dp.outbound.v1.CatalogOs} returns this
137141
+ */
137142
+ proto.com.lansweeper.dp.outbound.v1.CatalogOs.prototype.setOsFamily = function(value) {
137143
+ return jspb.Message.setField(this, 27, value);
137144
+ };
137145
+
137146
+
137147
+ /**
137148
+ * Clears the field making it undefined.
137149
+ * @return {!proto.com.lansweeper.dp.outbound.v1.CatalogOs} returns this
137150
+ */
137151
+ proto.com.lansweeper.dp.outbound.v1.CatalogOs.prototype.clearOsFamily = function() {
137152
+ return jspb.Message.setField(this, 27, undefined);
137153
+ };
137154
+
137155
+
137156
+ /**
137157
+ * Returns whether this field is set.
137158
+ * @return {boolean}
137159
+ */
137160
+ proto.com.lansweeper.dp.outbound.v1.CatalogOs.prototype.hasOsFamily = function() {
137161
+ return jspb.Message.getField(this, 27) != null;
137162
+ };
137163
+
137164
+
137021
137165
 
137022
137166
 
137023
137167