motion-master-client 0.0.320 → 0.0.322

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "motion-master-client",
3
- "version": "0.0.320",
3
+ "version": "0.0.322",
4
4
  "type": "commonjs",
5
5
  "description": "A library and CLI program used for communicating with Motion Master.",
6
6
  "dependencies": {
@@ -625,6 +625,7 @@ export namespace motionmaster {
625
625
  startFrequency?: (number|null);
626
626
  endFrequency?: (number|null);
627
627
  nextGenSysId?: (boolean|null);
628
+ skipChirpSignal?: (boolean|null);
628
629
  }
629
630
 
630
631
  class StartSystemIdentification implements IStartSystemIdentification {
@@ -635,6 +636,7 @@ export namespace motionmaster {
635
636
  public startFrequency: number;
636
637
  public endFrequency: number;
637
638
  public nextGenSysId: boolean;
639
+ public skipChirpSignal: boolean;
638
640
  public static create(properties?: motionmaster.MotionMasterMessage.Request.IStartSystemIdentification): motionmaster.MotionMasterMessage.Request.StartSystemIdentification;
639
641
  public static encode(message: motionmaster.MotionMasterMessage.Request.IStartSystemIdentification, writer?: $protobuf.Writer): $protobuf.Writer;
640
642
  public static encodeDelimited(message: motionmaster.MotionMasterMessage.Request.IStartSystemIdentification, writer?: $protobuf.Writer): $protobuf.Writer;
@@ -7433,6 +7433,7 @@ $root.motionmaster = (() => {
7433
7433
  * @property {number|null} [startFrequency] StartSystemIdentification startFrequency
7434
7434
  * @property {number|null} [endFrequency] StartSystemIdentification endFrequency
7435
7435
  * @property {boolean|null} [nextGenSysId] StartSystemIdentification nextGenSysId
7436
+ * @property {boolean|null} [skipChirpSignal] StartSystemIdentification skipChirpSignal
7436
7437
  */
7437
7438
 
7438
7439
  /**
@@ -7498,6 +7499,14 @@ $root.motionmaster = (() => {
7498
7499
  */
7499
7500
  StartSystemIdentification.prototype.nextGenSysId = false;
7500
7501
 
7502
+ /**
7503
+ * StartSystemIdentification skipChirpSignal.
7504
+ * @member {boolean} skipChirpSignal
7505
+ * @memberof motionmaster.MotionMasterMessage.Request.StartSystemIdentification
7506
+ * @instance
7507
+ */
7508
+ StartSystemIdentification.prototype.skipChirpSignal = false;
7509
+
7501
7510
  /**
7502
7511
  * Creates a new StartSystemIdentification instance using the specified properties.
7503
7512
  * @function create
@@ -7534,6 +7543,8 @@ $root.motionmaster = (() => {
7534
7543
  writer.uint32(/* id 5, wireType 5 =*/45).float(message.endFrequency);
7535
7544
  if (message.nextGenSysId != null && Object.hasOwnProperty.call(message, "nextGenSysId"))
7536
7545
  writer.uint32(/* id 6, wireType 0 =*/48).bool(message.nextGenSysId);
7546
+ if (message.skipChirpSignal != null && Object.hasOwnProperty.call(message, "skipChirpSignal"))
7547
+ writer.uint32(/* id 7, wireType 0 =*/56).bool(message.skipChirpSignal);
7537
7548
  return writer;
7538
7549
  };
7539
7550
 
@@ -7592,6 +7603,10 @@ $root.motionmaster = (() => {
7592
7603
  message.nextGenSysId = reader.bool();
7593
7604
  break;
7594
7605
  }
7606
+ case 7: {
7607
+ message.skipChirpSignal = reader.bool();
7608
+ break;
7609
+ }
7595
7610
  default:
7596
7611
  reader.skipType(tag & 7);
7597
7612
  break;
@@ -7645,6 +7660,9 @@ $root.motionmaster = (() => {
7645
7660
  if (message.nextGenSysId != null && message.hasOwnProperty("nextGenSysId"))
7646
7661
  if (typeof message.nextGenSysId !== "boolean")
7647
7662
  return "nextGenSysId: boolean expected";
7663
+ if (message.skipChirpSignal != null && message.hasOwnProperty("skipChirpSignal"))
7664
+ if (typeof message.skipChirpSignal !== "boolean")
7665
+ return "skipChirpSignal: boolean expected";
7648
7666
  return null;
7649
7667
  };
7650
7668
 
@@ -7672,6 +7690,8 @@ $root.motionmaster = (() => {
7672
7690
  message.endFrequency = Number(object.endFrequency);
7673
7691
  if (object.nextGenSysId != null)
7674
7692
  message.nextGenSysId = Boolean(object.nextGenSysId);
7693
+ if (object.skipChirpSignal != null)
7694
+ message.skipChirpSignal = Boolean(object.skipChirpSignal);
7675
7695
  return message;
7676
7696
  };
7677
7697
 
@@ -7695,6 +7715,7 @@ $root.motionmaster = (() => {
7695
7715
  object.startFrequency = 0;
7696
7716
  object.endFrequency = 0;
7697
7717
  object.nextGenSysId = false;
7718
+ object.skipChirpSignal = false;
7698
7719
  }
7699
7720
  if (message.deviceAddress != null && message.hasOwnProperty("deviceAddress"))
7700
7721
  object.deviceAddress = message.deviceAddress;
@@ -7708,6 +7729,8 @@ $root.motionmaster = (() => {
7708
7729
  object.endFrequency = options.json && !isFinite(message.endFrequency) ? String(message.endFrequency) : message.endFrequency;
7709
7730
  if (message.nextGenSysId != null && message.hasOwnProperty("nextGenSysId"))
7710
7731
  object.nextGenSysId = message.nextGenSysId;
7732
+ if (message.skipChirpSignal != null && message.hasOwnProperty("skipChirpSignal"))
7733
+ object.skipChirpSignal = message.skipChirpSignal;
7711
7734
  return object;
7712
7735
  };
7713
7736
 
@@ -214,7 +214,7 @@
214
214
  "min": null,
215
215
  "max": null,
216
216
  "defaultValue": 0,
217
- "access": "rw",
217
+ "access": "r",
218
218
  "resetValue": 0
219
219
  },
220
220
  {