@zaber/motion 2.14.7 → 2.15.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.
- package/dist/binding/wasm/zaber-motion-lib.wasm +0 -0
- package/dist/lib/ascii/axis.d.ts +4 -0
- package/dist/lib/ascii/axis.js +4 -0
- package/dist/lib/ascii/axis.js.map +1 -1
- package/dist/lib/ascii/lockstep.d.ts +4 -0
- package/dist/lib/ascii/lockstep.js +4 -0
- package/dist/lib/ascii/lockstep.js.map +1 -1
- package/dist/lib/ascii/oscilloscope.d.ts +20 -2
- package/dist/lib/ascii/oscilloscope.js +42 -2
- package/dist/lib/ascii/oscilloscope.js.map +1 -1
- package/dist/lib/ascii/setting_constants.d.ts +135 -71
- package/dist/lib/ascii/setting_constants.js +135 -71
- package/dist/lib/ascii/setting_constants.js.map +1 -1
- package/dist/lib/ascii/storage.d.ts +26 -0
- package/dist/lib/ascii/storage.js +56 -0
- package/dist/lib/ascii/storage.js.map +1 -1
- package/dist/lib/binary/binary_settings.d.ts +1 -2
- package/dist/lib/binary/binary_settings.js +1 -2
- package/dist/lib/binary/binary_settings.js.map +1 -1
- package/dist/lib/binary/command_code.d.ts +1 -2
- package/dist/lib/binary/command_code.js +0 -1
- package/dist/lib/binary/command_code.js.map +1 -1
- package/dist/lib/binary/reply_code.d.ts +0 -1
- package/dist/lib/binary/reply_code.js +0 -1
- package/dist/lib/binary/reply_code.js.map +1 -1
- package/dist/lib/exceptions/set_device_state_exception_data.d.ts +12 -0
- package/dist/lib/exceptions/set_device_state_exception_data.js +3 -0
- package/dist/lib/exceptions/set_device_state_exception_data.js.map +1 -1
- package/dist/lib/exceptions/set_peripheral_state_exception_data.d.ts +8 -0
- package/dist/lib/exceptions/set_peripheral_state_exception_data.js +2 -0
- package/dist/lib/exceptions/set_peripheral_state_exception_data.js.map +1 -1
- package/dist/lib/protobufs/main_pb.d.ts +70 -4
- package/dist/lib/protobufs/main_pb.js +547 -29
- package/dist/lib/protobufs/main_pb.js.map +1 -1
- package/package.json +1 -1
|
@@ -172,6 +172,28 @@ export namespace StringResponse {
|
|
|
172
172
|
}
|
|
173
173
|
}
|
|
174
174
|
|
|
175
|
+
export class StringArrayResponse extends jspb.Message {
|
|
176
|
+
clearValuesList(): void;
|
|
177
|
+
getValuesList(): Array<string>;
|
|
178
|
+
setValuesList(value: Array<string>): void;
|
|
179
|
+
addValues(value: string, index?: number): string;
|
|
180
|
+
|
|
181
|
+
serializeBinary(): Uint8Array;
|
|
182
|
+
toObject(includeInstance?: boolean): StringArrayResponse.AsObject;
|
|
183
|
+
static toObject(includeInstance: boolean, msg: StringArrayResponse): StringArrayResponse.AsObject;
|
|
184
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
185
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
186
|
+
static serializeBinaryToWriter(message: StringArrayResponse, writer: jspb.BinaryWriter): void;
|
|
187
|
+
static deserializeBinary(bytes: Uint8Array): StringArrayResponse;
|
|
188
|
+
static deserializeBinaryFromReader(message: StringArrayResponse, reader: jspb.BinaryReader): StringArrayResponse;
|
|
189
|
+
}
|
|
190
|
+
|
|
191
|
+
export namespace StringArrayResponse {
|
|
192
|
+
export type AsObject = {
|
|
193
|
+
valuesList: Array<string>,
|
|
194
|
+
}
|
|
195
|
+
}
|
|
196
|
+
|
|
175
197
|
export class AxisIdentity extends jspb.Message {
|
|
176
198
|
getIsPeripheral(): boolean;
|
|
177
199
|
setIsPeripheral(value: boolean): void;
|
|
@@ -631,6 +653,11 @@ export class SetPeripheralStateExceptionData extends jspb.Message {
|
|
|
631
653
|
setStorageList(value: Array<string>): void;
|
|
632
654
|
addStorage(value: string, index?: number): string;
|
|
633
655
|
|
|
656
|
+
clearStoredPositionsList(): void;
|
|
657
|
+
getStoredPositionsList(): Array<string>;
|
|
658
|
+
setStoredPositionsList(value: Array<string>): void;
|
|
659
|
+
addStoredPositions(value: string, index?: number): string;
|
|
660
|
+
|
|
634
661
|
serializeBinary(): Uint8Array;
|
|
635
662
|
toObject(includeInstance?: boolean): SetPeripheralStateExceptionData.AsObject;
|
|
636
663
|
static toObject(includeInstance: boolean, msg: SetPeripheralStateExceptionData): SetPeripheralStateExceptionData.AsObject;
|
|
@@ -647,6 +674,7 @@ export namespace SetPeripheralStateExceptionData {
|
|
|
647
674
|
settingsList: Array<string>,
|
|
648
675
|
servoTuning: string,
|
|
649
676
|
storageList: Array<string>,
|
|
677
|
+
storedPositionsList: Array<string>,
|
|
650
678
|
}
|
|
651
679
|
}
|
|
652
680
|
|
|
@@ -671,9 +699,6 @@ export class SetDeviceStateExceptionData extends jspb.Message {
|
|
|
671
699
|
setTriggersList(value: Array<string>): void;
|
|
672
700
|
addTriggers(value: string, index?: number): string;
|
|
673
701
|
|
|
674
|
-
getIpConfig(): string;
|
|
675
|
-
setIpConfig(value: string): void;
|
|
676
|
-
|
|
677
702
|
getServoTuning(): string;
|
|
678
703
|
setServoTuning(value: string): void;
|
|
679
704
|
|
|
@@ -682,6 +707,11 @@ export class SetDeviceStateExceptionData extends jspb.Message {
|
|
|
682
707
|
setStorageList(value: Array<string>): void;
|
|
683
708
|
addStorage(value: string, index?: number): string;
|
|
684
709
|
|
|
710
|
+
clearStoredPositionsList(): void;
|
|
711
|
+
getStoredPositionsList(): Array<string>;
|
|
712
|
+
setStoredPositionsList(value: Array<string>): void;
|
|
713
|
+
addStoredPositions(value: string, index?: number): string;
|
|
714
|
+
|
|
685
715
|
serializeBinary(): Uint8Array;
|
|
686
716
|
toObject(includeInstance?: boolean): SetDeviceStateExceptionData.AsObject;
|
|
687
717
|
static toObject(includeInstance: boolean, msg: SetDeviceStateExceptionData): SetDeviceStateExceptionData.AsObject;
|
|
@@ -698,9 +728,9 @@ export namespace SetDeviceStateExceptionData {
|
|
|
698
728
|
settingsList: Array<string>,
|
|
699
729
|
streamBuffersList: Array<string>,
|
|
700
730
|
triggersList: Array<string>,
|
|
701
|
-
ipConfig: string,
|
|
702
731
|
servoTuning: string,
|
|
703
732
|
storageList: Array<string>,
|
|
733
|
+
storedPositionsList: Array<string>,
|
|
704
734
|
}
|
|
705
735
|
}
|
|
706
736
|
|
|
@@ -2640,6 +2670,9 @@ export class OscilloscopeStartStopRequest extends jspb.Message {
|
|
|
2640
2670
|
getStart(): boolean;
|
|
2641
2671
|
setStart(value: boolean): void;
|
|
2642
2672
|
|
|
2673
|
+
getCaptureLength(): number;
|
|
2674
|
+
setCaptureLength(value: number): void;
|
|
2675
|
+
|
|
2643
2676
|
serializeBinary(): Uint8Array;
|
|
2644
2677
|
toObject(includeInstance?: boolean): OscilloscopeStartStopRequest.AsObject;
|
|
2645
2678
|
static toObject(includeInstance: boolean, msg: OscilloscopeStartStopRequest): OscilloscopeStartStopRequest.AsObject;
|
|
@@ -2655,6 +2688,7 @@ export namespace OscilloscopeStartStopRequest {
|
|
|
2655
2688
|
interfaceId: number,
|
|
2656
2689
|
device: number,
|
|
2657
2690
|
start: boolean,
|
|
2691
|
+
captureLength: number,
|
|
2658
2692
|
}
|
|
2659
2693
|
}
|
|
2660
2694
|
|
|
@@ -5773,6 +5807,38 @@ export namespace DeviceStorageRequest {
|
|
|
5773
5807
|
}
|
|
5774
5808
|
}
|
|
5775
5809
|
|
|
5810
|
+
export class DeviceStorageListKeysRequest extends jspb.Message {
|
|
5811
|
+
getInterfaceId(): number;
|
|
5812
|
+
setInterfaceId(value: number): void;
|
|
5813
|
+
|
|
5814
|
+
getDevice(): number;
|
|
5815
|
+
setDevice(value: number): void;
|
|
5816
|
+
|
|
5817
|
+
getAxis(): number;
|
|
5818
|
+
setAxis(value: number): void;
|
|
5819
|
+
|
|
5820
|
+
getPrefix(): string;
|
|
5821
|
+
setPrefix(value: string): void;
|
|
5822
|
+
|
|
5823
|
+
serializeBinary(): Uint8Array;
|
|
5824
|
+
toObject(includeInstance?: boolean): DeviceStorageListKeysRequest.AsObject;
|
|
5825
|
+
static toObject(includeInstance: boolean, msg: DeviceStorageListKeysRequest): DeviceStorageListKeysRequest.AsObject;
|
|
5826
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
5827
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
5828
|
+
static serializeBinaryToWriter(message: DeviceStorageListKeysRequest, writer: jspb.BinaryWriter): void;
|
|
5829
|
+
static deserializeBinary(bytes: Uint8Array): DeviceStorageListKeysRequest;
|
|
5830
|
+
static deserializeBinaryFromReader(message: DeviceStorageListKeysRequest, reader: jspb.BinaryReader): DeviceStorageListKeysRequest;
|
|
5831
|
+
}
|
|
5832
|
+
|
|
5833
|
+
export namespace DeviceStorageListKeysRequest {
|
|
5834
|
+
export type AsObject = {
|
|
5835
|
+
interfaceId: number,
|
|
5836
|
+
device: number,
|
|
5837
|
+
axis: number,
|
|
5838
|
+
prefix: string,
|
|
5839
|
+
}
|
|
5840
|
+
}
|
|
5841
|
+
|
|
5776
5842
|
export class DeviceSetUnitConversionsRequest extends jspb.Message {
|
|
5777
5843
|
getInterfaceId(): number;
|
|
5778
5844
|
setInterfaceId(value: number): void;
|