@lansweeper/discovery-sensor-proto 2.19.0 → 2.21.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.
|
@@ -3204,8 +3204,8 @@ export class PnpSignedDriver extends jspb.Message {
|
|
|
3204
3204
|
|
|
3205
3205
|
hasDriverDate(): boolean;
|
|
3206
3206
|
clearDriverDate(): void;
|
|
3207
|
-
getDriverDate():
|
|
3208
|
-
setDriverDate(value?:
|
|
3207
|
+
getDriverDate(): google_protobuf_timestamp_pb.Timestamp | undefined;
|
|
3208
|
+
setDriverDate(value?: google_protobuf_timestamp_pb.Timestamp): PnpSignedDriver;
|
|
3209
3209
|
|
|
3210
3210
|
hasDriverVersion(): boolean;
|
|
3211
3211
|
clearDriverVersion(): void;
|
|
@@ -3284,7 +3284,7 @@ export namespace PnpSignedDriver {
|
|
|
3284
3284
|
devLoader?: google_protobuf_wrappers_pb.StringValue.AsObject,
|
|
3285
3285
|
driverName?: google_protobuf_wrappers_pb.StringValue.AsObject,
|
|
3286
3286
|
friendlyName?: google_protobuf_wrappers_pb.StringValue.AsObject,
|
|
3287
|
-
driverDate?:
|
|
3287
|
+
driverDate?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
3288
3288
|
driverVersion?: google_protobuf_wrappers_pb.StringValue.AsObject,
|
|
3289
3289
|
hardwareId?: google_protobuf_wrappers_pb.StringValue.AsObject,
|
|
3290
3290
|
infName?: google_protobuf_wrappers_pb.StringValue.AsObject,
|
|
@@ -28733,7 +28733,7 @@ proto.com.lansweeper.discovery.sensor.windows.v1.PnpSignedDriver.toObject = func
|
|
|
28733
28733
|
devLoader: (f = msg.getDevLoader()) && google_protobuf_wrappers_pb.StringValue.toObject(includeInstance, f),
|
|
28734
28734
|
driverName: (f = msg.getDriverName()) && google_protobuf_wrappers_pb.StringValue.toObject(includeInstance, f),
|
|
28735
28735
|
friendlyName: (f = msg.getFriendlyName()) && google_protobuf_wrappers_pb.StringValue.toObject(includeInstance, f),
|
|
28736
|
-
driverDate: (f = msg.getDriverDate()) &&
|
|
28736
|
+
driverDate: (f = msg.getDriverDate()) && google_protobuf_timestamp_pb.Timestamp.toObject(includeInstance, f),
|
|
28737
28737
|
driverVersion: (f = msg.getDriverVersion()) && google_protobuf_wrappers_pb.StringValue.toObject(includeInstance, f),
|
|
28738
28738
|
hardwareId: (f = msg.getHardwareId()) && google_protobuf_wrappers_pb.StringValue.toObject(includeInstance, f),
|
|
28739
28739
|
infName: (f = msg.getInfName()) && google_protobuf_wrappers_pb.StringValue.toObject(includeInstance, f),
|
|
@@ -28808,8 +28808,8 @@ proto.com.lansweeper.discovery.sensor.windows.v1.PnpSignedDriver.deserializeBina
|
|
|
28808
28808
|
msg.setFriendlyName(value);
|
|
28809
28809
|
break;
|
|
28810
28810
|
case 6:
|
|
28811
|
-
var value = new
|
|
28812
|
-
reader.readMessage(value,
|
|
28811
|
+
var value = new google_protobuf_timestamp_pb.Timestamp;
|
|
28812
|
+
reader.readMessage(value,google_protobuf_timestamp_pb.Timestamp.deserializeBinaryFromReader);
|
|
28813
28813
|
msg.setDriverDate(value);
|
|
28814
28814
|
break;
|
|
28815
28815
|
case 7:
|
|
@@ -28946,7 +28946,7 @@ proto.com.lansweeper.discovery.sensor.windows.v1.PnpSignedDriver.serializeBinary
|
|
|
28946
28946
|
writer.writeMessage(
|
|
28947
28947
|
6,
|
|
28948
28948
|
f,
|
|
28949
|
-
|
|
28949
|
+
google_protobuf_timestamp_pb.Timestamp.serializeBinaryToWriter
|
|
28950
28950
|
);
|
|
28951
28951
|
}
|
|
28952
28952
|
f = message.getDriverVersion();
|
|
@@ -29234,17 +29234,17 @@ proto.com.lansweeper.discovery.sensor.windows.v1.PnpSignedDriver.prototype.hasFr
|
|
|
29234
29234
|
|
|
29235
29235
|
|
|
29236
29236
|
/**
|
|
29237
|
-
* optional google.protobuf.
|
|
29238
|
-
* @return {?proto.google.protobuf.
|
|
29237
|
+
* optional google.protobuf.Timestamp driver_date = 6;
|
|
29238
|
+
* @return {?proto.google.protobuf.Timestamp}
|
|
29239
29239
|
*/
|
|
29240
29240
|
proto.com.lansweeper.discovery.sensor.windows.v1.PnpSignedDriver.prototype.getDriverDate = function() {
|
|
29241
|
-
return /** @type{?proto.google.protobuf.
|
|
29242
|
-
jspb.Message.getWrapperField(this,
|
|
29241
|
+
return /** @type{?proto.google.protobuf.Timestamp} */ (
|
|
29242
|
+
jspb.Message.getWrapperField(this, google_protobuf_timestamp_pb.Timestamp, 6));
|
|
29243
29243
|
};
|
|
29244
29244
|
|
|
29245
29245
|
|
|
29246
29246
|
/**
|
|
29247
|
-
* @param {?proto.google.protobuf.
|
|
29247
|
+
* @param {?proto.google.protobuf.Timestamp|undefined} value
|
|
29248
29248
|
* @return {!proto.com.lansweeper.discovery.sensor.windows.v1.PnpSignedDriver} returns this
|
|
29249
29249
|
*/
|
|
29250
29250
|
proto.com.lansweeper.discovery.sensor.windows.v1.PnpSignedDriver.prototype.setDriverDate = function(value) {
|
|
@@ -29308,7 +29308,7 @@ proto.com.lansweeper.discovery.sensor.windows.v1.PnpSignedDriver.prototype.hasDr
|
|
|
29308
29308
|
|
|
29309
29309
|
|
|
29310
29310
|
/**
|
|
29311
|
-
* optional google.protobuf.StringValue
|
|
29311
|
+
* optional google.protobuf.StringValue hardware_id = 8;
|
|
29312
29312
|
* @return {?proto.google.protobuf.StringValue}
|
|
29313
29313
|
*/
|
|
29314
29314
|
proto.com.lansweeper.discovery.sensor.windows.v1.PnpSignedDriver.prototype.getHardwareId = function() {
|