motion-master-client 0.0.330 → 0.0.331
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.
package/package.json
CHANGED
|
@@ -3503,6 +3503,7 @@ export namespace motionmaster {
|
|
|
3503
3503
|
success?: (motionmaster.MotionMasterMessage.Status.SystemIdentification.ISuccess|null);
|
|
3504
3504
|
error?: (motionmaster.MotionMasterMessage.Status.SystemIdentification.IError|null);
|
|
3505
3505
|
warning?: (motionmaster.MotionMasterMessage.Status.SystemIdentification.IWarning|null);
|
|
3506
|
+
bodeFileContent?: (string|null);
|
|
3506
3507
|
}
|
|
3507
3508
|
|
|
3508
3509
|
class SystemIdentification implements ISystemIdentification {
|
|
@@ -3511,6 +3512,7 @@ export namespace motionmaster {
|
|
|
3511
3512
|
public success?: (motionmaster.MotionMasterMessage.Status.SystemIdentification.ISuccess|null);
|
|
3512
3513
|
public error?: (motionmaster.MotionMasterMessage.Status.SystemIdentification.IError|null);
|
|
3513
3514
|
public warning?: (motionmaster.MotionMasterMessage.Status.SystemIdentification.IWarning|null);
|
|
3515
|
+
public bodeFileContent: string;
|
|
3514
3516
|
public status?: ("success"|"error"|"warning");
|
|
3515
3517
|
public static create(properties?: motionmaster.MotionMasterMessage.Status.ISystemIdentification): motionmaster.MotionMasterMessage.Status.SystemIdentification;
|
|
3516
3518
|
public static encode(message: motionmaster.MotionMasterMessage.Status.ISystemIdentification, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
@@ -37424,6 +37424,7 @@ $root.motionmaster = (() => {
|
|
|
37424
37424
|
* @property {motionmaster.MotionMasterMessage.Status.SystemIdentification.ISuccess|null} [success] SystemIdentification success
|
|
37425
37425
|
* @property {motionmaster.MotionMasterMessage.Status.SystemIdentification.IError|null} [error] SystemIdentification error
|
|
37426
37426
|
* @property {motionmaster.MotionMasterMessage.Status.SystemIdentification.IWarning|null} [warning] SystemIdentification warning
|
|
37427
|
+
* @property {string|null} [bodeFileContent] SystemIdentification bodeFileContent
|
|
37427
37428
|
*/
|
|
37428
37429
|
|
|
37429
37430
|
/**
|
|
@@ -37473,6 +37474,14 @@ $root.motionmaster = (() => {
|
|
|
37473
37474
|
*/
|
|
37474
37475
|
SystemIdentification.prototype.warning = null;
|
|
37475
37476
|
|
|
37477
|
+
/**
|
|
37478
|
+
* SystemIdentification bodeFileContent.
|
|
37479
|
+
* @member {string} bodeFileContent
|
|
37480
|
+
* @memberof motionmaster.MotionMasterMessage.Status.SystemIdentification
|
|
37481
|
+
* @instance
|
|
37482
|
+
*/
|
|
37483
|
+
SystemIdentification.prototype.bodeFileContent = "";
|
|
37484
|
+
|
|
37476
37485
|
// OneOf field names bound to virtual getters and setters
|
|
37477
37486
|
let $oneOfFields;
|
|
37478
37487
|
|
|
@@ -37519,6 +37528,8 @@ $root.motionmaster = (() => {
|
|
|
37519
37528
|
$root.motionmaster.MotionMasterMessage.Status.SystemIdentification.Error.encode(message.error, writer.uint32(/* id 3, wireType 2 =*/26).fork()).ldelim();
|
|
37520
37529
|
if (message.warning != null && Object.hasOwnProperty.call(message, "warning"))
|
|
37521
37530
|
$root.motionmaster.MotionMasterMessage.Status.SystemIdentification.Warning.encode(message.warning, writer.uint32(/* id 4, wireType 2 =*/34).fork()).ldelim();
|
|
37531
|
+
if (message.bodeFileContent != null && Object.hasOwnProperty.call(message, "bodeFileContent"))
|
|
37532
|
+
writer.uint32(/* id 5, wireType 2 =*/42).string(message.bodeFileContent);
|
|
37522
37533
|
return writer;
|
|
37523
37534
|
};
|
|
37524
37535
|
|
|
@@ -37569,6 +37580,10 @@ $root.motionmaster = (() => {
|
|
|
37569
37580
|
message.warning = $root.motionmaster.MotionMasterMessage.Status.SystemIdentification.Warning.decode(reader, reader.uint32());
|
|
37570
37581
|
break;
|
|
37571
37582
|
}
|
|
37583
|
+
case 5: {
|
|
37584
|
+
message.bodeFileContent = reader.string();
|
|
37585
|
+
break;
|
|
37586
|
+
}
|
|
37572
37587
|
default:
|
|
37573
37588
|
reader.skipType(tag & 7);
|
|
37574
37589
|
break;
|
|
@@ -37636,6 +37651,9 @@ $root.motionmaster = (() => {
|
|
|
37636
37651
|
return "warning." + error;
|
|
37637
37652
|
}
|
|
37638
37653
|
}
|
|
37654
|
+
if (message.bodeFileContent != null && message.hasOwnProperty("bodeFileContent"))
|
|
37655
|
+
if (!$util.isString(message.bodeFileContent))
|
|
37656
|
+
return "bodeFileContent: string expected";
|
|
37639
37657
|
return null;
|
|
37640
37658
|
};
|
|
37641
37659
|
|
|
@@ -37668,6 +37686,8 @@ $root.motionmaster = (() => {
|
|
|
37668
37686
|
throw TypeError(".motionmaster.MotionMasterMessage.Status.SystemIdentification.warning: object expected");
|
|
37669
37687
|
message.warning = $root.motionmaster.MotionMasterMessage.Status.SystemIdentification.Warning.fromObject(object.warning);
|
|
37670
37688
|
}
|
|
37689
|
+
if (object.bodeFileContent != null)
|
|
37690
|
+
message.bodeFileContent = String(object.bodeFileContent);
|
|
37671
37691
|
return message;
|
|
37672
37692
|
};
|
|
37673
37693
|
|
|
@@ -37684,8 +37704,10 @@ $root.motionmaster = (() => {
|
|
|
37684
37704
|
if (!options)
|
|
37685
37705
|
options = {};
|
|
37686
37706
|
let object = {};
|
|
37687
|
-
if (options.defaults)
|
|
37707
|
+
if (options.defaults) {
|
|
37688
37708
|
object.deviceAddress = 0;
|
|
37709
|
+
object.bodeFileContent = "";
|
|
37710
|
+
}
|
|
37689
37711
|
if (message.deviceAddress != null && message.hasOwnProperty("deviceAddress"))
|
|
37690
37712
|
object.deviceAddress = message.deviceAddress;
|
|
37691
37713
|
if (message.success != null && message.hasOwnProperty("success")) {
|
|
@@ -37703,6 +37725,8 @@ $root.motionmaster = (() => {
|
|
|
37703
37725
|
if (options.oneofs)
|
|
37704
37726
|
object.status = "warning";
|
|
37705
37727
|
}
|
|
37728
|
+
if (message.bodeFileContent != null && message.hasOwnProperty("bodeFileContent"))
|
|
37729
|
+
object.bodeFileContent = message.bodeFileContent;
|
|
37706
37730
|
return object;
|
|
37707
37731
|
};
|
|
37708
37732
|
|