@zaber/motion 2.11.0 → 2.11.1
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.
|
Binary file
|
|
@@ -546,6 +546,11 @@ export class SetPeripheralStateExceptionData extends jspb.Message {
|
|
|
546
546
|
getServoTuning(): string;
|
|
547
547
|
setServoTuning(value: string): void;
|
|
548
548
|
|
|
549
|
+
clearStorageList(): void;
|
|
550
|
+
getStorageList(): Array<string>;
|
|
551
|
+
setStorageList(value: Array<string>): void;
|
|
552
|
+
addStorage(value: string, index?: number): string;
|
|
553
|
+
|
|
549
554
|
serializeBinary(): Uint8Array;
|
|
550
555
|
toObject(includeInstance?: boolean): SetPeripheralStateExceptionData.AsObject;
|
|
551
556
|
static toObject(includeInstance: boolean, msg: SetPeripheralStateExceptionData): SetPeripheralStateExceptionData.AsObject;
|
|
@@ -561,6 +566,7 @@ export namespace SetPeripheralStateExceptionData {
|
|
|
561
566
|
axisNumber: number,
|
|
562
567
|
settingsList: Array<string>,
|
|
563
568
|
servoTuning: string,
|
|
569
|
+
storageList: Array<string>,
|
|
564
570
|
}
|
|
565
571
|
}
|
|
566
572
|
|
|
@@ -9026,7 +9026,7 @@ proto.zaber.motion.protobufs.BinaryCommandFailedExceptionData.prototype.setRespo
|
|
|
9026
9026
|
* @private {!Array<number>}
|
|
9027
9027
|
* @const
|
|
9028
9028
|
*/
|
|
9029
|
-
proto.zaber.motion.protobufs.SetPeripheralStateExceptionData.repeatedFields_ = [2];
|
|
9029
|
+
proto.zaber.motion.protobufs.SetPeripheralStateExceptionData.repeatedFields_ = [2,4];
|
|
9030
9030
|
|
|
9031
9031
|
|
|
9032
9032
|
|
|
@@ -9061,7 +9061,8 @@ proto.zaber.motion.protobufs.SetPeripheralStateExceptionData.toObject = function
|
|
|
9061
9061
|
var f, obj = {
|
|
9062
9062
|
axisNumber: jspb.Message.getFieldWithDefault(msg, 1, 0),
|
|
9063
9063
|
settingsList: (f = jspb.Message.getRepeatedField(msg, 2)) == null ? undefined : f,
|
|
9064
|
-
servoTuning: jspb.Message.getFieldWithDefault(msg, 3, "")
|
|
9064
|
+
servoTuning: jspb.Message.getFieldWithDefault(msg, 3, ""),
|
|
9065
|
+
storageList: (f = jspb.Message.getRepeatedField(msg, 4)) == null ? undefined : f
|
|
9065
9066
|
};
|
|
9066
9067
|
|
|
9067
9068
|
if (includeInstance) {
|
|
@@ -9110,6 +9111,10 @@ proto.zaber.motion.protobufs.SetPeripheralStateExceptionData.deserializeBinaryFr
|
|
|
9110
9111
|
var value = /** @type {string} */ (reader.readString());
|
|
9111
9112
|
msg.setServoTuning(value);
|
|
9112
9113
|
break;
|
|
9114
|
+
case 4:
|
|
9115
|
+
var value = /** @type {string} */ (reader.readString());
|
|
9116
|
+
msg.addStorage(value);
|
|
9117
|
+
break;
|
|
9113
9118
|
default:
|
|
9114
9119
|
reader.skipField();
|
|
9115
9120
|
break;
|
|
@@ -9160,6 +9165,13 @@ proto.zaber.motion.protobufs.SetPeripheralStateExceptionData.serializeBinaryToWr
|
|
|
9160
9165
|
f
|
|
9161
9166
|
);
|
|
9162
9167
|
}
|
|
9168
|
+
f = message.getStorageList();
|
|
9169
|
+
if (f.length > 0) {
|
|
9170
|
+
writer.writeRepeatedString(
|
|
9171
|
+
4,
|
|
9172
|
+
f
|
|
9173
|
+
);
|
|
9174
|
+
}
|
|
9163
9175
|
};
|
|
9164
9176
|
|
|
9165
9177
|
|
|
@@ -9236,6 +9248,43 @@ proto.zaber.motion.protobufs.SetPeripheralStateExceptionData.prototype.setServoT
|
|
|
9236
9248
|
};
|
|
9237
9249
|
|
|
9238
9250
|
|
|
9251
|
+
/**
|
|
9252
|
+
* repeated string storage = 4;
|
|
9253
|
+
* @return {!Array<string>}
|
|
9254
|
+
*/
|
|
9255
|
+
proto.zaber.motion.protobufs.SetPeripheralStateExceptionData.prototype.getStorageList = function() {
|
|
9256
|
+
return /** @type {!Array<string>} */ (jspb.Message.getRepeatedField(this, 4));
|
|
9257
|
+
};
|
|
9258
|
+
|
|
9259
|
+
|
|
9260
|
+
/**
|
|
9261
|
+
* @param {!Array<string>} value
|
|
9262
|
+
* @return {!proto.zaber.motion.protobufs.SetPeripheralStateExceptionData} returns this
|
|
9263
|
+
*/
|
|
9264
|
+
proto.zaber.motion.protobufs.SetPeripheralStateExceptionData.prototype.setStorageList = function(value) {
|
|
9265
|
+
return jspb.Message.setField(this, 4, value || []);
|
|
9266
|
+
};
|
|
9267
|
+
|
|
9268
|
+
|
|
9269
|
+
/**
|
|
9270
|
+
* @param {string} value
|
|
9271
|
+
* @param {number=} opt_index
|
|
9272
|
+
* @return {!proto.zaber.motion.protobufs.SetPeripheralStateExceptionData} returns this
|
|
9273
|
+
*/
|
|
9274
|
+
proto.zaber.motion.protobufs.SetPeripheralStateExceptionData.prototype.addStorage = function(value, opt_index) {
|
|
9275
|
+
return jspb.Message.addToRepeatedField(this, 4, value, opt_index);
|
|
9276
|
+
};
|
|
9277
|
+
|
|
9278
|
+
|
|
9279
|
+
/**
|
|
9280
|
+
* Clears the list making it empty but non-null.
|
|
9281
|
+
* @return {!proto.zaber.motion.protobufs.SetPeripheralStateExceptionData} returns this
|
|
9282
|
+
*/
|
|
9283
|
+
proto.zaber.motion.protobufs.SetPeripheralStateExceptionData.prototype.clearStorageList = function() {
|
|
9284
|
+
return this.setStorageList([]);
|
|
9285
|
+
};
|
|
9286
|
+
|
|
9287
|
+
|
|
9239
9288
|
|
|
9240
9289
|
/**
|
|
9241
9290
|
* List of repeated fields within this message type.
|