@wandelbots/nova-api 25.5.0-dev.14 → 25.5.0-dev.16
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 +1 -1
- package/v1/api.d.ts +12 -0
- package/v1/api.js.map +1 -1
- package/v1/api.ts +12 -0
- package/v2/api.d.ts +35 -66
- package/v2/api.js.map +1 -1
- package/v2/api.ts +34 -61
package/v1/api.ts
CHANGED
|
@@ -3620,6 +3620,12 @@ export interface MotionGroupState {
|
|
|
3620
3620
|
* @memberof MotionGroupState
|
|
3621
3621
|
*/
|
|
3622
3622
|
'joint_current'?: Joints;
|
|
3623
|
+
/**
|
|
3624
|
+
* Sequence number of the controller state. It starts with 0 upon establishing the connection with a physical controller. The sequence number is reset when the connection to the physical controller is closed and re-established. It is of type string to represent uint64 values, which is not supported by OpenAPI.
|
|
3625
|
+
* @type {string}
|
|
3626
|
+
* @memberof MotionGroupState
|
|
3627
|
+
*/
|
|
3628
|
+
'sequence_number': string;
|
|
3623
3629
|
}
|
|
3624
3630
|
/**
|
|
3625
3631
|
* Indicates which joint of the motion group is in a limit. If a joint is in its limit, only this joint can be moved. Movements that affect any other joints are not executed.
|
|
@@ -5936,6 +5942,12 @@ export interface RobotControllerState {
|
|
|
5936
5942
|
* @memberof RobotControllerState
|
|
5937
5943
|
*/
|
|
5938
5944
|
'motion_groups': Array<MotionGroupState>;
|
|
5945
|
+
/**
|
|
5946
|
+
* Sequence number of the controller state. It starts with 0 upon establishing the connection with a physical controller. The sequence number is reset when the connection to the physical controller is closed and re-established. It is of type string to represent uint64 values, which is not supported by OpenAPI.
|
|
5947
|
+
* @type {string}
|
|
5948
|
+
* @memberof RobotControllerState
|
|
5949
|
+
*/
|
|
5950
|
+
'sequence_number': string;
|
|
5939
5951
|
}
|
|
5940
5952
|
|
|
5941
5953
|
export const RobotControllerStateOperationModeEnum = {
|
package/v2/api.d.ts
CHANGED
|
@@ -4234,30 +4234,28 @@ export interface ProgramRequest {
|
|
|
4234
4234
|
* @type {string}
|
|
4235
4235
|
* @memberof ProgramRequest
|
|
4236
4236
|
*/
|
|
4237
|
-
'program'
|
|
4237
|
+
'program': string;
|
|
4238
4238
|
/**
|
|
4239
|
-
*
|
|
4239
|
+
* Identifier of the default robot to use for execution
|
|
4240
4240
|
* @type {string}
|
|
4241
4241
|
* @memberof ProgramRequest
|
|
4242
4242
|
*/
|
|
4243
|
-
'default_robot'?: string
|
|
4243
|
+
'default_robot'?: string;
|
|
4244
4244
|
/**
|
|
4245
|
-
*
|
|
4245
|
+
* Identifier of the default TCP to use for execution
|
|
4246
4246
|
* @type {string}
|
|
4247
4247
|
* @memberof ProgramRequest
|
|
4248
4248
|
*/
|
|
4249
|
-
'default_tcp'?: string
|
|
4249
|
+
'default_tcp'?: string;
|
|
4250
4250
|
/**
|
|
4251
4251
|
* Initial arguments that are available within the program
|
|
4252
|
-
* @type {
|
|
4252
|
+
* @type {object}
|
|
4253
4253
|
* @memberof ProgramRequest
|
|
4254
4254
|
*/
|
|
4255
|
-
'run_args'?:
|
|
4256
|
-
[key: string]: RunArgsValue;
|
|
4257
|
-
};
|
|
4255
|
+
'run_args'?: object;
|
|
4258
4256
|
}
|
|
4259
4257
|
/**
|
|
4260
|
-
* Holds the state of a program run.
|
|
4258
|
+
* Holds the state of a program run.
|
|
4261
4259
|
* @export
|
|
4262
4260
|
* @interface ProgramRun
|
|
4263
4261
|
*/
|
|
@@ -4275,49 +4273,47 @@ export interface ProgramRun {
|
|
|
4275
4273
|
*/
|
|
4276
4274
|
'state': ProgramRunState;
|
|
4277
4275
|
/**
|
|
4278
|
-
*
|
|
4276
|
+
* Logs of the program run
|
|
4279
4277
|
* @type {string}
|
|
4280
4278
|
* @memberof ProgramRun
|
|
4281
4279
|
*/
|
|
4282
|
-
'logs'?: string
|
|
4280
|
+
'logs'?: string;
|
|
4283
4281
|
/**
|
|
4284
|
-
*
|
|
4282
|
+
* Stdout of the program run
|
|
4285
4283
|
* @type {string}
|
|
4286
4284
|
* @memberof ProgramRun
|
|
4287
4285
|
*/
|
|
4288
|
-
'stdout'?: string
|
|
4286
|
+
'stdout'?: string;
|
|
4289
4287
|
/**
|
|
4290
4288
|
* Stores runtime variables of the run
|
|
4291
|
-
* @type {
|
|
4289
|
+
* @type {object}
|
|
4292
4290
|
* @memberof ProgramRun
|
|
4293
4291
|
*/
|
|
4294
|
-
'store'?:
|
|
4295
|
-
[key: string]: StoreValue;
|
|
4296
|
-
};
|
|
4292
|
+
'store'?: object;
|
|
4297
4293
|
/**
|
|
4298
|
-
*
|
|
4294
|
+
* Error message of the program run, if any
|
|
4299
4295
|
* @type {string}
|
|
4300
4296
|
* @memberof ProgramRun
|
|
4301
4297
|
*/
|
|
4302
|
-
'error'?: string
|
|
4298
|
+
'error'?: string;
|
|
4303
4299
|
/**
|
|
4304
|
-
*
|
|
4300
|
+
* Traceback of the program run, if any
|
|
4305
4301
|
* @type {string}
|
|
4306
4302
|
* @memberof ProgramRun
|
|
4307
4303
|
*/
|
|
4308
|
-
'traceback'?: string
|
|
4304
|
+
'traceback'?: string;
|
|
4309
4305
|
/**
|
|
4310
|
-
*
|
|
4306
|
+
* Start time of the program run
|
|
4311
4307
|
* @type {number}
|
|
4312
4308
|
* @memberof ProgramRun
|
|
4313
4309
|
*/
|
|
4314
|
-
'start_time'?: number
|
|
4310
|
+
'start_time'?: number;
|
|
4315
4311
|
/**
|
|
4316
|
-
*
|
|
4312
|
+
* End time of the program run
|
|
4317
4313
|
* @type {number}
|
|
4318
4314
|
* @memberof ProgramRun
|
|
4319
4315
|
*/
|
|
4320
|
-
'end_time'?: number
|
|
4316
|
+
'end_time'?: number;
|
|
4321
4317
|
/**
|
|
4322
4318
|
* Execution results of the program run
|
|
4323
4319
|
* @type {Array<ProgramRunResult>}
|
|
@@ -4630,7 +4626,7 @@ export interface RobotLinkGeometry {
|
|
|
4630
4626
|
'geometry': Geometry;
|
|
4631
4627
|
}
|
|
4632
4628
|
/**
|
|
4633
|
-
* Collection of information on the current state of the robot
|
|
4629
|
+
* Collection of information on the current state of the robot.
|
|
4634
4630
|
* @export
|
|
4635
4631
|
* @interface RobotState
|
|
4636
4632
|
*/
|
|
@@ -4646,7 +4642,7 @@ export interface RobotState {
|
|
|
4646
4642
|
* @type {Array<number>}
|
|
4647
4643
|
* @memberof RobotState
|
|
4648
4644
|
*/
|
|
4649
|
-
'joints'?: Array<number
|
|
4645
|
+
'joints'?: Array<number>;
|
|
4650
4646
|
}
|
|
4651
4647
|
/**
|
|
4652
4648
|
* The system mode of the robot system. ### ROBOT_SYSTEM_MODE_UNDEFINED Indicates that the robot controller is currently performing a mode transition. ### ROBOT_SYSTEM_MODE_DISCONNECT There is no communication with the robot controller at all. All connections are closed. No command is sent to the robot controller while in this mode. No input/output interaction is possible in this mode! All move requests will be rejected in this mode! ### ROBOT_SYSTEM_MODE_MONITOR A connection to the robot controller is established to only read the robot controller state. No command is sent to the robot controller while in this mode. It is possible to receive input/output information. All move requests will be rejected in this mode! ### ROBOT_SYSTEM_MODE_CONTROL An active connection is established with the robot controller and the robot system is cyclic commanded to stay in its actual position. The robot controller state is received in the cycle time of the robot controller. Requests via the MotionService and JoggingService will be processed and executed in this mode. Input/Output interaction is possible in this mode! **In this mode the robot system can be commanded to move.** ### ROBOT_SYSTEM_MODE_FREE_DRIVE Like ROBOT_SYSTEM_MODE_MONITOR a connection to the robot controller is established to only read the robot controller state. The difference is that the motion groups can be moved by the user (Free Drive). Thus, the servo motors are turned on. All move requests will be rejected in this mode! **This mode is not supported by every robot!** Use [getSupportedModes](getSupportedModes) to evaluate if the device support free drive.
|
|
@@ -4711,13 +4707,6 @@ export interface RobotTcps {
|
|
|
4711
4707
|
*/
|
|
4712
4708
|
'tcps': Array<RobotTcp>;
|
|
4713
4709
|
}
|
|
4714
|
-
/**
|
|
4715
|
-
*
|
|
4716
|
-
* @export
|
|
4717
|
-
* @interface RunArgsValue
|
|
4718
|
-
*/
|
|
4719
|
-
export interface RunArgsValue {
|
|
4720
|
-
}
|
|
4721
4710
|
/**
|
|
4722
4711
|
* The safety configuration of a motion-group. Used for motion planning.
|
|
4723
4712
|
* @export
|
|
@@ -5213,25 +5202,6 @@ export interface StartOnIO {
|
|
|
5213
5202
|
*/
|
|
5214
5203
|
'comparator': Comparator;
|
|
5215
5204
|
}
|
|
5216
|
-
/**
|
|
5217
|
-
*
|
|
5218
|
-
* @export
|
|
5219
|
-
* @interface StoreValue
|
|
5220
|
-
*/
|
|
5221
|
-
export interface StoreValue {
|
|
5222
|
-
/**
|
|
5223
|
-
* A three-dimensional vector [x, y, z] with double precision.
|
|
5224
|
-
* @type {Array<number>}
|
|
5225
|
-
* @memberof StoreValue
|
|
5226
|
-
*/
|
|
5227
|
-
'position'?: Array<number>;
|
|
5228
|
-
/**
|
|
5229
|
-
* Defines a rotation in 3D space. A three-dimensional Vector [rx, ry, rz] with double precision. Rotation is applied around the vector. The angle of rotation equals the length of the vector.
|
|
5230
|
-
* @type {Array<number>}
|
|
5231
|
-
* @memberof StoreValue
|
|
5232
|
-
*/
|
|
5233
|
-
'orientation'?: Array<number>;
|
|
5234
|
-
}
|
|
5235
5205
|
/**
|
|
5236
5206
|
* Representing a robot pose in operational space aware of a configured TCP.
|
|
5237
5207
|
* @export
|
|
@@ -5405,6 +5375,12 @@ export interface TrajectoryData {
|
|
|
5405
5375
|
* @memberof TrajectoryData
|
|
5406
5376
|
*/
|
|
5407
5377
|
'message_type': TrajectoryDataMessageTypeEnum;
|
|
5378
|
+
/**
|
|
5379
|
+
* Identifier of the motion-group.
|
|
5380
|
+
* @type {string}
|
|
5381
|
+
* @memberof TrajectoryData
|
|
5382
|
+
*/
|
|
5383
|
+
'motion_group'?: string;
|
|
5408
5384
|
/**
|
|
5409
5385
|
* The trajectory consisting of a list of joint positions and an equal number of corresponding timestamps.
|
|
5410
5386
|
* @type {JointTrajectory}
|
|
@@ -5621,10 +5597,10 @@ export interface ValidationError {
|
|
|
5621
5597
|
export interface ValidationError2 {
|
|
5622
5598
|
/**
|
|
5623
5599
|
*
|
|
5624
|
-
* @type {Array<
|
|
5600
|
+
* @type {Array<number>}
|
|
5625
5601
|
* @memberof ValidationError2
|
|
5626
5602
|
*/
|
|
5627
|
-
'loc': Array<
|
|
5603
|
+
'loc': Array<number>;
|
|
5628
5604
|
/**
|
|
5629
5605
|
*
|
|
5630
5606
|
* @type {string}
|
|
@@ -5638,13 +5614,6 @@ export interface ValidationError2 {
|
|
|
5638
5614
|
*/
|
|
5639
5615
|
'type': string;
|
|
5640
5616
|
}
|
|
5641
|
-
/**
|
|
5642
|
-
*
|
|
5643
|
-
* @export
|
|
5644
|
-
* @interface ValidationError2LocInner
|
|
5645
|
-
*/
|
|
5646
|
-
export interface ValidationError2LocInner {
|
|
5647
|
-
}
|
|
5648
5617
|
/**
|
|
5649
5618
|
* @type ValidationErrorLocInner
|
|
5650
5619
|
* @export
|
|
@@ -8607,7 +8576,7 @@ export declare const ProgramApiFp: (configuration?: Configuration) => {
|
|
|
8607
8576
|
* @param {*} [options] Override http request option.
|
|
8608
8577
|
* @throws {RequiredError}
|
|
8609
8578
|
*/
|
|
8610
|
-
stopAllPrograms(cell: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
8579
|
+
stopAllPrograms(cell: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
8611
8580
|
/**
|
|
8612
8581
|
* Stop a specific program run.
|
|
8613
8582
|
* @summary Stop program run
|
|
@@ -8683,7 +8652,7 @@ export declare const ProgramApiFactory: (configuration?: Configuration, basePath
|
|
|
8683
8652
|
* @param {*} [options] Override http request option.
|
|
8684
8653
|
* @throws {RequiredError}
|
|
8685
8654
|
*/
|
|
8686
|
-
stopAllPrograms(cell: string, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
8655
|
+
stopAllPrograms(cell: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
8687
8656
|
/**
|
|
8688
8657
|
* Stop a specific program run.
|
|
8689
8658
|
* @summary Stop program run
|
|
@@ -8767,7 +8736,7 @@ export declare class ProgramApi extends BaseAPI {
|
|
|
8767
8736
|
* @throws {RequiredError}
|
|
8768
8737
|
* @memberof ProgramApi
|
|
8769
8738
|
*/
|
|
8770
|
-
stopAllPrograms(cell: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
8739
|
+
stopAllPrograms(cell: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
8771
8740
|
/**
|
|
8772
8741
|
* Stop a specific program run.
|
|
8773
8742
|
* @summary Stop program run
|