@lansweeper/discovery-sensor-proto 2.35.4 → 2.35.5

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.
@@ -264,6 +264,11 @@ export class ModuleData extends jspb.Message {
264
264
  setFirmwareHistoryList(value: Array<FirmwareHistory>): ModuleData;
265
265
  addFirmwareHistory(value?: FirmwareHistory, index?: number): FirmwareHistory;
266
266
 
267
+ hasRoutePath(): boolean;
268
+ clearRoutePath(): void;
269
+ getRoutePath(): google_protobuf_wrappers_pb.StringValue | undefined;
270
+ setRoutePath(value?: google_protobuf_wrappers_pb.StringValue): ModuleData;
271
+
267
272
  serializeBinary(): Uint8Array;
268
273
  toObject(includeInstance?: boolean): ModuleData.AsObject;
269
274
  static toObject(includeInstance: boolean, msg: ModuleData): ModuleData.AsObject;
@@ -289,6 +294,7 @@ export namespace ModuleData {
289
294
  extendedInformationList: Array<ModuleExtendedInformation.AsObject>,
290
295
  busConfigList: Array<BusConfig.AsObject>,
291
296
  firmwareHistoryList: Array<FirmwareHistory.AsObject>,
297
+ routePath?: google_protobuf_wrappers_pb.StringValue.AsObject,
292
298
  }
293
299
  }
294
300
 
@@ -1849,7 +1849,8 @@ proto.com.lansweeper.discovery.sensor.ot.v1.ModuleData.toObject = function(inclu
1849
1849
  busConfigList: jspb.Message.toObjectList(msg.getBusConfigList(),
1850
1850
  proto.com.lansweeper.discovery.sensor.ot.v1.BusConfig.toObject, includeInstance),
1851
1851
  firmwareHistoryList: jspb.Message.toObjectList(msg.getFirmwareHistoryList(),
1852
- proto.com.lansweeper.discovery.sensor.ot.v1.FirmwareHistory.toObject, includeInstance)
1852
+ proto.com.lansweeper.discovery.sensor.ot.v1.FirmwareHistory.toObject, includeInstance),
1853
+ routePath: (f = msg.getRoutePath()) && google_protobuf_wrappers_pb.StringValue.toObject(includeInstance, f)
1853
1854
  };
1854
1855
 
1855
1856
  if (includeInstance) {
@@ -1950,6 +1951,11 @@ proto.com.lansweeper.discovery.sensor.ot.v1.ModuleData.deserializeBinaryFromRead
1950
1951
  reader.readMessage(value,proto.com.lansweeper.discovery.sensor.ot.v1.FirmwareHistory.deserializeBinaryFromReader);
1951
1952
  msg.addFirmwareHistory(value);
1952
1953
  break;
1954
+ case 14:
1955
+ var value = new google_protobuf_wrappers_pb.StringValue;
1956
+ reader.readMessage(value,google_protobuf_wrappers_pb.StringValue.deserializeBinaryFromReader);
1957
+ msg.setRoutePath(value);
1958
+ break;
1953
1959
  default:
1954
1960
  reader.skipField();
1955
1961
  break;
@@ -2082,6 +2088,14 @@ proto.com.lansweeper.discovery.sensor.ot.v1.ModuleData.serializeBinaryToWriter =
2082
2088
  proto.com.lansweeper.discovery.sensor.ot.v1.FirmwareHistory.serializeBinaryToWriter
2083
2089
  );
2084
2090
  }
2091
+ f = message.getRoutePath();
2092
+ if (f != null) {
2093
+ writer.writeMessage(
2094
+ 14,
2095
+ f,
2096
+ google_protobuf_wrappers_pb.StringValue.serializeBinaryToWriter
2097
+ );
2098
+ }
2085
2099
  };
2086
2100
 
2087
2101
 
@@ -2550,6 +2564,43 @@ proto.com.lansweeper.discovery.sensor.ot.v1.ModuleData.prototype.clearFirmwareHi
2550
2564
  };
2551
2565
 
2552
2566
 
2567
+ /**
2568
+ * optional google.protobuf.StringValue route_path = 14;
2569
+ * @return {?proto.google.protobuf.StringValue}
2570
+ */
2571
+ proto.com.lansweeper.discovery.sensor.ot.v1.ModuleData.prototype.getRoutePath = function() {
2572
+ return /** @type{?proto.google.protobuf.StringValue} */ (
2573
+ jspb.Message.getWrapperField(this, google_protobuf_wrappers_pb.StringValue, 14));
2574
+ };
2575
+
2576
+
2577
+ /**
2578
+ * @param {?proto.google.protobuf.StringValue|undefined} value
2579
+ * @return {!proto.com.lansweeper.discovery.sensor.ot.v1.ModuleData} returns this
2580
+ */
2581
+ proto.com.lansweeper.discovery.sensor.ot.v1.ModuleData.prototype.setRoutePath = function(value) {
2582
+ return jspb.Message.setWrapperField(this, 14, value);
2583
+ };
2584
+
2585
+
2586
+ /**
2587
+ * Clears the message field making it undefined.
2588
+ * @return {!proto.com.lansweeper.discovery.sensor.ot.v1.ModuleData} returns this
2589
+ */
2590
+ proto.com.lansweeper.discovery.sensor.ot.v1.ModuleData.prototype.clearRoutePath = function() {
2591
+ return this.setRoutePath(undefined);
2592
+ };
2593
+
2594
+
2595
+ /**
2596
+ * Returns whether this field is set.
2597
+ * @return {boolean}
2598
+ */
2599
+ proto.com.lansweeper.discovery.sensor.ot.v1.ModuleData.prototype.hasRoutePath = function() {
2600
+ return jspb.Message.getField(this, 14) != null;
2601
+ };
2602
+
2603
+
2553
2604
 
2554
2605
 
2555
2606