@wandelbots/nova-api 25.9.0-dev.14 → 25.9.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/dist/v1/index.d.cts +177 -177
- package/dist/v2/index.cjs +62 -62
- package/dist/v2/index.d.cts +389 -389
- package/dist/v2/index.d.ts +266 -266
- package/dist/v2/index.js +62 -62
- package/package.json +1 -1
package/dist/v2/index.d.cts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as axios0 from "axios";
|
|
2
2
|
import { AxiosInstance, AxiosPromise, RawAxiosRequestConfig } from "axios";
|
|
3
3
|
|
|
4
4
|
//#region v2/configuration.d.ts
|
|
@@ -230,7 +230,7 @@ interface AddTrajectoryError {
|
|
|
230
230
|
*/
|
|
231
231
|
'message'?: string;
|
|
232
232
|
/**
|
|
233
|
-
* Location on trajectory where the execution will start. The default value is the start (forward movement) or end (backward movement) of the trajectory. If you want to start your movement from an arbitrary location, e.g
|
|
233
|
+
* Location on trajectory where the execution will start. The default value is the start (forward movement) or end (backward movement) of the trajectory. If you want to start your movement from an arbitrary location, e.g., in combination with [streamMoveToTrajectoryViaJointPTP](streamMoveToTrajectoryViaJointPTP), set the location by respecting the following format: - The location is a scalar value that defines a position along a path, typically ranging from 0 to `n`, where `n` denotes the number of motion commands - Each integer value of the location corresponds to a specific motion command, while non-integer values interpolate positions within the segments. - The location is calculated from the joint path
|
|
234
234
|
* @type {number}
|
|
235
235
|
* @memberof AddTrajectoryError
|
|
236
236
|
*/
|
|
@@ -298,7 +298,7 @@ interface AddTrajectoryResponse {
|
|
|
298
298
|
*/
|
|
299
299
|
interface App {
|
|
300
300
|
/**
|
|
301
|
-
* The name of the provided application. The name must be unique within the cell and is used as a identifier for addressing the application in all API calls , e.g
|
|
301
|
+
* The name of the provided application. The name must be unique within the cell and is used as a identifier for addressing the application in all API calls , e.g., when updating the application. It also defines where the application is reachable (/$cell/$name). It must be a valid k8s label name as defined by [RFC 1035](https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#rfc-1035-label-names).
|
|
302
302
|
* @type {string}
|
|
303
303
|
* @memberof App
|
|
304
304
|
*/
|
|
@@ -353,7 +353,7 @@ interface App {
|
|
|
353
353
|
'diagnosis_path'?: string;
|
|
354
354
|
}
|
|
355
355
|
/**
|
|
356
|
-
* ## BEHAVIOR_AUTOMATIC This is the default behavior. The motion groups of the controller take commanded joint configuration as actual joint state. Configures the compliance of the virtual robot with the normal ControllerState cycle time. If set, the virtual robot will act like a physical one, e.g
|
|
356
|
+
* ## BEHAVIOR_AUTOMATIC This is the default behavior. The motion groups of the controller take commanded joint configuration as actual joint state. Configures the compliance of the virtual robot with the normal ControllerState cycle time. If set, the virtual robot will act like a physical one, e.g., with a cycle time of 8ms to respond to a new joint state command. ## BEHAVIOR_AUTOMATIC_NOT_COMPLY_WITH_CYCLETIME Configures the compliance of the virtual robot with the normal ControllerState cycle time. If set, the robot will respond as fast as possible, limited only by software execution speed. Because of that the execution of a movement requires less time than with BEHAVIOR_AUTOMATIC. ## BEHAVIOR_EXTERNAL_SOURCE The external client is the only source of actual joint state changes. This mode is used to enable third party software indicating the current joint state via [externalJointsStream](externalJointsStream).
|
|
357
357
|
* @export
|
|
358
358
|
* @enum {string}
|
|
359
359
|
*/
|
|
@@ -627,7 +627,7 @@ interface BusIOsState {
|
|
|
627
627
|
*/
|
|
628
628
|
'state': BusIOsStateEnum;
|
|
629
629
|
/**
|
|
630
|
-
* A message providing additional information on the input/output service, e.g
|
|
630
|
+
* A message providing additional information on the input/output service, e.g., BUS service status, encountered errors. May be empty if no additional information is available.
|
|
631
631
|
* @type {string}
|
|
632
632
|
* @memberof BusIOsState
|
|
633
633
|
*/
|
|
@@ -706,7 +706,7 @@ interface CartesianLimits {
|
|
|
706
706
|
'orientation_acceleration'?: number;
|
|
707
707
|
}
|
|
708
708
|
/**
|
|
709
|
-
* To create a robot cell, only a valid name is required. Once created, a robot cell provides access to the Wandelbots NOVA foundation services. The configuration can be customized, e.g
|
|
709
|
+
* To create a robot cell, only a valid name is required. Once created, a robot cell provides access to the Wandelbots NOVA foundation services. The configuration can be customized, e.g., robot controllers, also within apps.
|
|
710
710
|
* @export
|
|
711
711
|
* @interface Cell
|
|
712
712
|
*/
|
|
@@ -1410,7 +1410,7 @@ declare const ErrorJointLimitExceededErrorFeedbackNameEnum: {
|
|
|
1410
1410
|
};
|
|
1411
1411
|
type ErrorJointLimitExceededErrorFeedbackNameEnum = typeof ErrorJointLimitExceededErrorFeedbackNameEnum[keyof typeof ErrorJointLimitExceededErrorFeedbackNameEnum];
|
|
1412
1412
|
/**
|
|
1413
|
-
* A reference joint position
|
|
1413
|
+
* A reference joint position, e.g., start or target joint position, results in collisions that prevent processing.
|
|
1414
1414
|
* @export
|
|
1415
1415
|
* @interface ErrorJointPositionCollision
|
|
1416
1416
|
*/
|
|
@@ -1960,7 +1960,7 @@ interface IODescription2 {
|
|
|
1960
1960
|
*/
|
|
1961
1961
|
'io': string;
|
|
1962
1962
|
/**
|
|
1963
|
-
* Name of the input/output. Customize it using the respective BUS service, e.g
|
|
1963
|
+
* Name of the input/output. Customize it using the respective BUS service, e.g., [addProfinetIO](addProfinetIO) for PROFINET service.
|
|
1964
1964
|
* @type {string}
|
|
1965
1965
|
* @memberof IODescription2
|
|
1966
1966
|
*/
|
|
@@ -2247,7 +2247,7 @@ interface InitializeMovementRequest {
|
|
|
2247
2247
|
*/
|
|
2248
2248
|
'trajectory': InitializeMovementRequestTrajectory;
|
|
2249
2249
|
/**
|
|
2250
|
-
* Location on trajectory where the execution will start. The default value is the start (forward movement) or end (backward movement) of the trajectory. If you want to start your movement from an arbitrary location, e.g
|
|
2250
|
+
* Location on trajectory where the execution will start. The default value is the start (forward movement) or end (backward movement) of the trajectory. If you want to start your movement from an arbitrary location, e.g., in combination with [streamMoveToTrajectoryViaJointPTP](streamMoveToTrajectoryViaJointPTP), set the location by respecting the following format: - The location is a scalar value that defines a position along a path, typically ranging from 0 to `n`, where `n` denotes the number of motion commands - Each integer value of the location corresponds to a specific motion command, while non-integer values interpolate positions within the segments. - The location is calculated from the joint path
|
|
2251
2251
|
* @type {number}
|
|
2252
2252
|
* @memberof InitializeMovementRequest
|
|
2253
2253
|
*/
|
|
@@ -2407,7 +2407,7 @@ interface InverseKinematicsRequest {
|
|
|
2407
2407
|
*/
|
|
2408
2408
|
'joint_position_limits'?: Array<LimitRange>;
|
|
2409
2409
|
/**
|
|
2410
|
-
* Collision layers to be respected by the motion planner when planning for a single motion group. Each setup represents one layer, e.g
|
|
2410
|
+
* Collision layers to be respected by the motion planner when planning for a single motion group. Each setup represents one layer, e.g., the safety zones and shapes or a fine grained tool and workpiece model. Layers are checked individually along the trajectory and independently of other layers. To respect the safety zones of the controller and check for collision: 1. Fetch the safety zones, link and tool shapes from the controller. 2. Add the fetched zones, links and tools to a layer. 3. Create other layers from your own 3D data as needed. 4. Plan trajectory. 5. The response highlights the layer in which a collision was detected by key.
|
|
2411
2411
|
* @type {{ [key: string]: CollisionSetup; }}
|
|
2412
2412
|
* @memberof InverseKinematicsRequest
|
|
2413
2413
|
*/
|
|
@@ -2694,7 +2694,7 @@ interface JointVelocityRequest {
|
|
|
2694
2694
|
*/
|
|
2695
2695
|
'message_type'?: JointVelocityRequestMessageTypeEnum;
|
|
2696
2696
|
/**
|
|
2697
|
-
* This structure describes a set of joint values
|
|
2697
|
+
* This structure describes a set of joint values, e.g., positions, currents, torques, of a motion group. Float precision is the default.
|
|
2698
2698
|
* @type {Array<number>}
|
|
2699
2699
|
* @memberof JointVelocityRequest
|
|
2700
2700
|
*/
|
|
@@ -3269,7 +3269,7 @@ interface MotionGroupSetup {
|
|
|
3269
3269
|
*/
|
|
3270
3270
|
'payload'?: Payload;
|
|
3271
3271
|
/**
|
|
3272
|
-
* Collision layers to be respected by the motion planner when planning for a single motion group. Each setup represents one layer, e.g
|
|
3272
|
+
* Collision layers to be respected by the motion planner when planning for a single motion group. Each setup represents one layer, e.g., the safety zones and shapes or a fine grained tool and workpiece model. Layers are checked individually along the trajectory and independently of other layers. To respect the safety zones of the controller and check for collision: 1. Fetch the safety zones, link and tool shapes from the controller. 2. Add the fetched zones, links and tools to a layer. 3. Create other layers from your own 3D data as needed. 4. Plan trajectory. 5. The response highlights the layer in which a collision was detected by key.
|
|
3273
3273
|
* @type {{ [key: string]: CollisionSetup; }}
|
|
3274
3274
|
* @memberof MotionGroupSetup
|
|
3275
3275
|
*/
|
|
@@ -3308,7 +3308,7 @@ interface MotionGroupState {
|
|
|
3308
3308
|
*/
|
|
3309
3309
|
'controller': string;
|
|
3310
3310
|
/**
|
|
3311
|
-
* This structure describes a set of joint values
|
|
3311
|
+
* This structure describes a set of joint values, e.g., positions, currents, torques, of a motion group. Float precision is the default.
|
|
3312
3312
|
* @type {Array<number>}
|
|
3313
3313
|
* @memberof MotionGroupState
|
|
3314
3314
|
*/
|
|
@@ -3320,13 +3320,13 @@ interface MotionGroupState {
|
|
|
3320
3320
|
*/
|
|
3321
3321
|
'joint_limit_reached': MotionGroupStateJointLimitReached;
|
|
3322
3322
|
/**
|
|
3323
|
-
* This structure describes a set of joint values
|
|
3323
|
+
* This structure describes a set of joint values, e.g., positions, currents, torques, of a motion group. Float precision is the default.
|
|
3324
3324
|
* @type {Array<number>}
|
|
3325
3325
|
* @memberof MotionGroupState
|
|
3326
3326
|
*/
|
|
3327
3327
|
'joint_torque'?: Array<number>;
|
|
3328
3328
|
/**
|
|
3329
|
-
* This structure describes a set of joint values
|
|
3329
|
+
* This structure describes a set of joint values, e.g., positions, currents, torques, of a motion group. Float precision is the default.
|
|
3330
3330
|
* @type {Array<number>}
|
|
3331
3331
|
* @memberof MotionGroupState
|
|
3332
3332
|
*/
|
|
@@ -3368,7 +3368,7 @@ interface MotionGroupState {
|
|
|
3368
3368
|
*/
|
|
3369
3369
|
'standstill': boolean;
|
|
3370
3370
|
/**
|
|
3371
|
-
* Data that was commanded to the motion group. Includes additional data on NOVA\'s execution components for executing trajectories and jogging. This is a convenience field to indicate the last command sent to the motion group. It is not available in all cases, e.g
|
|
3371
|
+
* Data that was commanded to the motion group. Includes additional data on NOVA\'s execution components for executing trajectories and jogging. This is a convenience field to indicate the last command sent to the motion group. It is not available in all cases, e.g., if the motion group is not moved by NOVA.
|
|
3372
3372
|
* @type {Execute}
|
|
3373
3373
|
* @memberof MotionGroupState
|
|
3374
3374
|
*/
|
|
@@ -3887,7 +3887,7 @@ interface PlanTrajectoryFailedResponse {
|
|
|
3887
3887
|
*/
|
|
3888
3888
|
'error_feedback': PlanTrajectoryFailedResponseErrorFeedback;
|
|
3889
3889
|
/**
|
|
3890
|
-
* Location on trajectory where the execution will start. The default value is the start (forward movement) or end (backward movement) of the trajectory. If you want to start your movement from an arbitrary location, e.g
|
|
3890
|
+
* Location on trajectory where the execution will start. The default value is the start (forward movement) or end (backward movement) of the trajectory. If you want to start your movement from an arbitrary location, e.g., in combination with [streamMoveToTrajectoryViaJointPTP](streamMoveToTrajectoryViaJointPTP), set the location by respecting the following format: - The location is a scalar value that defines a position along a path, typically ranging from 0 to `n`, where `n` denotes the number of motion commands - Each integer value of the location corresponds to a specific motion command, while non-integer values interpolate positions within the segments. - The location is calculated from the joint path
|
|
3891
3891
|
* @type {number}
|
|
3892
3892
|
* @memberof PlanTrajectoryFailedResponse
|
|
3893
3893
|
*/
|
|
@@ -4136,13 +4136,13 @@ interface ProfinetIO {
|
|
|
4136
4136
|
*/
|
|
4137
4137
|
'type': ProfinetIOTypeEnum;
|
|
4138
4138
|
/**
|
|
4139
|
-
* The direction of the input/output variable, indicating whether it is an input or output for the PROFINET device, e.g
|
|
4139
|
+
* The direction of the input/output variable, indicating whether it is an input or output for the PROFINET device, e.g., NOVA\'s PROFINET service.
|
|
4140
4140
|
* @type {ProfinetIODirection}
|
|
4141
4141
|
* @memberof ProfinetIO
|
|
4142
4142
|
*/
|
|
4143
4143
|
'direction': ProfinetIODirection;
|
|
4144
4144
|
/**
|
|
4145
|
-
* The byte address of the input/output variable in the PROFINET device, e.g
|
|
4145
|
+
* The byte address of the input/output variable in the PROFINET device, e.g., NOVA\'s PROFINET service. The byte address is used to locate the specific input/output variable within the device\'s memory or data structure.
|
|
4146
4146
|
* @type {number}
|
|
4147
4147
|
* @memberof ProfinetIO
|
|
4148
4148
|
*/
|
|
@@ -4154,7 +4154,7 @@ interface ProfinetIO {
|
|
|
4154
4154
|
*/
|
|
4155
4155
|
'bit_address'?: number;
|
|
4156
4156
|
/**
|
|
4157
|
-
* The unique identifier for the input/output value. This identifier is used to reference the specific input/output variable in the PROFINET device, e.g
|
|
4157
|
+
* The unique identifier for the input/output value. This identifier is used to reference the specific input/output variable in the PROFINET device, e.g., NOVA\'s PROFINET service.
|
|
4158
4158
|
* @type {string}
|
|
4159
4159
|
* @memberof ProfinetIO
|
|
4160
4160
|
*/
|
|
@@ -4179,13 +4179,13 @@ interface ProfinetIOData {
|
|
|
4179
4179
|
*/
|
|
4180
4180
|
'type': ProfinetIOTypeEnum;
|
|
4181
4181
|
/**
|
|
4182
|
-
* The direction of the input/output variable, indicating whether it is an input or output for the PROFINET device, e.g
|
|
4182
|
+
* The direction of the input/output variable, indicating whether it is an input or output for the PROFINET device, e.g., NOVA\'s PROFINET service.
|
|
4183
4183
|
* @type {ProfinetIODirection}
|
|
4184
4184
|
* @memberof ProfinetIOData
|
|
4185
4185
|
*/
|
|
4186
4186
|
'direction': ProfinetIODirection;
|
|
4187
4187
|
/**
|
|
4188
|
-
* The byte address of the input/output variable in the PROFINET device, e.g
|
|
4188
|
+
* The byte address of the input/output variable in the PROFINET device, e.g., NOVA\'s PROFINET service. The byte address is used to locate the specific input/output variable within the device\'s memory or data structure.
|
|
4189
4189
|
* @type {number}
|
|
4190
4190
|
* @memberof ProfinetIOData
|
|
4191
4191
|
*/
|
|
@@ -4198,7 +4198,7 @@ interface ProfinetIOData {
|
|
|
4198
4198
|
'bit_address'?: number;
|
|
4199
4199
|
}
|
|
4200
4200
|
/**
|
|
4201
|
-
* The direction of the input/output variable, indicating whether it is an input or output for the PROFINET device, e.g
|
|
4201
|
+
* The direction of the input/output variable, indicating whether it is an input or output for the PROFINET device, e.g., NOVA\'s PROFINET service.
|
|
4202
4202
|
* @export
|
|
4203
4203
|
* @enum {string}
|
|
4204
4204
|
*/
|
|
@@ -4252,7 +4252,7 @@ interface ProfinetInputOutputConfig {
|
|
|
4252
4252
|
'output_offset': number;
|
|
4253
4253
|
}
|
|
4254
4254
|
/**
|
|
4255
|
-
* An array of PROFINET slots. PROFINET models each device’s input/output hardware as a hierarchy of slots (modules) and subslots (submodules). A slot can represent a physical or virtual input/output card and each subslot one of its individual channels or functions. Every slot and subslot has unique identifiers that the controller uses to map cyclic input/output data and parameter records to its process image. This slot/subslot separation enables e.g
|
|
4255
|
+
* An array of PROFINET slots. PROFINET models each device’s input/output hardware as a hierarchy of slots (modules) and subslots (submodules). A slot can represent a physical or virtual input/output card and each subslot one of its individual channels or functions. Every slot and subslot has unique identifiers that the controller uses to map cyclic input/output data and parameter records to its process image. This slot/subslot separation enables e.g., addressing each input/output stream when establishing input/output application relations (I/O-AR).
|
|
4256
4256
|
* @export
|
|
4257
4257
|
* @interface ProfinetSlotDescription
|
|
4258
4258
|
*/
|
|
@@ -4956,7 +4956,7 @@ interface StartMovementRequest {
|
|
|
4956
4956
|
*/
|
|
4957
4957
|
'direction'?: Direction;
|
|
4958
4958
|
/**
|
|
4959
|
-
* Location on trajectory where the execution will start. The default value is the start (forward movement) or end (backward movement) of the trajectory. If you want to start your movement from an arbitrary location, e.g
|
|
4959
|
+
* Location on trajectory where the execution will start. The default value is the start (forward movement) or end (backward movement) of the trajectory. If you want to start your movement from an arbitrary location, e.g., in combination with [streamMoveToTrajectoryViaJointPTP](streamMoveToTrajectoryViaJointPTP), set the location by respecting the following format: - The location is a scalar value that defines a position along a path, typically ranging from 0 to `n`, where `n` denotes the number of motion commands - Each integer value of the location corresponds to a specific motion command, while non-integer values interpolate positions within the segments. - The location is calculated from the joint path
|
|
4960
4960
|
* @type {number}
|
|
4961
4961
|
* @memberof StartMovementRequest
|
|
4962
4962
|
*/
|
|
@@ -5227,7 +5227,7 @@ interface TrajectoryDetails {
|
|
|
5227
5227
|
*/
|
|
5228
5228
|
'trajectory': string;
|
|
5229
5229
|
/**
|
|
5230
|
-
* Location on trajectory where the execution will start. The default value is the start (forward movement) or end (backward movement) of the trajectory. If you want to start your movement from an arbitrary location, e.g
|
|
5230
|
+
* Location on trajectory where the execution will start. The default value is the start (forward movement) or end (backward movement) of the trajectory. If you want to start your movement from an arbitrary location, e.g., in combination with [streamMoveToTrajectoryViaJointPTP](streamMoveToTrajectoryViaJointPTP), set the location by respecting the following format: - The location is a scalar value that defines a position along a path, typically ranging from 0 to `n`, where `n` denotes the number of motion commands - Each integer value of the location corresponds to a specific motion command, while non-integer values interpolate positions within the segments. - The location is calculated from the joint path
|
|
5231
5231
|
* @type {number}
|
|
5232
5232
|
* @memberof TrajectoryDetails
|
|
5233
5233
|
*/
|
|
@@ -5526,7 +5526,7 @@ interface VirtualController {
|
|
|
5526
5526
|
*/
|
|
5527
5527
|
'json'?: string;
|
|
5528
5528
|
/**
|
|
5529
|
-
* Initial joint position of the first motion group from the virtual robot controller. Provide the joint position as a JSON array containing 7 float values, each representing a joint position in radians, e.g
|
|
5529
|
+
* Initial joint position of the first motion group from the virtual robot controller. Provide the joint position as a JSON array containing 7 float values, each representing a joint position in radians, e.g., \"[0, 0, 0, 0, 0, 0, 0]\". If the robot has fewer than 7 joints, use \"0\" for each remaining position to ensure the array has exactly 7 values.
|
|
5530
5530
|
* @type {string}
|
|
5531
5531
|
* @memberof VirtualController
|
|
5532
5532
|
*/
|
|
@@ -5722,7 +5722,7 @@ type YaskawaControllerKindEnum = typeof YaskawaControllerKindEnum[keyof typeof Y
|
|
|
5722
5722
|
*/
|
|
5723
5723
|
declare const ApplicationApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
5724
5724
|
/**
|
|
5725
|
-
* Install a basic, containerized web application to the cell to control robots with a customized frontend. Prerequisites
|
|
5725
|
+
* Install a basic, containerized web application to the cell to control robots with a customized frontend. #### Prerequisites - A Docker hub account or similar container registry account, with valid credentials. #### Workflow After adding the application to the cell, open the application on the Wandelbots NOVA home screen. Read [build your application](https://docs.wandelbots.io/latest/developing-introduction) for more information. #### Predefined environment variables <!-- theme: NOTE --> > **NOTE** > - `NOVA_API`: The API endpoint accessible from within the application container. > - `NATS_BROKER`: The NATS broker endpoint accessible from within the application container. > - `BASE_PATH`: The application\'s root path, accessible at http://$host/$BASE_PATH > - `CELL_NAME`: The name of the cell hosting the deployed application.
|
|
5726
5726
|
* @summary Add Application
|
|
5727
5727
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
5728
5728
|
* @param {App} app
|
|
@@ -5751,7 +5751,7 @@ declare const ApplicationApiAxiosParamCreator: (configuration?: Configuration) =
|
|
|
5751
5751
|
*/
|
|
5752
5752
|
deleteApp: (cell: string, app: string, completionTimeout?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
5753
5753
|
/**
|
|
5754
|
-
* Get the configuration for an active GUI application in the cell.
|
|
5754
|
+
* Get the configuration for an active GUI application in the cell. To update the configuration of a GUI application in the cell, use this configuration with [updateApp](updateApp).
|
|
5755
5755
|
* @summary Configuration
|
|
5756
5756
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
5757
5757
|
* @param {string} app
|
|
@@ -5760,7 +5760,7 @@ declare const ApplicationApiAxiosParamCreator: (configuration?: Configuration) =
|
|
|
5760
5760
|
*/
|
|
5761
5761
|
getApp: (cell: string, app: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
5762
5762
|
/**
|
|
5763
|
-
* List all GUI applications that have been added to a cell
|
|
5763
|
+
* List all GUI applications that have been added to a cell with [addApp](addApp). If the cell does not contain GUI applications, the list is returned empty.
|
|
5764
5764
|
* @summary List Applications
|
|
5765
5765
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
5766
5766
|
* @param {*} [options] Override http request option.
|
|
@@ -5785,7 +5785,7 @@ declare const ApplicationApiAxiosParamCreator: (configuration?: Configuration) =
|
|
|
5785
5785
|
*/
|
|
5786
5786
|
declare const ApplicationApiFp: (configuration?: Configuration) => {
|
|
5787
5787
|
/**
|
|
5788
|
-
* Install a basic, containerized web application to the cell to control robots with a customized frontend. Prerequisites
|
|
5788
|
+
* Install a basic, containerized web application to the cell to control robots with a customized frontend. #### Prerequisites - A Docker hub account or similar container registry account, with valid credentials. #### Workflow After adding the application to the cell, open the application on the Wandelbots NOVA home screen. Read [build your application](https://docs.wandelbots.io/latest/developing-introduction) for more information. #### Predefined environment variables <!-- theme: NOTE --> > **NOTE** > - `NOVA_API`: The API endpoint accessible from within the application container. > - `NATS_BROKER`: The NATS broker endpoint accessible from within the application container. > - `BASE_PATH`: The application\'s root path, accessible at http://$host/$BASE_PATH > - `CELL_NAME`: The name of the cell hosting the deployed application.
|
|
5789
5789
|
* @summary Add Application
|
|
5790
5790
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
5791
5791
|
* @param {App} app
|
|
@@ -5814,7 +5814,7 @@ declare const ApplicationApiFp: (configuration?: Configuration) => {
|
|
|
5814
5814
|
*/
|
|
5815
5815
|
deleteApp(cell: string, app: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
5816
5816
|
/**
|
|
5817
|
-
* Get the configuration for an active GUI application in the cell.
|
|
5817
|
+
* Get the configuration for an active GUI application in the cell. To update the configuration of a GUI application in the cell, use this configuration with [updateApp](updateApp).
|
|
5818
5818
|
* @summary Configuration
|
|
5819
5819
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
5820
5820
|
* @param {string} app
|
|
@@ -5823,7 +5823,7 @@ declare const ApplicationApiFp: (configuration?: Configuration) => {
|
|
|
5823
5823
|
*/
|
|
5824
5824
|
getApp(cell: string, app: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<App>>;
|
|
5825
5825
|
/**
|
|
5826
|
-
* List all GUI applications that have been added to a cell
|
|
5826
|
+
* List all GUI applications that have been added to a cell with [addApp](addApp). If the cell does not contain GUI applications, the list is returned empty.
|
|
5827
5827
|
* @summary List Applications
|
|
5828
5828
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
5829
5829
|
* @param {*} [options] Override http request option.
|
|
@@ -5848,7 +5848,7 @@ declare const ApplicationApiFp: (configuration?: Configuration) => {
|
|
|
5848
5848
|
*/
|
|
5849
5849
|
declare const ApplicationApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
5850
5850
|
/**
|
|
5851
|
-
* Install a basic, containerized web application to the cell to control robots with a customized frontend. Prerequisites
|
|
5851
|
+
* Install a basic, containerized web application to the cell to control robots with a customized frontend. #### Prerequisites - A Docker hub account or similar container registry account, with valid credentials. #### Workflow After adding the application to the cell, open the application on the Wandelbots NOVA home screen. Read [build your application](https://docs.wandelbots.io/latest/developing-introduction) for more information. #### Predefined environment variables <!-- theme: NOTE --> > **NOTE** > - `NOVA_API`: The API endpoint accessible from within the application container. > - `NATS_BROKER`: The NATS broker endpoint accessible from within the application container. > - `BASE_PATH`: The application\'s root path, accessible at http://$host/$BASE_PATH > - `CELL_NAME`: The name of the cell hosting the deployed application.
|
|
5852
5852
|
* @summary Add Application
|
|
5853
5853
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
5854
5854
|
* @param {App} app
|
|
@@ -5877,7 +5877,7 @@ declare const ApplicationApiFactory: (configuration?: Configuration, basePath?:
|
|
|
5877
5877
|
*/
|
|
5878
5878
|
deleteApp(cell: string, app: string, completionTimeout?: number, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
5879
5879
|
/**
|
|
5880
|
-
* Get the configuration for an active GUI application in the cell.
|
|
5880
|
+
* Get the configuration for an active GUI application in the cell. To update the configuration of a GUI application in the cell, use this configuration with [updateApp](updateApp).
|
|
5881
5881
|
* @summary Configuration
|
|
5882
5882
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
5883
5883
|
* @param {string} app
|
|
@@ -5886,7 +5886,7 @@ declare const ApplicationApiFactory: (configuration?: Configuration, basePath?:
|
|
|
5886
5886
|
*/
|
|
5887
5887
|
getApp(cell: string, app: string, options?: RawAxiosRequestConfig): AxiosPromise<App>;
|
|
5888
5888
|
/**
|
|
5889
|
-
* List all GUI applications that have been added to a cell
|
|
5889
|
+
* List all GUI applications that have been added to a cell with [addApp](addApp). If the cell does not contain GUI applications, the list is returned empty.
|
|
5890
5890
|
* @summary List Applications
|
|
5891
5891
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
5892
5892
|
* @param {*} [options] Override http request option.
|
|
@@ -5913,7 +5913,7 @@ declare const ApplicationApiFactory: (configuration?: Configuration, basePath?:
|
|
|
5913
5913
|
*/
|
|
5914
5914
|
declare class ApplicationApi extends BaseAPI {
|
|
5915
5915
|
/**
|
|
5916
|
-
* Install a basic, containerized web application to the cell to control robots with a customized frontend. Prerequisites
|
|
5916
|
+
* Install a basic, containerized web application to the cell to control robots with a customized frontend. #### Prerequisites - A Docker hub account or similar container registry account, with valid credentials. #### Workflow After adding the application to the cell, open the application on the Wandelbots NOVA home screen. Read [build your application](https://docs.wandelbots.io/latest/developing-introduction) for more information. #### Predefined environment variables <!-- theme: NOTE --> > **NOTE** > - `NOVA_API`: The API endpoint accessible from within the application container. > - `NATS_BROKER`: The NATS broker endpoint accessible from within the application container. > - `BASE_PATH`: The application\'s root path, accessible at http://$host/$BASE_PATH > - `CELL_NAME`: The name of the cell hosting the deployed application.
|
|
5917
5917
|
* @summary Add Application
|
|
5918
5918
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
5919
5919
|
* @param {App} app
|
|
@@ -5922,7 +5922,7 @@ declare class ApplicationApi extends BaseAPI {
|
|
|
5922
5922
|
* @throws {RequiredError}
|
|
5923
5923
|
* @memberof ApplicationApi
|
|
5924
5924
|
*/
|
|
5925
|
-
addApp(cell: string, app: App, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<
|
|
5925
|
+
addApp(cell: string, app: App, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
5926
5926
|
/**
|
|
5927
5927
|
* Delete all GUI applications from the cell.
|
|
5928
5928
|
* @summary Clear Applications
|
|
@@ -5932,7 +5932,7 @@ declare class ApplicationApi extends BaseAPI {
|
|
|
5932
5932
|
* @throws {RequiredError}
|
|
5933
5933
|
* @memberof ApplicationApi
|
|
5934
5934
|
*/
|
|
5935
|
-
clearApps(cell: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<
|
|
5935
|
+
clearApps(cell: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
5936
5936
|
/**
|
|
5937
5937
|
* Delete a GUI application from the cell.
|
|
5938
5938
|
* @summary Delete Application
|
|
@@ -5943,9 +5943,9 @@ declare class ApplicationApi extends BaseAPI {
|
|
|
5943
5943
|
* @throws {RequiredError}
|
|
5944
5944
|
* @memberof ApplicationApi
|
|
5945
5945
|
*/
|
|
5946
|
-
deleteApp(cell: string, app: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<
|
|
5946
|
+
deleteApp(cell: string, app: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
5947
5947
|
/**
|
|
5948
|
-
* Get the configuration for an active GUI application in the cell.
|
|
5948
|
+
* Get the configuration for an active GUI application in the cell. To update the configuration of a GUI application in the cell, use this configuration with [updateApp](updateApp).
|
|
5949
5949
|
* @summary Configuration
|
|
5950
5950
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
5951
5951
|
* @param {string} app
|
|
@@ -5953,16 +5953,16 @@ declare class ApplicationApi extends BaseAPI {
|
|
|
5953
5953
|
* @throws {RequiredError}
|
|
5954
5954
|
* @memberof ApplicationApi
|
|
5955
5955
|
*/
|
|
5956
|
-
getApp(cell: string, app: string, options?: RawAxiosRequestConfig): Promise<
|
|
5956
|
+
getApp(cell: string, app: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<App, any>>;
|
|
5957
5957
|
/**
|
|
5958
|
-
* List all GUI applications that have been added to a cell
|
|
5958
|
+
* List all GUI applications that have been added to a cell with [addApp](addApp). If the cell does not contain GUI applications, the list is returned empty.
|
|
5959
5959
|
* @summary List Applications
|
|
5960
5960
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
5961
5961
|
* @param {*} [options] Override http request option.
|
|
5962
5962
|
* @throws {RequiredError}
|
|
5963
5963
|
* @memberof ApplicationApi
|
|
5964
5964
|
*/
|
|
5965
|
-
listApps(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
5965
|
+
listApps(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<string[], any>>;
|
|
5966
5966
|
/**
|
|
5967
5967
|
* Update the configuration of a GUI application in the cell.
|
|
5968
5968
|
* @summary Update Configuration
|
|
@@ -5974,7 +5974,7 @@ declare class ApplicationApi extends BaseAPI {
|
|
|
5974
5974
|
* @throws {RequiredError}
|
|
5975
5975
|
* @memberof ApplicationApi
|
|
5976
5976
|
*/
|
|
5977
|
-
updateApp(cell: string, app: string, app2: App, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<
|
|
5977
|
+
updateApp(cell: string, app: string, app2: App, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
5978
5978
|
}
|
|
5979
5979
|
/**
|
|
5980
5980
|
* BUSInputsOutputsApi - axios parameter creator
|
|
@@ -5992,7 +5992,7 @@ declare const BUSInputsOutputsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
5992
5992
|
*/
|
|
5993
5993
|
addBusIOService: (cell: string, busIOType: BusIOType, completionTimeout?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
5994
5994
|
/**
|
|
5995
|
-
* Adds an input/output variable to or updates an input/output variable on the PROFINET device, e.g
|
|
5995
|
+
* Adds an input/output variable to or updates an input/output variable on the PROFINET device, e.g., NOVA\'s PROFINET service. The inputs/outputs map variables to specific memory addresses in the process image. The default process image has buffer lengths of 64 bytes for input and output. - The size of the buffer is determined by the `config_file_content` that is passed in [addBusIOService](addBusIOService) and has to be in accordance with the GSDML file describing the PROFINET device. The PROFINET controller as well as NOVA\'s PROFINET service use an input/output variable configuration to interpret the bits of the input/output process image. - The NOVA\'s PROFINET service\'s configuration can be viewed via [listProfinetIOs](listProfinetIOs). For the PROFINET controller, e.g., a connected PLC, refer to the corresponding third party software, e.g., TIA portal).
|
|
5996
5996
|
* @summary Add PROFINET Input/Output
|
|
5997
5997
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
5998
5998
|
* @param {string} io Unique identifier to address an Input/Output in the cell.
|
|
@@ -6011,7 +6011,7 @@ declare const BUSInputsOutputsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
6011
6011
|
*/
|
|
6012
6012
|
clearBusIOService: (cell: string, completionTimeout?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
6013
6013
|
/**
|
|
6014
|
-
* Removes an input/output variable configuration from the PROFINET device, e.g
|
|
6014
|
+
* Removes an input/output variable configuration from the PROFINET device, e.g., NOVA\'s PROFINET service.
|
|
6015
6015
|
* @summary Remove PROFINET Input/Ouptut
|
|
6016
6016
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
6017
6017
|
* @param {string} io Unique identifier to address an Input/Output in the cell.
|
|
@@ -6053,7 +6053,7 @@ declare const BUSInputsOutputsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
6053
6053
|
*/
|
|
6054
6054
|
getProfinetDescription: (cell: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
6055
6055
|
/**
|
|
6056
|
-
* Get input/output variable configuration of the PROFINET device, e.g
|
|
6056
|
+
* Get input/output variable configuration of the PROFINET device, e.g., NOVA\'s PROFINET service as file. You can specify byte offsets for the input and output variable addresses to get an XML tagmap that is ready to paste to the third party software, e.g., TIA portal.
|
|
6057
6057
|
* @summary PROFINET Inputs/Outputs to File
|
|
6058
6058
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
6059
6059
|
* @param {number} [inputOffset]
|
|
@@ -6063,7 +6063,7 @@ declare const BUSInputsOutputsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
6063
6063
|
*/
|
|
6064
6064
|
getProfinetIOsFromFile: (cell: string, inputOffset?: number, outputOffset?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
6065
6065
|
/**
|
|
6066
|
-
* List all input/output descriptions for configured BUS services. The input/output descriptions contain information
|
|
6066
|
+
* List all input/output descriptions for configured BUS services. The input/output descriptions contain information like name, type and unit. The input/output direction is given in perspective of the BUS service.
|
|
6067
6067
|
* @summary List Descriptions
|
|
6068
6068
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
6069
6069
|
* @param {*} [options] Override http request option.
|
|
@@ -6071,7 +6071,7 @@ declare const BUSInputsOutputsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
6071
6071
|
*/
|
|
6072
6072
|
listBusIODescriptions: (cell: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
6073
6073
|
/**
|
|
6074
|
-
* List descriptions for all configured input/output variables of the PROFINET service. The input/output descriptions contain information
|
|
6074
|
+
* List descriptions for all configured input/output variables of the PROFINET service. The input/output descriptions contain information like name, type and unit. The input/output direction is given in perspective of the PROFINET Device, e.g., the configured PROFINET service. - The byte and bit addresses are the locations in the PROFINET input/output process image the variable points to. - The PROFINET controller as well as NOVA\'s PROFINET service use an input/output variable configuration to interpret the bits of the input and output process image. - The NOVA PROFINET service\'s configuration is modified via [addProfinetIO](addProfinetIO) and [setProfinetIOsFromFile](setProfinetIOsFromFile). For the PROFINET controller, e.g., a connected PLC, refer to the corresponding third party software, e.g., TIA portal.
|
|
6075
6075
|
* @summary List PROFINET Input/Output Configuration
|
|
6076
6076
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
6077
6077
|
* @param {*} [options] Override http request option.
|
|
@@ -6088,7 +6088,7 @@ declare const BUSInputsOutputsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
6088
6088
|
*/
|
|
6089
6089
|
setBusIOValues: (cell: string, iOValue: Array<IOValue>, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
6090
6090
|
/**
|
|
6091
|
-
* Sets input/output variable configuration on the PROFINET device (i.e. NOVA\'s PROFINET service) from XML file. The inputs/outputs map variables to specific memory addresses in the process image. The default process image has buffer lengths of 64 bytes for input and output. The size of the buffer is determined by the `config_file_content` that is passed in [addBusIOService](addBusIOService)
|
|
6091
|
+
* Sets input/output variable configuration on the PROFINET device (i.e. NOVA\'s PROFINET service) from XML file. The inputs/outputs map variables to specific memory addresses in the process image. The default process image has buffer lengths of 64 bytes for input and output. - The size of the buffer is determined by the `config_file_content` that is passed in [addBusIOService](addBusIOService) and has to be in accordance with the GSDML file describing the PROFINET device. The PROFINET controller as well as NOVA\'s PROFINET service use an input/output variable configuration to interpret the bits of the input/output process image. - The NOVA\'s PROFINET service\'s configuration can be viewed via [listProfinetIOs](listProfinetIOs). For the PROFINET controller, e.g., a connected PLC, refer to the corresponding engineering system, e.g., TIA portal. #### Export variables You can export the variable configuration of the PROFINET controller as XML file from your engineering system, e.g., TIA portal. - The endpoint is built so that the perspective of input and output (PROFINET Device\'s input is PROFINET Controller\'s output) is internally handled (PROFINET device input is PROFINET controller output), meaning that you can paste the exported XML file here without modifying.
|
|
6092
6092
|
* @summary Set PROFINET Inputs/Outputs from File
|
|
6093
6093
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
6094
6094
|
* @param {ProfinetInputOutputConfig} profinetInputOutputConfig
|
|
@@ -6113,7 +6113,7 @@ declare const BUSInputsOutputsApiFp: (configuration?: Configuration) => {
|
|
|
6113
6113
|
*/
|
|
6114
6114
|
addBusIOService(cell: string, busIOType: BusIOType, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
6115
6115
|
/**
|
|
6116
|
-
* Adds an input/output variable to or updates an input/output variable on the PROFINET device, e.g
|
|
6116
|
+
* Adds an input/output variable to or updates an input/output variable on the PROFINET device, e.g., NOVA\'s PROFINET service. The inputs/outputs map variables to specific memory addresses in the process image. The default process image has buffer lengths of 64 bytes for input and output. - The size of the buffer is determined by the `config_file_content` that is passed in [addBusIOService](addBusIOService) and has to be in accordance with the GSDML file describing the PROFINET device. The PROFINET controller as well as NOVA\'s PROFINET service use an input/output variable configuration to interpret the bits of the input/output process image. - The NOVA\'s PROFINET service\'s configuration can be viewed via [listProfinetIOs](listProfinetIOs). For the PROFINET controller, e.g., a connected PLC, refer to the corresponding third party software, e.g., TIA portal).
|
|
6117
6117
|
* @summary Add PROFINET Input/Output
|
|
6118
6118
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
6119
6119
|
* @param {string} io Unique identifier to address an Input/Output in the cell.
|
|
@@ -6132,7 +6132,7 @@ declare const BUSInputsOutputsApiFp: (configuration?: Configuration) => {
|
|
|
6132
6132
|
*/
|
|
6133
6133
|
clearBusIOService(cell: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
6134
6134
|
/**
|
|
6135
|
-
* Removes an input/output variable configuration from the PROFINET device, e.g
|
|
6135
|
+
* Removes an input/output variable configuration from the PROFINET device, e.g., NOVA\'s PROFINET service.
|
|
6136
6136
|
* @summary Remove PROFINET Input/Ouptut
|
|
6137
6137
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
6138
6138
|
* @param {string} io Unique identifier to address an Input/Output in the cell.
|
|
@@ -6174,7 +6174,7 @@ declare const BUSInputsOutputsApiFp: (configuration?: Configuration) => {
|
|
|
6174
6174
|
*/
|
|
6175
6175
|
getProfinetDescription(cell: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ProfinetDescription>>;
|
|
6176
6176
|
/**
|
|
6177
|
-
* Get input/output variable configuration of the PROFINET device, e.g
|
|
6177
|
+
* Get input/output variable configuration of the PROFINET device, e.g., NOVA\'s PROFINET service as file. You can specify byte offsets for the input and output variable addresses to get an XML tagmap that is ready to paste to the third party software, e.g., TIA portal.
|
|
6178
6178
|
* @summary PROFINET Inputs/Outputs to File
|
|
6179
6179
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
6180
6180
|
* @param {number} [inputOffset]
|
|
@@ -6184,7 +6184,7 @@ declare const BUSInputsOutputsApiFp: (configuration?: Configuration) => {
|
|
|
6184
6184
|
*/
|
|
6185
6185
|
getProfinetIOsFromFile(cell: string, inputOffset?: number, outputOffset?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<string>>;
|
|
6186
6186
|
/**
|
|
6187
|
-
* List all input/output descriptions for configured BUS services. The input/output descriptions contain information
|
|
6187
|
+
* List all input/output descriptions for configured BUS services. The input/output descriptions contain information like name, type and unit. The input/output direction is given in perspective of the BUS service.
|
|
6188
6188
|
* @summary List Descriptions
|
|
6189
6189
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
6190
6190
|
* @param {*} [options] Override http request option.
|
|
@@ -6192,7 +6192,7 @@ declare const BUSInputsOutputsApiFp: (configuration?: Configuration) => {
|
|
|
6192
6192
|
*/
|
|
6193
6193
|
listBusIODescriptions(cell: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<IODescription2>>>;
|
|
6194
6194
|
/**
|
|
6195
|
-
* List descriptions for all configured input/output variables of the PROFINET service. The input/output descriptions contain information
|
|
6195
|
+
* List descriptions for all configured input/output variables of the PROFINET service. The input/output descriptions contain information like name, type and unit. The input/output direction is given in perspective of the PROFINET Device, e.g., the configured PROFINET service. - The byte and bit addresses are the locations in the PROFINET input/output process image the variable points to. - The PROFINET controller as well as NOVA\'s PROFINET service use an input/output variable configuration to interpret the bits of the input and output process image. - The NOVA PROFINET service\'s configuration is modified via [addProfinetIO](addProfinetIO) and [setProfinetIOsFromFile](setProfinetIOsFromFile). For the PROFINET controller, e.g., a connected PLC, refer to the corresponding third party software, e.g., TIA portal.
|
|
6196
6196
|
* @summary List PROFINET Input/Output Configuration
|
|
6197
6197
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
6198
6198
|
* @param {*} [options] Override http request option.
|
|
@@ -6209,7 +6209,7 @@ declare const BUSInputsOutputsApiFp: (configuration?: Configuration) => {
|
|
|
6209
6209
|
*/
|
|
6210
6210
|
setBusIOValues(cell: string, iOValue: Array<IOValue>, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
6211
6211
|
/**
|
|
6212
|
-
* Sets input/output variable configuration on the PROFINET device (i.e. NOVA\'s PROFINET service) from XML file. The inputs/outputs map variables to specific memory addresses in the process image. The default process image has buffer lengths of 64 bytes for input and output. The size of the buffer is determined by the `config_file_content` that is passed in [addBusIOService](addBusIOService)
|
|
6212
|
+
* Sets input/output variable configuration on the PROFINET device (i.e. NOVA\'s PROFINET service) from XML file. The inputs/outputs map variables to specific memory addresses in the process image. The default process image has buffer lengths of 64 bytes for input and output. - The size of the buffer is determined by the `config_file_content` that is passed in [addBusIOService](addBusIOService) and has to be in accordance with the GSDML file describing the PROFINET device. The PROFINET controller as well as NOVA\'s PROFINET service use an input/output variable configuration to interpret the bits of the input/output process image. - The NOVA\'s PROFINET service\'s configuration can be viewed via [listProfinetIOs](listProfinetIOs). For the PROFINET controller, e.g., a connected PLC, refer to the corresponding engineering system, e.g., TIA portal. #### Export variables You can export the variable configuration of the PROFINET controller as XML file from your engineering system, e.g., TIA portal. - The endpoint is built so that the perspective of input and output (PROFINET Device\'s input is PROFINET Controller\'s output) is internally handled (PROFINET device input is PROFINET controller output), meaning that you can paste the exported XML file here without modifying.
|
|
6213
6213
|
* @summary Set PROFINET Inputs/Outputs from File
|
|
6214
6214
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
6215
6215
|
* @param {ProfinetInputOutputConfig} profinetInputOutputConfig
|
|
@@ -6234,7 +6234,7 @@ declare const BUSInputsOutputsApiFactory: (configuration?: Configuration, basePa
|
|
|
6234
6234
|
*/
|
|
6235
6235
|
addBusIOService(cell: string, busIOType: BusIOType, completionTimeout?: number, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
6236
6236
|
/**
|
|
6237
|
-
* Adds an input/output variable to or updates an input/output variable on the PROFINET device, e.g
|
|
6237
|
+
* Adds an input/output variable to or updates an input/output variable on the PROFINET device, e.g., NOVA\'s PROFINET service. The inputs/outputs map variables to specific memory addresses in the process image. The default process image has buffer lengths of 64 bytes for input and output. - The size of the buffer is determined by the `config_file_content` that is passed in [addBusIOService](addBusIOService) and has to be in accordance with the GSDML file describing the PROFINET device. The PROFINET controller as well as NOVA\'s PROFINET service use an input/output variable configuration to interpret the bits of the input/output process image. - The NOVA\'s PROFINET service\'s configuration can be viewed via [listProfinetIOs](listProfinetIOs). For the PROFINET controller, e.g., a connected PLC, refer to the corresponding third party software, e.g., TIA portal).
|
|
6238
6238
|
* @summary Add PROFINET Input/Output
|
|
6239
6239
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
6240
6240
|
* @param {string} io Unique identifier to address an Input/Output in the cell.
|
|
@@ -6253,7 +6253,7 @@ declare const BUSInputsOutputsApiFactory: (configuration?: Configuration, basePa
|
|
|
6253
6253
|
*/
|
|
6254
6254
|
clearBusIOService(cell: string, completionTimeout?: number, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
6255
6255
|
/**
|
|
6256
|
-
* Removes an input/output variable configuration from the PROFINET device, e.g
|
|
6256
|
+
* Removes an input/output variable configuration from the PROFINET device, e.g., NOVA\'s PROFINET service.
|
|
6257
6257
|
* @summary Remove PROFINET Input/Ouptut
|
|
6258
6258
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
6259
6259
|
* @param {string} io Unique identifier to address an Input/Output in the cell.
|
|
@@ -6295,7 +6295,7 @@ declare const BUSInputsOutputsApiFactory: (configuration?: Configuration, basePa
|
|
|
6295
6295
|
*/
|
|
6296
6296
|
getProfinetDescription(cell: string, options?: RawAxiosRequestConfig): AxiosPromise<ProfinetDescription>;
|
|
6297
6297
|
/**
|
|
6298
|
-
* Get input/output variable configuration of the PROFINET device, e.g
|
|
6298
|
+
* Get input/output variable configuration of the PROFINET device, e.g., NOVA\'s PROFINET service as file. You can specify byte offsets for the input and output variable addresses to get an XML tagmap that is ready to paste to the third party software, e.g., TIA portal.
|
|
6299
6299
|
* @summary PROFINET Inputs/Outputs to File
|
|
6300
6300
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
6301
6301
|
* @param {number} [inputOffset]
|
|
@@ -6305,7 +6305,7 @@ declare const BUSInputsOutputsApiFactory: (configuration?: Configuration, basePa
|
|
|
6305
6305
|
*/
|
|
6306
6306
|
getProfinetIOsFromFile(cell: string, inputOffset?: number, outputOffset?: number, options?: RawAxiosRequestConfig): AxiosPromise<string>;
|
|
6307
6307
|
/**
|
|
6308
|
-
* List all input/output descriptions for configured BUS services. The input/output descriptions contain information
|
|
6308
|
+
* List all input/output descriptions for configured BUS services. The input/output descriptions contain information like name, type and unit. The input/output direction is given in perspective of the BUS service.
|
|
6309
6309
|
* @summary List Descriptions
|
|
6310
6310
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
6311
6311
|
* @param {*} [options] Override http request option.
|
|
@@ -6313,7 +6313,7 @@ declare const BUSInputsOutputsApiFactory: (configuration?: Configuration, basePa
|
|
|
6313
6313
|
*/
|
|
6314
6314
|
listBusIODescriptions(cell: string, options?: RawAxiosRequestConfig): AxiosPromise<Array<IODescription2>>;
|
|
6315
6315
|
/**
|
|
6316
|
-
* List descriptions for all configured input/output variables of the PROFINET service. The input/output descriptions contain information
|
|
6316
|
+
* List descriptions for all configured input/output variables of the PROFINET service. The input/output descriptions contain information like name, type and unit. The input/output direction is given in perspective of the PROFINET Device, e.g., the configured PROFINET service. - The byte and bit addresses are the locations in the PROFINET input/output process image the variable points to. - The PROFINET controller as well as NOVA\'s PROFINET service use an input/output variable configuration to interpret the bits of the input and output process image. - The NOVA PROFINET service\'s configuration is modified via [addProfinetIO](addProfinetIO) and [setProfinetIOsFromFile](setProfinetIOsFromFile). For the PROFINET controller, e.g., a connected PLC, refer to the corresponding third party software, e.g., TIA portal.
|
|
6317
6317
|
* @summary List PROFINET Input/Output Configuration
|
|
6318
6318
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
6319
6319
|
* @param {*} [options] Override http request option.
|
|
@@ -6330,7 +6330,7 @@ declare const BUSInputsOutputsApiFactory: (configuration?: Configuration, basePa
|
|
|
6330
6330
|
*/
|
|
6331
6331
|
setBusIOValues(cell: string, iOValue: Array<IOValue>, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
6332
6332
|
/**
|
|
6333
|
-
* Sets input/output variable configuration on the PROFINET device (i.e. NOVA\'s PROFINET service) from XML file. The inputs/outputs map variables to specific memory addresses in the process image. The default process image has buffer lengths of 64 bytes for input and output. The size of the buffer is determined by the `config_file_content` that is passed in [addBusIOService](addBusIOService)
|
|
6333
|
+
* Sets input/output variable configuration on the PROFINET device (i.e. NOVA\'s PROFINET service) from XML file. The inputs/outputs map variables to specific memory addresses in the process image. The default process image has buffer lengths of 64 bytes for input and output. - The size of the buffer is determined by the `config_file_content` that is passed in [addBusIOService](addBusIOService) and has to be in accordance with the GSDML file describing the PROFINET device. The PROFINET controller as well as NOVA\'s PROFINET service use an input/output variable configuration to interpret the bits of the input/output process image. - The NOVA\'s PROFINET service\'s configuration can be viewed via [listProfinetIOs](listProfinetIOs). For the PROFINET controller, e.g., a connected PLC, refer to the corresponding engineering system, e.g., TIA portal. #### Export variables You can export the variable configuration of the PROFINET controller as XML file from your engineering system, e.g., TIA portal. - The endpoint is built so that the perspective of input and output (PROFINET Device\'s input is PROFINET Controller\'s output) is internally handled (PROFINET device input is PROFINET controller output), meaning that you can paste the exported XML file here without modifying.
|
|
6334
6334
|
* @summary Set PROFINET Inputs/Outputs from File
|
|
6335
6335
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
6336
6336
|
* @param {ProfinetInputOutputConfig} profinetInputOutputConfig
|
|
@@ -6356,9 +6356,9 @@ declare class BUSInputsOutputsApi extends BaseAPI {
|
|
|
6356
6356
|
* @throws {RequiredError}
|
|
6357
6357
|
* @memberof BUSInputsOutputsApi
|
|
6358
6358
|
*/
|
|
6359
|
-
addBusIOService(cell: string, busIOType: BusIOType, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<
|
|
6359
|
+
addBusIOService(cell: string, busIOType: BusIOType, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
6360
6360
|
/**
|
|
6361
|
-
* Adds an input/output variable to or updates an input/output variable on the PROFINET device, e.g
|
|
6361
|
+
* Adds an input/output variable to or updates an input/output variable on the PROFINET device, e.g., NOVA\'s PROFINET service. The inputs/outputs map variables to specific memory addresses in the process image. The default process image has buffer lengths of 64 bytes for input and output. - The size of the buffer is determined by the `config_file_content` that is passed in [addBusIOService](addBusIOService) and has to be in accordance with the GSDML file describing the PROFINET device. The PROFINET controller as well as NOVA\'s PROFINET service use an input/output variable configuration to interpret the bits of the input/output process image. - The NOVA\'s PROFINET service\'s configuration can be viewed via [listProfinetIOs](listProfinetIOs). For the PROFINET controller, e.g., a connected PLC, refer to the corresponding third party software, e.g., TIA portal).
|
|
6362
6362
|
* @summary Add PROFINET Input/Output
|
|
6363
6363
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
6364
6364
|
* @param {string} io Unique identifier to address an Input/Output in the cell.
|
|
@@ -6367,7 +6367,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
|
|
|
6367
6367
|
* @throws {RequiredError}
|
|
6368
6368
|
* @memberof BUSInputsOutputsApi
|
|
6369
6369
|
*/
|
|
6370
|
-
addProfinetIO(cell: string, io: string, profinetIOData: ProfinetIOData, options?: RawAxiosRequestConfig): Promise<
|
|
6370
|
+
addProfinetIO(cell: string, io: string, profinetIOData: ProfinetIOData, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
6371
6371
|
/**
|
|
6372
6372
|
* Remove the BUS inputs/outputs service from the cell.
|
|
6373
6373
|
* @summary Clear Service
|
|
@@ -6377,9 +6377,9 @@ declare class BUSInputsOutputsApi extends BaseAPI {
|
|
|
6377
6377
|
* @throws {RequiredError}
|
|
6378
6378
|
* @memberof BUSInputsOutputsApi
|
|
6379
6379
|
*/
|
|
6380
|
-
clearBusIOService(cell: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<
|
|
6380
|
+
clearBusIOService(cell: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
6381
6381
|
/**
|
|
6382
|
-
* Removes an input/output variable configuration from the PROFINET device, e.g
|
|
6382
|
+
* Removes an input/output variable configuration from the PROFINET device, e.g., NOVA\'s PROFINET service.
|
|
6383
6383
|
* @summary Remove PROFINET Input/Ouptut
|
|
6384
6384
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
6385
6385
|
* @param {string} io Unique identifier to address an Input/Output in the cell.
|
|
@@ -6387,7 +6387,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
|
|
|
6387
6387
|
* @throws {RequiredError}
|
|
6388
6388
|
* @memberof BUSInputsOutputsApi
|
|
6389
6389
|
*/
|
|
6390
|
-
deleteProfinetIO(cell: string, io: string, options?: RawAxiosRequestConfig): Promise<
|
|
6390
|
+
deleteProfinetIO(cell: string, io: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
6391
6391
|
/**
|
|
6392
6392
|
* Get deployed BUS inputs/outputs service.
|
|
6393
6393
|
* @summary Get Service
|
|
@@ -6396,7 +6396,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
|
|
|
6396
6396
|
* @throws {RequiredError}
|
|
6397
6397
|
* @memberof BUSInputsOutputsApi
|
|
6398
6398
|
*/
|
|
6399
|
-
getBusIOService(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
6399
|
+
getBusIOService(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<BusIOType, any>>;
|
|
6400
6400
|
/**
|
|
6401
6401
|
* Get the current state of the BUS Inputs/Outputs service.
|
|
6402
6402
|
* @summary State
|
|
@@ -6405,7 +6405,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
|
|
|
6405
6405
|
* @throws {RequiredError}
|
|
6406
6406
|
* @memberof BUSInputsOutputsApi
|
|
6407
6407
|
*/
|
|
6408
|
-
getBusIOState(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
6408
|
+
getBusIOState(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<BusIOsState, any>>;
|
|
6409
6409
|
/**
|
|
6410
6410
|
* Retrieves the current values of inputs/outputs. The identifiers of the inputs/outputs must be provided in the request. Request all available input/output identifiers via [listBusIODescriptions](listBusIODescriptions).
|
|
6411
6411
|
* @summary Get Input/Output Values
|
|
@@ -6415,7 +6415,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
|
|
|
6415
6415
|
* @throws {RequiredError}
|
|
6416
6416
|
* @memberof BUSInputsOutputsApi
|
|
6417
6417
|
*/
|
|
6418
|
-
getBusIOValues(cell: string, ios?: Array<string>, options?: RawAxiosRequestConfig): Promise<
|
|
6418
|
+
getBusIOValues(cell: string, ios?: Array<string>, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<IOValue[], any>>;
|
|
6419
6419
|
/**
|
|
6420
6420
|
* Get description of NOVA as a PROFINET device.
|
|
6421
6421
|
* @summary Get PROFINET Description
|
|
@@ -6424,9 +6424,9 @@ declare class BUSInputsOutputsApi extends BaseAPI {
|
|
|
6424
6424
|
* @throws {RequiredError}
|
|
6425
6425
|
* @memberof BUSInputsOutputsApi
|
|
6426
6426
|
*/
|
|
6427
|
-
getProfinetDescription(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
6427
|
+
getProfinetDescription(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ProfinetDescription, any>>;
|
|
6428
6428
|
/**
|
|
6429
|
-
* Get input/output variable configuration of the PROFINET device, e.g
|
|
6429
|
+
* Get input/output variable configuration of the PROFINET device, e.g., NOVA\'s PROFINET service as file. You can specify byte offsets for the input and output variable addresses to get an XML tagmap that is ready to paste to the third party software, e.g., TIA portal.
|
|
6430
6430
|
* @summary PROFINET Inputs/Outputs to File
|
|
6431
6431
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
6432
6432
|
* @param {number} [inputOffset]
|
|
@@ -6435,25 +6435,25 @@ declare class BUSInputsOutputsApi extends BaseAPI {
|
|
|
6435
6435
|
* @throws {RequiredError}
|
|
6436
6436
|
* @memberof BUSInputsOutputsApi
|
|
6437
6437
|
*/
|
|
6438
|
-
getProfinetIOsFromFile(cell: string, inputOffset?: number, outputOffset?: number, options?: RawAxiosRequestConfig): Promise<
|
|
6438
|
+
getProfinetIOsFromFile(cell: string, inputOffset?: number, outputOffset?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<string, any>>;
|
|
6439
6439
|
/**
|
|
6440
|
-
* List all input/output descriptions for configured BUS services. The input/output descriptions contain information
|
|
6440
|
+
* List all input/output descriptions for configured BUS services. The input/output descriptions contain information like name, type and unit. The input/output direction is given in perspective of the BUS service.
|
|
6441
6441
|
* @summary List Descriptions
|
|
6442
6442
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
6443
6443
|
* @param {*} [options] Override http request option.
|
|
6444
6444
|
* @throws {RequiredError}
|
|
6445
6445
|
* @memberof BUSInputsOutputsApi
|
|
6446
6446
|
*/
|
|
6447
|
-
listBusIODescriptions(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
6447
|
+
listBusIODescriptions(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<IODescription2[], any>>;
|
|
6448
6448
|
/**
|
|
6449
|
-
* List descriptions for all configured input/output variables of the PROFINET service. The input/output descriptions contain information
|
|
6449
|
+
* List descriptions for all configured input/output variables of the PROFINET service. The input/output descriptions contain information like name, type and unit. The input/output direction is given in perspective of the PROFINET Device, e.g., the configured PROFINET service. - The byte and bit addresses are the locations in the PROFINET input/output process image the variable points to. - The PROFINET controller as well as NOVA\'s PROFINET service use an input/output variable configuration to interpret the bits of the input and output process image. - The NOVA PROFINET service\'s configuration is modified via [addProfinetIO](addProfinetIO) and [setProfinetIOsFromFile](setProfinetIOsFromFile). For the PROFINET controller, e.g., a connected PLC, refer to the corresponding third party software, e.g., TIA portal.
|
|
6450
6450
|
* @summary List PROFINET Input/Output Configuration
|
|
6451
6451
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
6452
6452
|
* @param {*} [options] Override http request option.
|
|
6453
6453
|
* @throws {RequiredError}
|
|
6454
6454
|
* @memberof BUSInputsOutputsApi
|
|
6455
6455
|
*/
|
|
6456
|
-
listProfinetIOs(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
6456
|
+
listProfinetIOs(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ProfinetIO[], any>>;
|
|
6457
6457
|
/**
|
|
6458
6458
|
* Set values of outputs. In case of virtual Bus Input/Outputs, also inputs can be set. All available output identifiers can be requested via [listBusIODescriptions](listBusIODescriptions). The call will return once the values have been set and accepted by the service.
|
|
6459
6459
|
* @summary Set Output Values
|
|
@@ -6463,9 +6463,9 @@ declare class BUSInputsOutputsApi extends BaseAPI {
|
|
|
6463
6463
|
* @throws {RequiredError}
|
|
6464
6464
|
* @memberof BUSInputsOutputsApi
|
|
6465
6465
|
*/
|
|
6466
|
-
setBusIOValues(cell: string, iOValue: Array<IOValue>, options?: RawAxiosRequestConfig): Promise<
|
|
6466
|
+
setBusIOValues(cell: string, iOValue: Array<IOValue>, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
6467
6467
|
/**
|
|
6468
|
-
* Sets input/output variable configuration on the PROFINET device (i.e. NOVA\'s PROFINET service) from XML file. The inputs/outputs map variables to specific memory addresses in the process image. The default process image has buffer lengths of 64 bytes for input and output. The size of the buffer is determined by the `config_file_content` that is passed in [addBusIOService](addBusIOService)
|
|
6468
|
+
* Sets input/output variable configuration on the PROFINET device (i.e. NOVA\'s PROFINET service) from XML file. The inputs/outputs map variables to specific memory addresses in the process image. The default process image has buffer lengths of 64 bytes for input and output. - The size of the buffer is determined by the `config_file_content` that is passed in [addBusIOService](addBusIOService) and has to be in accordance with the GSDML file describing the PROFINET device. The PROFINET controller as well as NOVA\'s PROFINET service use an input/output variable configuration to interpret the bits of the input/output process image. - The NOVA\'s PROFINET service\'s configuration can be viewed via [listProfinetIOs](listProfinetIOs). For the PROFINET controller, e.g., a connected PLC, refer to the corresponding engineering system, e.g., TIA portal. #### Export variables You can export the variable configuration of the PROFINET controller as XML file from your engineering system, e.g., TIA portal. - The endpoint is built so that the perspective of input and output (PROFINET Device\'s input is PROFINET Controller\'s output) is internally handled (PROFINET device input is PROFINET controller output), meaning that you can paste the exported XML file here without modifying.
|
|
6469
6469
|
* @summary Set PROFINET Inputs/Outputs from File
|
|
6470
6470
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
6471
6471
|
* @param {ProfinetInputOutputConfig} profinetInputOutputConfig
|
|
@@ -6473,7 +6473,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
|
|
|
6473
6473
|
* @throws {RequiredError}
|
|
6474
6474
|
* @memberof BUSInputsOutputsApi
|
|
6475
6475
|
*/
|
|
6476
|
-
setProfinetIOsFromFile(cell: string, profinetInputOutputConfig: ProfinetInputOutputConfig, options?: RawAxiosRequestConfig): Promise<
|
|
6476
|
+
setProfinetIOsFromFile(cell: string, profinetInputOutputConfig: ProfinetInputOutputConfig, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
6477
6477
|
}
|
|
6478
6478
|
/**
|
|
6479
6479
|
* CellApi - axios parameter creator
|
|
@@ -6490,7 +6490,7 @@ declare const CellApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
6490
6490
|
*/
|
|
6491
6491
|
deleteCell: (cell: string, completionTimeout?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
6492
6492
|
/**
|
|
6493
|
-
* Deploy an entire cell with all its resources. A cell can be used to deploy a robot controller, one or more robots, as well as custom applications. Refer to the [Wandelbots NOVA documentation](docs/
|
|
6493
|
+
* Deploy an entire cell with all its resources. A cell can be used to deploy a robot controller, one or more robots, as well as custom applications. Refer to the [Wandelbots NOVA documentation](https://docs.wandelbots.io/latest/setup-cell) for more information.
|
|
6494
6494
|
* @summary Add Cell
|
|
6495
6495
|
* @param {Cell} cell
|
|
6496
6496
|
* @param {number} [completionTimeout]
|
|
@@ -6499,7 +6499,7 @@ declare const CellApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
6499
6499
|
*/
|
|
6500
6500
|
deployCell: (cell: Cell, completionTimeout?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
6501
6501
|
/**
|
|
6502
|
-
* List all cell resources.
|
|
6502
|
+
* List all cell resources.
|
|
6503
6503
|
* @summary Configuration
|
|
6504
6504
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
6505
6505
|
* @param {*} [options] Override http request option.
|
|
@@ -6556,7 +6556,7 @@ declare const CellApiFp: (configuration?: Configuration) => {
|
|
|
6556
6556
|
*/
|
|
6557
6557
|
deleteCell(cell: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
6558
6558
|
/**
|
|
6559
|
-
* Deploy an entire cell with all its resources. A cell can be used to deploy a robot controller, one or more robots, as well as custom applications. Refer to the [Wandelbots NOVA documentation](docs/
|
|
6559
|
+
* Deploy an entire cell with all its resources. A cell can be used to deploy a robot controller, one or more robots, as well as custom applications. Refer to the [Wandelbots NOVA documentation](https://docs.wandelbots.io/latest/setup-cell) for more information.
|
|
6560
6560
|
* @summary Add Cell
|
|
6561
6561
|
* @param {Cell} cell
|
|
6562
6562
|
* @param {number} [completionTimeout]
|
|
@@ -6565,7 +6565,7 @@ declare const CellApiFp: (configuration?: Configuration) => {
|
|
|
6565
6565
|
*/
|
|
6566
6566
|
deployCell(cell: Cell, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
6567
6567
|
/**
|
|
6568
|
-
* List all cell resources.
|
|
6568
|
+
* List all cell resources.
|
|
6569
6569
|
* @summary Configuration
|
|
6570
6570
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
6571
6571
|
* @param {*} [options] Override http request option.
|
|
@@ -6622,7 +6622,7 @@ declare const CellApiFactory: (configuration?: Configuration, basePath?: string,
|
|
|
6622
6622
|
*/
|
|
6623
6623
|
deleteCell(cell: string, completionTimeout?: number, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
6624
6624
|
/**
|
|
6625
|
-
* Deploy an entire cell with all its resources. A cell can be used to deploy a robot controller, one or more robots, as well as custom applications. Refer to the [Wandelbots NOVA documentation](docs/
|
|
6625
|
+
* Deploy an entire cell with all its resources. A cell can be used to deploy a robot controller, one or more robots, as well as custom applications. Refer to the [Wandelbots NOVA documentation](https://docs.wandelbots.io/latest/setup-cell) for more information.
|
|
6626
6626
|
* @summary Add Cell
|
|
6627
6627
|
* @param {Cell} cell
|
|
6628
6628
|
* @param {number} [completionTimeout]
|
|
@@ -6631,7 +6631,7 @@ declare const CellApiFactory: (configuration?: Configuration, basePath?: string,
|
|
|
6631
6631
|
*/
|
|
6632
6632
|
deployCell(cell: Cell, completionTimeout?: number, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
6633
6633
|
/**
|
|
6634
|
-
* List all cell resources.
|
|
6634
|
+
* List all cell resources.
|
|
6635
6635
|
* @summary Configuration
|
|
6636
6636
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
6637
6637
|
* @param {*} [options] Override http request option.
|
|
@@ -6689,9 +6689,9 @@ declare class CellApi extends BaseAPI {
|
|
|
6689
6689
|
* @throws {RequiredError}
|
|
6690
6690
|
* @memberof CellApi
|
|
6691
6691
|
*/
|
|
6692
|
-
deleteCell(cell: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<
|
|
6692
|
+
deleteCell(cell: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
6693
6693
|
/**
|
|
6694
|
-
* Deploy an entire cell with all its resources. A cell can be used to deploy a robot controller, one or more robots, as well as custom applications. Refer to the [Wandelbots NOVA documentation](docs/
|
|
6694
|
+
* Deploy an entire cell with all its resources. A cell can be used to deploy a robot controller, one or more robots, as well as custom applications. Refer to the [Wandelbots NOVA documentation](https://docs.wandelbots.io/latest/setup-cell) for more information.
|
|
6695
6695
|
* @summary Add Cell
|
|
6696
6696
|
* @param {Cell} cell
|
|
6697
6697
|
* @param {number} [completionTimeout]
|
|
@@ -6699,16 +6699,16 @@ declare class CellApi extends BaseAPI {
|
|
|
6699
6699
|
* @throws {RequiredError}
|
|
6700
6700
|
* @memberof CellApi
|
|
6701
6701
|
*/
|
|
6702
|
-
deployCell(cell: Cell, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<
|
|
6702
|
+
deployCell(cell: Cell, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
6703
6703
|
/**
|
|
6704
|
-
* List all cell resources.
|
|
6704
|
+
* List all cell resources.
|
|
6705
6705
|
* @summary Configuration
|
|
6706
6706
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
6707
6707
|
* @param {*} [options] Override http request option.
|
|
6708
6708
|
* @throws {RequiredError}
|
|
6709
6709
|
* @memberof CellApi
|
|
6710
6710
|
*/
|
|
6711
|
-
getCell(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
6711
|
+
getCell(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<Cell, any>>;
|
|
6712
6712
|
/**
|
|
6713
6713
|
* List the status of all cell resources.
|
|
6714
6714
|
* @summary Service Status
|
|
@@ -6717,7 +6717,7 @@ declare class CellApi extends BaseAPI {
|
|
|
6717
6717
|
* @throws {RequiredError}
|
|
6718
6718
|
* @memberof CellApi
|
|
6719
6719
|
*/
|
|
6720
|
-
getCellStatus(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
6720
|
+
getCellStatus(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ServiceStatusResponse, any>>;
|
|
6721
6721
|
/**
|
|
6722
6722
|
* List all deployed cell names. If no cells are deployed, an empty list is returned.
|
|
6723
6723
|
* @summary List Cells
|
|
@@ -6725,7 +6725,7 @@ declare class CellApi extends BaseAPI {
|
|
|
6725
6725
|
* @throws {RequiredError}
|
|
6726
6726
|
* @memberof CellApi
|
|
6727
6727
|
*/
|
|
6728
|
-
listCells(options?: RawAxiosRequestConfig): Promise<
|
|
6728
|
+
listCells(options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<string[], any>>;
|
|
6729
6729
|
/**
|
|
6730
6730
|
* Deactivate or activate the services of a cell.
|
|
6731
6731
|
* @summary Operating State
|
|
@@ -6735,7 +6735,7 @@ declare class CellApi extends BaseAPI {
|
|
|
6735
6735
|
* @throws {RequiredError}
|
|
6736
6736
|
* @memberof CellApi
|
|
6737
6737
|
*/
|
|
6738
|
-
setCellStatus(cell: string, operatingState: OperatingState, options?: RawAxiosRequestConfig): Promise<
|
|
6738
|
+
setCellStatus(cell: string, operatingState: OperatingState, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
6739
6739
|
/**
|
|
6740
6740
|
* Update the definition of the entire Cell.
|
|
6741
6741
|
* @summary Update Configuration
|
|
@@ -6746,7 +6746,7 @@ declare class CellApi extends BaseAPI {
|
|
|
6746
6746
|
* @throws {RequiredError}
|
|
6747
6747
|
* @memberof CellApi
|
|
6748
6748
|
*/
|
|
6749
|
-
updateCell(cell: string, cell2: Cell, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<
|
|
6749
|
+
updateCell(cell: string, cell2: Cell, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
6750
6750
|
}
|
|
6751
6751
|
/**
|
|
6752
6752
|
* ControllerApi - axios parameter creator
|
|
@@ -6754,7 +6754,7 @@ declare class CellApi extends BaseAPI {
|
|
|
6754
6754
|
*/
|
|
6755
6755
|
declare const ControllerApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
6756
6756
|
/**
|
|
6757
|
-
* Add a robot controller to the cell.
|
|
6757
|
+
* Add a robot controller to the cell.
|
|
6758
6758
|
* @summary Add Robot Controller
|
|
6759
6759
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
6760
6760
|
* @param {RobotController} robotController
|
|
@@ -6764,7 +6764,7 @@ declare const ControllerApiAxiosParamCreator: (configuration?: Configuration) =>
|
|
|
6764
6764
|
*/
|
|
6765
6765
|
addRobotController: (cell: string, robotController: RobotController, completionTimeout?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
6766
6766
|
/**
|
|
6767
|
-
* Delete all robot controllers from the cell. To replace all robot controllers in a cell, use this endpoint in combination with
|
|
6767
|
+
* Delete all robot controllers from the cell. To replace all robot controllers in a cell, use this endpoint in combination with [addRobotController](addRobotController).
|
|
6768
6768
|
* @summary Clear Robot Controllers
|
|
6769
6769
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
6770
6770
|
* @param {number} [completionTimeout]
|
|
@@ -6773,7 +6773,7 @@ declare const ControllerApiAxiosParamCreator: (configuration?: Configuration) =>
|
|
|
6773
6773
|
*/
|
|
6774
6774
|
clearRobotControllers: (cell: string, completionTimeout?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
6775
6775
|
/**
|
|
6776
|
-
* Delete a robot controller from the cell.
|
|
6776
|
+
* Delete a robot controller from the cell.
|
|
6777
6777
|
* @summary Delete Robot Controller
|
|
6778
6778
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
6779
6779
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
@@ -6792,7 +6792,7 @@ declare const ControllerApiAxiosParamCreator: (configuration?: Configuration) =>
|
|
|
6792
6792
|
*/
|
|
6793
6793
|
getControllerDescription: (cell: string, controller: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
6794
6794
|
/**
|
|
6795
|
-
* Request a coordinate system specification for a given identifier. Use parameter orientation_type to get the orientation part of the transformation offset of the coordinate system returned in the requested orientation notation. If parameter orientation_type is not set, the orientation part of the transformation offset of the coordinate system is returned in rotation vector notation. The coordinate systems from the robot controller are loaded when the motion group associated with the coordinate system is activated. With deactivation of the motion group, the associated coordinate systems are removed from NOVA. The unique identifier of the coordinate systems from the robot controllers are suffixed with
|
|
6795
|
+
* Request a coordinate system specification for a given identifier. Use parameter `orientation_type` to get the orientation part of the transformation offset of the coordinate system returned in the requested orientation notation. If parameter `orientation_type` is not set, the orientation part of the transformation offset of the coordinate system is returned in rotation vector notation. The coordinate systems from the robot controller are loaded when the motion group associated with the coordinate system is activated. With deactivation of the motion group, the associated coordinate systems are removed from NOVA. The unique identifier of the coordinate systems from the robot controllers are suffixed with `On` + the unique identifier of the robot controller.
|
|
6796
6796
|
* @summary Coordinate System
|
|
6797
6797
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
6798
6798
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
@@ -6821,7 +6821,7 @@ declare const ControllerApiAxiosParamCreator: (configuration?: Configuration) =>
|
|
|
6821
6821
|
*/
|
|
6822
6822
|
getRobotController: (cell: string, controller: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
6823
6823
|
/**
|
|
6824
|
-
* Receive data to configure a virtual robot controller based on another controller. This can be used to create a virtual clone of a specific physical robot. When adding a virtual controller, use the Virtual configuration variant of [addRobotController](addRobotController) and pass the content string from this endpoint as the `json` field. Omit the `type` field that selects a preset configuration which is not required when providing a complete configuration.
|
|
6824
|
+
* Receive data to configure a virtual robot controller based on another controller. This can be used to create a virtual clone of a specific physical robot. When adding a virtual controller, use the Virtual configuration variant of [addRobotController](addRobotController) and pass the content string from this endpoint as the `json` field. Omit the `type` field that selects a preset configuration which is not required when providing a complete configuration.
|
|
6825
6825
|
* @summary Virtual Controller Configuration
|
|
6826
6826
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
6827
6827
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
@@ -6830,7 +6830,7 @@ declare const ControllerApiAxiosParamCreator: (configuration?: Configuration) =>
|
|
|
6830
6830
|
*/
|
|
6831
6831
|
getVirtualControllerConfiguration: (cell: string, controller: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
6832
6832
|
/**
|
|
6833
|
-
* Lists all specifications of coordinate systems from robot controllers. Use parameter orientation_type to get the orientation part of the transformation offset of the coordinate system returned in the requested orientation notation. If parameter orientation_type is not set, the orientation part of the transformation offset of the coordinate system is returned in rotation vector notation. The coordinate systems from the robot controller are loaded when the motion group associated with the coordinate system is activated. With deactivation of the motion group, the associated coordinate systems are removed from NOVA. The unique identifier of the coordinate systems from the robot controllers are suffixed with
|
|
6833
|
+
* Lists all specifications of coordinate systems from robot controllers. Use parameter `orientation_type` to get the orientation part of the transformation offset of the coordinate system returned in the requested orientation notation. If parameter `orientation_type` is not set, the orientation part of the transformation offset of the coordinate system is returned in rotation vector notation. The coordinate systems from the robot controller are loaded when the motion group associated with the coordinate system is activated. With deactivation of the motion group, the associated coordinate systems are removed from NOVA. The unique identifier of the coordinate systems from the robot controllers are suffixed with `On` + the unique identifier of the robot controller.
|
|
6834
6834
|
* @summary List Coordinate Systems
|
|
6835
6835
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
6836
6836
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
@@ -6848,7 +6848,7 @@ declare const ControllerApiAxiosParamCreator: (configuration?: Configuration) =>
|
|
|
6848
6848
|
*/
|
|
6849
6849
|
listRobotControllers: (cell: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
6850
6850
|
/**
|
|
6851
|
-
* Switch between monitor and control usage as default for a robot controller.
|
|
6851
|
+
* Switch between monitor and control usage as default for a robot controller. Monitoring mode is used to read information from the robot controller and control mode is used to command the robot system. As long as the robot controller is connected via network, monitoring mode is always possible. To switch to control mode the robot controller must be in `automatic` or `manual` operating mode and safety state `normal` or `reduced`. If the robot controller is in `manual` operating mode, you have to manually confirm the control usage activation on the robot control panel. This manual confirmation can\'t be replaced with this API. Without manual confirmation the robot controller will stay in monitor mode. The robot system will try to activate the required operation mode for the requested usage unless no active call requires a different mode. > **NOTE** > > `setDefaultMode` enables the robot controller to stay in control mode to keep the motors activated. > This allows for faster execution of sequential movements as no mode switches are required. > **NOTE** > > Some robot controllers prevent the external activation of automatic operating mode. In this case, changing the operating mode manually at the robot controller is mandatory. > **NOTE** > > The current operation mode and safety state can be requested via [getCurrentRobotControllerState](getCurrentRobotControllerState). If a mode change is not possible, the response lists reasons for the failed change.
|
|
6852
6852
|
* @summary Set Default Mode
|
|
6853
6853
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
6854
6854
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
@@ -6858,7 +6858,7 @@ declare const ControllerApiAxiosParamCreator: (configuration?: Configuration) =>
|
|
|
6858
6858
|
*/
|
|
6859
6859
|
setDefaultMode: (cell: string, controller: string, mode: SettableRobotSystemMode, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
6860
6860
|
/**
|
|
6861
|
-
* <!-- theme:
|
|
6861
|
+
* <!-- theme: success --> > Websocket endpoint Sets the robot controller into freedrive mode and stays in freedrive until the websocket connection is closed by the client. In freedrive mode, it is possible to move the attached motion groups by hand. This is a blocking call. As long as the websocket connection is open, no other endpoint can control or move the robot. <!-- theme: danger --> > **DANGER** > > Danger caused by robot. Improper assessment by the integrator of the application-specific hazards can result in people being > crushed, drawn in or caught due to the robot\'s complex movement sequences. Before opening the websocket, ensure that > > - The robot is in a safe state, > - The right payload is set, > - No humans or object are within the robot\'s reach or within the cell. As long as the websocket connection is open you will get the current state of the robot system in the response in the specified `response_rate`. If the activation failed, the returned status will return possible reasons for the failure. Free drive mode is only available for robot controllers that support it, in particular cobots. Use [listRobotControllers](listRobotControllers) to check if the robot controller supports free drive mode.
|
|
6862
6862
|
* @summary Stream Free Drive
|
|
6863
6863
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
6864
6864
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
@@ -6868,7 +6868,7 @@ declare const ControllerApiAxiosParamCreator: (configuration?: Configuration) =>
|
|
|
6868
6868
|
*/
|
|
6869
6869
|
streamFreeDrive: (cell: string, controller: string, responseRate?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
6870
6870
|
/**
|
|
6871
|
-
* <!-- theme:
|
|
6871
|
+
* <!-- theme: success --> > Websocket endpoint Receive updates of the state of a robot controller. The stream can be opened before the controller is registered. To register a controller, call [addRobotController](addRobotController). While connecting, the stream sends initialization updates. Once the controller reaches `MODE_MONITOR`, it sends controller state updates.
|
|
6872
6872
|
* @summary Stream State
|
|
6873
6873
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
6874
6874
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
@@ -6879,7 +6879,7 @@ declare const ControllerApiAxiosParamCreator: (configuration?: Configuration) =>
|
|
|
6879
6879
|
*/
|
|
6880
6880
|
streamRobotControllerState: (cell: string, controller: string, responseRate?: number, addControllerTimeout?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
6881
6881
|
/**
|
|
6882
|
-
* Update the configuration of a robot controller. Reconfigure certain options of a robot controller, or deploy a specific container image of a robot controller.
|
|
6882
|
+
* Update the configuration of a robot controller. Reconfigure certain options of a robot controller, or deploy a specific container image of a robot controller.
|
|
6883
6883
|
* @summary Update Robot Controller
|
|
6884
6884
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
6885
6885
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
@@ -6896,7 +6896,7 @@ declare const ControllerApiAxiosParamCreator: (configuration?: Configuration) =>
|
|
|
6896
6896
|
*/
|
|
6897
6897
|
declare const ControllerApiFp: (configuration?: Configuration) => {
|
|
6898
6898
|
/**
|
|
6899
|
-
* Add a robot controller to the cell.
|
|
6899
|
+
* Add a robot controller to the cell.
|
|
6900
6900
|
* @summary Add Robot Controller
|
|
6901
6901
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
6902
6902
|
* @param {RobotController} robotController
|
|
@@ -6906,7 +6906,7 @@ declare const ControllerApiFp: (configuration?: Configuration) => {
|
|
|
6906
6906
|
*/
|
|
6907
6907
|
addRobotController(cell: string, robotController: RobotController, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
6908
6908
|
/**
|
|
6909
|
-
* Delete all robot controllers from the cell. To replace all robot controllers in a cell, use this endpoint in combination with
|
|
6909
|
+
* Delete all robot controllers from the cell. To replace all robot controllers in a cell, use this endpoint in combination with [addRobotController](addRobotController).
|
|
6910
6910
|
* @summary Clear Robot Controllers
|
|
6911
6911
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
6912
6912
|
* @param {number} [completionTimeout]
|
|
@@ -6915,7 +6915,7 @@ declare const ControllerApiFp: (configuration?: Configuration) => {
|
|
|
6915
6915
|
*/
|
|
6916
6916
|
clearRobotControllers(cell: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
6917
6917
|
/**
|
|
6918
|
-
* Delete a robot controller from the cell.
|
|
6918
|
+
* Delete a robot controller from the cell.
|
|
6919
6919
|
* @summary Delete Robot Controller
|
|
6920
6920
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
6921
6921
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
@@ -6934,7 +6934,7 @@ declare const ControllerApiFp: (configuration?: Configuration) => {
|
|
|
6934
6934
|
*/
|
|
6935
6935
|
getControllerDescription(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ControllerDescription>>;
|
|
6936
6936
|
/**
|
|
6937
|
-
* Request a coordinate system specification for a given identifier. Use parameter orientation_type to get the orientation part of the transformation offset of the coordinate system returned in the requested orientation notation. If parameter orientation_type is not set, the orientation part of the transformation offset of the coordinate system is returned in rotation vector notation. The coordinate systems from the robot controller are loaded when the motion group associated with the coordinate system is activated. With deactivation of the motion group, the associated coordinate systems are removed from NOVA. The unique identifier of the coordinate systems from the robot controllers are suffixed with
|
|
6937
|
+
* Request a coordinate system specification for a given identifier. Use parameter `orientation_type` to get the orientation part of the transformation offset of the coordinate system returned in the requested orientation notation. If parameter `orientation_type` is not set, the orientation part of the transformation offset of the coordinate system is returned in rotation vector notation. The coordinate systems from the robot controller are loaded when the motion group associated with the coordinate system is activated. With deactivation of the motion group, the associated coordinate systems are removed from NOVA. The unique identifier of the coordinate systems from the robot controllers are suffixed with `On` + the unique identifier of the robot controller.
|
|
6938
6938
|
* @summary Coordinate System
|
|
6939
6939
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
6940
6940
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
@@ -6963,7 +6963,7 @@ declare const ControllerApiFp: (configuration?: Configuration) => {
|
|
|
6963
6963
|
*/
|
|
6964
6964
|
getRobotController(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RobotController>>;
|
|
6965
6965
|
/**
|
|
6966
|
-
* Receive data to configure a virtual robot controller based on another controller. This can be used to create a virtual clone of a specific physical robot. When adding a virtual controller, use the Virtual configuration variant of [addRobotController](addRobotController) and pass the content string from this endpoint as the `json` field. Omit the `type` field that selects a preset configuration which is not required when providing a complete configuration.
|
|
6966
|
+
* Receive data to configure a virtual robot controller based on another controller. This can be used to create a virtual clone of a specific physical robot. When adding a virtual controller, use the Virtual configuration variant of [addRobotController](addRobotController) and pass the content string from this endpoint as the `json` field. Omit the `type` field that selects a preset configuration which is not required when providing a complete configuration.
|
|
6967
6967
|
* @summary Virtual Controller Configuration
|
|
6968
6968
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
6969
6969
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
@@ -6972,7 +6972,7 @@ declare const ControllerApiFp: (configuration?: Configuration) => {
|
|
|
6972
6972
|
*/
|
|
6973
6973
|
getVirtualControllerConfiguration(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<VirtualRobotConfiguration>>;
|
|
6974
6974
|
/**
|
|
6975
|
-
* Lists all specifications of coordinate systems from robot controllers. Use parameter orientation_type to get the orientation part of the transformation offset of the coordinate system returned in the requested orientation notation. If parameter orientation_type is not set, the orientation part of the transformation offset of the coordinate system is returned in rotation vector notation. The coordinate systems from the robot controller are loaded when the motion group associated with the coordinate system is activated. With deactivation of the motion group, the associated coordinate systems are removed from NOVA. The unique identifier of the coordinate systems from the robot controllers are suffixed with
|
|
6975
|
+
* Lists all specifications of coordinate systems from robot controllers. Use parameter `orientation_type` to get the orientation part of the transformation offset of the coordinate system returned in the requested orientation notation. If parameter `orientation_type` is not set, the orientation part of the transformation offset of the coordinate system is returned in rotation vector notation. The coordinate systems from the robot controller are loaded when the motion group associated with the coordinate system is activated. With deactivation of the motion group, the associated coordinate systems are removed from NOVA. The unique identifier of the coordinate systems from the robot controllers are suffixed with `On` + the unique identifier of the robot controller.
|
|
6976
6976
|
* @summary List Coordinate Systems
|
|
6977
6977
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
6978
6978
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
@@ -6990,7 +6990,7 @@ declare const ControllerApiFp: (configuration?: Configuration) => {
|
|
|
6990
6990
|
*/
|
|
6991
6991
|
listRobotControllers(cell: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<string>>>;
|
|
6992
6992
|
/**
|
|
6993
|
-
* Switch between monitor and control usage as default for a robot controller.
|
|
6993
|
+
* Switch between monitor and control usage as default for a robot controller. Monitoring mode is used to read information from the robot controller and control mode is used to command the robot system. As long as the robot controller is connected via network, monitoring mode is always possible. To switch to control mode the robot controller must be in `automatic` or `manual` operating mode and safety state `normal` or `reduced`. If the robot controller is in `manual` operating mode, you have to manually confirm the control usage activation on the robot control panel. This manual confirmation can\'t be replaced with this API. Without manual confirmation the robot controller will stay in monitor mode. The robot system will try to activate the required operation mode for the requested usage unless no active call requires a different mode. > **NOTE** > > `setDefaultMode` enables the robot controller to stay in control mode to keep the motors activated. > This allows for faster execution of sequential movements as no mode switches are required. > **NOTE** > > Some robot controllers prevent the external activation of automatic operating mode. In this case, changing the operating mode manually at the robot controller is mandatory. > **NOTE** > > The current operation mode and safety state can be requested via [getCurrentRobotControllerState](getCurrentRobotControllerState). If a mode change is not possible, the response lists reasons for the failed change.
|
|
6994
6994
|
* @summary Set Default Mode
|
|
6995
6995
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
6996
6996
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
@@ -7000,7 +7000,7 @@ declare const ControllerApiFp: (configuration?: Configuration) => {
|
|
|
7000
7000
|
*/
|
|
7001
7001
|
setDefaultMode(cell: string, controller: string, mode: SettableRobotSystemMode, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
7002
7002
|
/**
|
|
7003
|
-
* <!-- theme:
|
|
7003
|
+
* <!-- theme: success --> > Websocket endpoint Sets the robot controller into freedrive mode and stays in freedrive until the websocket connection is closed by the client. In freedrive mode, it is possible to move the attached motion groups by hand. This is a blocking call. As long as the websocket connection is open, no other endpoint can control or move the robot. <!-- theme: danger --> > **DANGER** > > Danger caused by robot. Improper assessment by the integrator of the application-specific hazards can result in people being > crushed, drawn in or caught due to the robot\'s complex movement sequences. Before opening the websocket, ensure that > > - The robot is in a safe state, > - The right payload is set, > - No humans or object are within the robot\'s reach or within the cell. As long as the websocket connection is open you will get the current state of the robot system in the response in the specified `response_rate`. If the activation failed, the returned status will return possible reasons for the failure. Free drive mode is only available for robot controllers that support it, in particular cobots. Use [listRobotControllers](listRobotControllers) to check if the robot controller supports free drive mode.
|
|
7004
7004
|
* @summary Stream Free Drive
|
|
7005
7005
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
7006
7006
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
@@ -7010,7 +7010,7 @@ declare const ControllerApiFp: (configuration?: Configuration) => {
|
|
|
7010
7010
|
*/
|
|
7011
7011
|
streamFreeDrive(cell: string, controller: string, responseRate?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RobotControllerState>>;
|
|
7012
7012
|
/**
|
|
7013
|
-
* <!-- theme:
|
|
7013
|
+
* <!-- theme: success --> > Websocket endpoint Receive updates of the state of a robot controller. The stream can be opened before the controller is registered. To register a controller, call [addRobotController](addRobotController). While connecting, the stream sends initialization updates. Once the controller reaches `MODE_MONITOR`, it sends controller state updates.
|
|
7014
7014
|
* @summary Stream State
|
|
7015
7015
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
7016
7016
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
@@ -7021,7 +7021,7 @@ declare const ControllerApiFp: (configuration?: Configuration) => {
|
|
|
7021
7021
|
*/
|
|
7022
7022
|
streamRobotControllerState(cell: string, controller: string, responseRate?: number, addControllerTimeout?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RobotControllerState>>;
|
|
7023
7023
|
/**
|
|
7024
|
-
* Update the configuration of a robot controller. Reconfigure certain options of a robot controller, or deploy a specific container image of a robot controller.
|
|
7024
|
+
* Update the configuration of a robot controller. Reconfigure certain options of a robot controller, or deploy a specific container image of a robot controller.
|
|
7025
7025
|
* @summary Update Robot Controller
|
|
7026
7026
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
7027
7027
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
@@ -7038,7 +7038,7 @@ declare const ControllerApiFp: (configuration?: Configuration) => {
|
|
|
7038
7038
|
*/
|
|
7039
7039
|
declare const ControllerApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
7040
7040
|
/**
|
|
7041
|
-
* Add a robot controller to the cell.
|
|
7041
|
+
* Add a robot controller to the cell.
|
|
7042
7042
|
* @summary Add Robot Controller
|
|
7043
7043
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
7044
7044
|
* @param {RobotController} robotController
|
|
@@ -7048,7 +7048,7 @@ declare const ControllerApiFactory: (configuration?: Configuration, basePath?: s
|
|
|
7048
7048
|
*/
|
|
7049
7049
|
addRobotController(cell: string, robotController: RobotController, completionTimeout?: number, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
7050
7050
|
/**
|
|
7051
|
-
* Delete all robot controllers from the cell. To replace all robot controllers in a cell, use this endpoint in combination with
|
|
7051
|
+
* Delete all robot controllers from the cell. To replace all robot controllers in a cell, use this endpoint in combination with [addRobotController](addRobotController).
|
|
7052
7052
|
* @summary Clear Robot Controllers
|
|
7053
7053
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
7054
7054
|
* @param {number} [completionTimeout]
|
|
@@ -7057,7 +7057,7 @@ declare const ControllerApiFactory: (configuration?: Configuration, basePath?: s
|
|
|
7057
7057
|
*/
|
|
7058
7058
|
clearRobotControllers(cell: string, completionTimeout?: number, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
7059
7059
|
/**
|
|
7060
|
-
* Delete a robot controller from the cell.
|
|
7060
|
+
* Delete a robot controller from the cell.
|
|
7061
7061
|
* @summary Delete Robot Controller
|
|
7062
7062
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
7063
7063
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
@@ -7076,7 +7076,7 @@ declare const ControllerApiFactory: (configuration?: Configuration, basePath?: s
|
|
|
7076
7076
|
*/
|
|
7077
7077
|
getControllerDescription(cell: string, controller: string, options?: RawAxiosRequestConfig): AxiosPromise<ControllerDescription>;
|
|
7078
7078
|
/**
|
|
7079
|
-
* Request a coordinate system specification for a given identifier. Use parameter orientation_type to get the orientation part of the transformation offset of the coordinate system returned in the requested orientation notation. If parameter orientation_type is not set, the orientation part of the transformation offset of the coordinate system is returned in rotation vector notation. The coordinate systems from the robot controller are loaded when the motion group associated with the coordinate system is activated. With deactivation of the motion group, the associated coordinate systems are removed from NOVA. The unique identifier of the coordinate systems from the robot controllers are suffixed with
|
|
7079
|
+
* Request a coordinate system specification for a given identifier. Use parameter `orientation_type` to get the orientation part of the transformation offset of the coordinate system returned in the requested orientation notation. If parameter `orientation_type` is not set, the orientation part of the transformation offset of the coordinate system is returned in rotation vector notation. The coordinate systems from the robot controller are loaded when the motion group associated with the coordinate system is activated. With deactivation of the motion group, the associated coordinate systems are removed from NOVA. The unique identifier of the coordinate systems from the robot controllers are suffixed with `On` + the unique identifier of the robot controller.
|
|
7080
7080
|
* @summary Coordinate System
|
|
7081
7081
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
7082
7082
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
@@ -7105,7 +7105,7 @@ declare const ControllerApiFactory: (configuration?: Configuration, basePath?: s
|
|
|
7105
7105
|
*/
|
|
7106
7106
|
getRobotController(cell: string, controller: string, options?: RawAxiosRequestConfig): AxiosPromise<RobotController>;
|
|
7107
7107
|
/**
|
|
7108
|
-
* Receive data to configure a virtual robot controller based on another controller. This can be used to create a virtual clone of a specific physical robot. When adding a virtual controller, use the Virtual configuration variant of [addRobotController](addRobotController) and pass the content string from this endpoint as the `json` field. Omit the `type` field that selects a preset configuration which is not required when providing a complete configuration.
|
|
7108
|
+
* Receive data to configure a virtual robot controller based on another controller. This can be used to create a virtual clone of a specific physical robot. When adding a virtual controller, use the Virtual configuration variant of [addRobotController](addRobotController) and pass the content string from this endpoint as the `json` field. Omit the `type` field that selects a preset configuration which is not required when providing a complete configuration.
|
|
7109
7109
|
* @summary Virtual Controller Configuration
|
|
7110
7110
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
7111
7111
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
@@ -7114,7 +7114,7 @@ declare const ControllerApiFactory: (configuration?: Configuration, basePath?: s
|
|
|
7114
7114
|
*/
|
|
7115
7115
|
getVirtualControllerConfiguration(cell: string, controller: string, options?: RawAxiosRequestConfig): AxiosPromise<VirtualRobotConfiguration>;
|
|
7116
7116
|
/**
|
|
7117
|
-
* Lists all specifications of coordinate systems from robot controllers. Use parameter orientation_type to get the orientation part of the transformation offset of the coordinate system returned in the requested orientation notation. If parameter orientation_type is not set, the orientation part of the transformation offset of the coordinate system is returned in rotation vector notation. The coordinate systems from the robot controller are loaded when the motion group associated with the coordinate system is activated. With deactivation of the motion group, the associated coordinate systems are removed from NOVA. The unique identifier of the coordinate systems from the robot controllers are suffixed with
|
|
7117
|
+
* Lists all specifications of coordinate systems from robot controllers. Use parameter `orientation_type` to get the orientation part of the transformation offset of the coordinate system returned in the requested orientation notation. If parameter `orientation_type` is not set, the orientation part of the transformation offset of the coordinate system is returned in rotation vector notation. The coordinate systems from the robot controller are loaded when the motion group associated with the coordinate system is activated. With deactivation of the motion group, the associated coordinate systems are removed from NOVA. The unique identifier of the coordinate systems from the robot controllers are suffixed with `On` + the unique identifier of the robot controller.
|
|
7118
7118
|
* @summary List Coordinate Systems
|
|
7119
7119
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
7120
7120
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
@@ -7132,7 +7132,7 @@ declare const ControllerApiFactory: (configuration?: Configuration, basePath?: s
|
|
|
7132
7132
|
*/
|
|
7133
7133
|
listRobotControllers(cell: string, options?: RawAxiosRequestConfig): AxiosPromise<Array<string>>;
|
|
7134
7134
|
/**
|
|
7135
|
-
* Switch between monitor and control usage as default for a robot controller.
|
|
7135
|
+
* Switch between monitor and control usage as default for a robot controller. Monitoring mode is used to read information from the robot controller and control mode is used to command the robot system. As long as the robot controller is connected via network, monitoring mode is always possible. To switch to control mode the robot controller must be in `automatic` or `manual` operating mode and safety state `normal` or `reduced`. If the robot controller is in `manual` operating mode, you have to manually confirm the control usage activation on the robot control panel. This manual confirmation can\'t be replaced with this API. Without manual confirmation the robot controller will stay in monitor mode. The robot system will try to activate the required operation mode for the requested usage unless no active call requires a different mode. > **NOTE** > > `setDefaultMode` enables the robot controller to stay in control mode to keep the motors activated. > This allows for faster execution of sequential movements as no mode switches are required. > **NOTE** > > Some robot controllers prevent the external activation of automatic operating mode. In this case, changing the operating mode manually at the robot controller is mandatory. > **NOTE** > > The current operation mode and safety state can be requested via [getCurrentRobotControllerState](getCurrentRobotControllerState). If a mode change is not possible, the response lists reasons for the failed change.
|
|
7136
7136
|
* @summary Set Default Mode
|
|
7137
7137
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
7138
7138
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
@@ -7142,7 +7142,7 @@ declare const ControllerApiFactory: (configuration?: Configuration, basePath?: s
|
|
|
7142
7142
|
*/
|
|
7143
7143
|
setDefaultMode(cell: string, controller: string, mode: SettableRobotSystemMode, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
7144
7144
|
/**
|
|
7145
|
-
* <!-- theme:
|
|
7145
|
+
* <!-- theme: success --> > Websocket endpoint Sets the robot controller into freedrive mode and stays in freedrive until the websocket connection is closed by the client. In freedrive mode, it is possible to move the attached motion groups by hand. This is a blocking call. As long as the websocket connection is open, no other endpoint can control or move the robot. <!-- theme: danger --> > **DANGER** > > Danger caused by robot. Improper assessment by the integrator of the application-specific hazards can result in people being > crushed, drawn in or caught due to the robot\'s complex movement sequences. Before opening the websocket, ensure that > > - The robot is in a safe state, > - The right payload is set, > - No humans or object are within the robot\'s reach or within the cell. As long as the websocket connection is open you will get the current state of the robot system in the response in the specified `response_rate`. If the activation failed, the returned status will return possible reasons for the failure. Free drive mode is only available for robot controllers that support it, in particular cobots. Use [listRobotControllers](listRobotControllers) to check if the robot controller supports free drive mode.
|
|
7146
7146
|
* @summary Stream Free Drive
|
|
7147
7147
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
7148
7148
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
@@ -7152,7 +7152,7 @@ declare const ControllerApiFactory: (configuration?: Configuration, basePath?: s
|
|
|
7152
7152
|
*/
|
|
7153
7153
|
streamFreeDrive(cell: string, controller: string, responseRate?: number, options?: RawAxiosRequestConfig): AxiosPromise<RobotControllerState>;
|
|
7154
7154
|
/**
|
|
7155
|
-
* <!-- theme:
|
|
7155
|
+
* <!-- theme: success --> > Websocket endpoint Receive updates of the state of a robot controller. The stream can be opened before the controller is registered. To register a controller, call [addRobotController](addRobotController). While connecting, the stream sends initialization updates. Once the controller reaches `MODE_MONITOR`, it sends controller state updates.
|
|
7156
7156
|
* @summary Stream State
|
|
7157
7157
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
7158
7158
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
@@ -7163,7 +7163,7 @@ declare const ControllerApiFactory: (configuration?: Configuration, basePath?: s
|
|
|
7163
7163
|
*/
|
|
7164
7164
|
streamRobotControllerState(cell: string, controller: string, responseRate?: number, addControllerTimeout?: number, options?: RawAxiosRequestConfig): AxiosPromise<RobotControllerState>;
|
|
7165
7165
|
/**
|
|
7166
|
-
* Update the configuration of a robot controller. Reconfigure certain options of a robot controller, or deploy a specific container image of a robot controller.
|
|
7166
|
+
* Update the configuration of a robot controller. Reconfigure certain options of a robot controller, or deploy a specific container image of a robot controller.
|
|
7167
7167
|
* @summary Update Robot Controller
|
|
7168
7168
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
7169
7169
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
@@ -7182,7 +7182,7 @@ declare const ControllerApiFactory: (configuration?: Configuration, basePath?: s
|
|
|
7182
7182
|
*/
|
|
7183
7183
|
declare class ControllerApi extends BaseAPI {
|
|
7184
7184
|
/**
|
|
7185
|
-
* Add a robot controller to the cell.
|
|
7185
|
+
* Add a robot controller to the cell.
|
|
7186
7186
|
* @summary Add Robot Controller
|
|
7187
7187
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
7188
7188
|
* @param {RobotController} robotController
|
|
@@ -7191,9 +7191,9 @@ declare class ControllerApi extends BaseAPI {
|
|
|
7191
7191
|
* @throws {RequiredError}
|
|
7192
7192
|
* @memberof ControllerApi
|
|
7193
7193
|
*/
|
|
7194
|
-
addRobotController(cell: string, robotController: RobotController, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<
|
|
7194
|
+
addRobotController(cell: string, robotController: RobotController, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
7195
7195
|
/**
|
|
7196
|
-
* Delete all robot controllers from the cell. To replace all robot controllers in a cell, use this endpoint in combination with
|
|
7196
|
+
* Delete all robot controllers from the cell. To replace all robot controllers in a cell, use this endpoint in combination with [addRobotController](addRobotController).
|
|
7197
7197
|
* @summary Clear Robot Controllers
|
|
7198
7198
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
7199
7199
|
* @param {number} [completionTimeout]
|
|
@@ -7201,9 +7201,9 @@ declare class ControllerApi extends BaseAPI {
|
|
|
7201
7201
|
* @throws {RequiredError}
|
|
7202
7202
|
* @memberof ControllerApi
|
|
7203
7203
|
*/
|
|
7204
|
-
clearRobotControllers(cell: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<
|
|
7204
|
+
clearRobotControllers(cell: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
7205
7205
|
/**
|
|
7206
|
-
* Delete a robot controller from the cell.
|
|
7206
|
+
* Delete a robot controller from the cell.
|
|
7207
7207
|
* @summary Delete Robot Controller
|
|
7208
7208
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
7209
7209
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
@@ -7212,7 +7212,7 @@ declare class ControllerApi extends BaseAPI {
|
|
|
7212
7212
|
* @throws {RequiredError}
|
|
7213
7213
|
* @memberof ControllerApi
|
|
7214
7214
|
*/
|
|
7215
|
-
deleteRobotController(cell: string, controller: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<
|
|
7215
|
+
deleteRobotController(cell: string, controller: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
7216
7216
|
/**
|
|
7217
7217
|
* Get description of a configured robot controller including a list of connected motion group identifiers. Use [getMotionGroupDescription](getMotionGroupDescription) to get more information about the motion group.
|
|
7218
7218
|
* @summary Description
|
|
@@ -7222,9 +7222,9 @@ declare class ControllerApi extends BaseAPI {
|
|
|
7222
7222
|
* @throws {RequiredError}
|
|
7223
7223
|
* @memberof ControllerApi
|
|
7224
7224
|
*/
|
|
7225
|
-
getControllerDescription(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<
|
|
7225
|
+
getControllerDescription(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ControllerDescription, any>>;
|
|
7226
7226
|
/**
|
|
7227
|
-
* Request a coordinate system specification for a given identifier. Use parameter orientation_type to get the orientation part of the transformation offset of the coordinate system returned in the requested orientation notation. If parameter orientation_type is not set, the orientation part of the transformation offset of the coordinate system is returned in rotation vector notation. The coordinate systems from the robot controller are loaded when the motion group associated with the coordinate system is activated. With deactivation of the motion group, the associated coordinate systems are removed from NOVA. The unique identifier of the coordinate systems from the robot controllers are suffixed with
|
|
7227
|
+
* Request a coordinate system specification for a given identifier. Use parameter `orientation_type` to get the orientation part of the transformation offset of the coordinate system returned in the requested orientation notation. If parameter `orientation_type` is not set, the orientation part of the transformation offset of the coordinate system is returned in rotation vector notation. The coordinate systems from the robot controller are loaded when the motion group associated with the coordinate system is activated. With deactivation of the motion group, the associated coordinate systems are removed from NOVA. The unique identifier of the coordinate systems from the robot controllers are suffixed with `On` + the unique identifier of the robot controller.
|
|
7228
7228
|
* @summary Coordinate System
|
|
7229
7229
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
7230
7230
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
@@ -7234,7 +7234,7 @@ declare class ControllerApi extends BaseAPI {
|
|
|
7234
7234
|
* @throws {RequiredError}
|
|
7235
7235
|
* @memberof ControllerApi
|
|
7236
7236
|
*/
|
|
7237
|
-
getCoordinateSystem(cell: string, controller: string, coordinateSystem: string, orientationType?: OrientationType, options?: RawAxiosRequestConfig): Promise<
|
|
7237
|
+
getCoordinateSystem(cell: string, controller: string, coordinateSystem: string, orientationType?: OrientationType, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<CoordinateSystem, any>>;
|
|
7238
7238
|
/**
|
|
7239
7239
|
* Get the current state of a robot controller.
|
|
7240
7240
|
* @summary State
|
|
@@ -7244,7 +7244,7 @@ declare class ControllerApi extends BaseAPI {
|
|
|
7244
7244
|
* @throws {RequiredError}
|
|
7245
7245
|
* @memberof ControllerApi
|
|
7246
7246
|
*/
|
|
7247
|
-
getCurrentRobotControllerState(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<
|
|
7247
|
+
getCurrentRobotControllerState(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<RobotControllerState, any>>;
|
|
7248
7248
|
/**
|
|
7249
7249
|
* Get the configuration for a robot controller.
|
|
7250
7250
|
* @summary Robot Controller
|
|
@@ -7254,9 +7254,9 @@ declare class ControllerApi extends BaseAPI {
|
|
|
7254
7254
|
* @throws {RequiredError}
|
|
7255
7255
|
* @memberof ControllerApi
|
|
7256
7256
|
*/
|
|
7257
|
-
getRobotController(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<
|
|
7257
|
+
getRobotController(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<RobotController, any>>;
|
|
7258
7258
|
/**
|
|
7259
|
-
* Receive data to configure a virtual robot controller based on another controller. This can be used to create a virtual clone of a specific physical robot. When adding a virtual controller, use the Virtual configuration variant of [addRobotController](addRobotController) and pass the content string from this endpoint as the `json` field. Omit the `type` field that selects a preset configuration which is not required when providing a complete configuration.
|
|
7259
|
+
* Receive data to configure a virtual robot controller based on another controller. This can be used to create a virtual clone of a specific physical robot. When adding a virtual controller, use the Virtual configuration variant of [addRobotController](addRobotController) and pass the content string from this endpoint as the `json` field. Omit the `type` field that selects a preset configuration which is not required when providing a complete configuration.
|
|
7260
7260
|
* @summary Virtual Controller Configuration
|
|
7261
7261
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
7262
7262
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
@@ -7264,9 +7264,9 @@ declare class ControllerApi extends BaseAPI {
|
|
|
7264
7264
|
* @throws {RequiredError}
|
|
7265
7265
|
* @memberof ControllerApi
|
|
7266
7266
|
*/
|
|
7267
|
-
getVirtualControllerConfiguration(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<
|
|
7267
|
+
getVirtualControllerConfiguration(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<VirtualRobotConfiguration, any>>;
|
|
7268
7268
|
/**
|
|
7269
|
-
* Lists all specifications of coordinate systems from robot controllers. Use parameter orientation_type to get the orientation part of the transformation offset of the coordinate system returned in the requested orientation notation. If parameter orientation_type is not set, the orientation part of the transformation offset of the coordinate system is returned in rotation vector notation. The coordinate systems from the robot controller are loaded when the motion group associated with the coordinate system is activated. With deactivation of the motion group, the associated coordinate systems are removed from NOVA. The unique identifier of the coordinate systems from the robot controllers are suffixed with
|
|
7269
|
+
* Lists all specifications of coordinate systems from robot controllers. Use parameter `orientation_type` to get the orientation part of the transformation offset of the coordinate system returned in the requested orientation notation. If parameter `orientation_type` is not set, the orientation part of the transformation offset of the coordinate system is returned in rotation vector notation. The coordinate systems from the robot controller are loaded when the motion group associated with the coordinate system is activated. With deactivation of the motion group, the associated coordinate systems are removed from NOVA. The unique identifier of the coordinate systems from the robot controllers are suffixed with `On` + the unique identifier of the robot controller.
|
|
7270
7270
|
* @summary List Coordinate Systems
|
|
7271
7271
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
7272
7272
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
@@ -7275,7 +7275,7 @@ declare class ControllerApi extends BaseAPI {
|
|
|
7275
7275
|
* @throws {RequiredError}
|
|
7276
7276
|
* @memberof ControllerApi
|
|
7277
7277
|
*/
|
|
7278
|
-
listCoordinateSystems(cell: string, controller: string, orientationType?: OrientationType, options?: RawAxiosRequestConfig): Promise<
|
|
7278
|
+
listCoordinateSystems(cell: string, controller: string, orientationType?: OrientationType, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<CoordinateSystem[], any>>;
|
|
7279
7279
|
/**
|
|
7280
7280
|
* List the names of all deployed robot controllers.
|
|
7281
7281
|
* @summary List Robot Controllers
|
|
@@ -7284,9 +7284,9 @@ declare class ControllerApi extends BaseAPI {
|
|
|
7284
7284
|
* @throws {RequiredError}
|
|
7285
7285
|
* @memberof ControllerApi
|
|
7286
7286
|
*/
|
|
7287
|
-
listRobotControllers(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
7287
|
+
listRobotControllers(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<string[], any>>;
|
|
7288
7288
|
/**
|
|
7289
|
-
* Switch between monitor and control usage as default for a robot controller.
|
|
7289
|
+
* Switch between monitor and control usage as default for a robot controller. Monitoring mode is used to read information from the robot controller and control mode is used to command the robot system. As long as the robot controller is connected via network, monitoring mode is always possible. To switch to control mode the robot controller must be in `automatic` or `manual` operating mode and safety state `normal` or `reduced`. If the robot controller is in `manual` operating mode, you have to manually confirm the control usage activation on the robot control panel. This manual confirmation can\'t be replaced with this API. Without manual confirmation the robot controller will stay in monitor mode. The robot system will try to activate the required operation mode for the requested usage unless no active call requires a different mode. > **NOTE** > > `setDefaultMode` enables the robot controller to stay in control mode to keep the motors activated. > This allows for faster execution of sequential movements as no mode switches are required. > **NOTE** > > Some robot controllers prevent the external activation of automatic operating mode. In this case, changing the operating mode manually at the robot controller is mandatory. > **NOTE** > > The current operation mode and safety state can be requested via [getCurrentRobotControllerState](getCurrentRobotControllerState). If a mode change is not possible, the response lists reasons for the failed change.
|
|
7290
7290
|
* @summary Set Default Mode
|
|
7291
7291
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
7292
7292
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
@@ -7295,9 +7295,9 @@ declare class ControllerApi extends BaseAPI {
|
|
|
7295
7295
|
* @throws {RequiredError}
|
|
7296
7296
|
* @memberof ControllerApi
|
|
7297
7297
|
*/
|
|
7298
|
-
setDefaultMode(cell: string, controller: string, mode: SettableRobotSystemMode, options?: RawAxiosRequestConfig): Promise<
|
|
7298
|
+
setDefaultMode(cell: string, controller: string, mode: SettableRobotSystemMode, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
7299
7299
|
/**
|
|
7300
|
-
* <!-- theme:
|
|
7300
|
+
* <!-- theme: success --> > Websocket endpoint Sets the robot controller into freedrive mode and stays in freedrive until the websocket connection is closed by the client. In freedrive mode, it is possible to move the attached motion groups by hand. This is a blocking call. As long as the websocket connection is open, no other endpoint can control or move the robot. <!-- theme: danger --> > **DANGER** > > Danger caused by robot. Improper assessment by the integrator of the application-specific hazards can result in people being > crushed, drawn in or caught due to the robot\'s complex movement sequences. Before opening the websocket, ensure that > > - The robot is in a safe state, > - The right payload is set, > - No humans or object are within the robot\'s reach or within the cell. As long as the websocket connection is open you will get the current state of the robot system in the response in the specified `response_rate`. If the activation failed, the returned status will return possible reasons for the failure. Free drive mode is only available for robot controllers that support it, in particular cobots. Use [listRobotControllers](listRobotControllers) to check if the robot controller supports free drive mode.
|
|
7301
7301
|
* @summary Stream Free Drive
|
|
7302
7302
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
7303
7303
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
@@ -7306,9 +7306,9 @@ declare class ControllerApi extends BaseAPI {
|
|
|
7306
7306
|
* @throws {RequiredError}
|
|
7307
7307
|
* @memberof ControllerApi
|
|
7308
7308
|
*/
|
|
7309
|
-
streamFreeDrive(cell: string, controller: string, responseRate?: number, options?: RawAxiosRequestConfig): Promise<
|
|
7309
|
+
streamFreeDrive(cell: string, controller: string, responseRate?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<RobotControllerState, any>>;
|
|
7310
7310
|
/**
|
|
7311
|
-
* <!-- theme:
|
|
7311
|
+
* <!-- theme: success --> > Websocket endpoint Receive updates of the state of a robot controller. The stream can be opened before the controller is registered. To register a controller, call [addRobotController](addRobotController). While connecting, the stream sends initialization updates. Once the controller reaches `MODE_MONITOR`, it sends controller state updates.
|
|
7312
7312
|
* @summary Stream State
|
|
7313
7313
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
7314
7314
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
@@ -7318,9 +7318,9 @@ declare class ControllerApi extends BaseAPI {
|
|
|
7318
7318
|
* @throws {RequiredError}
|
|
7319
7319
|
* @memberof ControllerApi
|
|
7320
7320
|
*/
|
|
7321
|
-
streamRobotControllerState(cell: string, controller: string, responseRate?: number, addControllerTimeout?: number, options?: RawAxiosRequestConfig): Promise<
|
|
7321
|
+
streamRobotControllerState(cell: string, controller: string, responseRate?: number, addControllerTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<RobotControllerState, any>>;
|
|
7322
7322
|
/**
|
|
7323
|
-
* Update the configuration of a robot controller. Reconfigure certain options of a robot controller, or deploy a specific container image of a robot controller.
|
|
7323
|
+
* Update the configuration of a robot controller. Reconfigure certain options of a robot controller, or deploy a specific container image of a robot controller.
|
|
7324
7324
|
* @summary Update Robot Controller
|
|
7325
7325
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
7326
7326
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
@@ -7330,7 +7330,7 @@ declare class ControllerApi extends BaseAPI {
|
|
|
7330
7330
|
* @throws {RequiredError}
|
|
7331
7331
|
* @memberof ControllerApi
|
|
7332
7332
|
*/
|
|
7333
|
-
updateRobotController(cell: string, controller: string, robotController: RobotController, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<
|
|
7333
|
+
updateRobotController(cell: string, controller: string, robotController: RobotController, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
7334
7334
|
}
|
|
7335
7335
|
/**
|
|
7336
7336
|
* ControllerInputsOutputsApi - axios parameter creator
|
|
@@ -7338,7 +7338,7 @@ declare class ControllerApi extends BaseAPI {
|
|
|
7338
7338
|
*/
|
|
7339
7339
|
declare const ControllerInputsOutputsApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
7340
7340
|
/**
|
|
7341
|
-
* Lists the input/output descriptions of the robot controller. The input/output descriptions contain information
|
|
7341
|
+
* Lists the input/output descriptions of the robot controller. The input/output descriptions contain information like name, type and unit.\\ Available inputs/outputs are defined by the robot controller\\ Each input/output has a unique identifier. - If no identifiers and no filters are specified in the request, all available inputs/outputs are retrieved by this endpoint. - If a filter, e.g., `direction`, `value_type`, `group` is applied, only matching inputs/outputs are returned.
|
|
7342
7342
|
* @summary List Descriptions
|
|
7343
7343
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
7344
7344
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
@@ -7361,7 +7361,7 @@ declare const ControllerInputsOutputsApiAxiosParamCreator: (configuration?: Conf
|
|
|
7361
7361
|
*/
|
|
7362
7362
|
listIOValues: (cell: string, controller: string, ios?: Array<string>, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
7363
7363
|
/**
|
|
7364
|
-
* Set the values of outputs. All available output identifiers and possible value ranges can be requested via [listIODescriptions](listIODescriptions). The call will return once the values have been set on and accepted by the robot. This
|
|
7364
|
+
* Set the values of outputs. All available output identifiers and possible value ranges can be requested via [listIODescriptions](listIODescriptions). The call will return once the values have been set on and accepted by the robot. This can take up to 200 milliseconds. > **NOTE** > > Do not call this endpoint while another request is still in progress. The second call will fail.
|
|
7365
7365
|
* @summary Set Output Values
|
|
7366
7366
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
7367
7367
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
@@ -7371,7 +7371,7 @@ declare const ControllerInputsOutputsApiAxiosParamCreator: (configuration?: Conf
|
|
|
7371
7371
|
*/
|
|
7372
7372
|
setOutputValues: (cell: string, controller: string, iOValue: Array<IOValue>, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
7373
7373
|
/**
|
|
7374
|
-
* <!-- theme:
|
|
7374
|
+
* <!-- theme: success --> > Websocket endpoint Continuously receive updates of input/output values via websocket. Updates are sent in the update rate of the controller. > **NOTE** > > If you request many values simultaneously, the request is likely to fail. The amount of values that can be streamed simultaneously depends on the specific robot controller. > **NOTE** > > The inputs and outputs are sent in the update rate of the controller to prevent losing any values. This can lead to a high amount of data transmitted.
|
|
7375
7375
|
* @summary Stream Input/Output Values
|
|
7376
7376
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
7377
7377
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
@@ -7381,7 +7381,7 @@ declare const ControllerInputsOutputsApiAxiosParamCreator: (configuration?: Conf
|
|
|
7381
7381
|
*/
|
|
7382
7382
|
streamIOValues: (cell: string, controller: string, ios?: Array<string>, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
7383
7383
|
/**
|
|
7384
|
-
* Wait until an input/output reaches a certain value.
|
|
7384
|
+
* Wait until an input/output reaches a certain value. This call returns as soon as the condition is met or the request fails. The `comparison_type` value is used to define how the current value of the input/output is compared with given value. Only set the value that corresponds to the `value_type` of the input/output. See [listIODescriptions](listIODescriptions) for more information. **Examples** 1. Wait until analog input `AI_1` < 10: ``` io: \"AI_1\" comparison_type: \"COMPARISON_LESS\" value: 10 ``` 2. Wait until analog input `AI_2` > 5.0: ``` io: \"AI_2\" comparison_type: \"COMPARISON_GREATER\" value: 5.0 ``` 3. Wait until digital input `DI_3` is true: ``` io: \"DI_3\" comparison_type: \"COMPARISON_EQUAL\" value: true ```
|
|
7385
7385
|
* @summary Wait For
|
|
7386
7386
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
7387
7387
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
@@ -7397,7 +7397,7 @@ declare const ControllerInputsOutputsApiAxiosParamCreator: (configuration?: Conf
|
|
|
7397
7397
|
*/
|
|
7398
7398
|
declare const ControllerInputsOutputsApiFp: (configuration?: Configuration) => {
|
|
7399
7399
|
/**
|
|
7400
|
-
* Lists the input/output descriptions of the robot controller. The input/output descriptions contain information
|
|
7400
|
+
* Lists the input/output descriptions of the robot controller. The input/output descriptions contain information like name, type and unit.\\ Available inputs/outputs are defined by the robot controller\\ Each input/output has a unique identifier. - If no identifiers and no filters are specified in the request, all available inputs/outputs are retrieved by this endpoint. - If a filter, e.g., `direction`, `value_type`, `group` is applied, only matching inputs/outputs are returned.
|
|
7401
7401
|
* @summary List Descriptions
|
|
7402
7402
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
7403
7403
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
@@ -7420,7 +7420,7 @@ declare const ControllerInputsOutputsApiFp: (configuration?: Configuration) => {
|
|
|
7420
7420
|
*/
|
|
7421
7421
|
listIOValues(cell: string, controller: string, ios?: Array<string>, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<IOValue>>>;
|
|
7422
7422
|
/**
|
|
7423
|
-
* Set the values of outputs. All available output identifiers and possible value ranges can be requested via [listIODescriptions](listIODescriptions). The call will return once the values have been set on and accepted by the robot. This
|
|
7423
|
+
* Set the values of outputs. All available output identifiers and possible value ranges can be requested via [listIODescriptions](listIODescriptions). The call will return once the values have been set on and accepted by the robot. This can take up to 200 milliseconds. > **NOTE** > > Do not call this endpoint while another request is still in progress. The second call will fail.
|
|
7424
7424
|
* @summary Set Output Values
|
|
7425
7425
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
7426
7426
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
@@ -7430,7 +7430,7 @@ declare const ControllerInputsOutputsApiFp: (configuration?: Configuration) => {
|
|
|
7430
7430
|
*/
|
|
7431
7431
|
setOutputValues(cell: string, controller: string, iOValue: Array<IOValue>, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
7432
7432
|
/**
|
|
7433
|
-
* <!-- theme:
|
|
7433
|
+
* <!-- theme: success --> > Websocket endpoint Continuously receive updates of input/output values via websocket. Updates are sent in the update rate of the controller. > **NOTE** > > If you request many values simultaneously, the request is likely to fail. The amount of values that can be streamed simultaneously depends on the specific robot controller. > **NOTE** > > The inputs and outputs are sent in the update rate of the controller to prevent losing any values. This can lead to a high amount of data transmitted.
|
|
7434
7434
|
* @summary Stream Input/Output Values
|
|
7435
7435
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
7436
7436
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
@@ -7440,7 +7440,7 @@ declare const ControllerInputsOutputsApiFp: (configuration?: Configuration) => {
|
|
|
7440
7440
|
*/
|
|
7441
7441
|
streamIOValues(cell: string, controller: string, ios?: Array<string>, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<StreamIOValuesResponse>>;
|
|
7442
7442
|
/**
|
|
7443
|
-
* Wait until an input/output reaches a certain value.
|
|
7443
|
+
* Wait until an input/output reaches a certain value. This call returns as soon as the condition is met or the request fails. The `comparison_type` value is used to define how the current value of the input/output is compared with given value. Only set the value that corresponds to the `value_type` of the input/output. See [listIODescriptions](listIODescriptions) for more information. **Examples** 1. Wait until analog input `AI_1` < 10: ``` io: \"AI_1\" comparison_type: \"COMPARISON_LESS\" value: 10 ``` 2. Wait until analog input `AI_2` > 5.0: ``` io: \"AI_2\" comparison_type: \"COMPARISON_GREATER\" value: 5.0 ``` 3. Wait until digital input `DI_3` is true: ``` io: \"DI_3\" comparison_type: \"COMPARISON_EQUAL\" value: true ```
|
|
7444
7444
|
* @summary Wait For
|
|
7445
7445
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
7446
7446
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
@@ -7456,7 +7456,7 @@ declare const ControllerInputsOutputsApiFp: (configuration?: Configuration) => {
|
|
|
7456
7456
|
*/
|
|
7457
7457
|
declare const ControllerInputsOutputsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
7458
7458
|
/**
|
|
7459
|
-
* Lists the input/output descriptions of the robot controller. The input/output descriptions contain information
|
|
7459
|
+
* Lists the input/output descriptions of the robot controller. The input/output descriptions contain information like name, type and unit.\\ Available inputs/outputs are defined by the robot controller\\ Each input/output has a unique identifier. - If no identifiers and no filters are specified in the request, all available inputs/outputs are retrieved by this endpoint. - If a filter, e.g., `direction`, `value_type`, `group` is applied, only matching inputs/outputs are returned.
|
|
7460
7460
|
* @summary List Descriptions
|
|
7461
7461
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
7462
7462
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
@@ -7479,7 +7479,7 @@ declare const ControllerInputsOutputsApiFactory: (configuration?: Configuration,
|
|
|
7479
7479
|
*/
|
|
7480
7480
|
listIOValues(cell: string, controller: string, ios?: Array<string>, options?: RawAxiosRequestConfig): AxiosPromise<Array<IOValue>>;
|
|
7481
7481
|
/**
|
|
7482
|
-
* Set the values of outputs. All available output identifiers and possible value ranges can be requested via [listIODescriptions](listIODescriptions). The call will return once the values have been set on and accepted by the robot. This
|
|
7482
|
+
* Set the values of outputs. All available output identifiers and possible value ranges can be requested via [listIODescriptions](listIODescriptions). The call will return once the values have been set on and accepted by the robot. This can take up to 200 milliseconds. > **NOTE** > > Do not call this endpoint while another request is still in progress. The second call will fail.
|
|
7483
7483
|
* @summary Set Output Values
|
|
7484
7484
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
7485
7485
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
@@ -7489,7 +7489,7 @@ declare const ControllerInputsOutputsApiFactory: (configuration?: Configuration,
|
|
|
7489
7489
|
*/
|
|
7490
7490
|
setOutputValues(cell: string, controller: string, iOValue: Array<IOValue>, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
7491
7491
|
/**
|
|
7492
|
-
* <!-- theme:
|
|
7492
|
+
* <!-- theme: success --> > Websocket endpoint Continuously receive updates of input/output values via websocket. Updates are sent in the update rate of the controller. > **NOTE** > > If you request many values simultaneously, the request is likely to fail. The amount of values that can be streamed simultaneously depends on the specific robot controller. > **NOTE** > > The inputs and outputs are sent in the update rate of the controller to prevent losing any values. This can lead to a high amount of data transmitted.
|
|
7493
7493
|
* @summary Stream Input/Output Values
|
|
7494
7494
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
7495
7495
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
@@ -7499,7 +7499,7 @@ declare const ControllerInputsOutputsApiFactory: (configuration?: Configuration,
|
|
|
7499
7499
|
*/
|
|
7500
7500
|
streamIOValues(cell: string, controller: string, ios?: Array<string>, options?: RawAxiosRequestConfig): AxiosPromise<StreamIOValuesResponse>;
|
|
7501
7501
|
/**
|
|
7502
|
-
* Wait until an input/output reaches a certain value.
|
|
7502
|
+
* Wait until an input/output reaches a certain value. This call returns as soon as the condition is met or the request fails. The `comparison_type` value is used to define how the current value of the input/output is compared with given value. Only set the value that corresponds to the `value_type` of the input/output. See [listIODescriptions](listIODescriptions) for more information. **Examples** 1. Wait until analog input `AI_1` < 10: ``` io: \"AI_1\" comparison_type: \"COMPARISON_LESS\" value: 10 ``` 2. Wait until analog input `AI_2` > 5.0: ``` io: \"AI_2\" comparison_type: \"COMPARISON_GREATER\" value: 5.0 ``` 3. Wait until digital input `DI_3` is true: ``` io: \"DI_3\" comparison_type: \"COMPARISON_EQUAL\" value: true ```
|
|
7503
7503
|
* @summary Wait For
|
|
7504
7504
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
7505
7505
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
@@ -7517,7 +7517,7 @@ declare const ControllerInputsOutputsApiFactory: (configuration?: Configuration,
|
|
|
7517
7517
|
*/
|
|
7518
7518
|
declare class ControllerInputsOutputsApi extends BaseAPI {
|
|
7519
7519
|
/**
|
|
7520
|
-
* Lists the input/output descriptions of the robot controller. The input/output descriptions contain information
|
|
7520
|
+
* Lists the input/output descriptions of the robot controller. The input/output descriptions contain information like name, type and unit.\\ Available inputs/outputs are defined by the robot controller\\ Each input/output has a unique identifier. - If no identifiers and no filters are specified in the request, all available inputs/outputs are retrieved by this endpoint. - If a filter, e.g., `direction`, `value_type`, `group` is applied, only matching inputs/outputs are returned.
|
|
7521
7521
|
* @summary List Descriptions
|
|
7522
7522
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
7523
7523
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
@@ -7529,7 +7529,7 @@ declare class ControllerInputsOutputsApi extends BaseAPI {
|
|
|
7529
7529
|
* @throws {RequiredError}
|
|
7530
7530
|
* @memberof ControllerInputsOutputsApi
|
|
7531
7531
|
*/
|
|
7532
|
-
listIODescriptions(cell: string, controller: string, ios?: Array<string>, direction?: IODirection, valueType?: IOValueType, group?: string, options?: RawAxiosRequestConfig): Promise<
|
|
7532
|
+
listIODescriptions(cell: string, controller: string, ios?: Array<string>, direction?: IODirection, valueType?: IOValueType, group?: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<IODescription[], any>>;
|
|
7533
7533
|
/**
|
|
7534
7534
|
* Retrieves the current values of inputs/outputs. The identifiers of the inputs/outputs must be provided in the request. Request all available input/output identifiers via [listIODescriptions](listIODescriptions).
|
|
7535
7535
|
* @summary Get Input/Output Values
|
|
@@ -7540,9 +7540,9 @@ declare class ControllerInputsOutputsApi extends BaseAPI {
|
|
|
7540
7540
|
* @throws {RequiredError}
|
|
7541
7541
|
* @memberof ControllerInputsOutputsApi
|
|
7542
7542
|
*/
|
|
7543
|
-
listIOValues(cell: string, controller: string, ios?: Array<string>, options?: RawAxiosRequestConfig): Promise<
|
|
7543
|
+
listIOValues(cell: string, controller: string, ios?: Array<string>, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<IOValue[], any>>;
|
|
7544
7544
|
/**
|
|
7545
|
-
* Set the values of outputs. All available output identifiers and possible value ranges can be requested via [listIODescriptions](listIODescriptions). The call will return once the values have been set on and accepted by the robot. This
|
|
7545
|
+
* Set the values of outputs. All available output identifiers and possible value ranges can be requested via [listIODescriptions](listIODescriptions). The call will return once the values have been set on and accepted by the robot. This can take up to 200 milliseconds. > **NOTE** > > Do not call this endpoint while another request is still in progress. The second call will fail.
|
|
7546
7546
|
* @summary Set Output Values
|
|
7547
7547
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
7548
7548
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
@@ -7551,9 +7551,9 @@ declare class ControllerInputsOutputsApi extends BaseAPI {
|
|
|
7551
7551
|
* @throws {RequiredError}
|
|
7552
7552
|
* @memberof ControllerInputsOutputsApi
|
|
7553
7553
|
*/
|
|
7554
|
-
setOutputValues(cell: string, controller: string, iOValue: Array<IOValue>, options?: RawAxiosRequestConfig): Promise<
|
|
7554
|
+
setOutputValues(cell: string, controller: string, iOValue: Array<IOValue>, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
7555
7555
|
/**
|
|
7556
|
-
* <!-- theme:
|
|
7556
|
+
* <!-- theme: success --> > Websocket endpoint Continuously receive updates of input/output values via websocket. Updates are sent in the update rate of the controller. > **NOTE** > > If you request many values simultaneously, the request is likely to fail. The amount of values that can be streamed simultaneously depends on the specific robot controller. > **NOTE** > > The inputs and outputs are sent in the update rate of the controller to prevent losing any values. This can lead to a high amount of data transmitted.
|
|
7557
7557
|
* @summary Stream Input/Output Values
|
|
7558
7558
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
7559
7559
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
@@ -7562,9 +7562,9 @@ declare class ControllerInputsOutputsApi extends BaseAPI {
|
|
|
7562
7562
|
* @throws {RequiredError}
|
|
7563
7563
|
* @memberof ControllerInputsOutputsApi
|
|
7564
7564
|
*/
|
|
7565
|
-
streamIOValues(cell: string, controller: string, ios?: Array<string>, options?: RawAxiosRequestConfig): Promise<
|
|
7565
|
+
streamIOValues(cell: string, controller: string, ios?: Array<string>, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<StreamIOValuesResponse, any>>;
|
|
7566
7566
|
/**
|
|
7567
|
-
* Wait until an input/output reaches a certain value.
|
|
7567
|
+
* Wait until an input/output reaches a certain value. This call returns as soon as the condition is met or the request fails. The `comparison_type` value is used to define how the current value of the input/output is compared with given value. Only set the value that corresponds to the `value_type` of the input/output. See [listIODescriptions](listIODescriptions) for more information. **Examples** 1. Wait until analog input `AI_1` < 10: ``` io: \"AI_1\" comparison_type: \"COMPARISON_LESS\" value: 10 ``` 2. Wait until analog input `AI_2` > 5.0: ``` io: \"AI_2\" comparison_type: \"COMPARISON_GREATER\" value: 5.0 ``` 3. Wait until digital input `DI_3` is true: ``` io: \"DI_3\" comparison_type: \"COMPARISON_EQUAL\" value: true ```
|
|
7568
7568
|
* @summary Wait For
|
|
7569
7569
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
7570
7570
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
@@ -7573,7 +7573,7 @@ declare class ControllerInputsOutputsApi extends BaseAPI {
|
|
|
7573
7573
|
* @throws {RequiredError}
|
|
7574
7574
|
* @memberof ControllerInputsOutputsApi
|
|
7575
7575
|
*/
|
|
7576
|
-
waitForIOEvent(cell: string, controller: string, waitForIOEventRequest: WaitForIOEventRequest, options?: RawAxiosRequestConfig): Promise<
|
|
7576
|
+
waitForIOEvent(cell: string, controller: string, waitForIOEventRequest: WaitForIOEventRequest, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<boolean, any>>;
|
|
7577
7577
|
}
|
|
7578
7578
|
/**
|
|
7579
7579
|
* JoggingApi - axios parameter creator
|
|
@@ -7581,7 +7581,7 @@ declare class ControllerInputsOutputsApi extends BaseAPI {
|
|
|
7581
7581
|
*/
|
|
7582
7582
|
declare const JoggingApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
7583
7583
|
/**
|
|
7584
|
-
* <!-- theme:
|
|
7584
|
+
* <!-- theme: success --> > Websocket endpoint Provides execution control over a dynamically adaptable jogging motion for a motion group. Jogging describes controlling a motion group by sending real-time commands to move either its joints or the TCP. The commands contain target velocities that may change at any time during execution, so the resulting motion cannot be computed upfront. ### Preconditions The motion group is not moved by any other endpoint. ### Requests #### 1. Send `InitializeJoggingRequest` to configure the jogging. - Sets the robot controller mode to control mode. - Sets rate and coordinate system for the jogging response. #### 2. Send `JointVelocityRequest` or `TcpVelocityRequest` to start the jogging motion. #### 3. Change or stop the jogging motion - Change the jogging direction and/or velocity during the jogging motion with `JointVelocityRequest` or `TcpVelocityRequest`. - To stop the jogging motion, send zero velocities via either request. ### Responses - `InitializeJoggingResponse` is sent to signal the success or failure of the `InitializeJoggingRequest`. - Jogging responses are streamed continuously after an `InitializeJoggingRequest` is processed. Jogging responses contain the robot controller state and the state of the jogging control. - `JoggingErrorResponse` with error details is sent in case of an unexpected error, e.g., controller disconnects during jogging. ### Tips and Tricks - In the `JoggingResponse`, verify that the robot control is in the desired state, e.g., standstill, with JoggingState. - Ensure that the websocket connection remains open until the jogging motion is stopped to avoid unexpected stops.
|
|
7585
7585
|
* @summary Execute Jogging
|
|
7586
7586
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
7587
7587
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
@@ -7597,7 +7597,7 @@ declare const JoggingApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
7597
7597
|
*/
|
|
7598
7598
|
declare const JoggingApiFp: (configuration?: Configuration) => {
|
|
7599
7599
|
/**
|
|
7600
|
-
* <!-- theme:
|
|
7600
|
+
* <!-- theme: success --> > Websocket endpoint Provides execution control over a dynamically adaptable jogging motion for a motion group. Jogging describes controlling a motion group by sending real-time commands to move either its joints or the TCP. The commands contain target velocities that may change at any time during execution, so the resulting motion cannot be computed upfront. ### Preconditions The motion group is not moved by any other endpoint. ### Requests #### 1. Send `InitializeJoggingRequest` to configure the jogging. - Sets the robot controller mode to control mode. - Sets rate and coordinate system for the jogging response. #### 2. Send `JointVelocityRequest` or `TcpVelocityRequest` to start the jogging motion. #### 3. Change or stop the jogging motion - Change the jogging direction and/or velocity during the jogging motion with `JointVelocityRequest` or `TcpVelocityRequest`. - To stop the jogging motion, send zero velocities via either request. ### Responses - `InitializeJoggingResponse` is sent to signal the success or failure of the `InitializeJoggingRequest`. - Jogging responses are streamed continuously after an `InitializeJoggingRequest` is processed. Jogging responses contain the robot controller state and the state of the jogging control. - `JoggingErrorResponse` with error details is sent in case of an unexpected error, e.g., controller disconnects during jogging. ### Tips and Tricks - In the `JoggingResponse`, verify that the robot control is in the desired state, e.g., standstill, with JoggingState. - Ensure that the websocket connection remains open until the jogging motion is stopped to avoid unexpected stops.
|
|
7601
7601
|
* @summary Execute Jogging
|
|
7602
7602
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
7603
7603
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
@@ -7613,7 +7613,7 @@ declare const JoggingApiFp: (configuration?: Configuration) => {
|
|
|
7613
7613
|
*/
|
|
7614
7614
|
declare const JoggingApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
7615
7615
|
/**
|
|
7616
|
-
* <!-- theme:
|
|
7616
|
+
* <!-- theme: success --> > Websocket endpoint Provides execution control over a dynamically adaptable jogging motion for a motion group. Jogging describes controlling a motion group by sending real-time commands to move either its joints or the TCP. The commands contain target velocities that may change at any time during execution, so the resulting motion cannot be computed upfront. ### Preconditions The motion group is not moved by any other endpoint. ### Requests #### 1. Send `InitializeJoggingRequest` to configure the jogging. - Sets the robot controller mode to control mode. - Sets rate and coordinate system for the jogging response. #### 2. Send `JointVelocityRequest` or `TcpVelocityRequest` to start the jogging motion. #### 3. Change or stop the jogging motion - Change the jogging direction and/or velocity during the jogging motion with `JointVelocityRequest` or `TcpVelocityRequest`. - To stop the jogging motion, send zero velocities via either request. ### Responses - `InitializeJoggingResponse` is sent to signal the success or failure of the `InitializeJoggingRequest`. - Jogging responses are streamed continuously after an `InitializeJoggingRequest` is processed. Jogging responses contain the robot controller state and the state of the jogging control. - `JoggingErrorResponse` with error details is sent in case of an unexpected error, e.g., controller disconnects during jogging. ### Tips and Tricks - In the `JoggingResponse`, verify that the robot control is in the desired state, e.g., standstill, with JoggingState. - Ensure that the websocket connection remains open until the jogging motion is stopped to avoid unexpected stops.
|
|
7617
7617
|
* @summary Execute Jogging
|
|
7618
7618
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
7619
7619
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
@@ -7631,7 +7631,7 @@ declare const JoggingApiFactory: (configuration?: Configuration, basePath?: stri
|
|
|
7631
7631
|
*/
|
|
7632
7632
|
declare class JoggingApi extends BaseAPI {
|
|
7633
7633
|
/**
|
|
7634
|
-
* <!-- theme:
|
|
7634
|
+
* <!-- theme: success --> > Websocket endpoint Provides execution control over a dynamically adaptable jogging motion for a motion group. Jogging describes controlling a motion group by sending real-time commands to move either its joints or the TCP. The commands contain target velocities that may change at any time during execution, so the resulting motion cannot be computed upfront. ### Preconditions The motion group is not moved by any other endpoint. ### Requests #### 1. Send `InitializeJoggingRequest` to configure the jogging. - Sets the robot controller mode to control mode. - Sets rate and coordinate system for the jogging response. #### 2. Send `JointVelocityRequest` or `TcpVelocityRequest` to start the jogging motion. #### 3. Change or stop the jogging motion - Change the jogging direction and/or velocity during the jogging motion with `JointVelocityRequest` or `TcpVelocityRequest`. - To stop the jogging motion, send zero velocities via either request. ### Responses - `InitializeJoggingResponse` is sent to signal the success or failure of the `InitializeJoggingRequest`. - Jogging responses are streamed continuously after an `InitializeJoggingRequest` is processed. Jogging responses contain the robot controller state and the state of the jogging control. - `JoggingErrorResponse` with error details is sent in case of an unexpected error, e.g., controller disconnects during jogging. ### Tips and Tricks - In the `JoggingResponse`, verify that the robot control is in the desired state, e.g., standstill, with JoggingState. - Ensure that the websocket connection remains open until the jogging motion is stopped to avoid unexpected stops.
|
|
7635
7635
|
* @summary Execute Jogging
|
|
7636
7636
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
7637
7637
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
@@ -7640,7 +7640,7 @@ declare class JoggingApi extends BaseAPI {
|
|
|
7640
7640
|
* @throws {RequiredError}
|
|
7641
7641
|
* @memberof JoggingApi
|
|
7642
7642
|
*/
|
|
7643
|
-
executeJogging(cell: string, controller: string, executeJoggingRequest: ExecuteJoggingRequest, options?: RawAxiosRequestConfig): Promise<
|
|
7643
|
+
executeJogging(cell: string, controller: string, executeJoggingRequest: ExecuteJoggingRequest, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ExecuteJoggingResponse, any>>;
|
|
7644
7644
|
}
|
|
7645
7645
|
/**
|
|
7646
7646
|
* KinematicsApi - axios parameter creator
|
|
@@ -7730,7 +7730,7 @@ declare class KinematicsApi extends BaseAPI {
|
|
|
7730
7730
|
* @throws {RequiredError}
|
|
7731
7731
|
* @memberof KinematicsApi
|
|
7732
7732
|
*/
|
|
7733
|
-
forwardKinematics(cell: string, forwardKinematicsRequest?: ForwardKinematicsRequest, options?: RawAxiosRequestConfig): Promise<
|
|
7733
|
+
forwardKinematics(cell: string, forwardKinematicsRequest?: ForwardKinematicsRequest, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ForwardKinematicsResponse, any>>;
|
|
7734
7734
|
/**
|
|
7735
7735
|
* Returns the reachable joint positions for a list of given poses.
|
|
7736
7736
|
* @summary Inverse kinematics
|
|
@@ -7740,7 +7740,7 @@ declare class KinematicsApi extends BaseAPI {
|
|
|
7740
7740
|
* @throws {RequiredError}
|
|
7741
7741
|
* @memberof KinematicsApi
|
|
7742
7742
|
*/
|
|
7743
|
-
inverseKinematics(cell: string, inverseKinematicsRequest?: InverseKinematicsRequest, options?: RawAxiosRequestConfig): Promise<
|
|
7743
|
+
inverseKinematics(cell: string, inverseKinematicsRequest?: InverseKinematicsRequest, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<InverseKinematicsResponse, any>>;
|
|
7744
7744
|
}
|
|
7745
7745
|
/**
|
|
7746
7746
|
* LicenseApi - axios parameter creator
|
|
@@ -7763,14 +7763,14 @@ declare const LicenseApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
7763
7763
|
*/
|
|
7764
7764
|
deactivateLicense: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
7765
7765
|
/**
|
|
7766
|
-
* Get information on the license used with the Wandelbots NOVA instance, e.g
|
|
7766
|
+
* Get information on the license used with the Wandelbots NOVA instance, e.g., licensed product, expiration date, license status.
|
|
7767
7767
|
* @summary Get license
|
|
7768
7768
|
* @param {*} [options] Override http request option.
|
|
7769
7769
|
* @throws {RequiredError}
|
|
7770
7770
|
*/
|
|
7771
7771
|
getLicense: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
7772
7772
|
/**
|
|
7773
|
-
* Get the license status. If `valid`, Wandelbots NOVA can be used. If `expired`, the license has to be renewed in order to use Wandelbots NOVA.
|
|
7773
|
+
* Get the license status. - If `valid`, Wandelbots NOVA can be used. - If `expired`, the license has to be renewed in order to use Wandelbots NOVA.
|
|
7774
7774
|
* @summary Get license status
|
|
7775
7775
|
* @param {*} [options] Override http request option.
|
|
7776
7776
|
* @throws {RequiredError}
|
|
@@ -7798,14 +7798,14 @@ declare const LicenseApiFp: (configuration?: Configuration) => {
|
|
|
7798
7798
|
*/
|
|
7799
7799
|
deactivateLicense(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
7800
7800
|
/**
|
|
7801
|
-
* Get information on the license used with the Wandelbots NOVA instance, e.g
|
|
7801
|
+
* Get information on the license used with the Wandelbots NOVA instance, e.g., licensed product, expiration date, license status.
|
|
7802
7802
|
* @summary Get license
|
|
7803
7803
|
* @param {*} [options] Override http request option.
|
|
7804
7804
|
* @throws {RequiredError}
|
|
7805
7805
|
*/
|
|
7806
7806
|
getLicense(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<License>>;
|
|
7807
7807
|
/**
|
|
7808
|
-
* Get the license status. If `valid`, Wandelbots NOVA can be used. If `expired`, the license has to be renewed in order to use Wandelbots NOVA.
|
|
7808
|
+
* Get the license status. - If `valid`, Wandelbots NOVA can be used. - If `expired`, the license has to be renewed in order to use Wandelbots NOVA.
|
|
7809
7809
|
* @summary Get license status
|
|
7810
7810
|
* @param {*} [options] Override http request option.
|
|
7811
7811
|
* @throws {RequiredError}
|
|
@@ -7833,14 +7833,14 @@ declare const LicenseApiFactory: (configuration?: Configuration, basePath?: stri
|
|
|
7833
7833
|
*/
|
|
7834
7834
|
deactivateLicense(options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
7835
7835
|
/**
|
|
7836
|
-
* Get information on the license used with the Wandelbots NOVA instance, e.g
|
|
7836
|
+
* Get information on the license used with the Wandelbots NOVA instance, e.g., licensed product, expiration date, license status.
|
|
7837
7837
|
* @summary Get license
|
|
7838
7838
|
* @param {*} [options] Override http request option.
|
|
7839
7839
|
* @throws {RequiredError}
|
|
7840
7840
|
*/
|
|
7841
7841
|
getLicense(options?: RawAxiosRequestConfig): AxiosPromise<License>;
|
|
7842
7842
|
/**
|
|
7843
|
-
* Get the license status. If `valid`, Wandelbots NOVA can be used. If `expired`, the license has to be renewed in order to use Wandelbots NOVA.
|
|
7843
|
+
* Get the license status. - If `valid`, Wandelbots NOVA can be used. - If `expired`, the license has to be renewed in order to use Wandelbots NOVA.
|
|
7844
7844
|
* @summary Get license status
|
|
7845
7845
|
* @param {*} [options] Override http request option.
|
|
7846
7846
|
* @throws {RequiredError}
|
|
@@ -7862,7 +7862,7 @@ declare class LicenseApi extends BaseAPI {
|
|
|
7862
7862
|
* @throws {RequiredError}
|
|
7863
7863
|
* @memberof LicenseApi
|
|
7864
7864
|
*/
|
|
7865
|
-
activateLicense(activateLicenseRequest: ActivateLicenseRequest, options?: RawAxiosRequestConfig): Promise<
|
|
7865
|
+
activateLicense(activateLicenseRequest: ActivateLicenseRequest, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<License, any>>;
|
|
7866
7866
|
/**
|
|
7867
7867
|
* Deactivates active license.
|
|
7868
7868
|
* @summary Deactivate license
|
|
@@ -7870,23 +7870,23 @@ declare class LicenseApi extends BaseAPI {
|
|
|
7870
7870
|
* @throws {RequiredError}
|
|
7871
7871
|
* @memberof LicenseApi
|
|
7872
7872
|
*/
|
|
7873
|
-
deactivateLicense(options?: RawAxiosRequestConfig): Promise<
|
|
7873
|
+
deactivateLicense(options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
7874
7874
|
/**
|
|
7875
|
-
* Get information on the license used with the Wandelbots NOVA instance, e.g
|
|
7875
|
+
* Get information on the license used with the Wandelbots NOVA instance, e.g., licensed product, expiration date, license status.
|
|
7876
7876
|
* @summary Get license
|
|
7877
7877
|
* @param {*} [options] Override http request option.
|
|
7878
7878
|
* @throws {RequiredError}
|
|
7879
7879
|
* @memberof LicenseApi
|
|
7880
7880
|
*/
|
|
7881
|
-
getLicense(options?: RawAxiosRequestConfig): Promise<
|
|
7881
|
+
getLicense(options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<License, any>>;
|
|
7882
7882
|
/**
|
|
7883
|
-
* Get the license status. If `valid`, Wandelbots NOVA can be used. If `expired`, the license has to be renewed in order to use Wandelbots NOVA.
|
|
7883
|
+
* Get the license status. - If `valid`, Wandelbots NOVA can be used. - If `expired`, the license has to be renewed in order to use Wandelbots NOVA.
|
|
7884
7884
|
* @summary Get license status
|
|
7885
7885
|
* @param {*} [options] Override http request option.
|
|
7886
7886
|
* @throws {RequiredError}
|
|
7887
7887
|
* @memberof LicenseApi
|
|
7888
7888
|
*/
|
|
7889
|
-
getLicenseStatus(options?: RawAxiosRequestConfig): Promise<
|
|
7889
|
+
getLicenseStatus(options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<LicenseStatus, any>>;
|
|
7890
7890
|
}
|
|
7891
7891
|
/**
|
|
7892
7892
|
* MotionGroupApi - axios parameter creator
|
|
@@ -7905,7 +7905,7 @@ declare const MotionGroupApiAxiosParamCreator: (configuration?: Configuration) =
|
|
|
7905
7905
|
*/
|
|
7906
7906
|
getCurrentMotionGroupState: (cell: string, controller: string, motionGroup: string, responseCoordinateSystem?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
7907
7907
|
/**
|
|
7908
|
-
* Get the set of parameters that describe the motion group and its configuration including safety zones, limits, etc.
|
|
7908
|
+
* Get the set of parameters that describe the motion group and its configuration including safety zones, limits, etc. This data can change upon connection to the robot.
|
|
7909
7909
|
* @summary Description
|
|
7910
7910
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
7911
7911
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
@@ -7915,7 +7915,7 @@ declare const MotionGroupApiAxiosParamCreator: (configuration?: Configuration) =
|
|
|
7915
7915
|
*/
|
|
7916
7916
|
getMotionGroupDescription: (cell: string, controller: string, motionGroup: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
7917
7917
|
/**
|
|
7918
|
-
* <!-- theme:
|
|
7918
|
+
* <!-- theme: success --> > Websocket endpoint Receive updates of the motion group state. The stream will be closed from the server if the controller is disconnected.
|
|
7919
7919
|
* @summary Stream State
|
|
7920
7920
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
7921
7921
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
@@ -7944,7 +7944,7 @@ declare const MotionGroupApiFp: (configuration?: Configuration) => {
|
|
|
7944
7944
|
*/
|
|
7945
7945
|
getCurrentMotionGroupState(cell: string, controller: string, motionGroup: string, responseCoordinateSystem?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MotionGroupState>>;
|
|
7946
7946
|
/**
|
|
7947
|
-
* Get the set of parameters that describe the motion group and its configuration including safety zones, limits, etc.
|
|
7947
|
+
* Get the set of parameters that describe the motion group and its configuration including safety zones, limits, etc. This data can change upon connection to the robot.
|
|
7948
7948
|
* @summary Description
|
|
7949
7949
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
7950
7950
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
@@ -7954,7 +7954,7 @@ declare const MotionGroupApiFp: (configuration?: Configuration) => {
|
|
|
7954
7954
|
*/
|
|
7955
7955
|
getMotionGroupDescription(cell: string, controller: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MotionGroupDescription>>;
|
|
7956
7956
|
/**
|
|
7957
|
-
* <!-- theme:
|
|
7957
|
+
* <!-- theme: success --> > Websocket endpoint Receive updates of the motion group state. The stream will be closed from the server if the controller is disconnected.
|
|
7958
7958
|
* @summary Stream State
|
|
7959
7959
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
7960
7960
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
@@ -7983,7 +7983,7 @@ declare const MotionGroupApiFactory: (configuration?: Configuration, basePath?:
|
|
|
7983
7983
|
*/
|
|
7984
7984
|
getCurrentMotionGroupState(cell: string, controller: string, motionGroup: string, responseCoordinateSystem?: string, options?: RawAxiosRequestConfig): AxiosPromise<MotionGroupState>;
|
|
7985
7985
|
/**
|
|
7986
|
-
* Get the set of parameters that describe the motion group and its configuration including safety zones, limits, etc.
|
|
7986
|
+
* Get the set of parameters that describe the motion group and its configuration including safety zones, limits, etc. This data can change upon connection to the robot.
|
|
7987
7987
|
* @summary Description
|
|
7988
7988
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
7989
7989
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
@@ -7993,7 +7993,7 @@ declare const MotionGroupApiFactory: (configuration?: Configuration, basePath?:
|
|
|
7993
7993
|
*/
|
|
7994
7994
|
getMotionGroupDescription(cell: string, controller: string, motionGroup: string, options?: RawAxiosRequestConfig): AxiosPromise<MotionGroupDescription>;
|
|
7995
7995
|
/**
|
|
7996
|
-
* <!-- theme:
|
|
7996
|
+
* <!-- theme: success --> > Websocket endpoint Receive updates of the motion group state. The stream will be closed from the server if the controller is disconnected.
|
|
7997
7997
|
* @summary Stream State
|
|
7998
7998
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
7999
7999
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
@@ -8023,9 +8023,9 @@ declare class MotionGroupApi extends BaseAPI {
|
|
|
8023
8023
|
* @throws {RequiredError}
|
|
8024
8024
|
* @memberof MotionGroupApi
|
|
8025
8025
|
*/
|
|
8026
|
-
getCurrentMotionGroupState(cell: string, controller: string, motionGroup: string, responseCoordinateSystem?: string, options?: RawAxiosRequestConfig): Promise<
|
|
8026
|
+
getCurrentMotionGroupState(cell: string, controller: string, motionGroup: string, responseCoordinateSystem?: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<MotionGroupState, any>>;
|
|
8027
8027
|
/**
|
|
8028
|
-
* Get the set of parameters that describe the motion group and its configuration including safety zones, limits, etc.
|
|
8028
|
+
* Get the set of parameters that describe the motion group and its configuration including safety zones, limits, etc. This data can change upon connection to the robot.
|
|
8029
8029
|
* @summary Description
|
|
8030
8030
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
8031
8031
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
@@ -8034,9 +8034,9 @@ declare class MotionGroupApi extends BaseAPI {
|
|
|
8034
8034
|
* @throws {RequiredError}
|
|
8035
8035
|
* @memberof MotionGroupApi
|
|
8036
8036
|
*/
|
|
8037
|
-
getMotionGroupDescription(cell: string, controller: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<
|
|
8037
|
+
getMotionGroupDescription(cell: string, controller: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<MotionGroupDescription, any>>;
|
|
8038
8038
|
/**
|
|
8039
|
-
* <!-- theme:
|
|
8039
|
+
* <!-- theme: success --> > Websocket endpoint Receive updates of the motion group state. The stream will be closed from the server if the controller is disconnected.
|
|
8040
8040
|
* @summary Stream State
|
|
8041
8041
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
8042
8042
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
@@ -8047,7 +8047,7 @@ declare class MotionGroupApi extends BaseAPI {
|
|
|
8047
8047
|
* @throws {RequiredError}
|
|
8048
8048
|
* @memberof MotionGroupApi
|
|
8049
8049
|
*/
|
|
8050
|
-
streamMotionGroupState(cell: string, controller: string, motionGroup: string, responseRate?: number, responseCoordinateSystem?: string, options?: RawAxiosRequestConfig): Promise<
|
|
8050
|
+
streamMotionGroupState(cell: string, controller: string, motionGroup: string, responseRate?: number, responseCoordinateSystem?: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<MotionGroupState, any>>;
|
|
8051
8051
|
}
|
|
8052
8052
|
/**
|
|
8053
8053
|
* MotionGroupModelsApi - axios parameter creator
|
|
@@ -8058,7 +8058,7 @@ declare const MotionGroupModelsApiAxiosParamCreator: (configuration?: Configurat
|
|
|
8058
8058
|
* Returns the default collision link chain for a given motion group model. See [getMotionGroupModels](getMotionGroupModels) for supported motion group models. The default link chain is derived from 3D models and optimized for collision detection within NOVA. The default link chain includes link shapes only. It does not include any attached components like wire feeders or sensors. Attach additional shapes to the link reference frames by extending the link dictionaries before further use. Additional shapes may overlap each other per link and may also overlap the respective link\'s default shape.
|
|
8059
8059
|
* @summary Get Collision Model
|
|
8060
8060
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
8061
|
-
* @param {string} motionGroupModel Unique identifier for the model of a motion group, e.g
|
|
8061
|
+
* @param {string} motionGroupModel Unique identifier for the model of a motion group, e.g., `UniversalRobots_UR10e`. Get the `model` of a configured motion group with [getOptimizerConfiguration](getOptimizerConfiguration).
|
|
8062
8062
|
* @param {*} [options] Override http request option.
|
|
8063
8063
|
* @throws {RequiredError}
|
|
8064
8064
|
*/
|
|
@@ -8081,7 +8081,7 @@ declare const MotionGroupModelsApiFp: (configuration?: Configuration) => {
|
|
|
8081
8081
|
* Returns the default collision link chain for a given motion group model. See [getMotionGroupModels](getMotionGroupModels) for supported motion group models. The default link chain is derived from 3D models and optimized for collision detection within NOVA. The default link chain includes link shapes only. It does not include any attached components like wire feeders or sensors. Attach additional shapes to the link reference frames by extending the link dictionaries before further use. Additional shapes may overlap each other per link and may also overlap the respective link\'s default shape.
|
|
8082
8082
|
* @summary Get Collision Model
|
|
8083
8083
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
8084
|
-
* @param {string} motionGroupModel Unique identifier for the model of a motion group, e.g
|
|
8084
|
+
* @param {string} motionGroupModel Unique identifier for the model of a motion group, e.g., `UniversalRobots_UR10e`. Get the `model` of a configured motion group with [getOptimizerConfiguration](getOptimizerConfiguration).
|
|
8085
8085
|
* @param {*} [options] Override http request option.
|
|
8086
8086
|
* @throws {RequiredError}
|
|
8087
8087
|
*/
|
|
@@ -8106,7 +8106,7 @@ declare const MotionGroupModelsApiFactory: (configuration?: Configuration, baseP
|
|
|
8106
8106
|
* Returns the default collision link chain for a given motion group model. See [getMotionGroupModels](getMotionGroupModels) for supported motion group models. The default link chain is derived from 3D models and optimized for collision detection within NOVA. The default link chain includes link shapes only. It does not include any attached components like wire feeders or sensors. Attach additional shapes to the link reference frames by extending the link dictionaries before further use. Additional shapes may overlap each other per link and may also overlap the respective link\'s default shape.
|
|
8107
8107
|
* @summary Get Collision Model
|
|
8108
8108
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
8109
|
-
* @param {string} motionGroupModel Unique identifier for the model of a motion group, e.g
|
|
8109
|
+
* @param {string} motionGroupModel Unique identifier for the model of a motion group, e.g., `UniversalRobots_UR10e`. Get the `model` of a configured motion group with [getOptimizerConfiguration](getOptimizerConfiguration).
|
|
8110
8110
|
* @param {*} [options] Override http request option.
|
|
8111
8111
|
* @throws {RequiredError}
|
|
8112
8112
|
*/
|
|
@@ -8133,12 +8133,12 @@ declare class MotionGroupModelsApi extends BaseAPI {
|
|
|
8133
8133
|
* Returns the default collision link chain for a given motion group model. See [getMotionGroupModels](getMotionGroupModels) for supported motion group models. The default link chain is derived from 3D models and optimized for collision detection within NOVA. The default link chain includes link shapes only. It does not include any attached components like wire feeders or sensors. Attach additional shapes to the link reference frames by extending the link dictionaries before further use. Additional shapes may overlap each other per link and may also overlap the respective link\'s default shape.
|
|
8134
8134
|
* @summary Get Collision Model
|
|
8135
8135
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
8136
|
-
* @param {string} motionGroupModel Unique identifier for the model of a motion group, e.g
|
|
8136
|
+
* @param {string} motionGroupModel Unique identifier for the model of a motion group, e.g., `UniversalRobots_UR10e`. Get the `model` of a configured motion group with [getOptimizerConfiguration](getOptimizerConfiguration).
|
|
8137
8137
|
* @param {*} [options] Override http request option.
|
|
8138
8138
|
* @throws {RequiredError}
|
|
8139
8139
|
* @memberof MotionGroupModelsApi
|
|
8140
8140
|
*/
|
|
8141
|
-
getMotionGroupCollisionModel(cell: string, motionGroupModel: string, options?: RawAxiosRequestConfig): Promise<
|
|
8141
|
+
getMotionGroupCollisionModel(cell: string, motionGroupModel: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<{
|
|
8142
8142
|
[key: string]: Collider;
|
|
8143
8143
|
}[], any>>;
|
|
8144
8144
|
/**
|
|
@@ -8149,7 +8149,7 @@ declare class MotionGroupModelsApi extends BaseAPI {
|
|
|
8149
8149
|
* @throws {RequiredError}
|
|
8150
8150
|
* @memberof MotionGroupModelsApi
|
|
8151
8151
|
*/
|
|
8152
|
-
getMotionGroupModels(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
8152
|
+
getMotionGroupModels(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<string[], any>>;
|
|
8153
8153
|
}
|
|
8154
8154
|
/**
|
|
8155
8155
|
* ProgramApi - axios parameter creator
|
|
@@ -8293,7 +8293,7 @@ declare class ProgramApi extends BaseAPI {
|
|
|
8293
8293
|
* @throws {RequiredError}
|
|
8294
8294
|
* @memberof ProgramApi
|
|
8295
8295
|
*/
|
|
8296
|
-
getProgram(cell: string, program: string, options?: RawAxiosRequestConfig): Promise<
|
|
8296
|
+
getProgram(cell: string, program: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<Program, any>>;
|
|
8297
8297
|
/**
|
|
8298
8298
|
* List details of all existing programs.
|
|
8299
8299
|
* @summary List programs
|
|
@@ -8302,7 +8302,7 @@ declare class ProgramApi extends BaseAPI {
|
|
|
8302
8302
|
* @throws {RequiredError}
|
|
8303
8303
|
* @memberof ProgramApi
|
|
8304
8304
|
*/
|
|
8305
|
-
listPrograms(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
8305
|
+
listPrograms(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<Program[], any>>;
|
|
8306
8306
|
/**
|
|
8307
8307
|
* This endpoint starts a new program execution. The program will be executed asynchronously.
|
|
8308
8308
|
* @summary Start the program
|
|
@@ -8313,7 +8313,7 @@ declare class ProgramApi extends BaseAPI {
|
|
|
8313
8313
|
* @throws {RequiredError}
|
|
8314
8314
|
* @memberof ProgramApi
|
|
8315
8315
|
*/
|
|
8316
|
-
startProgram(cell: string, program: string, programStartRequest: ProgramStartRequest, options?: RawAxiosRequestConfig): Promise<
|
|
8316
|
+
startProgram(cell: string, program: string, programStartRequest: ProgramStartRequest, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ProgramRun, any>>;
|
|
8317
8317
|
/**
|
|
8318
8318
|
* Stop a specific program run.
|
|
8319
8319
|
* @summary Stop program run
|
|
@@ -8323,7 +8323,7 @@ declare class ProgramApi extends BaseAPI {
|
|
|
8323
8323
|
* @throws {RequiredError}
|
|
8324
8324
|
* @memberof ProgramApi
|
|
8325
8325
|
*/
|
|
8326
|
-
stopProgram(cell: string, program: string, options?: RawAxiosRequestConfig): Promise<
|
|
8326
|
+
stopProgram(cell: string, program: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
8327
8327
|
}
|
|
8328
8328
|
/**
|
|
8329
8329
|
* StoreCollisionComponentsApi - axios parameter creator
|
|
@@ -8409,7 +8409,7 @@ declare const StoreCollisionComponentsApiAxiosParamCreator: (configuration?: Con
|
|
|
8409
8409
|
*/
|
|
8410
8410
|
listStoredCollisionTools: (cell: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
8411
8411
|
/**
|
|
8412
|
-
* Stores collider. If the collider does not exist, it will be created. If the collider exists, it will be updated.
|
|
8412
|
+
* Stores collider. - If the collider does not exist, it will be created. - If the collider exists, it will be updated.
|
|
8413
8413
|
* @summary Store Collider
|
|
8414
8414
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
8415
8415
|
* @param {string} collider Unique identifier addressing a collider.
|
|
@@ -8419,7 +8419,7 @@ declare const StoreCollisionComponentsApiAxiosParamCreator: (configuration?: Con
|
|
|
8419
8419
|
*/
|
|
8420
8420
|
storeCollider: (cell: string, collider: string, collider2: Collider, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
8421
8421
|
/**
|
|
8422
|
-
* Stores link chain. If the link chain does not exist, it will be created. If the link chain exists, it will be updated.
|
|
8422
|
+
* Stores link chain. - If the link chain does not exist, it will be created. - If the link chain exists, it will be updated.
|
|
8423
8423
|
* @summary Store Link Chain
|
|
8424
8424
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
8425
8425
|
* @param {string} linkChain Unique identifier addressing a collision link chain.
|
|
@@ -8431,7 +8431,7 @@ declare const StoreCollisionComponentsApiAxiosParamCreator: (configuration?: Con
|
|
|
8431
8431
|
[key: string]: Collider;
|
|
8432
8432
|
}>, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
8433
8433
|
/**
|
|
8434
|
-
* Stores the tool. If the tool does not exist, it will be created. If the tool exists, it will be updated.
|
|
8434
|
+
* Stores the tool. - If the tool does not exist, it will be created. - If the tool exists, it will be updated.
|
|
8435
8435
|
* @summary Store Tool
|
|
8436
8436
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
8437
8437
|
* @param {string} tool Unique identifier addressing a collision tool.
|
|
@@ -8541,7 +8541,7 @@ declare const StoreCollisionComponentsApiFp: (configuration?: Configuration) =>
|
|
|
8541
8541
|
};
|
|
8542
8542
|
}>>;
|
|
8543
8543
|
/**
|
|
8544
|
-
* Stores collider. If the collider does not exist, it will be created. If the collider exists, it will be updated.
|
|
8544
|
+
* Stores collider. - If the collider does not exist, it will be created. - If the collider exists, it will be updated.
|
|
8545
8545
|
* @summary Store Collider
|
|
8546
8546
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
8547
8547
|
* @param {string} collider Unique identifier addressing a collider.
|
|
@@ -8551,7 +8551,7 @@ declare const StoreCollisionComponentsApiFp: (configuration?: Configuration) =>
|
|
|
8551
8551
|
*/
|
|
8552
8552
|
storeCollider(cell: string, collider: string, collider2: Collider, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Collider>>;
|
|
8553
8553
|
/**
|
|
8554
|
-
* Stores link chain. If the link chain does not exist, it will be created. If the link chain exists, it will be updated.
|
|
8554
|
+
* Stores link chain. - If the link chain does not exist, it will be created. - If the link chain exists, it will be updated.
|
|
8555
8555
|
* @summary Store Link Chain
|
|
8556
8556
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
8557
8557
|
* @param {string} linkChain Unique identifier addressing a collision link chain.
|
|
@@ -8565,7 +8565,7 @@ declare const StoreCollisionComponentsApiFp: (configuration?: Configuration) =>
|
|
|
8565
8565
|
[key: string]: Collider;
|
|
8566
8566
|
}>>>;
|
|
8567
8567
|
/**
|
|
8568
|
-
* Stores the tool. If the tool does not exist, it will be created. If the tool exists, it will be updated.
|
|
8568
|
+
* Stores the tool. - If the tool does not exist, it will be created. - If the tool exists, it will be updated.
|
|
8569
8569
|
* @summary Store Tool
|
|
8570
8570
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
8571
8571
|
* @param {string} tool Unique identifier addressing a collision tool.
|
|
@@ -8677,7 +8677,7 @@ declare const StoreCollisionComponentsApiFactory: (configuration?: Configuration
|
|
|
8677
8677
|
};
|
|
8678
8678
|
}>;
|
|
8679
8679
|
/**
|
|
8680
|
-
* Stores collider. If the collider does not exist, it will be created. If the collider exists, it will be updated.
|
|
8680
|
+
* Stores collider. - If the collider does not exist, it will be created. - If the collider exists, it will be updated.
|
|
8681
8681
|
* @summary Store Collider
|
|
8682
8682
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
8683
8683
|
* @param {string} collider Unique identifier addressing a collider.
|
|
@@ -8687,7 +8687,7 @@ declare const StoreCollisionComponentsApiFactory: (configuration?: Configuration
|
|
|
8687
8687
|
*/
|
|
8688
8688
|
storeCollider(cell: string, collider: string, collider2: Collider, options?: RawAxiosRequestConfig): AxiosPromise<Collider>;
|
|
8689
8689
|
/**
|
|
8690
|
-
* Stores link chain. If the link chain does not exist, it will be created. If the link chain exists, it will be updated.
|
|
8690
|
+
* Stores link chain. - If the link chain does not exist, it will be created. - If the link chain exists, it will be updated.
|
|
8691
8691
|
* @summary Store Link Chain
|
|
8692
8692
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
8693
8693
|
* @param {string} linkChain Unique identifier addressing a collision link chain.
|
|
@@ -8701,7 +8701,7 @@ declare const StoreCollisionComponentsApiFactory: (configuration?: Configuration
|
|
|
8701
8701
|
[key: string]: Collider;
|
|
8702
8702
|
}>>;
|
|
8703
8703
|
/**
|
|
8704
|
-
* Stores the tool. If the tool does not exist, it will be created. If the tool exists, it will be updated.
|
|
8704
|
+
* Stores the tool. - If the tool does not exist, it will be created. - If the tool exists, it will be updated.
|
|
8705
8705
|
* @summary Store Tool
|
|
8706
8706
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
8707
8707
|
* @param {string} tool Unique identifier addressing a collision tool.
|
|
@@ -8731,7 +8731,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
|
|
|
8731
8731
|
* @throws {RequiredError}
|
|
8732
8732
|
* @memberof StoreCollisionComponentsApi
|
|
8733
8733
|
*/
|
|
8734
|
-
deleteStoredCollider(cell: string, collider: string, options?: RawAxiosRequestConfig): Promise<
|
|
8734
|
+
deleteStoredCollider(cell: string, collider: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
8735
8735
|
/**
|
|
8736
8736
|
* Deletes the stored link chain. <!-- theme: danger --> > This will delete persistently stored data.
|
|
8737
8737
|
* @summary Delete Link Chain
|
|
@@ -8741,7 +8741,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
|
|
|
8741
8741
|
* @throws {RequiredError}
|
|
8742
8742
|
* @memberof StoreCollisionComponentsApi
|
|
8743
8743
|
*/
|
|
8744
|
-
deleteStoredCollisionLinkChain(cell: string, linkChain: string, options?: RawAxiosRequestConfig): Promise<
|
|
8744
|
+
deleteStoredCollisionLinkChain(cell: string, linkChain: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
8745
8745
|
/**
|
|
8746
8746
|
* Deletes the stored tool. <!-- theme: danger --> > This will delete persistently stored data.
|
|
8747
8747
|
* @summary Delete Tool
|
|
@@ -8751,7 +8751,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
|
|
|
8751
8751
|
* @throws {RequiredError}
|
|
8752
8752
|
* @memberof StoreCollisionComponentsApi
|
|
8753
8753
|
*/
|
|
8754
|
-
deleteStoredCollisionTool(cell: string, tool: string, options?: RawAxiosRequestConfig): Promise<
|
|
8754
|
+
deleteStoredCollisionTool(cell: string, tool: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
8755
8755
|
/**
|
|
8756
8756
|
* Returns the collider.
|
|
8757
8757
|
* @summary Get Collider
|
|
@@ -8761,7 +8761,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
|
|
|
8761
8761
|
* @throws {RequiredError}
|
|
8762
8762
|
* @memberof StoreCollisionComponentsApi
|
|
8763
8763
|
*/
|
|
8764
|
-
getStoredCollider(cell: string, collider: string, options?: RawAxiosRequestConfig): Promise<
|
|
8764
|
+
getStoredCollider(cell: string, collider: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<Collider, any>>;
|
|
8765
8765
|
/**
|
|
8766
8766
|
* Returns the collision link chain.
|
|
8767
8767
|
* @summary Get Link Chain
|
|
@@ -8771,7 +8771,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
|
|
|
8771
8771
|
* @throws {RequiredError}
|
|
8772
8772
|
* @memberof StoreCollisionComponentsApi
|
|
8773
8773
|
*/
|
|
8774
|
-
getStoredCollisionLinkChain(cell: string, linkChain: string, options?: RawAxiosRequestConfig): Promise<
|
|
8774
|
+
getStoredCollisionLinkChain(cell: string, linkChain: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<{
|
|
8775
8775
|
[key: string]: Collider;
|
|
8776
8776
|
}[], any>>;
|
|
8777
8777
|
/**
|
|
@@ -8783,7 +8783,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
|
|
|
8783
8783
|
* @throws {RequiredError}
|
|
8784
8784
|
* @memberof StoreCollisionComponentsApi
|
|
8785
8785
|
*/
|
|
8786
|
-
getStoredCollisionTool(cell: string, tool: string, options?: RawAxiosRequestConfig): Promise<
|
|
8786
|
+
getStoredCollisionTool(cell: string, tool: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<{
|
|
8787
8787
|
[key: string]: Collider;
|
|
8788
8788
|
}, any>>;
|
|
8789
8789
|
/**
|
|
@@ -8794,7 +8794,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
|
|
|
8794
8794
|
* @throws {RequiredError}
|
|
8795
8795
|
* @memberof StoreCollisionComponentsApi
|
|
8796
8796
|
*/
|
|
8797
|
-
listCollisionLinkChains(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
8797
|
+
listCollisionLinkChains(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<{
|
|
8798
8798
|
[key: string]: {
|
|
8799
8799
|
[key: string]: Collider;
|
|
8800
8800
|
}[];
|
|
@@ -8807,7 +8807,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
|
|
|
8807
8807
|
* @throws {RequiredError}
|
|
8808
8808
|
* @memberof StoreCollisionComponentsApi
|
|
8809
8809
|
*/
|
|
8810
|
-
listStoredColliders(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
8810
|
+
listStoredColliders(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<{
|
|
8811
8811
|
[key: string]: Collider;
|
|
8812
8812
|
}, any>>;
|
|
8813
8813
|
/**
|
|
@@ -8818,13 +8818,13 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
|
|
|
8818
8818
|
* @throws {RequiredError}
|
|
8819
8819
|
* @memberof StoreCollisionComponentsApi
|
|
8820
8820
|
*/
|
|
8821
|
-
listStoredCollisionTools(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
8821
|
+
listStoredCollisionTools(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<{
|
|
8822
8822
|
[key: string]: {
|
|
8823
8823
|
[key: string]: Collider;
|
|
8824
8824
|
};
|
|
8825
8825
|
}, any>>;
|
|
8826
8826
|
/**
|
|
8827
|
-
* Stores collider. If the collider does not exist, it will be created. If the collider exists, it will be updated.
|
|
8827
|
+
* Stores collider. - If the collider does not exist, it will be created. - If the collider exists, it will be updated.
|
|
8828
8828
|
* @summary Store Collider
|
|
8829
8829
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
8830
8830
|
* @param {string} collider Unique identifier addressing a collider.
|
|
@@ -8833,9 +8833,9 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
|
|
|
8833
8833
|
* @throws {RequiredError}
|
|
8834
8834
|
* @memberof StoreCollisionComponentsApi
|
|
8835
8835
|
*/
|
|
8836
|
-
storeCollider(cell: string, collider: string, collider2: Collider, options?: RawAxiosRequestConfig): Promise<
|
|
8836
|
+
storeCollider(cell: string, collider: string, collider2: Collider, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<Collider, any>>;
|
|
8837
8837
|
/**
|
|
8838
|
-
* Stores link chain. If the link chain does not exist, it will be created. If the link chain exists, it will be updated.
|
|
8838
|
+
* Stores link chain. - If the link chain does not exist, it will be created. - If the link chain exists, it will be updated.
|
|
8839
8839
|
* @summary Store Link Chain
|
|
8840
8840
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
8841
8841
|
* @param {string} linkChain Unique identifier addressing a collision link chain.
|
|
@@ -8846,11 +8846,11 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
|
|
|
8846
8846
|
*/
|
|
8847
8847
|
storeCollisionLinkChain(cell: string, linkChain: string, collider: Array<{
|
|
8848
8848
|
[key: string]: Collider;
|
|
8849
|
-
}>, options?: RawAxiosRequestConfig): Promise<
|
|
8849
|
+
}>, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<{
|
|
8850
8850
|
[key: string]: Collider;
|
|
8851
8851
|
}[], any>>;
|
|
8852
8852
|
/**
|
|
8853
|
-
* Stores the tool. If the tool does not exist, it will be created. If the tool exists, it will be updated.
|
|
8853
|
+
* Stores the tool. - If the tool does not exist, it will be created. - If the tool exists, it will be updated.
|
|
8854
8854
|
* @summary Store Tool
|
|
8855
8855
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
8856
8856
|
* @param {string} tool Unique identifier addressing a collision tool.
|
|
@@ -8861,7 +8861,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
|
|
|
8861
8861
|
*/
|
|
8862
8862
|
storeCollisionTool(cell: string, tool: string, requestBody: {
|
|
8863
8863
|
[key: string]: Collider;
|
|
8864
|
-
}, options?: RawAxiosRequestConfig): Promise<
|
|
8864
|
+
}, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<{
|
|
8865
8865
|
[key: string]: Collider;
|
|
8866
8866
|
}, any>>;
|
|
8867
8867
|
}
|
|
@@ -8897,7 +8897,7 @@ declare const StoreCollisionSetupsApiAxiosParamCreator: (configuration?: Configu
|
|
|
8897
8897
|
*/
|
|
8898
8898
|
listStoredCollisionSetups: (cell: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
8899
8899
|
/**
|
|
8900
|
-
* Stores collision setup. If the collision setup does not exist, it will be created. If the collision setup exists, it will be updated.
|
|
8900
|
+
* Stores collision setup. - If the collision setup does not exist, it will be created. - If the collision setup exists, it will be updated.
|
|
8901
8901
|
* @summary Store Collision Setup
|
|
8902
8902
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
8903
8903
|
* @param {string} setup Identifier of the collision setup
|
|
@@ -8941,7 +8941,7 @@ declare const StoreCollisionSetupsApiFp: (configuration?: Configuration) => {
|
|
|
8941
8941
|
[key: string]: CollisionSetup;
|
|
8942
8942
|
}>>;
|
|
8943
8943
|
/**
|
|
8944
|
-
* Stores collision setup. If the collision setup does not exist, it will be created. If the collision setup exists, it will be updated.
|
|
8944
|
+
* Stores collision setup. - If the collision setup does not exist, it will be created. - If the collision setup exists, it will be updated.
|
|
8945
8945
|
* @summary Store Collision Setup
|
|
8946
8946
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
8947
8947
|
* @param {string} setup Identifier of the collision setup
|
|
@@ -8985,7 +8985,7 @@ declare const StoreCollisionSetupsApiFactory: (configuration?: Configuration, ba
|
|
|
8985
8985
|
[key: string]: CollisionSetup;
|
|
8986
8986
|
}>;
|
|
8987
8987
|
/**
|
|
8988
|
-
* Stores collision setup. If the collision setup does not exist, it will be created. If the collision setup exists, it will be updated.
|
|
8988
|
+
* Stores collision setup. - If the collision setup does not exist, it will be created. - If the collision setup exists, it will be updated.
|
|
8989
8989
|
* @summary Store Collision Setup
|
|
8990
8990
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
8991
8991
|
* @param {string} setup Identifier of the collision setup
|
|
@@ -9011,7 +9011,7 @@ declare class StoreCollisionSetupsApi extends BaseAPI {
|
|
|
9011
9011
|
* @throws {RequiredError}
|
|
9012
9012
|
* @memberof StoreCollisionSetupsApi
|
|
9013
9013
|
*/
|
|
9014
|
-
deleteStoredCollisionSetup(cell: string, setup: string, options?: RawAxiosRequestConfig): Promise<
|
|
9014
|
+
deleteStoredCollisionSetup(cell: string, setup: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
9015
9015
|
/**
|
|
9016
9016
|
* Returns the stored collision setup.
|
|
9017
9017
|
* @summary Get Collision Setup
|
|
@@ -9021,7 +9021,7 @@ declare class StoreCollisionSetupsApi extends BaseAPI {
|
|
|
9021
9021
|
* @throws {RequiredError}
|
|
9022
9022
|
* @memberof StoreCollisionSetupsApi
|
|
9023
9023
|
*/
|
|
9024
|
-
getStoredCollisionSetup(cell: string, setup: string, options?: RawAxiosRequestConfig): Promise<
|
|
9024
|
+
getStoredCollisionSetup(cell: string, setup: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<CollisionSetup, any>>;
|
|
9025
9025
|
/**
|
|
9026
9026
|
* Returns a list of stored collision setups.
|
|
9027
9027
|
* @summary List Collision Setups
|
|
@@ -9030,11 +9030,11 @@ declare class StoreCollisionSetupsApi extends BaseAPI {
|
|
|
9030
9030
|
* @throws {RequiredError}
|
|
9031
9031
|
* @memberof StoreCollisionSetupsApi
|
|
9032
9032
|
*/
|
|
9033
|
-
listStoredCollisionSetups(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
9033
|
+
listStoredCollisionSetups(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<{
|
|
9034
9034
|
[key: string]: CollisionSetup;
|
|
9035
9035
|
}, any>>;
|
|
9036
9036
|
/**
|
|
9037
|
-
* Stores collision setup. If the collision setup does not exist, it will be created. If the collision setup exists, it will be updated.
|
|
9037
|
+
* Stores collision setup. - If the collision setup does not exist, it will be created. - If the collision setup exists, it will be updated.
|
|
9038
9038
|
* @summary Store Collision Setup
|
|
9039
9039
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
9040
9040
|
* @param {string} setup Identifier of the collision setup
|
|
@@ -9043,7 +9043,7 @@ declare class StoreCollisionSetupsApi extends BaseAPI {
|
|
|
9043
9043
|
* @throws {RequiredError}
|
|
9044
9044
|
* @memberof StoreCollisionSetupsApi
|
|
9045
9045
|
*/
|
|
9046
|
-
storeCollisionSetup(cell: string, setup: string, collisionSetup: CollisionSetup, options?: RawAxiosRequestConfig): Promise<
|
|
9046
|
+
storeCollisionSetup(cell: string, setup: string, collisionSetup: CollisionSetup, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<CollisionSetup, any>>;
|
|
9047
9047
|
}
|
|
9048
9048
|
/**
|
|
9049
9049
|
* StoreObjectApi - axios parameter creator
|
|
@@ -9068,7 +9068,7 @@ declare const StoreObjectApiAxiosParamCreator: (configuration?: Configuration) =
|
|
|
9068
9068
|
*/
|
|
9069
9069
|
deleteObject: (cell: string, key: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
9070
9070
|
/**
|
|
9071
|
-
*
|
|
9071
|
+
* Returns content and metadata of a stored object.
|
|
9072
9072
|
* @summary Get Object
|
|
9073
9073
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
9074
9074
|
* @param {string} key
|
|
@@ -9077,7 +9077,7 @@ declare const StoreObjectApiAxiosParamCreator: (configuration?: Configuration) =
|
|
|
9077
9077
|
*/
|
|
9078
9078
|
getObject: (cell: string, key: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
9079
9079
|
/**
|
|
9080
|
-
*
|
|
9080
|
+
* Returns metadata. Object content is not returned.
|
|
9081
9081
|
* @summary Get Object Metadata
|
|
9082
9082
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
9083
9083
|
* @param {string} key
|
|
@@ -9094,7 +9094,7 @@ declare const StoreObjectApiAxiosParamCreator: (configuration?: Configuration) =
|
|
|
9094
9094
|
*/
|
|
9095
9095
|
listAllObjectKeys: (cell: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
9096
9096
|
/**
|
|
9097
|
-
* Store any data as an object. Using a key which already contains an object will override the previously stored object. Use [getObjectMetadata](getObjectMetadata) to verify that the key does not contain objects. Optional
|
|
9097
|
+
* Store any data as an object. Using a key which already contains an object will override the previously stored object. Use [getObjectMetadata](getObjectMetadata) to verify that the key does not contain objects. #### Optional Specify metadata as a dictionary with names and values.
|
|
9098
9098
|
* @summary Store Object
|
|
9099
9099
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
9100
9100
|
* @param {string} key
|
|
@@ -9130,7 +9130,7 @@ declare const StoreObjectApiFp: (configuration?: Configuration) => {
|
|
|
9130
9130
|
*/
|
|
9131
9131
|
deleteObject(cell: string, key: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
9132
9132
|
/**
|
|
9133
|
-
*
|
|
9133
|
+
* Returns content and metadata of a stored object.
|
|
9134
9134
|
* @summary Get Object
|
|
9135
9135
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
9136
9136
|
* @param {string} key
|
|
@@ -9139,7 +9139,7 @@ declare const StoreObjectApiFp: (configuration?: Configuration) => {
|
|
|
9139
9139
|
*/
|
|
9140
9140
|
getObject(cell: string, key: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<File>>;
|
|
9141
9141
|
/**
|
|
9142
|
-
*
|
|
9142
|
+
* Returns metadata. Object content is not returned.
|
|
9143
9143
|
* @summary Get Object Metadata
|
|
9144
9144
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
9145
9145
|
* @param {string} key
|
|
@@ -9156,7 +9156,7 @@ declare const StoreObjectApiFp: (configuration?: Configuration) => {
|
|
|
9156
9156
|
*/
|
|
9157
9157
|
listAllObjectKeys(cell: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<string>>>;
|
|
9158
9158
|
/**
|
|
9159
|
-
* Store any data as an object. Using a key which already contains an object will override the previously stored object. Use [getObjectMetadata](getObjectMetadata) to verify that the key does not contain objects. Optional
|
|
9159
|
+
* Store any data as an object. Using a key which already contains an object will override the previously stored object. Use [getObjectMetadata](getObjectMetadata) to verify that the key does not contain objects. #### Optional Specify metadata as a dictionary with names and values.
|
|
9160
9160
|
* @summary Store Object
|
|
9161
9161
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
9162
9162
|
* @param {string} key
|
|
@@ -9192,7 +9192,7 @@ declare const StoreObjectApiFactory: (configuration?: Configuration, basePath?:
|
|
|
9192
9192
|
*/
|
|
9193
9193
|
deleteObject(cell: string, key: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
9194
9194
|
/**
|
|
9195
|
-
*
|
|
9195
|
+
* Returns content and metadata of a stored object.
|
|
9196
9196
|
* @summary Get Object
|
|
9197
9197
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
9198
9198
|
* @param {string} key
|
|
@@ -9201,7 +9201,7 @@ declare const StoreObjectApiFactory: (configuration?: Configuration, basePath?:
|
|
|
9201
9201
|
*/
|
|
9202
9202
|
getObject(cell: string, key: string, options?: RawAxiosRequestConfig): AxiosPromise<File>;
|
|
9203
9203
|
/**
|
|
9204
|
-
*
|
|
9204
|
+
* Returns metadata. Object content is not returned.
|
|
9205
9205
|
* @summary Get Object Metadata
|
|
9206
9206
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
9207
9207
|
* @param {string} key
|
|
@@ -9218,7 +9218,7 @@ declare const StoreObjectApiFactory: (configuration?: Configuration, basePath?:
|
|
|
9218
9218
|
*/
|
|
9219
9219
|
listAllObjectKeys(cell: string, options?: RawAxiosRequestConfig): AxiosPromise<Array<string>>;
|
|
9220
9220
|
/**
|
|
9221
|
-
* Store any data as an object. Using a key which already contains an object will override the previously stored object. Use [getObjectMetadata](getObjectMetadata) to verify that the key does not contain objects. Optional
|
|
9221
|
+
* Store any data as an object. Using a key which already contains an object will override the previously stored object. Use [getObjectMetadata](getObjectMetadata) to verify that the key does not contain objects. #### Optional Specify metadata as a dictionary with names and values.
|
|
9222
9222
|
* @summary Store Object
|
|
9223
9223
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
9224
9224
|
* @param {string} key
|
|
@@ -9246,7 +9246,7 @@ declare class StoreObjectApi extends BaseAPI {
|
|
|
9246
9246
|
* @throws {RequiredError}
|
|
9247
9247
|
* @memberof StoreObjectApi
|
|
9248
9248
|
*/
|
|
9249
|
-
clearAllObjects(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
9249
|
+
clearAllObjects(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
9250
9250
|
/**
|
|
9251
9251
|
* Delete an object <!-- theme: danger --> > This will delete persistently stored data.
|
|
9252
9252
|
* @summary Delete Object
|
|
@@ -9256,9 +9256,9 @@ declare class StoreObjectApi extends BaseAPI {
|
|
|
9256
9256
|
* @throws {RequiredError}
|
|
9257
9257
|
* @memberof StoreObjectApi
|
|
9258
9258
|
*/
|
|
9259
|
-
deleteObject(cell: string, key: string, options?: RawAxiosRequestConfig): Promise<
|
|
9259
|
+
deleteObject(cell: string, key: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
9260
9260
|
/**
|
|
9261
|
-
*
|
|
9261
|
+
* Returns content and metadata of a stored object.
|
|
9262
9262
|
* @summary Get Object
|
|
9263
9263
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
9264
9264
|
* @param {string} key
|
|
@@ -9266,9 +9266,9 @@ declare class StoreObjectApi extends BaseAPI {
|
|
|
9266
9266
|
* @throws {RequiredError}
|
|
9267
9267
|
* @memberof StoreObjectApi
|
|
9268
9268
|
*/
|
|
9269
|
-
getObject(cell: string, key: string, options?: RawAxiosRequestConfig): Promise<
|
|
9269
|
+
getObject(cell: string, key: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<File, any>>;
|
|
9270
9270
|
/**
|
|
9271
|
-
*
|
|
9271
|
+
* Returns metadata. Object content is not returned.
|
|
9272
9272
|
* @summary Get Object Metadata
|
|
9273
9273
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
9274
9274
|
* @param {string} key
|
|
@@ -9276,7 +9276,7 @@ declare class StoreObjectApi extends BaseAPI {
|
|
|
9276
9276
|
* @throws {RequiredError}
|
|
9277
9277
|
* @memberof StoreObjectApi
|
|
9278
9278
|
*/
|
|
9279
|
-
getObjectMetadata(cell: string, key: string, options?: RawAxiosRequestConfig): Promise<
|
|
9279
|
+
getObjectMetadata(cell: string, key: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
9280
9280
|
/**
|
|
9281
9281
|
* List the keys for all objects.
|
|
9282
9282
|
* @summary List all Object Keys
|
|
@@ -9285,9 +9285,9 @@ declare class StoreObjectApi extends BaseAPI {
|
|
|
9285
9285
|
* @throws {RequiredError}
|
|
9286
9286
|
* @memberof StoreObjectApi
|
|
9287
9287
|
*/
|
|
9288
|
-
listAllObjectKeys(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
9288
|
+
listAllObjectKeys(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<string[], any>>;
|
|
9289
9289
|
/**
|
|
9290
|
-
* Store any data as an object. Using a key which already contains an object will override the previously stored object. Use [getObjectMetadata](getObjectMetadata) to verify that the key does not contain objects. Optional
|
|
9290
|
+
* Store any data as an object. Using a key which already contains an object will override the previously stored object. Use [getObjectMetadata](getObjectMetadata) to verify that the key does not contain objects. #### Optional Specify metadata as a dictionary with names and values.
|
|
9291
9291
|
* @summary Store Object
|
|
9292
9292
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
9293
9293
|
* @param {string} key
|
|
@@ -9299,7 +9299,7 @@ declare class StoreObjectApi extends BaseAPI {
|
|
|
9299
9299
|
*/
|
|
9300
9300
|
storeObject(cell: string, key: string, xMetadata?: {
|
|
9301
9301
|
[key: string]: string;
|
|
9302
|
-
}, anyValue?: any, options?: RawAxiosRequestConfig): Promise<
|
|
9302
|
+
}, anyValue?: any, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
9303
9303
|
}
|
|
9304
9304
|
/**
|
|
9305
9305
|
* SystemApi - axios parameter creator
|
|
@@ -9553,7 +9553,7 @@ declare class SystemApi extends BaseAPI {
|
|
|
9553
9553
|
*/
|
|
9554
9554
|
backupConfiguration(resources?: Array<string>, metadata?: {
|
|
9555
9555
|
[key: string]: string;
|
|
9556
|
-
}, options?: RawAxiosRequestConfig): Promise<
|
|
9556
|
+
}, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<File, any>>;
|
|
9557
9557
|
/**
|
|
9558
9558
|
* Check if a more recent Wandelbots NOVA Version is available.
|
|
9559
9559
|
* @summary Check update
|
|
@@ -9562,7 +9562,7 @@ declare class SystemApi extends BaseAPI {
|
|
|
9562
9562
|
* @throws {RequiredError}
|
|
9563
9563
|
* @memberof SystemApi
|
|
9564
9564
|
*/
|
|
9565
|
-
checkNovaVersionUpdate(channel: ReleaseChannel, options?: RawAxiosRequestConfig): Promise<
|
|
9565
|
+
checkNovaVersionUpdate(channel: ReleaseChannel, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<string, any>>;
|
|
9566
9566
|
/**
|
|
9567
9567
|
* Retrieves the status of a configuration backup. The status can only be requested for 5 minutes after backup creation. After 5 minutes, 404 is returned.
|
|
9568
9568
|
* @summary Retrieve Backup Status
|
|
@@ -9571,7 +9571,7 @@ declare class SystemApi extends BaseAPI {
|
|
|
9571
9571
|
* @throws {RequiredError}
|
|
9572
9572
|
* @memberof SystemApi
|
|
9573
9573
|
*/
|
|
9574
|
-
getConfigurationBackupStatus(operationId: string, options?: RawAxiosRequestConfig): Promise<
|
|
9574
|
+
getConfigurationBackupStatus(operationId: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ConfigurationArchiveStatus, any>>;
|
|
9575
9575
|
/**
|
|
9576
9576
|
* Collects information on the current status of all NOVA services and exports them as a .zip file. Includes information on all cells on the instance such as the service logs and virtual robot controllers. From each cell the logs of all services are included, as well as the configuration of each connected controller to start virtual robots.
|
|
9577
9577
|
* @summary Download Diagnosis Package
|
|
@@ -9579,7 +9579,7 @@ declare class SystemApi extends BaseAPI {
|
|
|
9579
9579
|
* @throws {RequiredError}
|
|
9580
9580
|
* @memberof SystemApi
|
|
9581
9581
|
*/
|
|
9582
|
-
getDiagnosePackage(options?: RawAxiosRequestConfig): Promise<
|
|
9582
|
+
getDiagnosePackage(options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<File, any>>;
|
|
9583
9583
|
/**
|
|
9584
9584
|
* Get the status of all system services.
|
|
9585
9585
|
* @summary Wandelbots NOVA status
|
|
@@ -9587,7 +9587,7 @@ declare class SystemApi extends BaseAPI {
|
|
|
9587
9587
|
* @throws {RequiredError}
|
|
9588
9588
|
* @memberof SystemApi
|
|
9589
9589
|
*/
|
|
9590
|
-
getSystemStatus(options?: RawAxiosRequestConfig): Promise<
|
|
9590
|
+
getSystemStatus(options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ServiceStatus[], any>>;
|
|
9591
9591
|
/**
|
|
9592
9592
|
* Get the current Wandelbots NOVA version.
|
|
9593
9593
|
* @summary Wandelbots NOVA Version
|
|
@@ -9595,7 +9595,7 @@ declare class SystemApi extends BaseAPI {
|
|
|
9595
9595
|
* @throws {RequiredError}
|
|
9596
9596
|
* @memberof SystemApi
|
|
9597
9597
|
*/
|
|
9598
|
-
getSystemVersion(options?: RawAxiosRequestConfig): Promise<
|
|
9598
|
+
getSystemVersion(options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<string, any>>;
|
|
9599
9599
|
/**
|
|
9600
9600
|
* Retrieves a list of all available configuration resources for backup purposes.
|
|
9601
9601
|
* @summary List Configuration Resources
|
|
@@ -9603,7 +9603,7 @@ declare class SystemApi extends BaseAPI {
|
|
|
9603
9603
|
* @throws {RequiredError}
|
|
9604
9604
|
* @memberof SystemApi
|
|
9605
9605
|
*/
|
|
9606
|
-
listConfigurationResources(options?: RawAxiosRequestConfig): Promise<
|
|
9606
|
+
listConfigurationResources(options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ConfigurationResource[], any>>;
|
|
9607
9607
|
/**
|
|
9608
9608
|
* Restores a previously backed up configuration.
|
|
9609
9609
|
* @summary Restore Configuration Backup
|
|
@@ -9613,7 +9613,7 @@ declare class SystemApi extends BaseAPI {
|
|
|
9613
9613
|
* @throws {RequiredError}
|
|
9614
9614
|
* @memberof SystemApi
|
|
9615
9615
|
*/
|
|
9616
|
-
restoreConfiguration(resources: Array<string>, body: File, options?: RawAxiosRequestConfig): Promise<
|
|
9616
|
+
restoreConfiguration(resources: Array<string>, body: File, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
9617
9617
|
/**
|
|
9618
9618
|
* Update the Wandelbots NOVA version and all attached services. Sending this API Request will trigger an update of all NOVA services that are part of a cell. Previous cells and cell configurations will remain on the instance. If the update fails, the previous Wandelbots NOVA version is restored.
|
|
9619
9619
|
* @summary Update Wandelbots NOVA version
|
|
@@ -9622,7 +9622,7 @@ declare class SystemApi extends BaseAPI {
|
|
|
9622
9622
|
* @throws {RequiredError}
|
|
9623
9623
|
* @memberof SystemApi
|
|
9624
9624
|
*/
|
|
9625
|
-
updateNovaVersion(updateNovaVersionRequest: UpdateNovaVersionRequest, options?: RawAxiosRequestConfig): Promise<
|
|
9625
|
+
updateNovaVersion(updateNovaVersionRequest: UpdateNovaVersionRequest, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
9626
9626
|
}
|
|
9627
9627
|
/**
|
|
9628
9628
|
* TrajectoryCachingApi - axios parameter creator
|
|
@@ -9630,7 +9630,7 @@ declare class SystemApi extends BaseAPI {
|
|
|
9630
9630
|
*/
|
|
9631
9631
|
declare const TrajectoryCachingApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
9632
9632
|
/**
|
|
9633
|
-
* <!-- theme: info --> > Using the trajectory cache is an optional performance optimization. It is not necessary to use the cache to execute trajectories.
|
|
9633
|
+
* Loads and validates the data of a trajectory into the execution cache, rendering the trajectory executable. <!-- theme: info --> > #### NOTE > > Using the trajectory cache is an optional performance optimization. It is not necessary to use the cache to execute trajectories. The response contains the result of the validation of the trajectory. Validation can lead to three different results: - Fully valid: The whole trajectory can be executed from start to end. The response will contain an unique identifier which is used to move the robot. - Partially valid: Only parts of the trajectory can be executed. The response will contain an unique identifier to move the robot and information about the failure for the part that is not executable. - Invalid: The trajectory can not be executed. The response will tell you the reason of failure. If the trajectory is at least partially valid, the parts of the trajectory that are valid can be executed using the [executeTrajectory](executeTrajectory) endpoint. The workflow is as follows: - Generate a trajectory with [planTrajectory](planTrajectory) or your own motion planner, - Send the trajectory to this endpoint to validate it and get a unique identifier for it, - The unique identifier will appear in the list of available trajectories, see [listTrajectories](listTrajectories) endpoint, if it is at least partially executable. - Execute your trajectory using the [executeTrajectory](executeTrajectory) endpoint.
|
|
9634
9634
|
* @summary Add Trajectory
|
|
9635
9635
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
9636
9636
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
@@ -9649,7 +9649,7 @@ declare const TrajectoryCachingApiAxiosParamCreator: (configuration?: Configurat
|
|
|
9649
9649
|
*/
|
|
9650
9650
|
clearTrajectories: (cell: string, controller: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
9651
9651
|
/**
|
|
9652
|
-
* Delete a previously created trajectory from cache.
|
|
9652
|
+
* Delete a previously created trajectory from cache. Use [listTrajectories](listTrajectories) to list all cached trajectories. Trajectories are removed automatically if the motion group or the corresponding controller is disconnected.
|
|
9653
9653
|
* @summary Delete Trajectory
|
|
9654
9654
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
9655
9655
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
@@ -9659,7 +9659,7 @@ declare const TrajectoryCachingApiAxiosParamCreator: (configuration?: Configurat
|
|
|
9659
9659
|
*/
|
|
9660
9660
|
deleteTrajectory: (cell: string, controller: string, trajectory: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
9661
9661
|
/**
|
|
9662
|
-
* Get a previously created trajectory from cache.
|
|
9662
|
+
* Get a previously created trajectory from cache. Use [listTrajectories](listTrajectories) to list all cached trajectories.
|
|
9663
9663
|
* @summary Get Trajectory
|
|
9664
9664
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
9665
9665
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
@@ -9669,7 +9669,7 @@ declare const TrajectoryCachingApiAxiosParamCreator: (configuration?: Configurat
|
|
|
9669
9669
|
*/
|
|
9670
9670
|
getTrajectory: (cell: string, controller: string, trajectory: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
9671
9671
|
/**
|
|
9672
|
-
* List currently cached trajectories.
|
|
9672
|
+
* List currently cached trajectories. Use [addTrajectory](addTrajectory) to add a new trajectory. Adding trajectories is necessary to execute them. Trajectories are removed if the corresponding motion group or controller disconnects.
|
|
9673
9673
|
* @summary List Trajectories
|
|
9674
9674
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
9675
9675
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
@@ -9684,7 +9684,7 @@ declare const TrajectoryCachingApiAxiosParamCreator: (configuration?: Configurat
|
|
|
9684
9684
|
*/
|
|
9685
9685
|
declare const TrajectoryCachingApiFp: (configuration?: Configuration) => {
|
|
9686
9686
|
/**
|
|
9687
|
-
* <!-- theme: info --> > Using the trajectory cache is an optional performance optimization. It is not necessary to use the cache to execute trajectories.
|
|
9687
|
+
* Loads and validates the data of a trajectory into the execution cache, rendering the trajectory executable. <!-- theme: info --> > #### NOTE > > Using the trajectory cache is an optional performance optimization. It is not necessary to use the cache to execute trajectories. The response contains the result of the validation of the trajectory. Validation can lead to three different results: - Fully valid: The whole trajectory can be executed from start to end. The response will contain an unique identifier which is used to move the robot. - Partially valid: Only parts of the trajectory can be executed. The response will contain an unique identifier to move the robot and information about the failure for the part that is not executable. - Invalid: The trajectory can not be executed. The response will tell you the reason of failure. If the trajectory is at least partially valid, the parts of the trajectory that are valid can be executed using the [executeTrajectory](executeTrajectory) endpoint. The workflow is as follows: - Generate a trajectory with [planTrajectory](planTrajectory) or your own motion planner, - Send the trajectory to this endpoint to validate it and get a unique identifier for it, - The unique identifier will appear in the list of available trajectories, see [listTrajectories](listTrajectories) endpoint, if it is at least partially executable. - Execute your trajectory using the [executeTrajectory](executeTrajectory) endpoint.
|
|
9688
9688
|
* @summary Add Trajectory
|
|
9689
9689
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
9690
9690
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
@@ -9703,7 +9703,7 @@ declare const TrajectoryCachingApiFp: (configuration?: Configuration) => {
|
|
|
9703
9703
|
*/
|
|
9704
9704
|
clearTrajectories(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
9705
9705
|
/**
|
|
9706
|
-
* Delete a previously created trajectory from cache.
|
|
9706
|
+
* Delete a previously created trajectory from cache. Use [listTrajectories](listTrajectories) to list all cached trajectories. Trajectories are removed automatically if the motion group or the corresponding controller is disconnected.
|
|
9707
9707
|
* @summary Delete Trajectory
|
|
9708
9708
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
9709
9709
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
@@ -9713,7 +9713,7 @@ declare const TrajectoryCachingApiFp: (configuration?: Configuration) => {
|
|
|
9713
9713
|
*/
|
|
9714
9714
|
deleteTrajectory(cell: string, controller: string, trajectory: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
9715
9715
|
/**
|
|
9716
|
-
* Get a previously created trajectory from cache.
|
|
9716
|
+
* Get a previously created trajectory from cache. Use [listTrajectories](listTrajectories) to list all cached trajectories.
|
|
9717
9717
|
* @summary Get Trajectory
|
|
9718
9718
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
9719
9719
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
@@ -9723,7 +9723,7 @@ declare const TrajectoryCachingApiFp: (configuration?: Configuration) => {
|
|
|
9723
9723
|
*/
|
|
9724
9724
|
getTrajectory(cell: string, controller: string, trajectory: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetTrajectoryResponse>>;
|
|
9725
9725
|
/**
|
|
9726
|
-
* List currently cached trajectories.
|
|
9726
|
+
* List currently cached trajectories. Use [addTrajectory](addTrajectory) to add a new trajectory. Adding trajectories is necessary to execute them. Trajectories are removed if the corresponding motion group or controller disconnects.
|
|
9727
9727
|
* @summary List Trajectories
|
|
9728
9728
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
9729
9729
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
@@ -9738,7 +9738,7 @@ declare const TrajectoryCachingApiFp: (configuration?: Configuration) => {
|
|
|
9738
9738
|
*/
|
|
9739
9739
|
declare const TrajectoryCachingApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
9740
9740
|
/**
|
|
9741
|
-
* <!-- theme: info --> > Using the trajectory cache is an optional performance optimization. It is not necessary to use the cache to execute trajectories.
|
|
9741
|
+
* Loads and validates the data of a trajectory into the execution cache, rendering the trajectory executable. <!-- theme: info --> > #### NOTE > > Using the trajectory cache is an optional performance optimization. It is not necessary to use the cache to execute trajectories. The response contains the result of the validation of the trajectory. Validation can lead to three different results: - Fully valid: The whole trajectory can be executed from start to end. The response will contain an unique identifier which is used to move the robot. - Partially valid: Only parts of the trajectory can be executed. The response will contain an unique identifier to move the robot and information about the failure for the part that is not executable. - Invalid: The trajectory can not be executed. The response will tell you the reason of failure. If the trajectory is at least partially valid, the parts of the trajectory that are valid can be executed using the [executeTrajectory](executeTrajectory) endpoint. The workflow is as follows: - Generate a trajectory with [planTrajectory](planTrajectory) or your own motion planner, - Send the trajectory to this endpoint to validate it and get a unique identifier for it, - The unique identifier will appear in the list of available trajectories, see [listTrajectories](listTrajectories) endpoint, if it is at least partially executable. - Execute your trajectory using the [executeTrajectory](executeTrajectory) endpoint.
|
|
9742
9742
|
* @summary Add Trajectory
|
|
9743
9743
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
9744
9744
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
@@ -9757,7 +9757,7 @@ declare const TrajectoryCachingApiFactory: (configuration?: Configuration, baseP
|
|
|
9757
9757
|
*/
|
|
9758
9758
|
clearTrajectories(cell: string, controller: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
9759
9759
|
/**
|
|
9760
|
-
* Delete a previously created trajectory from cache.
|
|
9760
|
+
* Delete a previously created trajectory from cache. Use [listTrajectories](listTrajectories) to list all cached trajectories. Trajectories are removed automatically if the motion group or the corresponding controller is disconnected.
|
|
9761
9761
|
* @summary Delete Trajectory
|
|
9762
9762
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
9763
9763
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
@@ -9767,7 +9767,7 @@ declare const TrajectoryCachingApiFactory: (configuration?: Configuration, baseP
|
|
|
9767
9767
|
*/
|
|
9768
9768
|
deleteTrajectory(cell: string, controller: string, trajectory: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
9769
9769
|
/**
|
|
9770
|
-
* Get a previously created trajectory from cache.
|
|
9770
|
+
* Get a previously created trajectory from cache. Use [listTrajectories](listTrajectories) to list all cached trajectories.
|
|
9771
9771
|
* @summary Get Trajectory
|
|
9772
9772
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
9773
9773
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
@@ -9777,7 +9777,7 @@ declare const TrajectoryCachingApiFactory: (configuration?: Configuration, baseP
|
|
|
9777
9777
|
*/
|
|
9778
9778
|
getTrajectory(cell: string, controller: string, trajectory: string, options?: RawAxiosRequestConfig): AxiosPromise<GetTrajectoryResponse>;
|
|
9779
9779
|
/**
|
|
9780
|
-
* List currently cached trajectories.
|
|
9780
|
+
* List currently cached trajectories. Use [addTrajectory](addTrajectory) to add a new trajectory. Adding trajectories is necessary to execute them. Trajectories are removed if the corresponding motion group or controller disconnects.
|
|
9781
9781
|
* @summary List Trajectories
|
|
9782
9782
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
9783
9783
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
@@ -9794,7 +9794,7 @@ declare const TrajectoryCachingApiFactory: (configuration?: Configuration, baseP
|
|
|
9794
9794
|
*/
|
|
9795
9795
|
declare class TrajectoryCachingApi extends BaseAPI {
|
|
9796
9796
|
/**
|
|
9797
|
-
* <!-- theme: info --> > Using the trajectory cache is an optional performance optimization. It is not necessary to use the cache to execute trajectories.
|
|
9797
|
+
* Loads and validates the data of a trajectory into the execution cache, rendering the trajectory executable. <!-- theme: info --> > #### NOTE > > Using the trajectory cache is an optional performance optimization. It is not necessary to use the cache to execute trajectories. The response contains the result of the validation of the trajectory. Validation can lead to three different results: - Fully valid: The whole trajectory can be executed from start to end. The response will contain an unique identifier which is used to move the robot. - Partially valid: Only parts of the trajectory can be executed. The response will contain an unique identifier to move the robot and information about the failure for the part that is not executable. - Invalid: The trajectory can not be executed. The response will tell you the reason of failure. If the trajectory is at least partially valid, the parts of the trajectory that are valid can be executed using the [executeTrajectory](executeTrajectory) endpoint. The workflow is as follows: - Generate a trajectory with [planTrajectory](planTrajectory) or your own motion planner, - Send the trajectory to this endpoint to validate it and get a unique identifier for it, - The unique identifier will appear in the list of available trajectories, see [listTrajectories](listTrajectories) endpoint, if it is at least partially executable. - Execute your trajectory using the [executeTrajectory](executeTrajectory) endpoint.
|
|
9798
9798
|
* @summary Add Trajectory
|
|
9799
9799
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
9800
9800
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
@@ -9803,7 +9803,7 @@ declare class TrajectoryCachingApi extends BaseAPI {
|
|
|
9803
9803
|
* @throws {RequiredError}
|
|
9804
9804
|
* @memberof TrajectoryCachingApi
|
|
9805
9805
|
*/
|
|
9806
|
-
addTrajectory(cell: string, controller: string, addTrajectoryRequest: AddTrajectoryRequest, options?: RawAxiosRequestConfig): Promise<
|
|
9806
|
+
addTrajectory(cell: string, controller: string, addTrajectoryRequest: AddTrajectoryRequest, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<AddTrajectoryResponse, any>>;
|
|
9807
9807
|
/**
|
|
9808
9808
|
* Clear the trajectory cache.
|
|
9809
9809
|
* @summary Clear Trajectories
|
|
@@ -9813,9 +9813,9 @@ declare class TrajectoryCachingApi extends BaseAPI {
|
|
|
9813
9813
|
* @throws {RequiredError}
|
|
9814
9814
|
* @memberof TrajectoryCachingApi
|
|
9815
9815
|
*/
|
|
9816
|
-
clearTrajectories(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<
|
|
9816
|
+
clearTrajectories(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
9817
9817
|
/**
|
|
9818
|
-
* Delete a previously created trajectory from cache.
|
|
9818
|
+
* Delete a previously created trajectory from cache. Use [listTrajectories](listTrajectories) to list all cached trajectories. Trajectories are removed automatically if the motion group or the corresponding controller is disconnected.
|
|
9819
9819
|
* @summary Delete Trajectory
|
|
9820
9820
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
9821
9821
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
@@ -9824,9 +9824,9 @@ declare class TrajectoryCachingApi extends BaseAPI {
|
|
|
9824
9824
|
* @throws {RequiredError}
|
|
9825
9825
|
* @memberof TrajectoryCachingApi
|
|
9826
9826
|
*/
|
|
9827
|
-
deleteTrajectory(cell: string, controller: string, trajectory: string, options?: RawAxiosRequestConfig): Promise<
|
|
9827
|
+
deleteTrajectory(cell: string, controller: string, trajectory: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
9828
9828
|
/**
|
|
9829
|
-
* Get a previously created trajectory from cache.
|
|
9829
|
+
* Get a previously created trajectory from cache. Use [listTrajectories](listTrajectories) to list all cached trajectories.
|
|
9830
9830
|
* @summary Get Trajectory
|
|
9831
9831
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
9832
9832
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
@@ -9835,9 +9835,9 @@ declare class TrajectoryCachingApi extends BaseAPI {
|
|
|
9835
9835
|
* @throws {RequiredError}
|
|
9836
9836
|
* @memberof TrajectoryCachingApi
|
|
9837
9837
|
*/
|
|
9838
|
-
getTrajectory(cell: string, controller: string, trajectory: string, options?: RawAxiosRequestConfig): Promise<
|
|
9838
|
+
getTrajectory(cell: string, controller: string, trajectory: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<GetTrajectoryResponse, any>>;
|
|
9839
9839
|
/**
|
|
9840
|
-
* List currently cached trajectories.
|
|
9840
|
+
* List currently cached trajectories. Use [addTrajectory](addTrajectory) to add a new trajectory. Adding trajectories is necessary to execute them. Trajectories are removed if the corresponding motion group or controller disconnects.
|
|
9841
9841
|
* @summary List Trajectories
|
|
9842
9842
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
9843
9843
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
@@ -9845,7 +9845,7 @@ declare class TrajectoryCachingApi extends BaseAPI {
|
|
|
9845
9845
|
* @throws {RequiredError}
|
|
9846
9846
|
* @memberof TrajectoryCachingApi
|
|
9847
9847
|
*/
|
|
9848
|
-
listTrajectories(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<
|
|
9848
|
+
listTrajectories(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ListTrajectoriesResponse, any>>;
|
|
9849
9849
|
}
|
|
9850
9850
|
/**
|
|
9851
9851
|
* TrajectoryExecutionApi - axios parameter creator
|
|
@@ -9853,7 +9853,7 @@ declare class TrajectoryCachingApi extends BaseAPI {
|
|
|
9853
9853
|
*/
|
|
9854
9854
|
declare const TrajectoryExecutionApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
9855
9855
|
/**
|
|
9856
|
-
* <!-- theme:
|
|
9856
|
+
* <!-- theme: success --> > Websocket endpoint Provides execution control over a previously [planned trajectory](planTrajectory). Enables the caller to attach input/output actions to the trajectory. ### Movement behavior | Virtual controller | Physical controller | |------------------|-------------------| | Desired joint configurations are commanded to each motion group and **applied immediately** | Move to desired **actual joint configuration**, **if possible** | ### Concept of location - The location or path parameter specifies the exact position along a trajectory. - The location is a scalar value that ranges from 0 to `n`, where `n` denotes the number of motion commands, or trajectory segments, e.g., line, p2p, etc. See [planTrajectory](planTrajectory). - Each integer value of the location corresponds to one motion command, e.g., 3.0 to 3.999 could be a line. ### Preconditions - The motion group\'s control mode is not claimed by any other endpoint. - The motion group\'s joint position are at start location specified with `InitializeMovementRequest`. - Use [executeToTrajectory](executeToTrajectory) to move the robot to the start location. ### Requests #### 1. Send `InitializeMovementRequest` to lock the trajectory to this connection The following actions are executed: - Sets robot controller mode to control mode, - Sets start location of the execution Keep in mind that only a single trajectory can be locked to a websocket connection at a time and not unlocked anymore. To execute another trajectory, a new connection must be established. #### 2. Send `StartMovementRequest` to start the movement Sets direction of movement, default is forward. #### **Optional** - To pause, send `PauseMovementRequest` before the movement has reached its end location. - Change the movement\'s velocity with `PlaybackSpeedRequest` after initializing the movement with `InitializeMovementRequest`. ### Responses - `InitializeMovementResponse` is sent to signal the success or failure of the `InitializeMovementRequest`. - Movement responses are streamed after a `StartMovementRequest` successfully started the movement. Movement responses are streamed in a rate that is defined as the multiple of the controller step-rate closest to but not exceeding the rate configured by `InitializeMovementRequest`. - Standstill response is sent once the movement has finished or has come to a standstill due to a pause. - `PauseMovementResponse` is sent to signal the success of the `PauseMovementRequest`. It does not signal the end of the movement. End of movement is signaled by Standstill response. - `PlaybackSpeedResponse` is sent to signal the success of the `PlaybackSpeedRequest`. - `MovementError` with error details is sent in case of an unexpected error, e.g., controller disconnects during movement. ### Tips and Tricks - A movement can be paused and resumed by sending `PauseMovementRequest` and `StartMovementRequest`. - Send `PlaybackSpeedRequest` before `StartMovementRequest` to reduce the velocity of the movement before it starts. - Send `PlaybackSpeedRequest` repeatedly to implement a slider. The velocity of the motion group can be adjusted with each controller step. Therefore, if your app needs a slider-like UI to alter the velocity of a currently running movement, you can send `PlaybackSpeedRequest` with different speed values repeatedly during the movement. - A closed trajectory (end and start joint position are equal) can be repeated by sending `StartMovementRequest` after the movement has finished.
|
|
9857
9857
|
* @summary Execute Trajectory
|
|
9858
9858
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
9859
9859
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
@@ -9869,7 +9869,7 @@ declare const TrajectoryExecutionApiAxiosParamCreator: (configuration?: Configur
|
|
|
9869
9869
|
*/
|
|
9870
9870
|
declare const TrajectoryExecutionApiFp: (configuration?: Configuration) => {
|
|
9871
9871
|
/**
|
|
9872
|
-
* <!-- theme:
|
|
9872
|
+
* <!-- theme: success --> > Websocket endpoint Provides execution control over a previously [planned trajectory](planTrajectory). Enables the caller to attach input/output actions to the trajectory. ### Movement behavior | Virtual controller | Physical controller | |------------------|-------------------| | Desired joint configurations are commanded to each motion group and **applied immediately** | Move to desired **actual joint configuration**, **if possible** | ### Concept of location - The location or path parameter specifies the exact position along a trajectory. - The location is a scalar value that ranges from 0 to `n`, where `n` denotes the number of motion commands, or trajectory segments, e.g., line, p2p, etc. See [planTrajectory](planTrajectory). - Each integer value of the location corresponds to one motion command, e.g., 3.0 to 3.999 could be a line. ### Preconditions - The motion group\'s control mode is not claimed by any other endpoint. - The motion group\'s joint position are at start location specified with `InitializeMovementRequest`. - Use [executeToTrajectory](executeToTrajectory) to move the robot to the start location. ### Requests #### 1. Send `InitializeMovementRequest` to lock the trajectory to this connection The following actions are executed: - Sets robot controller mode to control mode, - Sets start location of the execution Keep in mind that only a single trajectory can be locked to a websocket connection at a time and not unlocked anymore. To execute another trajectory, a new connection must be established. #### 2. Send `StartMovementRequest` to start the movement Sets direction of movement, default is forward. #### **Optional** - To pause, send `PauseMovementRequest` before the movement has reached its end location. - Change the movement\'s velocity with `PlaybackSpeedRequest` after initializing the movement with `InitializeMovementRequest`. ### Responses - `InitializeMovementResponse` is sent to signal the success or failure of the `InitializeMovementRequest`. - Movement responses are streamed after a `StartMovementRequest` successfully started the movement. Movement responses are streamed in a rate that is defined as the multiple of the controller step-rate closest to but not exceeding the rate configured by `InitializeMovementRequest`. - Standstill response is sent once the movement has finished or has come to a standstill due to a pause. - `PauseMovementResponse` is sent to signal the success of the `PauseMovementRequest`. It does not signal the end of the movement. End of movement is signaled by Standstill response. - `PlaybackSpeedResponse` is sent to signal the success of the `PlaybackSpeedRequest`. - `MovementError` with error details is sent in case of an unexpected error, e.g., controller disconnects during movement. ### Tips and Tricks - A movement can be paused and resumed by sending `PauseMovementRequest` and `StartMovementRequest`. - Send `PlaybackSpeedRequest` before `StartMovementRequest` to reduce the velocity of the movement before it starts. - Send `PlaybackSpeedRequest` repeatedly to implement a slider. The velocity of the motion group can be adjusted with each controller step. Therefore, if your app needs a slider-like UI to alter the velocity of a currently running movement, you can send `PlaybackSpeedRequest` with different speed values repeatedly during the movement. - A closed trajectory (end and start joint position are equal) can be repeated by sending `StartMovementRequest` after the movement has finished.
|
|
9873
9873
|
* @summary Execute Trajectory
|
|
9874
9874
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
9875
9875
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
@@ -9885,7 +9885,7 @@ declare const TrajectoryExecutionApiFp: (configuration?: Configuration) => {
|
|
|
9885
9885
|
*/
|
|
9886
9886
|
declare const TrajectoryExecutionApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
9887
9887
|
/**
|
|
9888
|
-
* <!-- theme:
|
|
9888
|
+
* <!-- theme: success --> > Websocket endpoint Provides execution control over a previously [planned trajectory](planTrajectory). Enables the caller to attach input/output actions to the trajectory. ### Movement behavior | Virtual controller | Physical controller | |------------------|-------------------| | Desired joint configurations are commanded to each motion group and **applied immediately** | Move to desired **actual joint configuration**, **if possible** | ### Concept of location - The location or path parameter specifies the exact position along a trajectory. - The location is a scalar value that ranges from 0 to `n`, where `n` denotes the number of motion commands, or trajectory segments, e.g., line, p2p, etc. See [planTrajectory](planTrajectory). - Each integer value of the location corresponds to one motion command, e.g., 3.0 to 3.999 could be a line. ### Preconditions - The motion group\'s control mode is not claimed by any other endpoint. - The motion group\'s joint position are at start location specified with `InitializeMovementRequest`. - Use [executeToTrajectory](executeToTrajectory) to move the robot to the start location. ### Requests #### 1. Send `InitializeMovementRequest` to lock the trajectory to this connection The following actions are executed: - Sets robot controller mode to control mode, - Sets start location of the execution Keep in mind that only a single trajectory can be locked to a websocket connection at a time and not unlocked anymore. To execute another trajectory, a new connection must be established. #### 2. Send `StartMovementRequest` to start the movement Sets direction of movement, default is forward. #### **Optional** - To pause, send `PauseMovementRequest` before the movement has reached its end location. - Change the movement\'s velocity with `PlaybackSpeedRequest` after initializing the movement with `InitializeMovementRequest`. ### Responses - `InitializeMovementResponse` is sent to signal the success or failure of the `InitializeMovementRequest`. - Movement responses are streamed after a `StartMovementRequest` successfully started the movement. Movement responses are streamed in a rate that is defined as the multiple of the controller step-rate closest to but not exceeding the rate configured by `InitializeMovementRequest`. - Standstill response is sent once the movement has finished or has come to a standstill due to a pause. - `PauseMovementResponse` is sent to signal the success of the `PauseMovementRequest`. It does not signal the end of the movement. End of movement is signaled by Standstill response. - `PlaybackSpeedResponse` is sent to signal the success of the `PlaybackSpeedRequest`. - `MovementError` with error details is sent in case of an unexpected error, e.g., controller disconnects during movement. ### Tips and Tricks - A movement can be paused and resumed by sending `PauseMovementRequest` and `StartMovementRequest`. - Send `PlaybackSpeedRequest` before `StartMovementRequest` to reduce the velocity of the movement before it starts. - Send `PlaybackSpeedRequest` repeatedly to implement a slider. The velocity of the motion group can be adjusted with each controller step. Therefore, if your app needs a slider-like UI to alter the velocity of a currently running movement, you can send `PlaybackSpeedRequest` with different speed values repeatedly during the movement. - A closed trajectory (end and start joint position are equal) can be repeated by sending `StartMovementRequest` after the movement has finished.
|
|
9889
9889
|
* @summary Execute Trajectory
|
|
9890
9890
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
9891
9891
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
@@ -9903,7 +9903,7 @@ declare const TrajectoryExecutionApiFactory: (configuration?: Configuration, bas
|
|
|
9903
9903
|
*/
|
|
9904
9904
|
declare class TrajectoryExecutionApi extends BaseAPI {
|
|
9905
9905
|
/**
|
|
9906
|
-
* <!-- theme:
|
|
9906
|
+
* <!-- theme: success --> > Websocket endpoint Provides execution control over a previously [planned trajectory](planTrajectory). Enables the caller to attach input/output actions to the trajectory. ### Movement behavior | Virtual controller | Physical controller | |------------------|-------------------| | Desired joint configurations are commanded to each motion group and **applied immediately** | Move to desired **actual joint configuration**, **if possible** | ### Concept of location - The location or path parameter specifies the exact position along a trajectory. - The location is a scalar value that ranges from 0 to `n`, where `n` denotes the number of motion commands, or trajectory segments, e.g., line, p2p, etc. See [planTrajectory](planTrajectory). - Each integer value of the location corresponds to one motion command, e.g., 3.0 to 3.999 could be a line. ### Preconditions - The motion group\'s control mode is not claimed by any other endpoint. - The motion group\'s joint position are at start location specified with `InitializeMovementRequest`. - Use [executeToTrajectory](executeToTrajectory) to move the robot to the start location. ### Requests #### 1. Send `InitializeMovementRequest` to lock the trajectory to this connection The following actions are executed: - Sets robot controller mode to control mode, - Sets start location of the execution Keep in mind that only a single trajectory can be locked to a websocket connection at a time and not unlocked anymore. To execute another trajectory, a new connection must be established. #### 2. Send `StartMovementRequest` to start the movement Sets direction of movement, default is forward. #### **Optional** - To pause, send `PauseMovementRequest` before the movement has reached its end location. - Change the movement\'s velocity with `PlaybackSpeedRequest` after initializing the movement with `InitializeMovementRequest`. ### Responses - `InitializeMovementResponse` is sent to signal the success or failure of the `InitializeMovementRequest`. - Movement responses are streamed after a `StartMovementRequest` successfully started the movement. Movement responses are streamed in a rate that is defined as the multiple of the controller step-rate closest to but not exceeding the rate configured by `InitializeMovementRequest`. - Standstill response is sent once the movement has finished or has come to a standstill due to a pause. - `PauseMovementResponse` is sent to signal the success of the `PauseMovementRequest`. It does not signal the end of the movement. End of movement is signaled by Standstill response. - `PlaybackSpeedResponse` is sent to signal the success of the `PlaybackSpeedRequest`. - `MovementError` with error details is sent in case of an unexpected error, e.g., controller disconnects during movement. ### Tips and Tricks - A movement can be paused and resumed by sending `PauseMovementRequest` and `StartMovementRequest`. - Send `PlaybackSpeedRequest` before `StartMovementRequest` to reduce the velocity of the movement before it starts. - Send `PlaybackSpeedRequest` repeatedly to implement a slider. The velocity of the motion group can be adjusted with each controller step. Therefore, if your app needs a slider-like UI to alter the velocity of a currently running movement, you can send `PlaybackSpeedRequest` with different speed values repeatedly during the movement. - A closed trajectory (end and start joint position are equal) can be repeated by sending `StartMovementRequest` after the movement has finished.
|
|
9907
9907
|
* @summary Execute Trajectory
|
|
9908
9908
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
9909
9909
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
@@ -9912,7 +9912,7 @@ declare class TrajectoryExecutionApi extends BaseAPI {
|
|
|
9912
9912
|
* @throws {RequiredError}
|
|
9913
9913
|
* @memberof TrajectoryExecutionApi
|
|
9914
9914
|
*/
|
|
9915
|
-
executeTrajectory(cell: string, controller: string, executeTrajectoryRequest: ExecuteTrajectoryRequest, options?: RawAxiosRequestConfig): Promise<
|
|
9915
|
+
executeTrajectory(cell: string, controller: string, executeTrajectoryRequest: ExecuteTrajectoryRequest, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ExecuteTrajectoryResponse, any>>;
|
|
9916
9916
|
}
|
|
9917
9917
|
/**
|
|
9918
9918
|
* TrajectoryPlanningApi - axios parameter creator
|
|
@@ -9929,7 +9929,7 @@ declare const TrajectoryPlanningApiAxiosParamCreator: (configuration?: Configura
|
|
|
9929
9929
|
*/
|
|
9930
9930
|
planCollisionFree: (cell: string, planCollisionFreeRequest?: PlanCollisionFreeRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
9931
9931
|
/**
|
|
9932
|
-
* Plans a new trajectory for a single motion group. Describe the trajectory as a sequence of motion commands that the robots TCP should follow. Use the following workflow to execute a planned trajectory: 1. Plan a trajectory. 2. Optional: Load the planned trajectory into the cache using the [addTrajectory](addTrajectory) endpoint. 3. Execute the (cached) trajectory using the [executeTrajectory](executeTrajectory) endpoint. If the trajectory is not executable, the
|
|
9932
|
+
* Plans a new trajectory for a single motion group. Describe the trajectory as a sequence of motion commands that the robots TCP should follow. Use the following workflow to execute a planned trajectory: 1. Plan a trajectory. 2. Optional: Load the planned trajectory into the cache using the [addTrajectory](addTrajectory) endpoint. 3. Execute the (cached) trajectory using the [executeTrajectory](executeTrajectory) endpoint. If the trajectory is not executable, the response will contain the joint trajectory up until the error, e.g., all samples until a collision occurs. <!-- theme: info --> > #### Exception > > If a CartesianPTP or JointPTP motion command has an invalid target, the response will contain the trajectory up until the start of the invalid PTP motion.
|
|
9933
9933
|
* @summary Plan Trajectory
|
|
9934
9934
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
9935
9935
|
* @param {PlanTrajectoryRequest} [planTrajectoryRequest]
|
|
@@ -9953,7 +9953,7 @@ declare const TrajectoryPlanningApiFp: (configuration?: Configuration) => {
|
|
|
9953
9953
|
*/
|
|
9954
9954
|
planCollisionFree(cell: string, planCollisionFreeRequest?: PlanCollisionFreeRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PlanCollisionFreeResponse>>;
|
|
9955
9955
|
/**
|
|
9956
|
-
* Plans a new trajectory for a single motion group. Describe the trajectory as a sequence of motion commands that the robots TCP should follow. Use the following workflow to execute a planned trajectory: 1. Plan a trajectory. 2. Optional: Load the planned trajectory into the cache using the [addTrajectory](addTrajectory) endpoint. 3. Execute the (cached) trajectory using the [executeTrajectory](executeTrajectory) endpoint. If the trajectory is not executable, the
|
|
9956
|
+
* Plans a new trajectory for a single motion group. Describe the trajectory as a sequence of motion commands that the robots TCP should follow. Use the following workflow to execute a planned trajectory: 1. Plan a trajectory. 2. Optional: Load the planned trajectory into the cache using the [addTrajectory](addTrajectory) endpoint. 3. Execute the (cached) trajectory using the [executeTrajectory](executeTrajectory) endpoint. If the trajectory is not executable, the response will contain the joint trajectory up until the error, e.g., all samples until a collision occurs. <!-- theme: info --> > #### Exception > > If a CartesianPTP or JointPTP motion command has an invalid target, the response will contain the trajectory up until the start of the invalid PTP motion.
|
|
9957
9957
|
* @summary Plan Trajectory
|
|
9958
9958
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
9959
9959
|
* @param {PlanTrajectoryRequest} [planTrajectoryRequest]
|
|
@@ -9977,7 +9977,7 @@ declare const TrajectoryPlanningApiFactory: (configuration?: Configuration, base
|
|
|
9977
9977
|
*/
|
|
9978
9978
|
planCollisionFree(cell: string, planCollisionFreeRequest?: PlanCollisionFreeRequest, options?: RawAxiosRequestConfig): AxiosPromise<PlanCollisionFreeResponse>;
|
|
9979
9979
|
/**
|
|
9980
|
-
* Plans a new trajectory for a single motion group. Describe the trajectory as a sequence of motion commands that the robots TCP should follow. Use the following workflow to execute a planned trajectory: 1. Plan a trajectory. 2. Optional: Load the planned trajectory into the cache using the [addTrajectory](addTrajectory) endpoint. 3. Execute the (cached) trajectory using the [executeTrajectory](executeTrajectory) endpoint. If the trajectory is not executable, the
|
|
9980
|
+
* Plans a new trajectory for a single motion group. Describe the trajectory as a sequence of motion commands that the robots TCP should follow. Use the following workflow to execute a planned trajectory: 1. Plan a trajectory. 2. Optional: Load the planned trajectory into the cache using the [addTrajectory](addTrajectory) endpoint. 3. Execute the (cached) trajectory using the [executeTrajectory](executeTrajectory) endpoint. If the trajectory is not executable, the response will contain the joint trajectory up until the error, e.g., all samples until a collision occurs. <!-- theme: info --> > #### Exception > > If a CartesianPTP or JointPTP motion command has an invalid target, the response will contain the trajectory up until the start of the invalid PTP motion.
|
|
9981
9981
|
* @summary Plan Trajectory
|
|
9982
9982
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
9983
9983
|
* @param {PlanTrajectoryRequest} [planTrajectoryRequest]
|
|
@@ -10002,9 +10002,9 @@ declare class TrajectoryPlanningApi extends BaseAPI {
|
|
|
10002
10002
|
* @throws {RequiredError}
|
|
10003
10003
|
* @memberof TrajectoryPlanningApi
|
|
10004
10004
|
*/
|
|
10005
|
-
planCollisionFree(cell: string, planCollisionFreeRequest?: PlanCollisionFreeRequest, options?: RawAxiosRequestConfig): Promise<
|
|
10005
|
+
planCollisionFree(cell: string, planCollisionFreeRequest?: PlanCollisionFreeRequest, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<PlanCollisionFreeResponse, any>>;
|
|
10006
10006
|
/**
|
|
10007
|
-
* Plans a new trajectory for a single motion group. Describe the trajectory as a sequence of motion commands that the robots TCP should follow. Use the following workflow to execute a planned trajectory: 1. Plan a trajectory. 2. Optional: Load the planned trajectory into the cache using the [addTrajectory](addTrajectory) endpoint. 3. Execute the (cached) trajectory using the [executeTrajectory](executeTrajectory) endpoint. If the trajectory is not executable, the
|
|
10007
|
+
* Plans a new trajectory for a single motion group. Describe the trajectory as a sequence of motion commands that the robots TCP should follow. Use the following workflow to execute a planned trajectory: 1. Plan a trajectory. 2. Optional: Load the planned trajectory into the cache using the [addTrajectory](addTrajectory) endpoint. 3. Execute the (cached) trajectory using the [executeTrajectory](executeTrajectory) endpoint. If the trajectory is not executable, the response will contain the joint trajectory up until the error, e.g., all samples until a collision occurs. <!-- theme: info --> > #### Exception > > If a CartesianPTP or JointPTP motion command has an invalid target, the response will contain the trajectory up until the start of the invalid PTP motion.
|
|
10008
10008
|
* @summary Plan Trajectory
|
|
10009
10009
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
10010
10010
|
* @param {PlanTrajectoryRequest} [planTrajectoryRequest]
|
|
@@ -10012,7 +10012,7 @@ declare class TrajectoryPlanningApi extends BaseAPI {
|
|
|
10012
10012
|
* @throws {RequiredError}
|
|
10013
10013
|
* @memberof TrajectoryPlanningApi
|
|
10014
10014
|
*/
|
|
10015
|
-
planTrajectory(cell: string, planTrajectoryRequest?: PlanTrajectoryRequest, options?: RawAxiosRequestConfig): Promise<
|
|
10015
|
+
planTrajectory(cell: string, planTrajectoryRequest?: PlanTrajectoryRequest, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<PlanTrajectoryResponse, any>>;
|
|
10016
10016
|
}
|
|
10017
10017
|
/**
|
|
10018
10018
|
* VirtualControllerApi - axios parameter creator
|
|
@@ -10020,7 +10020,7 @@ declare class TrajectoryPlanningApi extends BaseAPI {
|
|
|
10020
10020
|
*/
|
|
10021
10021
|
declare const VirtualControllerApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
10022
10022
|
/**
|
|
10023
|
-
* Adds a coordinate system to the robot controller.
|
|
10023
|
+
* Adds a coordinate system to the robot controller. <!-- theme: info --> > #### NOTE > > When a new coordinate system is added, the **virtual robot is restarted** to apply the new configuration. > > During this restart: > - Robot visualization can temporarily disappear or appear outdated in the UI. > - Coordinate system changes are not immediately visible in visualizations. > - All connections to virtual robot are closed and re-established, which introduces a short delay before the system is fully operational again. > > The API call itself does **not wait until the restart and re-synchronization are complete**. > This means that immediately after a successful response, the new coordinate system may not yet be available for visualization or program execution.
|
|
10024
10024
|
* @summary Add Coordinate Systems
|
|
10025
10025
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
10026
10026
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
@@ -10031,7 +10031,7 @@ declare const VirtualControllerApiAxiosParamCreator: (configuration?: Configurat
|
|
|
10031
10031
|
*/
|
|
10032
10032
|
addVirtualControllerCoordinateSystem: (cell: string, controller: string, coordinateSystem: string, coordinateSystemData: CoordinateSystemData, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
10033
10033
|
/**
|
|
10034
|
-
* Adds a new TCP
|
|
10034
|
+
* Adds a new TCP or updates an existing TCP in the motion group. The position and rotation values in the request body are defined within the flange\'s coordinate system. > **NOTE** > > Ensure the TCP\'s position is within the robot\'s reach. Refer to the robot\'s documentation or data sheet for details like joint limits or reach. <!-- theme: info --> > #### NOTE > > When adding or updating a TCP, the **virtual robot is restarted** to apply the new configuration. > > During this restart: > - Robot visualization can temporarily disappear. > - The TCP may not be immediately visible or appear outdated in visualizations. > - All connections to virtual robot are closed and re-established, which introduces a short delay before the TCP is available for operation. > > The API call itself does **not wait until the restart and re-synchronization are complete**. > A successful response indicates that the request was accepted, but the TCP may not yet be visible nor usable.
|
|
10035
10035
|
* @summary Add TCP
|
|
10036
10036
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
10037
10037
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
@@ -10043,7 +10043,7 @@ declare const VirtualControllerApiAxiosParamCreator: (configuration?: Configurat
|
|
|
10043
10043
|
*/
|
|
10044
10044
|
addVirtualControllerTcp: (cell: string, controller: string, motionGroup: string, tcp: string, robotTcpData: RobotTcpData, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
10045
10045
|
/**
|
|
10046
|
-
* Deletes a coordinate system from the virtual controller. This will remove the coordinate system from the list of coordinate systems and also remove all dependent coordinate systems that use the deleted coordinate system as reference.
|
|
10046
|
+
* Deletes a coordinate system from the virtual controller. This will remove the coordinate system from the list of coordinate systems and also remove all dependent coordinate systems that use the deleted coordinate system as reference. <!-- theme: info --> > #### NOTE > > When a new coordinate system is removed, the **virtual robot is restarted** to apply the new configuration. > > During this restart: > - Robot visualization can temporarily disappear or appear outdated in the UI. > - Coordinate system changes are not immediately visible in visualizations. > - All connections to virtual robot are closed and re-established, which introduces a short delay before the system is fully operational again. > > The API call itself does **not wait until the restart and re-synchronization are complete**. > This means that immediately after a successful response, the new coordinate system may not yet be available for visualization or program execution.
|
|
10047
10047
|
* @summary Delete Coordinate System
|
|
10048
10048
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
10049
10049
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
@@ -10054,7 +10054,7 @@ declare const VirtualControllerApiAxiosParamCreator: (configuration?: Configurat
|
|
|
10054
10054
|
*/
|
|
10055
10055
|
deleteVirtualControllerCoordinateSystem: (cell: string, controller: string, coordinateSystem: string, deleteDependent?: boolean, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
10056
10056
|
/**
|
|
10057
|
-
* Removes the TCP (Tool Center Point) from the motion group. An unknown TCP is a valid input and will simply be ignored.
|
|
10057
|
+
* Removes the TCP (Tool Center Point) from the motion group. An unknown TCP is a valid input and will simply be ignored. <!-- theme: info --> > #### NOTE > > When removing a TCP, the **virtual robot is restarted** to apply the new configuration. > > During this restart: > - Robot visualization can temporarily disappear. > - The removal of the TCP may not be immediately visible or appear outdated in visualizations. > - All connections to virtual robot are closed and re-established, which introduces a short delay before the system is fully operational again. > > The API call itself does **not wait until the restart and re-synchronization are complete**. > A successful response indicates that the request was accepted, but the then used TCP may not yet be visible nor usable.
|
|
10058
10058
|
* @summary Remove TCP
|
|
10059
10059
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
10060
10060
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
@@ -10065,7 +10065,7 @@ declare const VirtualControllerApiAxiosParamCreator: (configuration?: Configurat
|
|
|
10065
10065
|
*/
|
|
10066
10066
|
deleteVirtualControllerTcp: (cell: string, controller: string, motionGroup: string, tcp: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
10067
10067
|
/**
|
|
10068
|
-
* Requests the Emergency Stop state of the virtual robot controller. Use [getCurrentMotionGroupState](getCurrentMotionGroupState) to get the Emergency Stop state regardless of the controller type.
|
|
10068
|
+
* Requests the Emergency Stop state of the virtual robot controller. Use [getCurrentMotionGroupState](getCurrentMotionGroupState) to get the Emergency Stop state with `safety_state` regardless of the controller type. > **NOTE** > > The Emergency Stop state can only be changed when using virtual robot controllers.
|
|
10069
10069
|
* @summary Get Emergency Stop State
|
|
10070
10070
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
10071
10071
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
@@ -10093,7 +10093,7 @@ declare const VirtualControllerApiAxiosParamCreator: (configuration?: Configurat
|
|
|
10093
10093
|
*/
|
|
10094
10094
|
getMotionGroups: (cell: string, controller: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
10095
10095
|
/**
|
|
10096
|
-
* Requests the
|
|
10096
|
+
* Requests the operation mode of the virtual robot controller. To get the operation mode regardless of the controller type, use [getCurrentMotionGroupState](getCurrentMotionGroupState). > **NOTE** > > The operation mode can only be changed via API when using virtual robot controllers.
|
|
10097
10097
|
* @summary Get Operation Mode
|
|
10098
10098
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
10099
10099
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
@@ -10102,7 +10102,7 @@ declare const VirtualControllerApiAxiosParamCreator: (configuration?: Configurat
|
|
|
10102
10102
|
*/
|
|
10103
10103
|
getOperationMode: (cell: string, controller: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
10104
10104
|
/**
|
|
10105
|
-
* Gets motion group mounting.
|
|
10105
|
+
* Gets motion group mounting. The motion group is based on the origin of the returned coordinate system.
|
|
10106
10106
|
* @summary Get Mounting
|
|
10107
10107
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
10108
10108
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
@@ -10121,7 +10121,7 @@ declare const VirtualControllerApiAxiosParamCreator: (configuration?: Configurat
|
|
|
10121
10121
|
*/
|
|
10122
10122
|
listVirtualControllerCoordinateSystems: (cell: string, controller: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
10123
10123
|
/**
|
|
10124
|
-
* Lists TCPs of the motion group.
|
|
10124
|
+
* Lists TCPs of the motion group. An empty TCP list is valid, e.g., for external axes.
|
|
10125
10125
|
* @summary List TCPs
|
|
10126
10126
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
10127
10127
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
@@ -10131,7 +10131,7 @@ declare const VirtualControllerApiAxiosParamCreator: (configuration?: Configurat
|
|
|
10131
10131
|
*/
|
|
10132
10132
|
listVirtualControllerTcps: (cell: string, controller: string, motionGroup: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
10133
10133
|
/**
|
|
10134
|
-
* Activates or releases the Emergency Stop on the virtual robot controller. Activating the Emergency Stop stops the execution of all motions. The stop is executed on physical controllers immediately not gracefully and not on paths.
|
|
10134
|
+
* Activates or releases the Emergency Stop on the virtual robot controller. Activating the Emergency Stop stops the execution of all motions. The stop is executed on physical controllers immediately not gracefully and not on paths. Due to restricted physical behavior of the virtual robot controller, the Emergency Stop is executed on paths. To return to normal operation the Emergency Stop needs to be released. Use [getCurrentMotionGroupState](getCurrentMotionGroupState) to get the Emergency Stop state with `safety_state` regardless of the controller type. > **NOTE** > > The Emergency Stop state can only be changed via API when using virtual robot controllers.
|
|
10135
10135
|
* @summary Push or Release Emergency Stop
|
|
10136
10136
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
10137
10137
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
@@ -10141,7 +10141,7 @@ declare const VirtualControllerApiAxiosParamCreator: (configuration?: Configurat
|
|
|
10141
10141
|
*/
|
|
10142
10142
|
setEmergencyStop: (cell: string, controller: string, active?: boolean, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
10143
10143
|
/**
|
|
10144
|
-
* Sets the values for joint position, joint velocity or joint acceleration of a motion group state.
|
|
10144
|
+
* Sets the values for joint position, joint velocity or joint acceleration of a motion group state. The values are immediately applied to the joints of the motion group. <!-- theme: info --> > #### NOTE > > Only use the endpoint when the motion group is in monitor mode. If the motion group is controlled, currently jogging or planning motions, > the values are overridden by the controller or an error may occur.
|
|
10145
10145
|
* @summary Set Motion Group State
|
|
10146
10146
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
10147
10147
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
@@ -10152,7 +10152,7 @@ declare const VirtualControllerApiAxiosParamCreator: (configuration?: Configurat
|
|
|
10152
10152
|
*/
|
|
10153
10153
|
setMotionGroupState: (cell: string, controller: string, motionGroup: string, motionGroupJoints: MotionGroupJoints, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
10154
10154
|
/**
|
|
10155
|
-
* Changes the
|
|
10155
|
+
* Changes the operation mode of the virtual robot controller to the specified value. To get the operation mode regardless of the controller type, use [getCurrentMotionGroupState](getCurrentMotionGroupState). > **NOTE** > > The operation mode can only be changed via API when using virtual robot controllers.
|
|
10156
10156
|
* @summary Set Operation Mode
|
|
10157
10157
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
10158
10158
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
@@ -10162,7 +10162,7 @@ declare const VirtualControllerApiAxiosParamCreator: (configuration?: Configurat
|
|
|
10162
10162
|
*/
|
|
10163
10163
|
setOperationMode: (cell: string, controller: string, mode: OperationMode, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
10164
10164
|
/**
|
|
10165
|
-
* Sets the motion group mounting by specifying a coordinate system.
|
|
10165
|
+
* Sets the motion group mounting by specifying a coordinate system. The motion group will be based on the coordinate system\'s origin. The coordinate system defines a transformation offset, which consists of: - A unique identifier - A user-facing name - An offset in another coordinate system, referenced by the unique identifier of the reference coordinate system. <!-- theme: info --> > #### Changing the mounting configuration is considered a setup change > > When the mounting is set to a new coordinate system, the **virtual robot is restarted** to apply the new configuration. > > During this restart: > - Robot visualization can temporarily disappear or not reflect the new mounting immediately. > - Motion group state and coordinate system alignment may not be immediately visible in visualizations. > - All connections to virtual robot are closed and re-established, which introduces a short delay before the system is fully operational again. > > The API call itself does **not wait until the restart and re-synchronization are complete**. > A successful response indicates that the request was accepted, but the updated mounting may not yet be visible.
|
|
10166
10166
|
* @summary Set Mounting
|
|
10167
10167
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
10168
10168
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
@@ -10179,7 +10179,7 @@ declare const VirtualControllerApiAxiosParamCreator: (configuration?: Configurat
|
|
|
10179
10179
|
*/
|
|
10180
10180
|
declare const VirtualControllerApiFp: (configuration?: Configuration) => {
|
|
10181
10181
|
/**
|
|
10182
|
-
* Adds a coordinate system to the robot controller.
|
|
10182
|
+
* Adds a coordinate system to the robot controller. <!-- theme: info --> > #### NOTE > > When a new coordinate system is added, the **virtual robot is restarted** to apply the new configuration. > > During this restart: > - Robot visualization can temporarily disappear or appear outdated in the UI. > - Coordinate system changes are not immediately visible in visualizations. > - All connections to virtual robot are closed and re-established, which introduces a short delay before the system is fully operational again. > > The API call itself does **not wait until the restart and re-synchronization are complete**. > This means that immediately after a successful response, the new coordinate system may not yet be available for visualization or program execution.
|
|
10183
10183
|
* @summary Add Coordinate Systems
|
|
10184
10184
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
10185
10185
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
@@ -10190,7 +10190,7 @@ declare const VirtualControllerApiFp: (configuration?: Configuration) => {
|
|
|
10190
10190
|
*/
|
|
10191
10191
|
addVirtualControllerCoordinateSystem(cell: string, controller: string, coordinateSystem: string, coordinateSystemData: CoordinateSystemData, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
10192
10192
|
/**
|
|
10193
|
-
* Adds a new TCP
|
|
10193
|
+
* Adds a new TCP or updates an existing TCP in the motion group. The position and rotation values in the request body are defined within the flange\'s coordinate system. > **NOTE** > > Ensure the TCP\'s position is within the robot\'s reach. Refer to the robot\'s documentation or data sheet for details like joint limits or reach. <!-- theme: info --> > #### NOTE > > When adding or updating a TCP, the **virtual robot is restarted** to apply the new configuration. > > During this restart: > - Robot visualization can temporarily disappear. > - The TCP may not be immediately visible or appear outdated in visualizations. > - All connections to virtual robot are closed and re-established, which introduces a short delay before the TCP is available for operation. > > The API call itself does **not wait until the restart and re-synchronization are complete**. > A successful response indicates that the request was accepted, but the TCP may not yet be visible nor usable.
|
|
10194
10194
|
* @summary Add TCP
|
|
10195
10195
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
10196
10196
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
@@ -10202,7 +10202,7 @@ declare const VirtualControllerApiFp: (configuration?: Configuration) => {
|
|
|
10202
10202
|
*/
|
|
10203
10203
|
addVirtualControllerTcp(cell: string, controller: string, motionGroup: string, tcp: string, robotTcpData: RobotTcpData, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
10204
10204
|
/**
|
|
10205
|
-
* Deletes a coordinate system from the virtual controller. This will remove the coordinate system from the list of coordinate systems and also remove all dependent coordinate systems that use the deleted coordinate system as reference.
|
|
10205
|
+
* Deletes a coordinate system from the virtual controller. This will remove the coordinate system from the list of coordinate systems and also remove all dependent coordinate systems that use the deleted coordinate system as reference. <!-- theme: info --> > #### NOTE > > When a new coordinate system is removed, the **virtual robot is restarted** to apply the new configuration. > > During this restart: > - Robot visualization can temporarily disappear or appear outdated in the UI. > - Coordinate system changes are not immediately visible in visualizations. > - All connections to virtual robot are closed and re-established, which introduces a short delay before the system is fully operational again. > > The API call itself does **not wait until the restart and re-synchronization are complete**. > This means that immediately after a successful response, the new coordinate system may not yet be available for visualization or program execution.
|
|
10206
10206
|
* @summary Delete Coordinate System
|
|
10207
10207
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
10208
10208
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
@@ -10213,7 +10213,7 @@ declare const VirtualControllerApiFp: (configuration?: Configuration) => {
|
|
|
10213
10213
|
*/
|
|
10214
10214
|
deleteVirtualControllerCoordinateSystem(cell: string, controller: string, coordinateSystem: string, deleteDependent?: boolean, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
10215
10215
|
/**
|
|
10216
|
-
* Removes the TCP (Tool Center Point) from the motion group. An unknown TCP is a valid input and will simply be ignored.
|
|
10216
|
+
* Removes the TCP (Tool Center Point) from the motion group. An unknown TCP is a valid input and will simply be ignored. <!-- theme: info --> > #### NOTE > > When removing a TCP, the **virtual robot is restarted** to apply the new configuration. > > During this restart: > - Robot visualization can temporarily disappear. > - The removal of the TCP may not be immediately visible or appear outdated in visualizations. > - All connections to virtual robot are closed and re-established, which introduces a short delay before the system is fully operational again. > > The API call itself does **not wait until the restart and re-synchronization are complete**. > A successful response indicates that the request was accepted, but the then used TCP may not yet be visible nor usable.
|
|
10217
10217
|
* @summary Remove TCP
|
|
10218
10218
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
10219
10219
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
@@ -10224,7 +10224,7 @@ declare const VirtualControllerApiFp: (configuration?: Configuration) => {
|
|
|
10224
10224
|
*/
|
|
10225
10225
|
deleteVirtualControllerTcp(cell: string, controller: string, motionGroup: string, tcp: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
10226
10226
|
/**
|
|
10227
|
-
* Requests the Emergency Stop state of the virtual robot controller. Use [getCurrentMotionGroupState](getCurrentMotionGroupState) to get the Emergency Stop state regardless of the controller type.
|
|
10227
|
+
* Requests the Emergency Stop state of the virtual robot controller. Use [getCurrentMotionGroupState](getCurrentMotionGroupState) to get the Emergency Stop state with `safety_state` regardless of the controller type. > **NOTE** > > The Emergency Stop state can only be changed when using virtual robot controllers.
|
|
10228
10228
|
* @summary Get Emergency Stop State
|
|
10229
10229
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
10230
10230
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
@@ -10252,7 +10252,7 @@ declare const VirtualControllerApiFp: (configuration?: Configuration) => {
|
|
|
10252
10252
|
*/
|
|
10253
10253
|
getMotionGroups(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<MotionGroupInfo>>>;
|
|
10254
10254
|
/**
|
|
10255
|
-
* Requests the
|
|
10255
|
+
* Requests the operation mode of the virtual robot controller. To get the operation mode regardless of the controller type, use [getCurrentMotionGroupState](getCurrentMotionGroupState). > **NOTE** > > The operation mode can only be changed via API when using virtual robot controllers.
|
|
10256
10256
|
* @summary Get Operation Mode
|
|
10257
10257
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
10258
10258
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
@@ -10261,7 +10261,7 @@ declare const VirtualControllerApiFp: (configuration?: Configuration) => {
|
|
|
10261
10261
|
*/
|
|
10262
10262
|
getOperationMode(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<OpMode>>;
|
|
10263
10263
|
/**
|
|
10264
|
-
* Gets motion group mounting.
|
|
10264
|
+
* Gets motion group mounting. The motion group is based on the origin of the returned coordinate system.
|
|
10265
10265
|
* @summary Get Mounting
|
|
10266
10266
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
10267
10267
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
@@ -10280,7 +10280,7 @@ declare const VirtualControllerApiFp: (configuration?: Configuration) => {
|
|
|
10280
10280
|
*/
|
|
10281
10281
|
listVirtualControllerCoordinateSystems(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<CoordinateSystem>>>;
|
|
10282
10282
|
/**
|
|
10283
|
-
* Lists TCPs of the motion group.
|
|
10283
|
+
* Lists TCPs of the motion group. An empty TCP list is valid, e.g., for external axes.
|
|
10284
10284
|
* @summary List TCPs
|
|
10285
10285
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
10286
10286
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
@@ -10290,7 +10290,7 @@ declare const VirtualControllerApiFp: (configuration?: Configuration) => {
|
|
|
10290
10290
|
*/
|
|
10291
10291
|
listVirtualControllerTcps(cell: string, controller: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<RobotTcp>>>;
|
|
10292
10292
|
/**
|
|
10293
|
-
* Activates or releases the Emergency Stop on the virtual robot controller. Activating the Emergency Stop stops the execution of all motions. The stop is executed on physical controllers immediately not gracefully and not on paths.
|
|
10293
|
+
* Activates or releases the Emergency Stop on the virtual robot controller. Activating the Emergency Stop stops the execution of all motions. The stop is executed on physical controllers immediately not gracefully and not on paths. Due to restricted physical behavior of the virtual robot controller, the Emergency Stop is executed on paths. To return to normal operation the Emergency Stop needs to be released. Use [getCurrentMotionGroupState](getCurrentMotionGroupState) to get the Emergency Stop state with `safety_state` regardless of the controller type. > **NOTE** > > The Emergency Stop state can only be changed via API when using virtual robot controllers.
|
|
10294
10294
|
* @summary Push or Release Emergency Stop
|
|
10295
10295
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
10296
10296
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
@@ -10300,7 +10300,7 @@ declare const VirtualControllerApiFp: (configuration?: Configuration) => {
|
|
|
10300
10300
|
*/
|
|
10301
10301
|
setEmergencyStop(cell: string, controller: string, active?: boolean, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
10302
10302
|
/**
|
|
10303
|
-
* Sets the values for joint position, joint velocity or joint acceleration of a motion group state.
|
|
10303
|
+
* Sets the values for joint position, joint velocity or joint acceleration of a motion group state. The values are immediately applied to the joints of the motion group. <!-- theme: info --> > #### NOTE > > Only use the endpoint when the motion group is in monitor mode. If the motion group is controlled, currently jogging or planning motions, > the values are overridden by the controller or an error may occur.
|
|
10304
10304
|
* @summary Set Motion Group State
|
|
10305
10305
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
10306
10306
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
@@ -10311,7 +10311,7 @@ declare const VirtualControllerApiFp: (configuration?: Configuration) => {
|
|
|
10311
10311
|
*/
|
|
10312
10312
|
setMotionGroupState(cell: string, controller: string, motionGroup: string, motionGroupJoints: MotionGroupJoints, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
10313
10313
|
/**
|
|
10314
|
-
* Changes the
|
|
10314
|
+
* Changes the operation mode of the virtual robot controller to the specified value. To get the operation mode regardless of the controller type, use [getCurrentMotionGroupState](getCurrentMotionGroupState). > **NOTE** > > The operation mode can only be changed via API when using virtual robot controllers.
|
|
10315
10315
|
* @summary Set Operation Mode
|
|
10316
10316
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
10317
10317
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
@@ -10321,7 +10321,7 @@ declare const VirtualControllerApiFp: (configuration?: Configuration) => {
|
|
|
10321
10321
|
*/
|
|
10322
10322
|
setOperationMode(cell: string, controller: string, mode: OperationMode, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
10323
10323
|
/**
|
|
10324
|
-
* Sets the motion group mounting by specifying a coordinate system.
|
|
10324
|
+
* Sets the motion group mounting by specifying a coordinate system. The motion group will be based on the coordinate system\'s origin. The coordinate system defines a transformation offset, which consists of: - A unique identifier - A user-facing name - An offset in another coordinate system, referenced by the unique identifier of the reference coordinate system. <!-- theme: info --> > #### Changing the mounting configuration is considered a setup change > > When the mounting is set to a new coordinate system, the **virtual robot is restarted** to apply the new configuration. > > During this restart: > - Robot visualization can temporarily disappear or not reflect the new mounting immediately. > - Motion group state and coordinate system alignment may not be immediately visible in visualizations. > - All connections to virtual robot are closed and re-established, which introduces a short delay before the system is fully operational again. > > The API call itself does **not wait until the restart and re-synchronization are complete**. > A successful response indicates that the request was accepted, but the updated mounting may not yet be visible.
|
|
10325
10325
|
* @summary Set Mounting
|
|
10326
10326
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
10327
10327
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
@@ -10338,7 +10338,7 @@ declare const VirtualControllerApiFp: (configuration?: Configuration) => {
|
|
|
10338
10338
|
*/
|
|
10339
10339
|
declare const VirtualControllerApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
10340
10340
|
/**
|
|
10341
|
-
* Adds a coordinate system to the robot controller.
|
|
10341
|
+
* Adds a coordinate system to the robot controller. <!-- theme: info --> > #### NOTE > > When a new coordinate system is added, the **virtual robot is restarted** to apply the new configuration. > > During this restart: > - Robot visualization can temporarily disappear or appear outdated in the UI. > - Coordinate system changes are not immediately visible in visualizations. > - All connections to virtual robot are closed and re-established, which introduces a short delay before the system is fully operational again. > > The API call itself does **not wait until the restart and re-synchronization are complete**. > This means that immediately after a successful response, the new coordinate system may not yet be available for visualization or program execution.
|
|
10342
10342
|
* @summary Add Coordinate Systems
|
|
10343
10343
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
10344
10344
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
@@ -10349,7 +10349,7 @@ declare const VirtualControllerApiFactory: (configuration?: Configuration, baseP
|
|
|
10349
10349
|
*/
|
|
10350
10350
|
addVirtualControllerCoordinateSystem(cell: string, controller: string, coordinateSystem: string, coordinateSystemData: CoordinateSystemData, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
10351
10351
|
/**
|
|
10352
|
-
* Adds a new TCP
|
|
10352
|
+
* Adds a new TCP or updates an existing TCP in the motion group. The position and rotation values in the request body are defined within the flange\'s coordinate system. > **NOTE** > > Ensure the TCP\'s position is within the robot\'s reach. Refer to the robot\'s documentation or data sheet for details like joint limits or reach. <!-- theme: info --> > #### NOTE > > When adding or updating a TCP, the **virtual robot is restarted** to apply the new configuration. > > During this restart: > - Robot visualization can temporarily disappear. > - The TCP may not be immediately visible or appear outdated in visualizations. > - All connections to virtual robot are closed and re-established, which introduces a short delay before the TCP is available for operation. > > The API call itself does **not wait until the restart and re-synchronization are complete**. > A successful response indicates that the request was accepted, but the TCP may not yet be visible nor usable.
|
|
10353
10353
|
* @summary Add TCP
|
|
10354
10354
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
10355
10355
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
@@ -10361,7 +10361,7 @@ declare const VirtualControllerApiFactory: (configuration?: Configuration, baseP
|
|
|
10361
10361
|
*/
|
|
10362
10362
|
addVirtualControllerTcp(cell: string, controller: string, motionGroup: string, tcp: string, robotTcpData: RobotTcpData, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
10363
10363
|
/**
|
|
10364
|
-
* Deletes a coordinate system from the virtual controller. This will remove the coordinate system from the list of coordinate systems and also remove all dependent coordinate systems that use the deleted coordinate system as reference.
|
|
10364
|
+
* Deletes a coordinate system from the virtual controller. This will remove the coordinate system from the list of coordinate systems and also remove all dependent coordinate systems that use the deleted coordinate system as reference. <!-- theme: info --> > #### NOTE > > When a new coordinate system is removed, the **virtual robot is restarted** to apply the new configuration. > > During this restart: > - Robot visualization can temporarily disappear or appear outdated in the UI. > - Coordinate system changes are not immediately visible in visualizations. > - All connections to virtual robot are closed and re-established, which introduces a short delay before the system is fully operational again. > > The API call itself does **not wait until the restart and re-synchronization are complete**. > This means that immediately after a successful response, the new coordinate system may not yet be available for visualization or program execution.
|
|
10365
10365
|
* @summary Delete Coordinate System
|
|
10366
10366
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
10367
10367
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
@@ -10372,7 +10372,7 @@ declare const VirtualControllerApiFactory: (configuration?: Configuration, baseP
|
|
|
10372
10372
|
*/
|
|
10373
10373
|
deleteVirtualControllerCoordinateSystem(cell: string, controller: string, coordinateSystem: string, deleteDependent?: boolean, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
10374
10374
|
/**
|
|
10375
|
-
* Removes the TCP (Tool Center Point) from the motion group. An unknown TCP is a valid input and will simply be ignored.
|
|
10375
|
+
* Removes the TCP (Tool Center Point) from the motion group. An unknown TCP is a valid input and will simply be ignored. <!-- theme: info --> > #### NOTE > > When removing a TCP, the **virtual robot is restarted** to apply the new configuration. > > During this restart: > - Robot visualization can temporarily disappear. > - The removal of the TCP may not be immediately visible or appear outdated in visualizations. > - All connections to virtual robot are closed and re-established, which introduces a short delay before the system is fully operational again. > > The API call itself does **not wait until the restart and re-synchronization are complete**. > A successful response indicates that the request was accepted, but the then used TCP may not yet be visible nor usable.
|
|
10376
10376
|
* @summary Remove TCP
|
|
10377
10377
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
10378
10378
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
@@ -10383,7 +10383,7 @@ declare const VirtualControllerApiFactory: (configuration?: Configuration, baseP
|
|
|
10383
10383
|
*/
|
|
10384
10384
|
deleteVirtualControllerTcp(cell: string, controller: string, motionGroup: string, tcp: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
10385
10385
|
/**
|
|
10386
|
-
* Requests the Emergency Stop state of the virtual robot controller. Use [getCurrentMotionGroupState](getCurrentMotionGroupState) to get the Emergency Stop state regardless of the controller type.
|
|
10386
|
+
* Requests the Emergency Stop state of the virtual robot controller. Use [getCurrentMotionGroupState](getCurrentMotionGroupState) to get the Emergency Stop state with `safety_state` regardless of the controller type. > **NOTE** > > The Emergency Stop state can only be changed when using virtual robot controllers.
|
|
10387
10387
|
* @summary Get Emergency Stop State
|
|
10388
10388
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
10389
10389
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
@@ -10411,7 +10411,7 @@ declare const VirtualControllerApiFactory: (configuration?: Configuration, baseP
|
|
|
10411
10411
|
*/
|
|
10412
10412
|
getMotionGroups(cell: string, controller: string, options?: RawAxiosRequestConfig): AxiosPromise<Array<MotionGroupInfo>>;
|
|
10413
10413
|
/**
|
|
10414
|
-
* Requests the
|
|
10414
|
+
* Requests the operation mode of the virtual robot controller. To get the operation mode regardless of the controller type, use [getCurrentMotionGroupState](getCurrentMotionGroupState). > **NOTE** > > The operation mode can only be changed via API when using virtual robot controllers.
|
|
10415
10415
|
* @summary Get Operation Mode
|
|
10416
10416
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
10417
10417
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
@@ -10420,7 +10420,7 @@ declare const VirtualControllerApiFactory: (configuration?: Configuration, baseP
|
|
|
10420
10420
|
*/
|
|
10421
10421
|
getOperationMode(cell: string, controller: string, options?: RawAxiosRequestConfig): AxiosPromise<OpMode>;
|
|
10422
10422
|
/**
|
|
10423
|
-
* Gets motion group mounting.
|
|
10423
|
+
* Gets motion group mounting. The motion group is based on the origin of the returned coordinate system.
|
|
10424
10424
|
* @summary Get Mounting
|
|
10425
10425
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
10426
10426
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
@@ -10439,7 +10439,7 @@ declare const VirtualControllerApiFactory: (configuration?: Configuration, baseP
|
|
|
10439
10439
|
*/
|
|
10440
10440
|
listVirtualControllerCoordinateSystems(cell: string, controller: string, options?: RawAxiosRequestConfig): AxiosPromise<Array<CoordinateSystem>>;
|
|
10441
10441
|
/**
|
|
10442
|
-
* Lists TCPs of the motion group.
|
|
10442
|
+
* Lists TCPs of the motion group. An empty TCP list is valid, e.g., for external axes.
|
|
10443
10443
|
* @summary List TCPs
|
|
10444
10444
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
10445
10445
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
@@ -10449,7 +10449,7 @@ declare const VirtualControllerApiFactory: (configuration?: Configuration, baseP
|
|
|
10449
10449
|
*/
|
|
10450
10450
|
listVirtualControllerTcps(cell: string, controller: string, motionGroup: string, options?: RawAxiosRequestConfig): AxiosPromise<Array<RobotTcp>>;
|
|
10451
10451
|
/**
|
|
10452
|
-
* Activates or releases the Emergency Stop on the virtual robot controller. Activating the Emergency Stop stops the execution of all motions. The stop is executed on physical controllers immediately not gracefully and not on paths.
|
|
10452
|
+
* Activates or releases the Emergency Stop on the virtual robot controller. Activating the Emergency Stop stops the execution of all motions. The stop is executed on physical controllers immediately not gracefully and not on paths. Due to restricted physical behavior of the virtual robot controller, the Emergency Stop is executed on paths. To return to normal operation the Emergency Stop needs to be released. Use [getCurrentMotionGroupState](getCurrentMotionGroupState) to get the Emergency Stop state with `safety_state` regardless of the controller type. > **NOTE** > > The Emergency Stop state can only be changed via API when using virtual robot controllers.
|
|
10453
10453
|
* @summary Push or Release Emergency Stop
|
|
10454
10454
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
10455
10455
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
@@ -10459,7 +10459,7 @@ declare const VirtualControllerApiFactory: (configuration?: Configuration, baseP
|
|
|
10459
10459
|
*/
|
|
10460
10460
|
setEmergencyStop(cell: string, controller: string, active?: boolean, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
10461
10461
|
/**
|
|
10462
|
-
* Sets the values for joint position, joint velocity or joint acceleration of a motion group state.
|
|
10462
|
+
* Sets the values for joint position, joint velocity or joint acceleration of a motion group state. The values are immediately applied to the joints of the motion group. <!-- theme: info --> > #### NOTE > > Only use the endpoint when the motion group is in monitor mode. If the motion group is controlled, currently jogging or planning motions, > the values are overridden by the controller or an error may occur.
|
|
10463
10463
|
* @summary Set Motion Group State
|
|
10464
10464
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
10465
10465
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
@@ -10470,7 +10470,7 @@ declare const VirtualControllerApiFactory: (configuration?: Configuration, baseP
|
|
|
10470
10470
|
*/
|
|
10471
10471
|
setMotionGroupState(cell: string, controller: string, motionGroup: string, motionGroupJoints: MotionGroupJoints, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
10472
10472
|
/**
|
|
10473
|
-
* Changes the
|
|
10473
|
+
* Changes the operation mode of the virtual robot controller to the specified value. To get the operation mode regardless of the controller type, use [getCurrentMotionGroupState](getCurrentMotionGroupState). > **NOTE** > > The operation mode can only be changed via API when using virtual robot controllers.
|
|
10474
10474
|
* @summary Set Operation Mode
|
|
10475
10475
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
10476
10476
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
@@ -10480,7 +10480,7 @@ declare const VirtualControllerApiFactory: (configuration?: Configuration, baseP
|
|
|
10480
10480
|
*/
|
|
10481
10481
|
setOperationMode(cell: string, controller: string, mode: OperationMode, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
10482
10482
|
/**
|
|
10483
|
-
* Sets the motion group mounting by specifying a coordinate system.
|
|
10483
|
+
* Sets the motion group mounting by specifying a coordinate system. The motion group will be based on the coordinate system\'s origin. The coordinate system defines a transformation offset, which consists of: - A unique identifier - A user-facing name - An offset in another coordinate system, referenced by the unique identifier of the reference coordinate system. <!-- theme: info --> > #### Changing the mounting configuration is considered a setup change > > When the mounting is set to a new coordinate system, the **virtual robot is restarted** to apply the new configuration. > > During this restart: > - Robot visualization can temporarily disappear or not reflect the new mounting immediately. > - Motion group state and coordinate system alignment may not be immediately visible in visualizations. > - All connections to virtual robot are closed and re-established, which introduces a short delay before the system is fully operational again. > > The API call itself does **not wait until the restart and re-synchronization are complete**. > A successful response indicates that the request was accepted, but the updated mounting may not yet be visible.
|
|
10484
10484
|
* @summary Set Mounting
|
|
10485
10485
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
10486
10486
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
@@ -10499,7 +10499,7 @@ declare const VirtualControllerApiFactory: (configuration?: Configuration, baseP
|
|
|
10499
10499
|
*/
|
|
10500
10500
|
declare class VirtualControllerApi extends BaseAPI {
|
|
10501
10501
|
/**
|
|
10502
|
-
* Adds a coordinate system to the robot controller.
|
|
10502
|
+
* Adds a coordinate system to the robot controller. <!-- theme: info --> > #### NOTE > > When a new coordinate system is added, the **virtual robot is restarted** to apply the new configuration. > > During this restart: > - Robot visualization can temporarily disappear or appear outdated in the UI. > - Coordinate system changes are not immediately visible in visualizations. > - All connections to virtual robot are closed and re-established, which introduces a short delay before the system is fully operational again. > > The API call itself does **not wait until the restart and re-synchronization are complete**. > This means that immediately after a successful response, the new coordinate system may not yet be available for visualization or program execution.
|
|
10503
10503
|
* @summary Add Coordinate Systems
|
|
10504
10504
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
10505
10505
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
@@ -10509,9 +10509,9 @@ declare class VirtualControllerApi extends BaseAPI {
|
|
|
10509
10509
|
* @throws {RequiredError}
|
|
10510
10510
|
* @memberof VirtualControllerApi
|
|
10511
10511
|
*/
|
|
10512
|
-
addVirtualControllerCoordinateSystem(cell: string, controller: string, coordinateSystem: string, coordinateSystemData: CoordinateSystemData, options?: RawAxiosRequestConfig): Promise<
|
|
10512
|
+
addVirtualControllerCoordinateSystem(cell: string, controller: string, coordinateSystem: string, coordinateSystemData: CoordinateSystemData, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
10513
10513
|
/**
|
|
10514
|
-
* Adds a new TCP
|
|
10514
|
+
* Adds a new TCP or updates an existing TCP in the motion group. The position and rotation values in the request body are defined within the flange\'s coordinate system. > **NOTE** > > Ensure the TCP\'s position is within the robot\'s reach. Refer to the robot\'s documentation or data sheet for details like joint limits or reach. <!-- theme: info --> > #### NOTE > > When adding or updating a TCP, the **virtual robot is restarted** to apply the new configuration. > > During this restart: > - Robot visualization can temporarily disappear. > - The TCP may not be immediately visible or appear outdated in visualizations. > - All connections to virtual robot are closed and re-established, which introduces a short delay before the TCP is available for operation. > > The API call itself does **not wait until the restart and re-synchronization are complete**. > A successful response indicates that the request was accepted, but the TCP may not yet be visible nor usable.
|
|
10515
10515
|
* @summary Add TCP
|
|
10516
10516
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
10517
10517
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
@@ -10522,9 +10522,9 @@ declare class VirtualControllerApi extends BaseAPI {
|
|
|
10522
10522
|
* @throws {RequiredError}
|
|
10523
10523
|
* @memberof VirtualControllerApi
|
|
10524
10524
|
*/
|
|
10525
|
-
addVirtualControllerTcp(cell: string, controller: string, motionGroup: string, tcp: string, robotTcpData: RobotTcpData, options?: RawAxiosRequestConfig): Promise<
|
|
10525
|
+
addVirtualControllerTcp(cell: string, controller: string, motionGroup: string, tcp: string, robotTcpData: RobotTcpData, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
10526
10526
|
/**
|
|
10527
|
-
* Deletes a coordinate system from the virtual controller. This will remove the coordinate system from the list of coordinate systems and also remove all dependent coordinate systems that use the deleted coordinate system as reference.
|
|
10527
|
+
* Deletes a coordinate system from the virtual controller. This will remove the coordinate system from the list of coordinate systems and also remove all dependent coordinate systems that use the deleted coordinate system as reference. <!-- theme: info --> > #### NOTE > > When a new coordinate system is removed, the **virtual robot is restarted** to apply the new configuration. > > During this restart: > - Robot visualization can temporarily disappear or appear outdated in the UI. > - Coordinate system changes are not immediately visible in visualizations. > - All connections to virtual robot are closed and re-established, which introduces a short delay before the system is fully operational again. > > The API call itself does **not wait until the restart and re-synchronization are complete**. > This means that immediately after a successful response, the new coordinate system may not yet be available for visualization or program execution.
|
|
10528
10528
|
* @summary Delete Coordinate System
|
|
10529
10529
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
10530
10530
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
@@ -10534,9 +10534,9 @@ declare class VirtualControllerApi extends BaseAPI {
|
|
|
10534
10534
|
* @throws {RequiredError}
|
|
10535
10535
|
* @memberof VirtualControllerApi
|
|
10536
10536
|
*/
|
|
10537
|
-
deleteVirtualControllerCoordinateSystem(cell: string, controller: string, coordinateSystem: string, deleteDependent?: boolean, options?: RawAxiosRequestConfig): Promise<
|
|
10537
|
+
deleteVirtualControllerCoordinateSystem(cell: string, controller: string, coordinateSystem: string, deleteDependent?: boolean, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
10538
10538
|
/**
|
|
10539
|
-
* Removes the TCP (Tool Center Point) from the motion group. An unknown TCP is a valid input and will simply be ignored.
|
|
10539
|
+
* Removes the TCP (Tool Center Point) from the motion group. An unknown TCP is a valid input and will simply be ignored. <!-- theme: info --> > #### NOTE > > When removing a TCP, the **virtual robot is restarted** to apply the new configuration. > > During this restart: > - Robot visualization can temporarily disappear. > - The removal of the TCP may not be immediately visible or appear outdated in visualizations. > - All connections to virtual robot are closed and re-established, which introduces a short delay before the system is fully operational again. > > The API call itself does **not wait until the restart and re-synchronization are complete**. > A successful response indicates that the request was accepted, but the then used TCP may not yet be visible nor usable.
|
|
10540
10540
|
* @summary Remove TCP
|
|
10541
10541
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
10542
10542
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
@@ -10546,9 +10546,9 @@ declare class VirtualControllerApi extends BaseAPI {
|
|
|
10546
10546
|
* @throws {RequiredError}
|
|
10547
10547
|
* @memberof VirtualControllerApi
|
|
10548
10548
|
*/
|
|
10549
|
-
deleteVirtualControllerTcp(cell: string, controller: string, motionGroup: string, tcp: string, options?: RawAxiosRequestConfig): Promise<
|
|
10549
|
+
deleteVirtualControllerTcp(cell: string, controller: string, motionGroup: string, tcp: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
10550
10550
|
/**
|
|
10551
|
-
* Requests the Emergency Stop state of the virtual robot controller. Use [getCurrentMotionGroupState](getCurrentMotionGroupState) to get the Emergency Stop state regardless of the controller type.
|
|
10551
|
+
* Requests the Emergency Stop state of the virtual robot controller. Use [getCurrentMotionGroupState](getCurrentMotionGroupState) to get the Emergency Stop state with `safety_state` regardless of the controller type. > **NOTE** > > The Emergency Stop state can only be changed when using virtual robot controllers.
|
|
10552
10552
|
* @summary Get Emergency Stop State
|
|
10553
10553
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
10554
10554
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
@@ -10556,7 +10556,7 @@ declare class VirtualControllerApi extends BaseAPI {
|
|
|
10556
10556
|
* @throws {RequiredError}
|
|
10557
10557
|
* @memberof VirtualControllerApi
|
|
10558
10558
|
*/
|
|
10559
|
-
getEmergencyStop(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<
|
|
10559
|
+
getEmergencyStop(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<Flag, any>>;
|
|
10560
10560
|
/**
|
|
10561
10561
|
* Get the current motion group state which provides values for the joints\' position, velocity and acceleration.
|
|
10562
10562
|
* @summary Get Motion Group State
|
|
@@ -10567,7 +10567,7 @@ declare class VirtualControllerApi extends BaseAPI {
|
|
|
10567
10567
|
* @throws {RequiredError}
|
|
10568
10568
|
* @memberof VirtualControllerApi
|
|
10569
10569
|
*/
|
|
10570
|
-
getMotionGroupState(cell: string, controller: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<
|
|
10570
|
+
getMotionGroupState(cell: string, controller: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<MotionGroupJoints, any>>;
|
|
10571
10571
|
/**
|
|
10572
10572
|
* Gets information on the motion group.
|
|
10573
10573
|
* @summary Motion Group Description
|
|
@@ -10577,9 +10577,9 @@ declare class VirtualControllerApi extends BaseAPI {
|
|
|
10577
10577
|
* @throws {RequiredError}
|
|
10578
10578
|
* @memberof VirtualControllerApi
|
|
10579
10579
|
*/
|
|
10580
|
-
getMotionGroups(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<
|
|
10580
|
+
getMotionGroups(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<MotionGroupInfo[], any>>;
|
|
10581
10581
|
/**
|
|
10582
|
-
* Requests the
|
|
10582
|
+
* Requests the operation mode of the virtual robot controller. To get the operation mode regardless of the controller type, use [getCurrentMotionGroupState](getCurrentMotionGroupState). > **NOTE** > > The operation mode can only be changed via API when using virtual robot controllers.
|
|
10583
10583
|
* @summary Get Operation Mode
|
|
10584
10584
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
10585
10585
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
@@ -10587,9 +10587,9 @@ declare class VirtualControllerApi extends BaseAPI {
|
|
|
10587
10587
|
* @throws {RequiredError}
|
|
10588
10588
|
* @memberof VirtualControllerApi
|
|
10589
10589
|
*/
|
|
10590
|
-
getOperationMode(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<
|
|
10590
|
+
getOperationMode(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<OpMode, any>>;
|
|
10591
10591
|
/**
|
|
10592
|
-
* Gets motion group mounting.
|
|
10592
|
+
* Gets motion group mounting. The motion group is based on the origin of the returned coordinate system.
|
|
10593
10593
|
* @summary Get Mounting
|
|
10594
10594
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
10595
10595
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
@@ -10598,7 +10598,7 @@ declare class VirtualControllerApi extends BaseAPI {
|
|
|
10598
10598
|
* @throws {RequiredError}
|
|
10599
10599
|
* @memberof VirtualControllerApi
|
|
10600
10600
|
*/
|
|
10601
|
-
getVirtualControllerMounting(cell: string, controller: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<
|
|
10601
|
+
getVirtualControllerMounting(cell: string, controller: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<CoordinateSystem, any>>;
|
|
10602
10602
|
/**
|
|
10603
10603
|
* Lists all coordinate systems on the robot controller.
|
|
10604
10604
|
* @summary List Coordinate Systems
|
|
@@ -10608,9 +10608,9 @@ declare class VirtualControllerApi extends BaseAPI {
|
|
|
10608
10608
|
* @throws {RequiredError}
|
|
10609
10609
|
* @memberof VirtualControllerApi
|
|
10610
10610
|
*/
|
|
10611
|
-
listVirtualControllerCoordinateSystems(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<
|
|
10611
|
+
listVirtualControllerCoordinateSystems(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<CoordinateSystem[], any>>;
|
|
10612
10612
|
/**
|
|
10613
|
-
* Lists TCPs of the motion group.
|
|
10613
|
+
* Lists TCPs of the motion group. An empty TCP list is valid, e.g., for external axes.
|
|
10614
10614
|
* @summary List TCPs
|
|
10615
10615
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
10616
10616
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
@@ -10619,9 +10619,9 @@ declare class VirtualControllerApi extends BaseAPI {
|
|
|
10619
10619
|
* @throws {RequiredError}
|
|
10620
10620
|
* @memberof VirtualControllerApi
|
|
10621
10621
|
*/
|
|
10622
|
-
listVirtualControllerTcps(cell: string, controller: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<
|
|
10622
|
+
listVirtualControllerTcps(cell: string, controller: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<RobotTcp[], any>>;
|
|
10623
10623
|
/**
|
|
10624
|
-
* Activates or releases the Emergency Stop on the virtual robot controller. Activating the Emergency Stop stops the execution of all motions. The stop is executed on physical controllers immediately not gracefully and not on paths.
|
|
10624
|
+
* Activates or releases the Emergency Stop on the virtual robot controller. Activating the Emergency Stop stops the execution of all motions. The stop is executed on physical controllers immediately not gracefully and not on paths. Due to restricted physical behavior of the virtual robot controller, the Emergency Stop is executed on paths. To return to normal operation the Emergency Stop needs to be released. Use [getCurrentMotionGroupState](getCurrentMotionGroupState) to get the Emergency Stop state with `safety_state` regardless of the controller type. > **NOTE** > > The Emergency Stop state can only be changed via API when using virtual robot controllers.
|
|
10625
10625
|
* @summary Push or Release Emergency Stop
|
|
10626
10626
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
10627
10627
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
@@ -10630,9 +10630,9 @@ declare class VirtualControllerApi extends BaseAPI {
|
|
|
10630
10630
|
* @throws {RequiredError}
|
|
10631
10631
|
* @memberof VirtualControllerApi
|
|
10632
10632
|
*/
|
|
10633
|
-
setEmergencyStop(cell: string, controller: string, active?: boolean, options?: RawAxiosRequestConfig): Promise<
|
|
10633
|
+
setEmergencyStop(cell: string, controller: string, active?: boolean, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
10634
10634
|
/**
|
|
10635
|
-
* Sets the values for joint position, joint velocity or joint acceleration of a motion group state.
|
|
10635
|
+
* Sets the values for joint position, joint velocity or joint acceleration of a motion group state. The values are immediately applied to the joints of the motion group. <!-- theme: info --> > #### NOTE > > Only use the endpoint when the motion group is in monitor mode. If the motion group is controlled, currently jogging or planning motions, > the values are overridden by the controller or an error may occur.
|
|
10636
10636
|
* @summary Set Motion Group State
|
|
10637
10637
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
10638
10638
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
@@ -10642,9 +10642,9 @@ declare class VirtualControllerApi extends BaseAPI {
|
|
|
10642
10642
|
* @throws {RequiredError}
|
|
10643
10643
|
* @memberof VirtualControllerApi
|
|
10644
10644
|
*/
|
|
10645
|
-
setMotionGroupState(cell: string, controller: string, motionGroup: string, motionGroupJoints: MotionGroupJoints, options?: RawAxiosRequestConfig): Promise<
|
|
10645
|
+
setMotionGroupState(cell: string, controller: string, motionGroup: string, motionGroupJoints: MotionGroupJoints, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
10646
10646
|
/**
|
|
10647
|
-
* Changes the
|
|
10647
|
+
* Changes the operation mode of the virtual robot controller to the specified value. To get the operation mode regardless of the controller type, use [getCurrentMotionGroupState](getCurrentMotionGroupState). > **NOTE** > > The operation mode can only be changed via API when using virtual robot controllers.
|
|
10648
10648
|
* @summary Set Operation Mode
|
|
10649
10649
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
10650
10650
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
@@ -10653,9 +10653,9 @@ declare class VirtualControllerApi extends BaseAPI {
|
|
|
10653
10653
|
* @throws {RequiredError}
|
|
10654
10654
|
* @memberof VirtualControllerApi
|
|
10655
10655
|
*/
|
|
10656
|
-
setOperationMode(cell: string, controller: string, mode: OperationMode, options?: RawAxiosRequestConfig): Promise<
|
|
10656
|
+
setOperationMode(cell: string, controller: string, mode: OperationMode, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
10657
10657
|
/**
|
|
10658
|
-
* Sets the motion group mounting by specifying a coordinate system.
|
|
10658
|
+
* Sets the motion group mounting by specifying a coordinate system. The motion group will be based on the coordinate system\'s origin. The coordinate system defines a transformation offset, which consists of: - A unique identifier - A user-facing name - An offset in another coordinate system, referenced by the unique identifier of the reference coordinate system. <!-- theme: info --> > #### Changing the mounting configuration is considered a setup change > > When the mounting is set to a new coordinate system, the **virtual robot is restarted** to apply the new configuration. > > During this restart: > - Robot visualization can temporarily disappear or not reflect the new mounting immediately. > - Motion group state and coordinate system alignment may not be immediately visible in visualizations. > - All connections to virtual robot are closed and re-established, which introduces a short delay before the system is fully operational again. > > The API call itself does **not wait until the restart and re-synchronization are complete**. > A successful response indicates that the request was accepted, but the updated mounting may not yet be visible.
|
|
10659
10659
|
* @summary Set Mounting
|
|
10660
10660
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
10661
10661
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
@@ -10665,7 +10665,7 @@ declare class VirtualControllerApi extends BaseAPI {
|
|
|
10665
10665
|
* @throws {RequiredError}
|
|
10666
10666
|
* @memberof VirtualControllerApi
|
|
10667
10667
|
*/
|
|
10668
|
-
setVirtualControllerMounting(cell: string, controller: string, motionGroup: string, coordinateSystem: CoordinateSystem, options?: RawAxiosRequestConfig): Promise<
|
|
10668
|
+
setVirtualControllerMounting(cell: string, controller: string, motionGroup: string, coordinateSystem: CoordinateSystem, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<CoordinateSystem, any>>;
|
|
10669
10669
|
}
|
|
10670
10670
|
/**
|
|
10671
10671
|
* VirtualControllerBehaviorApi - axios parameter creator
|
|
@@ -10673,7 +10673,7 @@ declare class VirtualControllerApi extends BaseAPI {
|
|
|
10673
10673
|
*/
|
|
10674
10674
|
declare const VirtualControllerBehaviorApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
10675
10675
|
/**
|
|
10676
|
-
* <!-- theme:
|
|
10676
|
+
* <!-- theme: success --> > Websocket endpoint Sends the **commanded** state, e.g., joint positions, velocities, accelerations, torques, for each motion group of the virtual controller and sets the joint configuration. Use [planTrajectory](planTrajectory) and [executeTrajectory](executeTrajectory) to move motion groups on virtual controllers. Learn more about the [movement behavior of virtual controllers in comparison to physical controllers](executeTrajectory#movement-behavior). > **NOTE** > > Incoming joint configurations are not visualized and their velocity limits are not checked. #### Use cases 1. Creating a robotic application that dynamically adapts to the configured joints on the robot controller, using this stream to feed new joint configurations back to the motion groups.\\ The stream only sends data to the robot controller if a motion is executed.\\ If the robot controller\'s joint configuration differs too much from the incoming joint configuration, a following error occurs. Joint configurations that result in following errors are executed only for motions with a low velocity. 2. Mimic freedrive motions. <!-- theme: danger --> > **DANGER** > > If the incoming joint configuration is set to maximum velocity, the movement to reach this incoming joint configuration > will be executed with maximum speed regardless of safety zones and mechanical limits.
|
|
10677
10677
|
* @summary Stream Joint Configuration
|
|
10678
10678
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
10679
10679
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
@@ -10692,7 +10692,7 @@ declare const VirtualControllerBehaviorApiAxiosParamCreator: (configuration?: Co
|
|
|
10692
10692
|
*/
|
|
10693
10693
|
getCycleTime: (cell: string, controller: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
10694
10694
|
/**
|
|
10695
|
-
* Get the current virtual controller behavior
|
|
10695
|
+
* Get the current virtual controller behavior. See [setVirtualControllerBehavior](setVirtualControllerBehavior) and the body for details.
|
|
10696
10696
|
* @summary Get Behavior
|
|
10697
10697
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
10698
10698
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
@@ -10701,7 +10701,7 @@ declare const VirtualControllerBehaviorApiAxiosParamCreator: (configuration?: Co
|
|
|
10701
10701
|
*/
|
|
10702
10702
|
getVirtualControllerBehavior: (cell: string, controller: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
10703
10703
|
/**
|
|
10704
|
-
* Set virtual controller behavior.
|
|
10704
|
+
* Set virtual controller behavior. See query parameters for details.
|
|
10705
10705
|
* @summary Set Behavior
|
|
10706
10706
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
10707
10707
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
@@ -10717,7 +10717,7 @@ declare const VirtualControllerBehaviorApiAxiosParamCreator: (configuration?: Co
|
|
|
10717
10717
|
*/
|
|
10718
10718
|
declare const VirtualControllerBehaviorApiFp: (configuration?: Configuration) => {
|
|
10719
10719
|
/**
|
|
10720
|
-
* <!-- theme:
|
|
10720
|
+
* <!-- theme: success --> > Websocket endpoint Sends the **commanded** state, e.g., joint positions, velocities, accelerations, torques, for each motion group of the virtual controller and sets the joint configuration. Use [planTrajectory](planTrajectory) and [executeTrajectory](executeTrajectory) to move motion groups on virtual controllers. Learn more about the [movement behavior of virtual controllers in comparison to physical controllers](executeTrajectory#movement-behavior). > **NOTE** > > Incoming joint configurations are not visualized and their velocity limits are not checked. #### Use cases 1. Creating a robotic application that dynamically adapts to the configured joints on the robot controller, using this stream to feed new joint configurations back to the motion groups.\\ The stream only sends data to the robot controller if a motion is executed.\\ If the robot controller\'s joint configuration differs too much from the incoming joint configuration, a following error occurs. Joint configurations that result in following errors are executed only for motions with a low velocity. 2. Mimic freedrive motions. <!-- theme: danger --> > **DANGER** > > If the incoming joint configuration is set to maximum velocity, the movement to reach this incoming joint configuration > will be executed with maximum speed regardless of safety zones and mechanical limits.
|
|
10721
10721
|
* @summary Stream Joint Configuration
|
|
10722
10722
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
10723
10723
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
@@ -10736,7 +10736,7 @@ declare const VirtualControllerBehaviorApiFp: (configuration?: Configuration) =>
|
|
|
10736
10736
|
*/
|
|
10737
10737
|
getCycleTime(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CycleTime>>;
|
|
10738
10738
|
/**
|
|
10739
|
-
* Get the current virtual controller behavior
|
|
10739
|
+
* Get the current virtual controller behavior. See [setVirtualControllerBehavior](setVirtualControllerBehavior) and the body for details.
|
|
10740
10740
|
* @summary Get Behavior
|
|
10741
10741
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
10742
10742
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
@@ -10745,7 +10745,7 @@ declare const VirtualControllerBehaviorApiFp: (configuration?: Configuration) =>
|
|
|
10745
10745
|
*/
|
|
10746
10746
|
getVirtualControllerBehavior(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Behavior>>;
|
|
10747
10747
|
/**
|
|
10748
|
-
* Set virtual controller behavior.
|
|
10748
|
+
* Set virtual controller behavior. See query parameters for details.
|
|
10749
10749
|
* @summary Set Behavior
|
|
10750
10750
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
10751
10751
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
@@ -10761,7 +10761,7 @@ declare const VirtualControllerBehaviorApiFp: (configuration?: Configuration) =>
|
|
|
10761
10761
|
*/
|
|
10762
10762
|
declare const VirtualControllerBehaviorApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
10763
10763
|
/**
|
|
10764
|
-
* <!-- theme:
|
|
10764
|
+
* <!-- theme: success --> > Websocket endpoint Sends the **commanded** state, e.g., joint positions, velocities, accelerations, torques, for each motion group of the virtual controller and sets the joint configuration. Use [planTrajectory](planTrajectory) and [executeTrajectory](executeTrajectory) to move motion groups on virtual controllers. Learn more about the [movement behavior of virtual controllers in comparison to physical controllers](executeTrajectory#movement-behavior). > **NOTE** > > Incoming joint configurations are not visualized and their velocity limits are not checked. #### Use cases 1. Creating a robotic application that dynamically adapts to the configured joints on the robot controller, using this stream to feed new joint configurations back to the motion groups.\\ The stream only sends data to the robot controller if a motion is executed.\\ If the robot controller\'s joint configuration differs too much from the incoming joint configuration, a following error occurs. Joint configurations that result in following errors are executed only for motions with a low velocity. 2. Mimic freedrive motions. <!-- theme: danger --> > **DANGER** > > If the incoming joint configuration is set to maximum velocity, the movement to reach this incoming joint configuration > will be executed with maximum speed regardless of safety zones and mechanical limits.
|
|
10765
10765
|
* @summary Stream Joint Configuration
|
|
10766
10766
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
10767
10767
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
@@ -10780,7 +10780,7 @@ declare const VirtualControllerBehaviorApiFactory: (configuration?: Configuratio
|
|
|
10780
10780
|
*/
|
|
10781
10781
|
getCycleTime(cell: string, controller: string, options?: RawAxiosRequestConfig): AxiosPromise<CycleTime>;
|
|
10782
10782
|
/**
|
|
10783
|
-
* Get the current virtual controller behavior
|
|
10783
|
+
* Get the current virtual controller behavior. See [setVirtualControllerBehavior](setVirtualControllerBehavior) and the body for details.
|
|
10784
10784
|
* @summary Get Behavior
|
|
10785
10785
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
10786
10786
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
@@ -10789,7 +10789,7 @@ declare const VirtualControllerBehaviorApiFactory: (configuration?: Configuratio
|
|
|
10789
10789
|
*/
|
|
10790
10790
|
getVirtualControllerBehavior(cell: string, controller: string, options?: RawAxiosRequestConfig): AxiosPromise<Behavior>;
|
|
10791
10791
|
/**
|
|
10792
|
-
* Set virtual controller behavior.
|
|
10792
|
+
* Set virtual controller behavior. See query parameters for details.
|
|
10793
10793
|
* @summary Set Behavior
|
|
10794
10794
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
10795
10795
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
@@ -10807,7 +10807,7 @@ declare const VirtualControllerBehaviorApiFactory: (configuration?: Configuratio
|
|
|
10807
10807
|
*/
|
|
10808
10808
|
declare class VirtualControllerBehaviorApi extends BaseAPI {
|
|
10809
10809
|
/**
|
|
10810
|
-
* <!-- theme:
|
|
10810
|
+
* <!-- theme: success --> > Websocket endpoint Sends the **commanded** state, e.g., joint positions, velocities, accelerations, torques, for each motion group of the virtual controller and sets the joint configuration. Use [planTrajectory](planTrajectory) and [executeTrajectory](executeTrajectory) to move motion groups on virtual controllers. Learn more about the [movement behavior of virtual controllers in comparison to physical controllers](executeTrajectory#movement-behavior). > **NOTE** > > Incoming joint configurations are not visualized and their velocity limits are not checked. #### Use cases 1. Creating a robotic application that dynamically adapts to the configured joints on the robot controller, using this stream to feed new joint configurations back to the motion groups.\\ The stream only sends data to the robot controller if a motion is executed.\\ If the robot controller\'s joint configuration differs too much from the incoming joint configuration, a following error occurs. Joint configurations that result in following errors are executed only for motions with a low velocity. 2. Mimic freedrive motions. <!-- theme: danger --> > **DANGER** > > If the incoming joint configuration is set to maximum velocity, the movement to reach this incoming joint configuration > will be executed with maximum speed regardless of safety zones and mechanical limits.
|
|
10811
10811
|
* @summary Stream Joint Configuration
|
|
10812
10812
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
10813
10813
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
@@ -10816,7 +10816,7 @@ declare class VirtualControllerBehaviorApi extends BaseAPI {
|
|
|
10816
10816
|
* @throws {RequiredError}
|
|
10817
10817
|
* @memberof VirtualControllerBehaviorApi
|
|
10818
10818
|
*/
|
|
10819
|
-
externalJointsStream(cell: string, controller: string, externalJointStreamRequest: ExternalJointStreamRequest, options?: RawAxiosRequestConfig): Promise<
|
|
10819
|
+
externalJointsStream(cell: string, controller: string, externalJointStreamRequest: ExternalJointStreamRequest, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ExternalJointStreamDatapoint[], any>>;
|
|
10820
10820
|
/**
|
|
10821
10821
|
* Get the cycle time of controller communication in [ms].
|
|
10822
10822
|
* @summary Get Cycle Time
|
|
@@ -10826,9 +10826,9 @@ declare class VirtualControllerBehaviorApi extends BaseAPI {
|
|
|
10826
10826
|
* @throws {RequiredError}
|
|
10827
10827
|
* @memberof VirtualControllerBehaviorApi
|
|
10828
10828
|
*/
|
|
10829
|
-
getCycleTime(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<
|
|
10829
|
+
getCycleTime(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<CycleTime, any>>;
|
|
10830
10830
|
/**
|
|
10831
|
-
* Get the current virtual controller behavior
|
|
10831
|
+
* Get the current virtual controller behavior. See [setVirtualControllerBehavior](setVirtualControllerBehavior) and the body for details.
|
|
10832
10832
|
* @summary Get Behavior
|
|
10833
10833
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
10834
10834
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
@@ -10836,9 +10836,9 @@ declare class VirtualControllerBehaviorApi extends BaseAPI {
|
|
|
10836
10836
|
* @throws {RequiredError}
|
|
10837
10837
|
* @memberof VirtualControllerBehaviorApi
|
|
10838
10838
|
*/
|
|
10839
|
-
getVirtualControllerBehavior(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<
|
|
10839
|
+
getVirtualControllerBehavior(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<Behavior, any>>;
|
|
10840
10840
|
/**
|
|
10841
|
-
* Set virtual controller behavior.
|
|
10841
|
+
* Set virtual controller behavior. See query parameters for details.
|
|
10842
10842
|
* @summary Set Behavior
|
|
10843
10843
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
10844
10844
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
@@ -10847,7 +10847,7 @@ declare class VirtualControllerBehaviorApi extends BaseAPI {
|
|
|
10847
10847
|
* @throws {RequiredError}
|
|
10848
10848
|
* @memberof VirtualControllerBehaviorApi
|
|
10849
10849
|
*/
|
|
10850
|
-
setVirtualControllerBehavior(cell: string, controller: string, behavior?: Behavior, options?: RawAxiosRequestConfig): Promise<
|
|
10850
|
+
setVirtualControllerBehavior(cell: string, controller: string, behavior?: Behavior, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
10851
10851
|
}
|
|
10852
10852
|
/**
|
|
10853
10853
|
* VirtualControllerInputsOutputsApi - axios parameter creator
|
|
@@ -10865,7 +10865,7 @@ declare const VirtualControllerInputsOutputsApiAxiosParamCreator: (configuration
|
|
|
10865
10865
|
*/
|
|
10866
10866
|
listIOs: (cell: string, controller: string, ios: Array<string>, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
10867
10867
|
/**
|
|
10868
|
-
* Lists the input/output descriptions of the virtual robot controller.
|
|
10868
|
+
* Lists the input/output descriptions of the virtual robot controller. The input/output descriptions contain information like name, type and unit.\\ Available inputs/outputs are defined by the virtual robot controller.\\ Each input/output has a unique identifier. - If no identifiers and no filters are specified in the request, all available inputs/outputs are retrieved by this endpoint. - If a filter, e.g., `direction`, `value_type`, `group` is applied, only matching inputs/outputs are returned.
|
|
10869
10869
|
* @summary List Descriptions
|
|
10870
10870
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
10871
10871
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
@@ -10904,7 +10904,7 @@ declare const VirtualControllerInputsOutputsApiFp: (configuration?: Configuratio
|
|
|
10904
10904
|
*/
|
|
10905
10905
|
listIOs(cell: string, controller: string, ios: Array<string>, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<IOValue>>>;
|
|
10906
10906
|
/**
|
|
10907
|
-
* Lists the input/output descriptions of the virtual robot controller.
|
|
10907
|
+
* Lists the input/output descriptions of the virtual robot controller. The input/output descriptions contain information like name, type and unit.\\ Available inputs/outputs are defined by the virtual robot controller.\\ Each input/output has a unique identifier. - If no identifiers and no filters are specified in the request, all available inputs/outputs are retrieved by this endpoint. - If a filter, e.g., `direction`, `value_type`, `group` is applied, only matching inputs/outputs are returned.
|
|
10908
10908
|
* @summary List Descriptions
|
|
10909
10909
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
10910
10910
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
@@ -10943,7 +10943,7 @@ declare const VirtualControllerInputsOutputsApiFactory: (configuration?: Configu
|
|
|
10943
10943
|
*/
|
|
10944
10944
|
listIOs(cell: string, controller: string, ios: Array<string>, options?: RawAxiosRequestConfig): AxiosPromise<Array<IOValue>>;
|
|
10945
10945
|
/**
|
|
10946
|
-
* Lists the input/output descriptions of the virtual robot controller.
|
|
10946
|
+
* Lists the input/output descriptions of the virtual robot controller. The input/output descriptions contain information like name, type and unit.\\ Available inputs/outputs are defined by the virtual robot controller.\\ Each input/output has a unique identifier. - If no identifiers and no filters are specified in the request, all available inputs/outputs are retrieved by this endpoint. - If a filter, e.g., `direction`, `value_type`, `group` is applied, only matching inputs/outputs are returned.
|
|
10947
10947
|
* @summary List Descriptions
|
|
10948
10948
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
10949
10949
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
@@ -10983,9 +10983,9 @@ declare class VirtualControllerInputsOutputsApi extends BaseAPI {
|
|
|
10983
10983
|
* @throws {RequiredError}
|
|
10984
10984
|
* @memberof VirtualControllerInputsOutputsApi
|
|
10985
10985
|
*/
|
|
10986
|
-
listIOs(cell: string, controller: string, ios: Array<string>, options?: RawAxiosRequestConfig): Promise<
|
|
10986
|
+
listIOs(cell: string, controller: string, ios: Array<string>, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<IOValue[], any>>;
|
|
10987
10987
|
/**
|
|
10988
|
-
* Lists the input/output descriptions of the virtual robot controller.
|
|
10988
|
+
* Lists the input/output descriptions of the virtual robot controller. The input/output descriptions contain information like name, type and unit.\\ Available inputs/outputs are defined by the virtual robot controller.\\ Each input/output has a unique identifier. - If no identifiers and no filters are specified in the request, all available inputs/outputs are retrieved by this endpoint. - If a filter, e.g., `direction`, `value_type`, `group` is applied, only matching inputs/outputs are returned.
|
|
10989
10989
|
* @summary List Descriptions
|
|
10990
10990
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
10991
10991
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
@@ -10997,7 +10997,7 @@ declare class VirtualControllerInputsOutputsApi extends BaseAPI {
|
|
|
10997
10997
|
* @throws {RequiredError}
|
|
10998
10998
|
* @memberof VirtualControllerInputsOutputsApi
|
|
10999
10999
|
*/
|
|
11000
|
-
listVirtualControllerIODescriptions(cell: string, controller: string, ios?: Array<string>, direction?: IODirection, valueType?: IOValueType, group?: string, options?: RawAxiosRequestConfig): Promise<
|
|
11000
|
+
listVirtualControllerIODescriptions(cell: string, controller: string, ios?: Array<string>, direction?: IODirection, valueType?: IOValueType, group?: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<IODescription[], any>>;
|
|
11001
11001
|
/**
|
|
11002
11002
|
* Sets a list of values of a virtual controller inputs/outputs.
|
|
11003
11003
|
* @summary Set Input/Ouput Values
|
|
@@ -11008,7 +11008,7 @@ declare class VirtualControllerInputsOutputsApi extends BaseAPI {
|
|
|
11008
11008
|
* @throws {RequiredError}
|
|
11009
11009
|
* @memberof VirtualControllerInputsOutputsApi
|
|
11010
11010
|
*/
|
|
11011
|
-
setIOValues(cell: string, controller: string, iOValue: Array<IOValue>, options?: RawAxiosRequestConfig): Promise<
|
|
11011
|
+
setIOValues(cell: string, controller: string, iOValue: Array<IOValue>, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
11012
11012
|
}
|
|
11013
11013
|
//#endregion
|
|
11014
11014
|
export { AbbController, AbbControllerEgmServer, AbbControllerKindEnum, ActivateLicenseRequest, AddTrajectoryError, AddTrajectoryErrorData, AddTrajectoryRequest, AddTrajectoryResponse, App, ApplicationApi, ApplicationApiAxiosParamCreator, ApplicationApiFactory, ApplicationApiFp, BASE_PATH, BUSInputsOutputsApi, BUSInputsOutputsApiAxiosParamCreator, BUSInputsOutputsApiFactory, BUSInputsOutputsApiFp, BaseAPI, Behavior, BlendingAuto, BlendingAutoBlendingNameEnum, BlendingPosition, BlendingPositionBlendingNameEnum, BooleanValue, BooleanValueValueTypeEnum, Box, BoxBoxTypeEnum, BoxShapeTypeEnum, BusIOProfinet, BusIOProfinetBusTypeEnum, BusIOProfinetDefaultRoute, BusIOProfinetIpConfig, BusIOProfinetNetwork, BusIOProfinetVirtual, BusIOProfinetVirtualBusTypeEnum, BusIOType, BusIOsState, BusIOsStateEnum, COLLECTION_FORMATS, Capsule, CapsuleShapeTypeEnum, CartesianLimits, Cell, CellApi, CellApiAxiosParamCreator, CellApiFactory, CellApiFp, Collider, ColliderShape, Collision, CollisionContact, CollisionError, CollisionFreeAlgorithm, CollisionSetup, Comparator, Configuration, ConfigurationArchiveStatus, ConfigurationArchiveStatusCreating, ConfigurationArchiveStatusCreatingStatusEnum, ConfigurationArchiveStatusError, ConfigurationArchiveStatusErrorStatusEnum, ConfigurationArchiveStatusSuccess, ConfigurationArchiveStatusSuccessStatusEnum, ConfigurationParameters, ConfigurationResource, ContainerEnvironmentInner, ContainerImage, ContainerImageSecretsInner, ContainerResources, ContainerStorage, ControllerApi, ControllerApiAxiosParamCreator, ControllerApiFactory, ControllerApiFp, ControllerDescription, ControllerInputsOutputsApi, ControllerInputsOutputsApiAxiosParamCreator, ControllerInputsOutputsApiFactory, ControllerInputsOutputsApiFp, ConvexHull, ConvexHullShapeTypeEnum, CoordinateSystem, CoordinateSystemData, CubicSplineParameter, CycleTime, Cylinder, CylinderShapeTypeEnum, DHParameter, Direction, ErrorInvalidJointCount, ErrorInvalidJointCountErrorFeedbackNameEnum, ErrorJointLimitExceeded, ErrorJointLimitExceededErrorFeedbackNameEnum, ErrorJointPositionCollision, ErrorJointPositionCollisionErrorFeedbackNameEnum, ErrorMaxIterationsExceeded, ErrorMaxIterationsExceededErrorFeedbackNameEnum, Execute, ExecuteDetails, ExecuteJoggingRequest, ExecuteJoggingResponse, ExecuteTrajectoryRequest, ExecuteTrajectoryResponse, ExternalJointStreamDatapoint, ExternalJointStreamRequest, FanucController, FanucControllerKindEnum, FeedbackCollision, FeedbackCollisionErrorFeedbackNameEnum, FeedbackJointLimitExceeded, FeedbackJointLimitExceededErrorFeedbackNameEnum, FeedbackOutOfWorkspace, FeedbackOutOfWorkspaceErrorFeedbackNameEnum, FeedbackSingularity, FeedbackSingularityErrorFeedbackNameEnum, Flag, FloatValue, FloatValueValueTypeEnum, ForwardKinematics422Response, ForwardKinematicsRequest, ForwardKinematicsResponse, ForwardKinematicsValidationError, GetTrajectoryResponse, HTTPValidationError, HTTPValidationError2, IOBooleanValue, IOBooleanValueValueTypeEnum, IODescription, IODescription2, IODescriptionMin, IODirection, IOFloatValue, IOFloatValueValueTypeEnum, IOIntegerValue, IOIntegerValueValueTypeEnum, IOOrigin, IOValue, IOValueType, ImageCredentials, InconsitentTrajectorySize, InconsitentTrajectorySizeInconsistentTrajectorySize, InitializeJoggingRequest, InitializeJoggingRequestMessageTypeEnum, InitializeJoggingResponse, InitializeJoggingResponseKindEnum, InitializeMovementRequest, InitializeMovementRequestMessageTypeEnum, InitializeMovementRequestTrajectory, InitializeMovementResponse, InitializeMovementResponseKindEnum, IntegerValue, IntegerValueValueTypeEnum, InvalidDof, InvalidDofInvalidDof, InverseKinematics422Response, InverseKinematicsRequest, InverseKinematicsResponse, InverseKinematicsValidationError, InverseKinematicsValidationErrorAllOfData, JoggingApi, JoggingApiAxiosParamCreator, JoggingApiFactory, JoggingApiFp, JoggingDetails, JoggingDetailsKindEnum, JoggingDetailsState, JoggingPausedByUser, JoggingPausedByUserKindEnum, JoggingPausedNearCollision, JoggingPausedNearCollisionKindEnum, JoggingPausedNearJointLimit, JoggingPausedNearJointLimitKindEnum, JoggingPausedOnIO, JoggingPausedOnIOKindEnum, JoggingRunning, JoggingRunningKindEnum, JointLimitExceeded, JointLimits, JointTrajectory, JointVelocityRequest, JointVelocityRequestMessageTypeEnum, JointVelocityResponse, JointVelocityResponseKindEnum, KinematicsApi, KinematicsApiAxiosParamCreator, KinematicsApiFactory, KinematicsApiFp, KukaController, KukaControllerKindEnum, KukaControllerRsiServer, License, LicenseApi, LicenseApiAxiosParamCreator, LicenseApiFactory, LicenseApiFp, LicenseStatus, LicenseStatusEnum, LimitRange, LimitSet, LimitsOverride, ListTrajectoriesResponse, Manufacturer, MidpointInsertionAlgorithm, MidpointInsertionAlgorithmAlgorithmNameEnum, ModelError, MotionCommand, MotionCommandBlending, MotionCommandPath, MotionGroupApi, MotionGroupApiAxiosParamCreator, MotionGroupApiFactory, MotionGroupApiFp, MotionGroupDescription, MotionGroupInfo, MotionGroupJoints, MotionGroupModelsApi, MotionGroupModelsApiAxiosParamCreator, MotionGroupModelsApiFactory, MotionGroupModelsApiFp, MotionGroupSetup, MotionGroupState, MotionGroupStateJointLimitReached, MovementErrorResponse, MovementErrorResponseKindEnum, NanValue, NanValueNanValue, OpMode, OperatingState, OperationLimits, OperationMode, OrientationType, PathCartesianPTP, PathCartesianPTPPathDefinitionNameEnum, PathCircle, PathCirclePathDefinitionNameEnum, PathCubicSpline, PathCubicSplinePathDefinitionNameEnum, PathJointPTP, PathJointPTPPathDefinitionNameEnum, PathLine, PathLinePathDefinitionNameEnum, PauseJoggingRequest, PauseJoggingRequestMessageTypeEnum, PauseJoggingResponse, PauseJoggingResponseKindEnum, PauseMovementRequest, PauseMovementRequestMessageTypeEnum, PauseMovementResponse, PauseMovementResponseKindEnum, PauseOnIO, Payload, Plan422Response, PlanCollisionFreeFailedResponse, PlanCollisionFreeRequest, PlanCollisionFreeResponse, PlanCollisionFreeResponseResponse, PlanTrajectoryFailedResponse, PlanTrajectoryFailedResponseErrorFeedback, PlanTrajectoryRequest, PlanTrajectoryResponse, PlanTrajectoryResponseResponse, PlanValidationError, PlanValidationErrorAllOfData, Plane, PlaneShapeTypeEnum, PlaybackSpeedRequest, PlaybackSpeedRequestMessageTypeEnum, PlaybackSpeedResponse, PlaybackSpeedResponseKindEnum, Pose, ProfinetDescription, ProfinetIO, ProfinetIOData, ProfinetIODirection, ProfinetIOTypeEnum, ProfinetInputOutputConfig, ProfinetSlotDescription, ProfinetSubSlotDescription, Program, ProgramApi, ProgramApiAxiosParamCreator, ProgramApiFactory, ProgramApiFp, ProgramRun, ProgramRunState, ProgramStartRequest, RRTConnectAlgorithm, RRTConnectAlgorithmAlgorithmNameEnum, Rectangle, RectangleShapeTypeEnum, RectangularCapsule, RectangularCapsuleShapeTypeEnum, ReleaseChannel, RequestArgs, RequiredError, RobotController, RobotControllerConfiguration, RobotControllerState, RobotSystemMode, RobotTcp, RobotTcpData, SafetyStateType, ServiceGroup, ServiceStatus, ServiceStatusPhase, ServiceStatusResponse, ServiceStatusSeverity, ServiceStatusStatus, SetIO, SettableRobotSystemMode, SingularityTypeEnum, Sphere, SphereShapeTypeEnum, StartMovementRequest, StartMovementRequestMessageTypeEnum, StartMovementResponse, StartMovementResponseKindEnum, StartOnIO, StoreCollisionComponentsApi, StoreCollisionComponentsApiAxiosParamCreator, StoreCollisionComponentsApiFactory, StoreCollisionComponentsApiFp, StoreCollisionSetupsApi, StoreCollisionSetupsApiAxiosParamCreator, StoreCollisionSetupsApiFactory, StoreCollisionSetupsApiFp, StoreObjectApi, StoreObjectApiAxiosParamCreator, StoreObjectApiFactory, StoreObjectApiFp, StreamIOValuesResponse, SystemApi, SystemApiAxiosParamCreator, SystemApiFactory, SystemApiFp, TcpOffset, TcpRequired, TcpVelocityRequest, TcpVelocityRequestMessageTypeEnum, TcpVelocityResponse, TcpVelocityResponseKindEnum, TorqueExceeded, TorqueExceededTorqueExceeded, TrajectoryCachingApi, TrajectoryCachingApiAxiosParamCreator, TrajectoryCachingApiFactory, TrajectoryCachingApiFp, TrajectoryData, TrajectoryDataMessageTypeEnum, TrajectoryDetails, TrajectoryDetailsKindEnum, TrajectoryDetailsState, TrajectoryEnded, TrajectoryEndedKindEnum, TrajectoryExecutionApi, TrajectoryExecutionApiAxiosParamCreator, TrajectoryExecutionApiFactory, TrajectoryExecutionApiFp, TrajectoryId, TrajectoryIdMessageTypeEnum, TrajectoryPausedByUser, TrajectoryPausedByUserKindEnum, TrajectoryPausedOnIO, TrajectoryPausedOnIOKindEnum, TrajectoryPlanningApi, TrajectoryPlanningApiAxiosParamCreator, TrajectoryPlanningApiFactory, TrajectoryPlanningApiFp, TrajectoryRunning, TrajectoryRunningKindEnum, TrajectoryWaitForIO, TrajectoryWaitForIOKindEnum, UnitType, UniversalrobotsController, UniversalrobotsControllerKindEnum, UpdateNovaVersionRequest, ValidationError, ValidationError2, ValidationErrorLocInner, VirtualController, VirtualControllerApi, VirtualControllerApiAxiosParamCreator, VirtualControllerApiFactory, VirtualControllerApiFp, VirtualControllerBehaviorApi, VirtualControllerBehaviorApiAxiosParamCreator, VirtualControllerBehaviorApiFactory, VirtualControllerBehaviorApiFp, VirtualControllerInputsOutputsApi, VirtualControllerInputsOutputsApiAxiosParamCreator, VirtualControllerInputsOutputsApiFactory, VirtualControllerInputsOutputsApiFp, VirtualControllerKindEnum, VirtualControllerTypes, VirtualRobotConfiguration, WaitForIOEventRequest, YaskawaController, YaskawaControllerKindEnum, operationServerMap };
|