@zaber/motion 5.0.1 → 5.1.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.
@@ -2258,6 +2258,80 @@ export namespace DeviceSetAllDigitalOutputsRequest {
2258
2258
  }
2259
2259
  }
2260
2260
 
2261
+ export class DeviceSetAllDigitalOutputsScheduleRequest extends jspb.Message {
2262
+ getInterfaceId(): number;
2263
+ setInterfaceId(value: number): void;
2264
+
2265
+ getDevice(): number;
2266
+ setDevice(value: number): void;
2267
+
2268
+ clearValuesList(): void;
2269
+ getValuesList(): Array<number>;
2270
+ setValuesList(value: Array<number>): void;
2271
+ addValues(value: number, index?: number): number;
2272
+
2273
+ clearFutureValuesList(): void;
2274
+ getFutureValuesList(): Array<number>;
2275
+ setFutureValuesList(value: Array<number>): void;
2276
+ addFutureValues(value: number, index?: number): number;
2277
+
2278
+ getDelay(): number;
2279
+ setDelay(value: number): void;
2280
+
2281
+ getUnit(): string;
2282
+ setUnit(value: string): void;
2283
+
2284
+ serializeBinary(): Uint8Array;
2285
+ toObject(includeInstance?: boolean): DeviceSetAllDigitalOutputsScheduleRequest.AsObject;
2286
+ static toObject(includeInstance: boolean, msg: DeviceSetAllDigitalOutputsScheduleRequest): DeviceSetAllDigitalOutputsScheduleRequest.AsObject;
2287
+ static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
2288
+ static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
2289
+ static serializeBinaryToWriter(message: DeviceSetAllDigitalOutputsScheduleRequest, writer: jspb.BinaryWriter): void;
2290
+ static deserializeBinary(bytes: Uint8Array): DeviceSetAllDigitalOutputsScheduleRequest;
2291
+ static deserializeBinaryFromReader(message: DeviceSetAllDigitalOutputsScheduleRequest, reader: jspb.BinaryReader): DeviceSetAllDigitalOutputsScheduleRequest;
2292
+ }
2293
+
2294
+ export namespace DeviceSetAllDigitalOutputsScheduleRequest {
2295
+ export type AsObject = {
2296
+ interfaceId: number,
2297
+ device: number,
2298
+ valuesList: Array<number>,
2299
+ futureValuesList: Array<number>,
2300
+ delay: number,
2301
+ unit: string,
2302
+ }
2303
+ }
2304
+
2305
+ export class DeviceCancelAllDigitalOutputsScheduleRequest extends jspb.Message {
2306
+ getInterfaceId(): number;
2307
+ setInterfaceId(value: number): void;
2308
+
2309
+ getDevice(): number;
2310
+ setDevice(value: number): void;
2311
+
2312
+ clearChannelsList(): void;
2313
+ getChannelsList(): Array<boolean>;
2314
+ setChannelsList(value: Array<boolean>): void;
2315
+ addChannels(value: boolean, index?: number): boolean;
2316
+
2317
+ serializeBinary(): Uint8Array;
2318
+ toObject(includeInstance?: boolean): DeviceCancelAllDigitalOutputsScheduleRequest.AsObject;
2319
+ static toObject(includeInstance: boolean, msg: DeviceCancelAllDigitalOutputsScheduleRequest): DeviceCancelAllDigitalOutputsScheduleRequest.AsObject;
2320
+ static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
2321
+ static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
2322
+ static serializeBinaryToWriter(message: DeviceCancelAllDigitalOutputsScheduleRequest, writer: jspb.BinaryWriter): void;
2323
+ static deserializeBinary(bytes: Uint8Array): DeviceCancelAllDigitalOutputsScheduleRequest;
2324
+ static deserializeBinaryFromReader(message: DeviceCancelAllDigitalOutputsScheduleRequest, reader: jspb.BinaryReader): DeviceCancelAllDigitalOutputsScheduleRequest;
2325
+ }
2326
+
2327
+ export namespace DeviceCancelAllDigitalOutputsScheduleRequest {
2328
+ export type AsObject = {
2329
+ interfaceId: number,
2330
+ device: number,
2331
+ channelsList: Array<boolean>,
2332
+ }
2333
+ }
2334
+
2261
2335
  export class DeviceSetAllAnalogOutputsRequest extends jspb.Message {
2262
2336
  getInterfaceId(): number;
2263
2337
  setInterfaceId(value: number): void;
@@ -2320,6 +2394,78 @@ export namespace DeviceSetDigitalOutputRequest {
2320
2394
  }
2321
2395
  }
2322
2396
 
2397
+ export class DeviceSetDigitalOutputScheduleRequest extends jspb.Message {
2398
+ getInterfaceId(): number;
2399
+ setInterfaceId(value: number): void;
2400
+
2401
+ getDevice(): number;
2402
+ setDevice(value: number): void;
2403
+
2404
+ getChannelNumber(): number;
2405
+ setChannelNumber(value: number): void;
2406
+
2407
+ getValue(): number;
2408
+ setValue(value: number): void;
2409
+
2410
+ getFutureValue(): number;
2411
+ setFutureValue(value: number): void;
2412
+
2413
+ getDelay(): number;
2414
+ setDelay(value: number): void;
2415
+
2416
+ getUnit(): string;
2417
+ setUnit(value: string): void;
2418
+
2419
+ serializeBinary(): Uint8Array;
2420
+ toObject(includeInstance?: boolean): DeviceSetDigitalOutputScheduleRequest.AsObject;
2421
+ static toObject(includeInstance: boolean, msg: DeviceSetDigitalOutputScheduleRequest): DeviceSetDigitalOutputScheduleRequest.AsObject;
2422
+ static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
2423
+ static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
2424
+ static serializeBinaryToWriter(message: DeviceSetDigitalOutputScheduleRequest, writer: jspb.BinaryWriter): void;
2425
+ static deserializeBinary(bytes: Uint8Array): DeviceSetDigitalOutputScheduleRequest;
2426
+ static deserializeBinaryFromReader(message: DeviceSetDigitalOutputScheduleRequest, reader: jspb.BinaryReader): DeviceSetDigitalOutputScheduleRequest;
2427
+ }
2428
+
2429
+ export namespace DeviceSetDigitalOutputScheduleRequest {
2430
+ export type AsObject = {
2431
+ interfaceId: number,
2432
+ device: number,
2433
+ channelNumber: number,
2434
+ value: number,
2435
+ futureValue: number,
2436
+ delay: number,
2437
+ unit: string,
2438
+ }
2439
+ }
2440
+
2441
+ export class DeviceCancelDigitalOutputScheduleRequest extends jspb.Message {
2442
+ getInterfaceId(): number;
2443
+ setInterfaceId(value: number): void;
2444
+
2445
+ getDevice(): number;
2446
+ setDevice(value: number): void;
2447
+
2448
+ getChannelNumber(): number;
2449
+ setChannelNumber(value: number): void;
2450
+
2451
+ serializeBinary(): Uint8Array;
2452
+ toObject(includeInstance?: boolean): DeviceCancelDigitalOutputScheduleRequest.AsObject;
2453
+ static toObject(includeInstance: boolean, msg: DeviceCancelDigitalOutputScheduleRequest): DeviceCancelDigitalOutputScheduleRequest.AsObject;
2454
+ static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
2455
+ static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
2456
+ static serializeBinaryToWriter(message: DeviceCancelDigitalOutputScheduleRequest, writer: jspb.BinaryWriter): void;
2457
+ static deserializeBinary(bytes: Uint8Array): DeviceCancelDigitalOutputScheduleRequest;
2458
+ static deserializeBinaryFromReader(message: DeviceCancelDigitalOutputScheduleRequest, reader: jspb.BinaryReader): DeviceCancelDigitalOutputScheduleRequest;
2459
+ }
2460
+
2461
+ export namespace DeviceCancelDigitalOutputScheduleRequest {
2462
+ export type AsObject = {
2463
+ interfaceId: number,
2464
+ device: number,
2465
+ channelNumber: number,
2466
+ }
2467
+ }
2468
+
2323
2469
  export class DeviceSetAnalogOutputRequest extends jspb.Message {
2324
2470
  getInterfaceId(): number;
2325
2471
  setInterfaceId(value: number): void;
@@ -7348,6 +7494,9 @@ export class ProcessOn extends jspb.Message {
7348
7494
  getDuration(): number;
7349
7495
  setDuration(value: number): void;
7350
7496
 
7497
+ getUnit(): string;
7498
+ setUnit(value: string): void;
7499
+
7351
7500
  serializeBinary(): Uint8Array;
7352
7501
  toObject(includeInstance?: boolean): ProcessOn.AsObject;
7353
7502
  static toObject(includeInstance: boolean, msg: ProcessOn): ProcessOn.AsObject;
@@ -7365,6 +7514,7 @@ export namespace ProcessOn {
7365
7514
  axis: number,
7366
7515
  on: boolean,
7367
7516
  duration: number,
7517
+ unit: string,
7368
7518
  }
7369
7519
  }
7370
7520