@wandelbots/nova-api 26.6.0-dev.10 → 26.6.0-dev.101
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/v2/index.cjs +790 -489
- package/dist/v2/index.d.cts +753 -164
- package/dist/v2/index.d.ts +753 -164
- package/dist/v2/index.js +376 -115
- package/package.json +1 -6
- package/dist/defineProperty-6Ts4XR6h.js +0 -39
- package/dist/defineProperty-D0JvJyYC.cjs +0 -72
- package/dist/v1/index.cjs +0 -10324
- package/dist/v1/index.d.cts +0 -11386
- package/dist/v1/index.d.ts +0 -11386
- package/dist/v1/index.js +0 -10135
package/dist/v2/index.d.cts
CHANGED
|
@@ -6,7 +6,7 @@ import { AxiosInstance, AxiosPromise, RawAxiosRequestConfig } from "axios";
|
|
|
6
6
|
* Wandelbots NOVA API
|
|
7
7
|
* Interact with robots in an easy and intuitive way.
|
|
8
8
|
*
|
|
9
|
-
* The version of the OpenAPI document: 2.
|
|
9
|
+
* The version of the OpenAPI document: 2.6.0 dev
|
|
10
10
|
*
|
|
11
11
|
*
|
|
12
12
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -162,6 +162,7 @@ interface AbbConfiguredPose {
|
|
|
162
162
|
interface AbbController {
|
|
163
163
|
'kind': AbbControllerKindEnum;
|
|
164
164
|
'controller_ip': string;
|
|
165
|
+
'network_interface'?: ControllerNetworkInterface;
|
|
165
166
|
/**
|
|
166
167
|
* Default values: 80, 443. If custom value is set, field is required.
|
|
167
168
|
*/
|
|
@@ -191,6 +192,37 @@ interface AbbPose {
|
|
|
191
192
|
'q3': number;
|
|
192
193
|
'q4': number;
|
|
193
194
|
}
|
|
195
|
+
/**
|
|
196
|
+
* Adds waypoints to the action chunk queue. The robot will try to move through each waypoint by best effort. Existing waypoints in the queue that are older than the first new timestamp will be removed. The first message of this kind starts an internal clock. The current session timestamp is reported in `execute.details.jogger_session_timestamp_ms` of the [streamRobotControllerState](#/operations/streamRobotControllerState) endpoint. This can be used for realtime action chunk streaming, e.g., from a Vision-Language-Action (VLA) model. > **NOTE** > > Action chunk streaming is experimental and its behavior may change in future releases.
|
|
197
|
+
*/
|
|
198
|
+
interface ActionChunkRequest {
|
|
199
|
+
/**
|
|
200
|
+
* Type specifier for server, set automatically.
|
|
201
|
+
*/
|
|
202
|
+
'message_type': ActionChunkRequestMessageTypeEnum;
|
|
203
|
+
/**
|
|
204
|
+
* List of waypoints.
|
|
205
|
+
*/
|
|
206
|
+
'waypoints': Array<Waypoint>;
|
|
207
|
+
}
|
|
208
|
+
declare const ActionChunkRequestMessageTypeEnum: {
|
|
209
|
+
readonly ActionChunkRequest: "ActionChunkRequest";
|
|
210
|
+
};
|
|
211
|
+
type ActionChunkRequestMessageTypeEnum = typeof ActionChunkRequestMessageTypeEnum[keyof typeof ActionChunkRequestMessageTypeEnum];
|
|
212
|
+
/**
|
|
213
|
+
* Acknowledgment to an ActionChunkRequest.
|
|
214
|
+
*/
|
|
215
|
+
interface ActionChunkResponse {
|
|
216
|
+
/**
|
|
217
|
+
* Error message in case of invalid ActionChunkRequest.
|
|
218
|
+
*/
|
|
219
|
+
'message'?: string;
|
|
220
|
+
'kind': ActionChunkResponseKindEnum;
|
|
221
|
+
}
|
|
222
|
+
declare const ActionChunkResponseKindEnum: {
|
|
223
|
+
readonly ActionChunkReceived: "ACTION_CHUNK_RECEIVED";
|
|
224
|
+
};
|
|
225
|
+
type ActionChunkResponseKindEnum = typeof ActionChunkResponseKindEnum[keyof typeof ActionChunkResponseKindEnum];
|
|
194
226
|
/**
|
|
195
227
|
* The authentication token to fetch the license from the license server.
|
|
196
228
|
*/
|
|
@@ -252,7 +284,7 @@ interface AddTrajectoryResponse {
|
|
|
252
284
|
}
|
|
253
285
|
/**
|
|
254
286
|
* @type AddVirtualControllerMotionGroupRequest
|
|
255
|
-
* Request body wrapper for `addVirtualControllerMotionGroup`. Allow
|
|
287
|
+
* Request body wrapper for `addVirtualControllerMotionGroup`. Allow either referencing a predefined motion group model or uploading a JSON configuration that the backend converts into a motion group description.
|
|
256
288
|
*/
|
|
257
289
|
type AddVirtualControllerMotionGroupRequest = MotionGroupFromJson | MotionGroupFromType;
|
|
258
290
|
interface ApiVersion {
|
|
@@ -266,7 +298,7 @@ interface ApiVersion {
|
|
|
266
298
|
*/
|
|
267
299
|
interface App {
|
|
268
300
|
/**
|
|
269
|
-
* The name of the provided application. The name must be unique within the cell and is used as
|
|
301
|
+
* The name of the provided application. The name must be unique within the cell and is used as an 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).
|
|
270
302
|
*/
|
|
271
303
|
'name': string;
|
|
272
304
|
/**
|
|
@@ -374,6 +406,48 @@ declare const BooleanValueValueTypeEnum: {
|
|
|
374
406
|
readonly Boolean: "boolean";
|
|
375
407
|
};
|
|
376
408
|
type BooleanValueValueTypeEnum = typeof BooleanValueValueTypeEnum[keyof typeof BooleanValueValueTypeEnum];
|
|
409
|
+
/**
|
|
410
|
+
* The configuration of a Boston Dynamics robot controller. Requires the hostname or IP address of the robot and authentication credentials.
|
|
411
|
+
*/
|
|
412
|
+
interface BostondynamicsController {
|
|
413
|
+
'kind': BostondynamicsControllerKindEnum;
|
|
414
|
+
/**
|
|
415
|
+
* The hostname or IP address of the robot.
|
|
416
|
+
*/
|
|
417
|
+
'controller_ip': string;
|
|
418
|
+
/**
|
|
419
|
+
* The Boston Dynamics robot model type.
|
|
420
|
+
*/
|
|
421
|
+
'robot_type'?: BostondynamicsControllerRobotTypeEnum;
|
|
422
|
+
/**
|
|
423
|
+
* The authentication password for the robot.
|
|
424
|
+
*/
|
|
425
|
+
'password': string;
|
|
426
|
+
/**
|
|
427
|
+
* The authentication username for the robot.
|
|
428
|
+
*/
|
|
429
|
+
'username'?: string;
|
|
430
|
+
/**
|
|
431
|
+
* The network interface used to communicate with the robot.
|
|
432
|
+
*/
|
|
433
|
+
'network_interface'?: string;
|
|
434
|
+
/**
|
|
435
|
+
* JPEG quality for camera streams (1-100).
|
|
436
|
+
*/
|
|
437
|
+
'stream_quality'?: number;
|
|
438
|
+
/**
|
|
439
|
+
* Frames per second for camera streams.
|
|
440
|
+
*/
|
|
441
|
+
'stream_fps'?: number;
|
|
442
|
+
}
|
|
443
|
+
declare const BostondynamicsControllerKindEnum: {
|
|
444
|
+
readonly BostondynamicsController: "BostondynamicsController";
|
|
445
|
+
};
|
|
446
|
+
type BostondynamicsControllerKindEnum = typeof BostondynamicsControllerKindEnum[keyof typeof BostondynamicsControllerKindEnum];
|
|
447
|
+
declare const BostondynamicsControllerRobotTypeEnum: {
|
|
448
|
+
readonly Spot: "spot";
|
|
449
|
+
};
|
|
450
|
+
type BostondynamicsControllerRobotTypeEnum = typeof BostondynamicsControllerRobotTypeEnum[keyof typeof BostondynamicsControllerRobotTypeEnum];
|
|
377
451
|
/**
|
|
378
452
|
* Defines a cuboid shape centred around an origin. If a margin is applied to the box type full, it is added to all size values. The shape will keep its edges. The hollow box type consists of thin boxes that make up its walls. If a margin is applied to the box type hollow, its size values are reduced by the margin.
|
|
379
453
|
*/
|
|
@@ -683,19 +757,44 @@ declare const CapsuleShapeTypeEnum: {
|
|
|
683
757
|
};
|
|
684
758
|
type CapsuleShapeTypeEnum = typeof CapsuleShapeTypeEnum[keyof typeof CapsuleShapeTypeEnum];
|
|
685
759
|
interface CartesianLimits {
|
|
760
|
+
/**
|
|
761
|
+
* Cartesian velocity limit in mm/s.
|
|
762
|
+
*/
|
|
686
763
|
'velocity'?: number;
|
|
764
|
+
/**
|
|
765
|
+
* Cartesian acceleration limit in mm/s².
|
|
766
|
+
*/
|
|
687
767
|
'acceleration'?: number;
|
|
688
768
|
/**
|
|
689
|
-
* > **NOTE** > > This limit type is experimental and its behavior may change in future releases.
|
|
769
|
+
* Cartesian jerk limit in mm/s³. > **NOTE** > > This limit type is experimental and its behavior may change in future releases.
|
|
690
770
|
*/
|
|
691
771
|
'jerk'?: number;
|
|
772
|
+
/**
|
|
773
|
+
* Orientation velocity limit in rad/s.
|
|
774
|
+
*/
|
|
692
775
|
'orientation_velocity'?: number;
|
|
776
|
+
/**
|
|
777
|
+
* Orientation acceleration limit in rad/s².
|
|
778
|
+
*/
|
|
693
779
|
'orientation_acceleration'?: number;
|
|
694
780
|
/**
|
|
695
|
-
* > **NOTE** > > This limit type is experimental and its behavior may change in future releases.
|
|
781
|
+
* Orientation jerk limit in rad/s³. > **NOTE** > > This limit type is experimental and its behavior may change in future releases.
|
|
696
782
|
*/
|
|
697
783
|
'orientation_jerk'?: number;
|
|
698
784
|
}
|
|
785
|
+
/**
|
|
786
|
+
* Defines a cartesian velocity in 3D space. The unit of the translation velocity is mm/s and the unit of the rotation velocity is rad/s.
|
|
787
|
+
*/
|
|
788
|
+
interface CartesianVelocity {
|
|
789
|
+
/**
|
|
790
|
+
* A three-dimensional vector [x, y, z] with double precision.
|
|
791
|
+
*/
|
|
792
|
+
'translation': Array<number>;
|
|
793
|
+
/**
|
|
794
|
+
* A three-dimensional vector [x, y, z] with double precision.
|
|
795
|
+
*/
|
|
796
|
+
'rotation': Array<number>;
|
|
797
|
+
}
|
|
699
798
|
/**
|
|
700
799
|
* 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.
|
|
701
800
|
*/
|
|
@@ -880,6 +979,36 @@ interface CloudRegistrationSuccessResponse {
|
|
|
880
979
|
*/
|
|
881
980
|
'instance': number;
|
|
882
981
|
}
|
|
982
|
+
interface CloudStatus {
|
|
983
|
+
/**
|
|
984
|
+
* Whether NOVA Cloud is fully reachable, i.e. every reachability check passed. `false` when the instance is not configured or any check fails.
|
|
985
|
+
*/
|
|
986
|
+
'ready': boolean;
|
|
987
|
+
'checks': CloudStatusChecks;
|
|
988
|
+
'errors': CloudStatusErrors;
|
|
989
|
+
/**
|
|
990
|
+
* Timestamp at which the reachability checks were performed (RFC 3339).
|
|
991
|
+
*/
|
|
992
|
+
'checked_at': string;
|
|
993
|
+
}
|
|
994
|
+
/**
|
|
995
|
+
* Result of each reachability check. A check is absent when a prerequisite check failed and it was not run.
|
|
996
|
+
*/
|
|
997
|
+
interface CloudStatusChecks {
|
|
998
|
+
'is_configured'?: boolean;
|
|
999
|
+
'can_connect_nats'?: boolean;
|
|
1000
|
+
'can_ping_nats'?: boolean;
|
|
1001
|
+
'can_reach_openfga'?: boolean;
|
|
1002
|
+
}
|
|
1003
|
+
/**
|
|
1004
|
+
* Failure reason for each failed check, to help diagnose what is wrong.
|
|
1005
|
+
*/
|
|
1006
|
+
interface CloudStatusErrors {
|
|
1007
|
+
'is_configured'?: string;
|
|
1008
|
+
'can_connect_nats'?: string;
|
|
1009
|
+
'can_ping_nats'?: string;
|
|
1010
|
+
'can_reach_openfga'?: string;
|
|
1011
|
+
}
|
|
883
1012
|
/**
|
|
884
1013
|
* Defines a collider with a single shape. A collider is an object that is used for collision detection. It defines the `shape` that is attached with the offset of `pose` to a reference frame. Use colliders to: - Define the shape of a workpiece. The reference frame is the scene origin. - Define the shape of a link in a motion group. The reference frame is the link coordinate system. - Define the shape of a tool. The reference frame is the flange coordinate system.
|
|
885
1014
|
*/
|
|
@@ -1128,9 +1257,16 @@ interface ConfigurationResource {
|
|
|
1128
1257
|
*/
|
|
1129
1258
|
'children'?: Array<ConfigurationResource>;
|
|
1130
1259
|
}
|
|
1260
|
+
/**
|
|
1261
|
+
* A pose together with an optional kinematic configuration that resolves it to a unique robot posture. Optionally, the pose can be expressed relative to a coordinate system. The kinematic configuration is optional because it is currently not supported for all robot types, e.g., cuspidal robots.
|
|
1262
|
+
*/
|
|
1131
1263
|
interface ConfiguredPose {
|
|
1132
1264
|
'pose': Pose;
|
|
1133
|
-
'kinematic_configuration'
|
|
1265
|
+
'kinematic_configuration'?: KinematicConfiguration;
|
|
1266
|
+
/**
|
|
1267
|
+
* Optional identifier of the coordinate system the pose is expressed in. If this is null or omitted, the pose is referenced in `world`.
|
|
1268
|
+
*/
|
|
1269
|
+
'coordinate_system_id'?: string;
|
|
1134
1270
|
}
|
|
1135
1271
|
interface ConfiguredPoseInverse422Response {
|
|
1136
1272
|
'detail'?: Array<ValidationError>;
|
|
@@ -1240,6 +1376,19 @@ interface ControllerDescription {
|
|
|
1240
1376
|
*/
|
|
1241
1377
|
'supports_safety_zones': boolean;
|
|
1242
1378
|
}
|
|
1379
|
+
/**
|
|
1380
|
+
* Optional dedicated network interface for a physical robot controller. When set, the controller is given its own network interface on the selected physical network port (`pf`) with the given `addresses`, so it can reach the robot network directly.
|
|
1381
|
+
*/
|
|
1382
|
+
interface ControllerNetworkInterface {
|
|
1383
|
+
/**
|
|
1384
|
+
* IPv4 addresses in CIDR notation to assign to the controller\'s network interface. Each value must be a valid IPv4 address followed by a prefix length between 0 and 32.
|
|
1385
|
+
*/
|
|
1386
|
+
'addresses': Array<string>;
|
|
1387
|
+
/**
|
|
1388
|
+
* Name of the node\'s physical network port that connects to the robot network, e.g., `enp10s0f0`. The controller\'s interface is provided from this port. The physical port of an existing controller can\'t be changed by an in-place update. To move a controller to a different port, delete the controller and re-add it with the new `pf`.
|
|
1389
|
+
*/
|
|
1390
|
+
'pf': string;
|
|
1391
|
+
}
|
|
1243
1392
|
interface ConvertVendorConfiguredPose422Response {
|
|
1244
1393
|
'detail'?: Array<ValidationError>;
|
|
1245
1394
|
}
|
|
@@ -1523,7 +1672,7 @@ declare const ErrorUnsupportedOperationErrorFeedbackNameEnum: {
|
|
|
1523
1672
|
};
|
|
1524
1673
|
type ErrorUnsupportedOperationErrorFeedbackNameEnum = typeof ErrorUnsupportedOperationErrorFeedbackNameEnum[keyof typeof ErrorUnsupportedOperationErrorFeedbackNameEnum];
|
|
1525
1674
|
/**
|
|
1526
|
-
* Details about the state of the motion execution. The details are either for a jogging or
|
|
1675
|
+
* Details about the state of the motion execution. The details are either for a jogging, a trajectory, or an action chunk. If NOVA is not controlling this motion group at the moment, this field is omitted.
|
|
1527
1676
|
*/
|
|
1528
1677
|
interface Execute {
|
|
1529
1678
|
/**
|
|
@@ -1532,6 +1681,26 @@ interface Execute {
|
|
|
1532
1681
|
'joint_position': Array<number>;
|
|
1533
1682
|
'details'?: ExecuteDetails;
|
|
1534
1683
|
}
|
|
1684
|
+
/**
|
|
1685
|
+
* @type ExecuteActionChunksRequest
|
|
1686
|
+
*/
|
|
1687
|
+
type ExecuteActionChunksRequest = ActionChunkRequest | InitializeActionChunksRequest | PauseActionChunksRequest | StopActionChunksRequest | UnpauseActionChunksRequest;
|
|
1688
|
+
/**
|
|
1689
|
+
* @type ExecuteActionChunksResponse
|
|
1690
|
+
*/
|
|
1691
|
+
type ExecuteActionChunksResponse = {
|
|
1692
|
+
kind: 'ACTION_CHUNK_RECEIVED';
|
|
1693
|
+
} & ActionChunkResponse | {
|
|
1694
|
+
kind: 'INITIALIZE_RECEIVED';
|
|
1695
|
+
} & InitializeActionChunksResponse | {
|
|
1696
|
+
kind: 'MOTION_ERROR';
|
|
1697
|
+
} & MovementErrorResponse | {
|
|
1698
|
+
kind: 'PAUSE_RECEIVED';
|
|
1699
|
+
} & PauseActionChunksResponse | {
|
|
1700
|
+
kind: 'STOP_RECEIVED';
|
|
1701
|
+
} & StopActionChunksResponse | {
|
|
1702
|
+
kind: 'UNPAUSE_RECEIVED';
|
|
1703
|
+
} & UnpauseActionChunksResponse;
|
|
1535
1704
|
/**
|
|
1536
1705
|
* @type ExecuteDetails
|
|
1537
1706
|
*/
|
|
@@ -1576,24 +1745,6 @@ type ExecuteTrajectoryResponse = {
|
|
|
1576
1745
|
} & PlaybackSpeedResponse | {
|
|
1577
1746
|
kind: 'START_RECEIVED';
|
|
1578
1747
|
} & StartMovementResponse;
|
|
1579
|
-
/**
|
|
1580
|
-
* @type ExecuteWaypointJoggingRequest
|
|
1581
|
-
*/
|
|
1582
|
-
type ExecuteWaypointJoggingRequest = InitializeJoggingRequest | JointWaypointsRequest | PauseJoggingRequest | PoseWaypointsRequest;
|
|
1583
|
-
/**
|
|
1584
|
-
* @type ExecuteWaypointJoggingResponse
|
|
1585
|
-
*/
|
|
1586
|
-
type ExecuteWaypointJoggingResponse = {
|
|
1587
|
-
kind: 'INITIALIZE_RECEIVED';
|
|
1588
|
-
} & InitializeJoggingResponse | {
|
|
1589
|
-
kind: 'JOINT_WAYPOINTS_RECEIVED';
|
|
1590
|
-
} & JointWaypointsResponse | {
|
|
1591
|
-
kind: 'MOTION_ERROR';
|
|
1592
|
-
} & MovementErrorResponse | {
|
|
1593
|
-
kind: 'PAUSE_RECEIVED';
|
|
1594
|
-
} & PauseJoggingResponse | {
|
|
1595
|
-
kind: 'POSE_WAYPOINTS_RECEIVED';
|
|
1596
|
-
} & PoseWaypointsResponse;
|
|
1597
1748
|
/**
|
|
1598
1749
|
* A datapoint inside external joint stream.
|
|
1599
1750
|
*/
|
|
@@ -1613,6 +1764,11 @@ interface ExternalJointStreamRequest {
|
|
|
1613
1764
|
interface FanucController {
|
|
1614
1765
|
'kind': FanucControllerKindEnum;
|
|
1615
1766
|
'controller_ip': string;
|
|
1767
|
+
'network_interface'?: ControllerNetworkInterface;
|
|
1768
|
+
/**
|
|
1769
|
+
* Enable the FANUC Stream Motion interface. When enabled, the GCI server communicates with the controller via the Stream Motion interface.
|
|
1770
|
+
*/
|
|
1771
|
+
'stream_motion'?: boolean;
|
|
1616
1772
|
}
|
|
1617
1773
|
declare const FanucControllerKindEnum: {
|
|
1618
1774
|
readonly FanucController: "FanucController";
|
|
@@ -1883,6 +2039,39 @@ interface ForwardKinematicsValidationError {
|
|
|
1883
2039
|
};
|
|
1884
2040
|
'data'?: ErrorInvalidJointCount;
|
|
1885
2041
|
}
|
|
2042
|
+
interface GetKinematicConfiguration422Response {
|
|
2043
|
+
'detail'?: Array<GetKinematicConfigurationValidationError>;
|
|
2044
|
+
}
|
|
2045
|
+
interface GetKinematicConfigurationRequest {
|
|
2046
|
+
/**
|
|
2047
|
+
* Identifies a single motion group model. See [getMotionGroupModels](#/operations/getMotionGroupModels) for supported types.
|
|
2048
|
+
*/
|
|
2049
|
+
'motion_group_model': string;
|
|
2050
|
+
/**
|
|
2051
|
+
* List of joint positions for which kinematic configurations are computed. Each joint position must match the DOF of the specified motion group model. Unit: [rad] for joints. Supported motion group models: 6-DOF robots with spherical or offset wrist.
|
|
2052
|
+
*/
|
|
2053
|
+
'joint_positions': Array<Array<number>>;
|
|
2054
|
+
}
|
|
2055
|
+
interface GetKinematicConfigurationResponse {
|
|
2056
|
+
/**
|
|
2057
|
+
* List of kinematic configurations corresponding to the input joint positions.
|
|
2058
|
+
*/
|
|
2059
|
+
'kinematic_configurations': Array<KinematicConfiguration>;
|
|
2060
|
+
}
|
|
2061
|
+
interface GetKinematicConfigurationValidationError {
|
|
2062
|
+
'loc': Array<ValidationErrorLocInner>;
|
|
2063
|
+
'msg': string;
|
|
2064
|
+
'type': string;
|
|
2065
|
+
'input': {
|
|
2066
|
+
[key: string]: any;
|
|
2067
|
+
};
|
|
2068
|
+
'data'?: GetKinematicConfigurationValidationErrorAllOfData;
|
|
2069
|
+
}
|
|
2070
|
+
/**
|
|
2071
|
+
* @type GetKinematicConfigurationValidationErrorAllOfData
|
|
2072
|
+
* Optional data further specifying the validation error.
|
|
2073
|
+
*/
|
|
2074
|
+
type GetKinematicConfigurationValidationErrorAllOfData = ErrorInvalidJointCount | ErrorUnsupportedOperation;
|
|
1886
2075
|
interface GetTrajectoryResponse {
|
|
1887
2076
|
/**
|
|
1888
2077
|
* Unique identifier of the motion group the trajectory is planned for.
|
|
@@ -2065,6 +2254,41 @@ interface InertiaTensor {
|
|
|
2065
2254
|
*/
|
|
2066
2255
|
'yz': number;
|
|
2067
2256
|
}
|
|
2257
|
+
/**
|
|
2258
|
+
* Send this message to start executing action chunks on a motion group.
|
|
2259
|
+
*/
|
|
2260
|
+
interface InitializeActionChunksRequest {
|
|
2261
|
+
/**
|
|
2262
|
+
* Type specifier for server, set automatically.
|
|
2263
|
+
*/
|
|
2264
|
+
'message_type': InitializeActionChunksRequestMessageTypeEnum;
|
|
2265
|
+
/**
|
|
2266
|
+
* Identifier of the motion group.
|
|
2267
|
+
*/
|
|
2268
|
+
'motion_group': string;
|
|
2269
|
+
/**
|
|
2270
|
+
* Identifier of the tool. Required for robots (all limits, including TCP limits, are respected at all times regardless of the motion). Not required for external axes.
|
|
2271
|
+
*/
|
|
2272
|
+
'tcp'?: string;
|
|
2273
|
+
}
|
|
2274
|
+
declare const InitializeActionChunksRequestMessageTypeEnum: {
|
|
2275
|
+
readonly InitializeActionChunksRequest: "InitializeActionChunksRequest";
|
|
2276
|
+
};
|
|
2277
|
+
type InitializeActionChunksRequestMessageTypeEnum = typeof InitializeActionChunksRequestMessageTypeEnum[keyof typeof InitializeActionChunksRequestMessageTypeEnum];
|
|
2278
|
+
/**
|
|
2279
|
+
* Acknowledgment to an InitializeActionChunksRequest.
|
|
2280
|
+
*/
|
|
2281
|
+
interface InitializeActionChunksResponse {
|
|
2282
|
+
/**
|
|
2283
|
+
* Error message in case of invalid InitializeActionChunksRequest.
|
|
2284
|
+
*/
|
|
2285
|
+
'message'?: string;
|
|
2286
|
+
'kind': InitializeActionChunksResponseKindEnum;
|
|
2287
|
+
}
|
|
2288
|
+
declare const InitializeActionChunksResponseKindEnum: {
|
|
2289
|
+
readonly InitializeReceived: "INITIALIZE_RECEIVED";
|
|
2290
|
+
};
|
|
2291
|
+
type InitializeActionChunksResponseKindEnum = typeof InitializeActionChunksResponseKindEnum[keyof typeof InitializeActionChunksResponseKindEnum];
|
|
2068
2292
|
/**
|
|
2069
2293
|
* Send this message to start jogging a motion group.
|
|
2070
2294
|
*/
|
|
@@ -2335,13 +2559,25 @@ declare const JointLimitExceededErrorKindEnum: {
|
|
|
2335
2559
|
};
|
|
2336
2560
|
type JointLimitExceededErrorKindEnum = typeof JointLimitExceededErrorKindEnum[keyof typeof JointLimitExceededErrorKindEnum];
|
|
2337
2561
|
interface JointLimits {
|
|
2562
|
+
/**
|
|
2563
|
+
* Joint position limits in rad.
|
|
2564
|
+
*/
|
|
2338
2565
|
'position'?: LimitRange;
|
|
2566
|
+
/**
|
|
2567
|
+
* Joint velocity limit in rad/s.
|
|
2568
|
+
*/
|
|
2339
2569
|
'velocity'?: number;
|
|
2570
|
+
/**
|
|
2571
|
+
* Joint acceleration limit in rad/s².
|
|
2572
|
+
*/
|
|
2340
2573
|
'acceleration'?: number;
|
|
2341
2574
|
/**
|
|
2342
|
-
* > **NOTE** > > This limit type is experimental and its behavior may change in future releases.
|
|
2575
|
+
* Joint jerk limit in rad/s³. > **NOTE** > > This limit type is experimental and its behavior may change in future releases.
|
|
2343
2576
|
*/
|
|
2344
2577
|
'jerk'?: number;
|
|
2578
|
+
/**
|
|
2579
|
+
* Joint torque limit in Nm.
|
|
2580
|
+
*/
|
|
2345
2581
|
'torque'?: number;
|
|
2346
2582
|
}
|
|
2347
2583
|
interface JointPTPMotion {
|
|
@@ -2397,49 +2633,22 @@ declare const JointVelocityResponseKindEnum: {
|
|
|
2397
2633
|
};
|
|
2398
2634
|
type JointVelocityResponseKindEnum = typeof JointVelocityResponseKindEnum[keyof typeof JointVelocityResponseKindEnum];
|
|
2399
2635
|
/**
|
|
2400
|
-
* A waypoint
|
|
2636
|
+
* A joint waypoint for action chunk streaming. > **NOTE** > > This type is experimental and its behavior may change in future releases.
|
|
2401
2637
|
*/
|
|
2402
2638
|
interface JointWaypoint {
|
|
2403
2639
|
/**
|
|
2404
|
-
*
|
|
2640
|
+
* Type specifier for server, set automatically.
|
|
2405
2641
|
*/
|
|
2406
|
-
'
|
|
2642
|
+
'kind': JointWaypointKindEnum;
|
|
2407
2643
|
/**
|
|
2408
2644
|
* This structure describes a set of joint values, e.g., positions, currents, torques, of a motion group. Float precision is the default.
|
|
2409
2645
|
*/
|
|
2410
2646
|
'joints': Array<number>;
|
|
2411
2647
|
}
|
|
2412
|
-
|
|
2413
|
-
|
|
2414
|
-
*/
|
|
2415
|
-
interface JointWaypointsRequest {
|
|
2416
|
-
/**
|
|
2417
|
-
* Type specifier for server, set automatically.
|
|
2418
|
-
*/
|
|
2419
|
-
'message_type': JointWaypointsRequestMessageTypeEnum;
|
|
2420
|
-
/**
|
|
2421
|
-
* List of joint waypoints.
|
|
2422
|
-
*/
|
|
2423
|
-
'waypoints': Array<JointWaypoint>;
|
|
2424
|
-
}
|
|
2425
|
-
declare const JointWaypointsRequestMessageTypeEnum: {
|
|
2426
|
-
readonly JointWaypointsRequest: "JointWaypointsRequest";
|
|
2427
|
-
};
|
|
2428
|
-
type JointWaypointsRequestMessageTypeEnum = typeof JointWaypointsRequestMessageTypeEnum[keyof typeof JointWaypointsRequestMessageTypeEnum];
|
|
2429
|
-
/**
|
|
2430
|
-
* Acknowledgment to a JointWaypointsRequest.
|
|
2431
|
-
*/
|
|
2432
|
-
interface JointWaypointsResponse {
|
|
2433
|
-
/**
|
|
2434
|
-
* Error message in case of invalid JointWaypointsRequest.
|
|
2435
|
-
*/
|
|
2436
|
-
'message'?: string;
|
|
2437
|
-
'kind': JointWaypointsResponseKindEnum;
|
|
2438
|
-
}
|
|
2439
|
-
declare const JointWaypointsResponseKindEnum: {
|
|
2440
|
-
readonly JointWaypointsReceived: "JOINT_WAYPOINTS_RECEIVED";
|
|
2648
|
+
declare const JointWaypointKindEnum: {
|
|
2649
|
+
readonly Joints: "JOINTS";
|
|
2441
2650
|
};
|
|
2442
|
-
type
|
|
2651
|
+
type JointWaypointKindEnum = typeof JointWaypointKindEnum[keyof typeof JointWaypointKindEnum];
|
|
2443
2652
|
/**
|
|
2444
2653
|
* A 6-DOF robot with spherical wrist has up to 8 inverse kinematics solutions for a given TCP pose (2^3 branches). Each branch represents one side of a kinematic singularity boundary. The three binary choices are shoulder, elbow, and wrist. > **NOTE** > > `FRONT`/`BACK`, `UP`/`DOWN`, `NO_FLIP`/`FLIP` are conventional > labels for the two sides of each branch. The labels describe the > typical geometric interpretation for common poses, but are not absolute spatial > directions. The labels are consistent within a given solver: The same physical > arm shape maps to the same branch value. The branch values are purely > geometric and describe the same physical configuration regardless of > vendor convention.
|
|
2445
2654
|
*/
|
|
@@ -2501,6 +2710,10 @@ interface KukaConfiguredPose {
|
|
|
2501
2710
|
interface KukaController {
|
|
2502
2711
|
'kind': KukaControllerKindEnum;
|
|
2503
2712
|
'controller_ip': string;
|
|
2713
|
+
/**
|
|
2714
|
+
* The addresses must be ordered as KLI first and RSI second.
|
|
2715
|
+
*/
|
|
2716
|
+
'network_interface'?: ControllerNetworkInterface;
|
|
2504
2717
|
'controller_port': number;
|
|
2505
2718
|
'rsi_server': KukaControllerRsiServer;
|
|
2506
2719
|
/**
|
|
@@ -2621,7 +2834,13 @@ type LicenseStatusEnum = typeof LicenseStatusEnum[keyof typeof LicenseStatusEnum
|
|
|
2621
2834
|
* The upper_limit must be greater then the lower_limit.
|
|
2622
2835
|
*/
|
|
2623
2836
|
interface LimitRange {
|
|
2837
|
+
/**
|
|
2838
|
+
* Lower position limit in rad.
|
|
2839
|
+
*/
|
|
2624
2840
|
'lower_limit'?: number;
|
|
2841
|
+
/**
|
|
2842
|
+
* Upper position limit in rad.
|
|
2843
|
+
*/
|
|
2625
2844
|
'upper_limit'?: number;
|
|
2626
2845
|
}
|
|
2627
2846
|
interface LimitSet {
|
|
@@ -2708,9 +2927,11 @@ interface ListTrajectoriesResponse {
|
|
|
2708
2927
|
}
|
|
2709
2928
|
declare const Manufacturer: {
|
|
2710
2929
|
readonly Abb: "abb";
|
|
2930
|
+
readonly Bostondynamics: "bostondynamics";
|
|
2711
2931
|
readonly Fanuc: "fanuc";
|
|
2712
2932
|
readonly Kuka: "kuka";
|
|
2713
2933
|
readonly Staubli: "staubli";
|
|
2934
|
+
readonly Unitree: "unitree";
|
|
2714
2935
|
readonly Universalrobots: "universalrobots";
|
|
2715
2936
|
readonly Yaskawa: "yaskawa";
|
|
2716
2937
|
};
|
|
@@ -2759,7 +2980,7 @@ interface MergeTrajectoriesSegment {
|
|
|
2759
2980
|
*/
|
|
2760
2981
|
'trajectory': JointTrajectory;
|
|
2761
2982
|
/**
|
|
2762
|
-
* Limits override
|
|
2983
|
+
* Limits override defines additional limits for the blending at the end of this segment. These limits do not replace the global limits of the motion group. Instead, they are merged with the global limits so that the most restrictive value applies for each limit.
|
|
2763
2984
|
*/
|
|
2764
2985
|
'limits_override'?: LimitsOverride;
|
|
2765
2986
|
/**
|
|
@@ -2880,7 +3101,7 @@ interface ModelError {
|
|
|
2880
3101
|
interface MotionCommand {
|
|
2881
3102
|
'blending'?: MotionCommandBlending;
|
|
2882
3103
|
/**
|
|
2883
|
-
* Limits override
|
|
3104
|
+
* Limits override defines additional limits for this segment of the motion. These limits do not replace the global limits of the motion group. Instead, they are merged with the global limits so that the most restrictive value applies for each limit.
|
|
2884
3105
|
*/
|
|
2885
3106
|
'limits_override'?: LimitsOverride;
|
|
2886
3107
|
'path': MotionCommandPath;
|
|
@@ -2894,6 +3115,27 @@ type MotionCommandBlending = BlendingAuto | BlendingPosition;
|
|
|
2894
3115
|
* @type MotionCommandPath
|
|
2895
3116
|
*/
|
|
2896
3117
|
type MotionCommandPath = PathCartesianPTP | PathCircle | PathCubicSpline | PathDirectionConstrainedCartesianPTP | PathDirectionConstrainedJointPTP | PathJointPTP | PathLine;
|
|
3118
|
+
/**
|
|
3119
|
+
* Response for motion group configuration lookup.
|
|
3120
|
+
*/
|
|
3121
|
+
interface MotionGroupConfiguration {
|
|
3122
|
+
/**
|
|
3123
|
+
* Name of the robot configuration containing this motion group.
|
|
3124
|
+
*/
|
|
3125
|
+
'robot_configuration': string;
|
|
3126
|
+
/**
|
|
3127
|
+
* Identifies a single motion group model. See [getMotionGroupModels](#/operations/getMotionGroupModels) for supported types.
|
|
3128
|
+
*/
|
|
3129
|
+
'motion_group_model': string;
|
|
3130
|
+
/**
|
|
3131
|
+
* Internal UID of the motion group inside the GCI transcript.
|
|
3132
|
+
*/
|
|
3133
|
+
'motion_group_uid': number;
|
|
3134
|
+
/**
|
|
3135
|
+
* Full GCI transcript (JSON) containing the robot configuration and motion group.
|
|
3136
|
+
*/
|
|
3137
|
+
'content': string;
|
|
3138
|
+
}
|
|
2897
3139
|
/**
|
|
2898
3140
|
* The configuration of a motion-group used for motion planning. The parameters `mounting`, `kinematic_chain_offset`, `dh_parameters`, `flange_offset` and `tcp_offset` are used to model the kinematic structure of the motion group. They can be used to compute the coordinate transformations from world to tcp frame: [world frame] -> mounting -> [base frame] -> kinematic chain offset + motion group kinematics (Denavit-Hartenberg parameters) -> [end of kinematic chain frame] -> flange_offset -> [flange frame] -> tcp_offset -> [tcp frame].
|
|
2899
3141
|
*/
|
|
@@ -2970,7 +3212,7 @@ interface MotionGroupFromJson {
|
|
|
2970
3212
|
*/
|
|
2971
3213
|
'motion_group': string;
|
|
2972
3214
|
/**
|
|
2973
|
-
*
|
|
3215
|
+
* JSON configuration of the virtual robot controller, can be obtained from the physical controller\'s configuration via [getVirtualControllerConfiguration](#/operations/getVirtualControllerConfiguration).
|
|
2974
3216
|
*/
|
|
2975
3217
|
'json_data': string;
|
|
2976
3218
|
/**
|
|
@@ -2978,7 +3220,7 @@ interface MotionGroupFromJson {
|
|
|
2978
3220
|
*/
|
|
2979
3221
|
'extracted_motion_group_id': string;
|
|
2980
3222
|
/**
|
|
2981
|
-
* Initial joint position of the added motion group. Provides the joint position as a JSON array of float values in radians
|
|
3223
|
+
* Initial joint position of the added motion group. Provides the joint position as a JSON array of float values in radians. The array length must match the robot\'s degrees of freedom, e.g., `\"[0, 0, 0, 0, 0, 0]\"` for a 6-DOF robot. If the provided array length does not match the robot\'s DOF, the array will be adjusted: if it is longer, extra values will be truncated; if it is shorter, missing values will be filled with zeros.
|
|
2982
3224
|
*/
|
|
2983
3225
|
'initial_joint_position'?: string;
|
|
2984
3226
|
}
|
|
@@ -2992,7 +3234,7 @@ interface MotionGroupFromType {
|
|
|
2992
3234
|
*/
|
|
2993
3235
|
'motion_group_model': string;
|
|
2994
3236
|
/**
|
|
2995
|
-
* Initial joint position of the added motion group. Provides the joint position as a JSON array of float values in radians
|
|
3237
|
+
* Initial joint position of the added motion group. Provides the joint position as a JSON array of float values in radians. The array length must match the robot\'s degrees of freedom, e.g., `\"[0, 0, 0, 0, 0, 0]\"` for a 6-DOF robot. If the provided array length does not match the robot\'s DOF, the array will be adjusted; if it is longer, extra values will be truncated; if it is shorter, missing values will be filled with zeros.
|
|
2996
3238
|
*/
|
|
2997
3239
|
'initial_joint_position'?: string;
|
|
2998
3240
|
}
|
|
@@ -3031,6 +3273,19 @@ interface MotionGroupJoints {
|
|
|
3031
3273
|
*/
|
|
3032
3274
|
'torques'?: Array<number>;
|
|
3033
3275
|
}
|
|
3276
|
+
/**
|
|
3277
|
+
* Entry for a motion group with its name and readable name.
|
|
3278
|
+
*/
|
|
3279
|
+
interface MotionGroupModelCatalog {
|
|
3280
|
+
/**
|
|
3281
|
+
* Name of the motion group.
|
|
3282
|
+
*/
|
|
3283
|
+
'motion_group_name': string;
|
|
3284
|
+
/**
|
|
3285
|
+
* Readable name for the motion group.
|
|
3286
|
+
*/
|
|
3287
|
+
'readable_name': string;
|
|
3288
|
+
}
|
|
3034
3289
|
/**
|
|
3035
3290
|
* Metadata about a motion group model.
|
|
3036
3291
|
*/
|
|
@@ -3109,17 +3364,25 @@ interface MotionGroupState {
|
|
|
3109
3364
|
*/
|
|
3110
3365
|
'joint_current'?: Array<number>;
|
|
3111
3366
|
/**
|
|
3112
|
-
* Pose of the flange. Positions are in [mm]. Orientations are in [rad]. The pose is relative to the
|
|
3367
|
+
* Pose of the flange. Positions are in [mm]. Orientations are in [rad]. The pose is relative to the response coordinate system specified in the request. For robot arms, a flange pose is always returned. For positioners, the flange might not be available, depending on the model.
|
|
3113
3368
|
*/
|
|
3114
3369
|
'flange_pose'?: Pose;
|
|
3370
|
+
/**
|
|
3371
|
+
* Cartesian velocity of the flange. The velocity is relative to the response coordinate system specified in the request.
|
|
3372
|
+
*/
|
|
3373
|
+
'flange_velocity'?: CartesianVelocity;
|
|
3115
3374
|
/**
|
|
3116
3375
|
* Unique identifier addressing the active TCP. Might not be returned for positioners as some do not support TCPs, depending on the model.
|
|
3117
3376
|
*/
|
|
3118
3377
|
'tcp'?: string;
|
|
3119
3378
|
/**
|
|
3120
|
-
* Pose of the TCP selected on the robot control panel. Positions are in [mm]. Orientations are in [rad]. The pose is relative to the
|
|
3379
|
+
* Pose of the TCP selected on the robot control panel. Positions are in [mm]. Orientations are in [rad]. The pose is relative to the response coordinate system specified in the request. Might not be returned for positioners as some do not support TCPs, depending on the model.
|
|
3121
3380
|
*/
|
|
3122
3381
|
'tcp_pose'?: Pose;
|
|
3382
|
+
/**
|
|
3383
|
+
* Cartesian velocity of the TCP selected on the robot control panel. The velocity is relative to the response coordinate system specified in the request.
|
|
3384
|
+
*/
|
|
3385
|
+
'tcp_velocity'?: CartesianVelocity;
|
|
3123
3386
|
/**
|
|
3124
3387
|
* Unique identifier addressing the reference coordinate system of the cartesian data. Might not be returned for positioners as some do not support TCPs, depending on the model. Default: world coordinate system of corresponding controller.
|
|
3125
3388
|
*/
|
|
@@ -3504,6 +3767,33 @@ declare const PathLinePathDefinitionNameEnum: {
|
|
|
3504
3767
|
readonly PathLine: "PathLine";
|
|
3505
3768
|
};
|
|
3506
3769
|
type PathLinePathDefinitionNameEnum = typeof PathLinePathDefinitionNameEnum[keyof typeof PathLinePathDefinitionNameEnum];
|
|
3770
|
+
/**
|
|
3771
|
+
* Request to pause executing action chunks. If successful, `execute` jogging state in [MotionGroupState](MotionGroupState.yaml) is set to `PAUSED_BY_USER`.
|
|
3772
|
+
*/
|
|
3773
|
+
interface PauseActionChunksRequest {
|
|
3774
|
+
/**
|
|
3775
|
+
* Type specifier for server, set automatically.
|
|
3776
|
+
*/
|
|
3777
|
+
'message_type': PauseActionChunksRequestMessageTypeEnum;
|
|
3778
|
+
}
|
|
3779
|
+
declare const PauseActionChunksRequestMessageTypeEnum: {
|
|
3780
|
+
readonly PauseActionChunksRequest: "PauseActionChunksRequest";
|
|
3781
|
+
};
|
|
3782
|
+
type PauseActionChunksRequestMessageTypeEnum = typeof PauseActionChunksRequestMessageTypeEnum[keyof typeof PauseActionChunksRequestMessageTypeEnum];
|
|
3783
|
+
/**
|
|
3784
|
+
* Acknowledgment to a PauseActionChunksRequest.
|
|
3785
|
+
*/
|
|
3786
|
+
interface PauseActionChunksResponse {
|
|
3787
|
+
/**
|
|
3788
|
+
* Error message in case of invalid PauseActionChunksRequest.
|
|
3789
|
+
*/
|
|
3790
|
+
'message'?: string;
|
|
3791
|
+
'kind': PauseActionChunksResponseKindEnum;
|
|
3792
|
+
}
|
|
3793
|
+
declare const PauseActionChunksResponseKindEnum: {
|
|
3794
|
+
readonly PauseReceived: "PAUSE_RECEIVED";
|
|
3795
|
+
};
|
|
3796
|
+
type PauseActionChunksResponseKindEnum = typeof PauseActionChunksResponseKindEnum[keyof typeof PauseActionChunksResponseKindEnum];
|
|
3507
3797
|
/**
|
|
3508
3798
|
* Request to pause jogging. If successful, `execute` jogging state in [MotionGroupState](MotionGroupState.yaml) is set to `PAUSED_BY_USER`.
|
|
3509
3799
|
*/
|
|
@@ -3617,6 +3907,10 @@ interface PlanCollisionFreeRequest {
|
|
|
3617
3907
|
*/
|
|
3618
3908
|
interface PlanCollisionFreeResponse {
|
|
3619
3909
|
'response': PlanCollisionFreeResponseResponse;
|
|
3910
|
+
/**
|
|
3911
|
+
* The motion commands that produced the trajectory.
|
|
3912
|
+
*/
|
|
3913
|
+
'motion_commands'?: Array<MotionCommand>;
|
|
3620
3914
|
}
|
|
3621
3915
|
/**
|
|
3622
3916
|
* @type PlanCollisionFreeResponseResponse
|
|
@@ -3647,6 +3941,10 @@ interface PlanTrajectoryRequest {
|
|
|
3647
3941
|
* List of motion commands. A command consists of a path definition (line, circle, joint_ptp, cartesian_ptp, cubic_spline), blending, and limits override.
|
|
3648
3942
|
*/
|
|
3649
3943
|
'motion_commands': Array<MotionCommand>;
|
|
3944
|
+
/**
|
|
3945
|
+
* <!-- theme: danger --> > > **Experimental** Strategy used to deal with wrist singularities along a cartesian path.
|
|
3946
|
+
*/
|
|
3947
|
+
'singularity_handling'?: SingularityHandling;
|
|
3650
3948
|
}
|
|
3651
3949
|
interface PlanTrajectoryResponse {
|
|
3652
3950
|
'response': PlanTrajectoryResponseResponse;
|
|
@@ -3724,49 +4022,22 @@ interface Pose {
|
|
|
3724
4022
|
'orientation'?: Array<number>;
|
|
3725
4023
|
}
|
|
3726
4024
|
/**
|
|
3727
|
-
* A waypoint
|
|
4025
|
+
* A pose waypoint for action chunk streaming. > **NOTE** > > This type is experimental and its behavior may change in future releases.
|
|
3728
4026
|
*/
|
|
3729
4027
|
interface PoseWaypoint {
|
|
3730
4028
|
/**
|
|
3731
|
-
*
|
|
4029
|
+
* Type specifier for server, set automatically.
|
|
3732
4030
|
*/
|
|
3733
|
-
'
|
|
4031
|
+
'kind': PoseWaypointKindEnum;
|
|
3734
4032
|
/**
|
|
3735
4033
|
* Cartesian pose for this waypoint.
|
|
3736
4034
|
*/
|
|
3737
4035
|
'pose': Pose;
|
|
3738
4036
|
}
|
|
3739
|
-
|
|
3740
|
-
|
|
3741
|
-
*/
|
|
3742
|
-
interface PoseWaypointsRequest {
|
|
3743
|
-
/**
|
|
3744
|
-
* Type specifier for server, set automatically.
|
|
3745
|
-
*/
|
|
3746
|
-
'message_type': PoseWaypointsRequestMessageTypeEnum;
|
|
3747
|
-
/**
|
|
3748
|
-
* List of pose waypoints.
|
|
3749
|
-
*/
|
|
3750
|
-
'waypoints': Array<PoseWaypoint>;
|
|
3751
|
-
}
|
|
3752
|
-
declare const PoseWaypointsRequestMessageTypeEnum: {
|
|
3753
|
-
readonly PoseWaypointsRequest: "PoseWaypointsRequest";
|
|
4037
|
+
declare const PoseWaypointKindEnum: {
|
|
4038
|
+
readonly Pose: "POSE";
|
|
3754
4039
|
};
|
|
3755
|
-
type
|
|
3756
|
-
/**
|
|
3757
|
-
* Acknowledgment to a PoseWaypointsRequest.
|
|
3758
|
-
*/
|
|
3759
|
-
interface PoseWaypointsResponse {
|
|
3760
|
-
/**
|
|
3761
|
-
* Error message in case of invalid PoseWaypointsRequest.
|
|
3762
|
-
*/
|
|
3763
|
-
'message'?: string;
|
|
3764
|
-
'kind': PoseWaypointsResponseKindEnum;
|
|
3765
|
-
}
|
|
3766
|
-
declare const PoseWaypointsResponseKindEnum: {
|
|
3767
|
-
readonly PoseWaypointsReceived: "POSE_WAYPOINTS_RECEIVED";
|
|
3768
|
-
};
|
|
3769
|
-
type PoseWaypointsResponseKindEnum = typeof PoseWaypointsResponseKindEnum[keyof typeof PoseWaypointsResponseKindEnum];
|
|
4040
|
+
type PoseWaypointKindEnum = typeof PoseWaypointKindEnum[keyof typeof PoseWaypointKindEnum];
|
|
3770
4041
|
interface ProfinetDescription {
|
|
3771
4042
|
/**
|
|
3772
4043
|
* The vendor identifier of the PROFINET device, identifying the manufacturer.
|
|
@@ -3794,7 +4065,7 @@ interface ProfinetIO {
|
|
|
3794
4065
|
*/
|
|
3795
4066
|
'direction': ProfinetIODirection;
|
|
3796
4067
|
/**
|
|
3797
|
-
* The byte address in the PROFINET device\'s process image, with offset 0. The slot is automatically determined based on this address and the configured slot layout. For example, with two slots of 64 bytes each: - Bytes 0-63: Slot 1 - Bytes 64-127: Slot 2 When importing from a tag table, e.g., TIA Portal, use `input_offset`/`output_offset` to convert global PLC addresses to device-local addresses: `device_byte_address` = `plc_byte_address` - offset
|
|
4068
|
+
* The byte address in the PROFINET device\'s process image, with offset 0. The slot is automatically determined based on this address and the configured slot layout. For example, with two slots of 64 bytes each: - Bytes 0-63: Slot 1 - Bytes 64-127: Slot 2 When importing from a tag table, e.g., TIA Portal, use per-slot `offsets` (or the deprecated `input_offset`/`output_offset`) to convert global PLC addresses to device-local addresses: `device_byte_address` = `plc_byte_address` - offset
|
|
3798
4069
|
*/
|
|
3799
4070
|
'byte_address': number;
|
|
3800
4071
|
/**
|
|
@@ -3817,7 +4088,7 @@ interface ProfinetIOData {
|
|
|
3817
4088
|
*/
|
|
3818
4089
|
'direction': ProfinetIODirection;
|
|
3819
4090
|
/**
|
|
3820
|
-
* The byte address in the PROFINET device\'s process image, with offset 0. The slot is automatically determined based on this address and the configured slot layout. For example, with two slots of 64 bytes each: - Bytes 0-63: Slot 1 - Bytes 64-127: Slot 2 When importing from a tag table, e.g., TIA Portal, use `input_offset`/`output_offset` to convert global PLC addresses to device-local addresses: `device_byte_address` = `plc_byte_address` - offset
|
|
4091
|
+
* The byte address in the PROFINET device\'s process image, with offset 0. The slot is automatically determined based on this address and the configured slot layout. For example, with two slots of 64 bytes each: - Bytes 0-63: Slot 1 - Bytes 64-127: Slot 2 When importing from a tag table, e.g., TIA Portal, use per-slot `offsets` (or the deprecated `input_offset`/`output_offset`) to convert global PLC addresses to device-local addresses: `device_byte_address` = `plc_byte_address` - offset
|
|
3821
4092
|
*/
|
|
3822
4093
|
'byte_address': number;
|
|
3823
4094
|
/**
|
|
@@ -3856,13 +4127,19 @@ interface ProfinetInputOutputConfig {
|
|
|
3856
4127
|
*/
|
|
3857
4128
|
'config': string;
|
|
3858
4129
|
/**
|
|
3859
|
-
*
|
|
4130
|
+
* Per-slot offsets for translating controller addresses to PROFINET device-local byte addresses. Use this field for multi-slot devices. If omitted, the deprecated `input_offset` and `output_offset` fields are used for backward compatibility.
|
|
3860
4131
|
*/
|
|
3861
|
-
'
|
|
4132
|
+
'offsets'?: Array<ProfinetSlotOffset>;
|
|
3862
4133
|
/**
|
|
3863
|
-
* Offset in bytes for the
|
|
4134
|
+
* Offset in bytes for the addresses of input variables from the perspective of the controller. This field is deprecated and replaced by `offsets` to support per-slot offsets. The offset is subtracted from the byte addresses of the sent XML content.
|
|
4135
|
+
* @deprecated
|
|
3864
4136
|
*/
|
|
3865
|
-
'
|
|
4137
|
+
'input_offset'?: number;
|
|
4138
|
+
/**
|
|
4139
|
+
* Offset in bytes for the addresses of output variables from the perspective of the controller. This field is deprecated and replaced by `offsets` to support per-slot offsets. The offset is subtracted from the byte addresses of the sent XML content.
|
|
4140
|
+
* @deprecated
|
|
4141
|
+
*/
|
|
4142
|
+
'output_offset'?: number;
|
|
3866
4143
|
}
|
|
3867
4144
|
/**
|
|
3868
4145
|
* 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).
|
|
@@ -3881,6 +4158,20 @@ interface ProfinetSlotDescription {
|
|
|
3881
4158
|
*/
|
|
3882
4159
|
'subslots': Array<ProfinetSubSlotDescription>;
|
|
3883
4160
|
}
|
|
4161
|
+
interface ProfinetSlotOffset {
|
|
4162
|
+
/**
|
|
4163
|
+
* The number/index of the PROFINET slot these offsets apply to. Per default, slot 0 is reserved for the device access point (DAP). Slots that are part of the cyclic input/output data exchange start at number 1.
|
|
4164
|
+
*/
|
|
4165
|
+
'slot': number;
|
|
4166
|
+
/**
|
|
4167
|
+
* This slot\'s offset in bytes for the addresses of input variables from the perspective of the controller. For imported tag tables, this offset is subtracted from the controller byte addresses.
|
|
4168
|
+
*/
|
|
4169
|
+
'input_offset': number;
|
|
4170
|
+
/**
|
|
4171
|
+
* This slot\'s offset in bytes for the addresses of output variables from the perspective of the controller. For imported tag tables, this offset is subtracted from the controller byte addresses.
|
|
4172
|
+
*/
|
|
4173
|
+
'output_offset': number;
|
|
4174
|
+
}
|
|
3884
4175
|
interface ProfinetSubSlotDescription {
|
|
3885
4176
|
/**
|
|
3886
4177
|
* The number/index of the PROFINET subslot.
|
|
@@ -4134,7 +4425,7 @@ interface RobotController {
|
|
|
4134
4425
|
/**
|
|
4135
4426
|
* @type RobotControllerConfiguration
|
|
4136
4427
|
*/
|
|
4137
|
-
type RobotControllerConfiguration = AbbController | FanucController | KukaController | UniversalrobotsController | VirtualController | YaskawaController;
|
|
4428
|
+
type RobotControllerConfiguration = AbbController | BostondynamicsController | FanucController | KukaController | StaubliController | UnitreeController | UniversalrobotsController | VirtualController | YaskawaController;
|
|
4138
4429
|
/**
|
|
4139
4430
|
* Information to generate all robot controller configurations that match a given ARP scan result.
|
|
4140
4431
|
*/
|
|
@@ -4530,6 +4821,15 @@ declare const SettableRobotSystemMode: {
|
|
|
4530
4821
|
readonly ModeControl: "MODE_CONTROL";
|
|
4531
4822
|
};
|
|
4532
4823
|
type SettableRobotSystemMode = typeof SettableRobotSystemMode[keyof typeof SettableRobotSystemMode];
|
|
4824
|
+
/**
|
|
4825
|
+
* <!-- theme: danger --> > > **Experimental** Strategy used to deal with wrist singularities along a cartesian path. > > - `NONE`: No special handling; a singularity ends the path. > - `PALLETIZING_WRIST`: When performing a palletizing motion, attempt to bridge a wrist singularity by flipping the wrist branch. > A palletizing motion is a motion where the flange axis of rotation is alway parallel to the base axis of rotation. > This flag is supported for all robots except FANUC CRX and ABB GoFa. > - `ADAPTIVE_SAMPLING`: Alternative cartesian solver that re-samples the path in proximity to a singularity.
|
|
4826
|
+
*/
|
|
4827
|
+
declare const SingularityHandling: {
|
|
4828
|
+
readonly None: "NONE";
|
|
4829
|
+
readonly PalletizingWrist: "PALLETIZING_WRIST";
|
|
4830
|
+
readonly AdaptiveSampling: "ADAPTIVE_SAMPLING";
|
|
4831
|
+
};
|
|
4832
|
+
type SingularityHandling = typeof SingularityHandling[keyof typeof SingularityHandling];
|
|
4533
4833
|
declare const SingularityTypeEnum: {
|
|
4534
4834
|
readonly Wrist: "WRIST";
|
|
4535
4835
|
readonly Elbow: "ELBOW";
|
|
@@ -4691,6 +4991,55 @@ interface StartOnIO {
|
|
|
4691
4991
|
'comparator': Comparator;
|
|
4692
4992
|
'io_origin': IOOrigin;
|
|
4693
4993
|
}
|
|
4994
|
+
/**
|
|
4995
|
+
* The configuration of a physical STÄUBLI robot controller has to contain an IP address. Additionally, an RTI server configuration has to be specified in order to control the robot. Deploying the server is a functionality of this API.
|
|
4996
|
+
*/
|
|
4997
|
+
interface StaubliController {
|
|
4998
|
+
'kind': StaubliControllerKindEnum;
|
|
4999
|
+
'controller_ip': string;
|
|
5000
|
+
'network_interface'?: ControllerNetworkInterface;
|
|
5001
|
+
'controller_port': number;
|
|
5002
|
+
'command_port': number;
|
|
5003
|
+
'rti_server': StaubliControllerRtiServer;
|
|
5004
|
+
}
|
|
5005
|
+
declare const StaubliControllerKindEnum: {
|
|
5006
|
+
readonly StaubliController: "StaubliController";
|
|
5007
|
+
};
|
|
5008
|
+
type StaubliControllerKindEnum = typeof StaubliControllerKindEnum[keyof typeof StaubliControllerKindEnum];
|
|
5009
|
+
/**
|
|
5010
|
+
* The RTI server runs inside of the cell.
|
|
5011
|
+
*/
|
|
5012
|
+
interface StaubliControllerRtiServer {
|
|
5013
|
+
'ip': string;
|
|
5014
|
+
'port': number;
|
|
5015
|
+
}
|
|
5016
|
+
/**
|
|
5017
|
+
* Request to stop executing action chunks. If successful, `execute` jogging state in [MotionGroupState](MotionGroupState.yaml) is set to `PAUSED_BY_USER`.
|
|
5018
|
+
*/
|
|
5019
|
+
interface StopActionChunksRequest {
|
|
5020
|
+
/**
|
|
5021
|
+
* Type specifier for server, set automatically.
|
|
5022
|
+
*/
|
|
5023
|
+
'message_type': StopActionChunksRequestMessageTypeEnum;
|
|
5024
|
+
}
|
|
5025
|
+
declare const StopActionChunksRequestMessageTypeEnum: {
|
|
5026
|
+
readonly StopActionChunksRequest: "StopActionChunksRequest";
|
|
5027
|
+
};
|
|
5028
|
+
type StopActionChunksRequestMessageTypeEnum = typeof StopActionChunksRequestMessageTypeEnum[keyof typeof StopActionChunksRequestMessageTypeEnum];
|
|
5029
|
+
/**
|
|
5030
|
+
* Acknowledgment to a StopActionChunksRequest.
|
|
5031
|
+
*/
|
|
5032
|
+
interface StopActionChunksResponse {
|
|
5033
|
+
/**
|
|
5034
|
+
* Error message in case of invalid StopActionChunksRequest.
|
|
5035
|
+
*/
|
|
5036
|
+
'message'?: string;
|
|
5037
|
+
'kind': StopActionChunksResponseKindEnum;
|
|
5038
|
+
}
|
|
5039
|
+
declare const StopActionChunksResponseKindEnum: {
|
|
5040
|
+
readonly StopReceived: "STOP_RECEIVED";
|
|
5041
|
+
};
|
|
5042
|
+
type StopActionChunksResponseKindEnum = typeof StopActionChunksResponseKindEnum[keyof typeof StopActionChunksResponseKindEnum];
|
|
4694
5043
|
/**
|
|
4695
5044
|
* A reference to an object stored in the storage service. The key is resolved against the appropriate S3 path prefix depending on context (e.g. collision/setups/, collision/colliders/).
|
|
4696
5045
|
*/
|
|
@@ -4971,17 +5320,82 @@ declare const UnitType: {
|
|
|
4971
5320
|
readonly UnitMeter: "UNIT_METER";
|
|
4972
5321
|
};
|
|
4973
5322
|
type UnitType = typeof UnitType[keyof typeof UnitType];
|
|
5323
|
+
/**
|
|
5324
|
+
* The configuration of a Unitree robot controller. Supports Go2, G1, B2, and H1 robot models. Requires the IP address of the robot and the robot model type.
|
|
5325
|
+
*/
|
|
5326
|
+
interface UnitreeController {
|
|
5327
|
+
'kind': UnitreeControllerKindEnum;
|
|
5328
|
+
/**
|
|
5329
|
+
* The IP address of the Unitree robot.
|
|
5330
|
+
*/
|
|
5331
|
+
'controller_ip': string;
|
|
5332
|
+
/**
|
|
5333
|
+
* The Unitree robot model type.
|
|
5334
|
+
*/
|
|
5335
|
+
'robot_type': UnitreeControllerRobotTypeEnum;
|
|
5336
|
+
/**
|
|
5337
|
+
* The network interface used for DDS discovery.
|
|
5338
|
+
*/
|
|
5339
|
+
'network_interface'?: string;
|
|
5340
|
+
/**
|
|
5341
|
+
* Enable DDS unicast mode for environments where multicast is unavailable.
|
|
5342
|
+
*/
|
|
5343
|
+
'dds_unicast_mode'?: boolean;
|
|
5344
|
+
/**
|
|
5345
|
+
* Enable exclusive lease-based control of the robot.
|
|
5346
|
+
*/
|
|
5347
|
+
'enable_lease'?: boolean;
|
|
5348
|
+
}
|
|
5349
|
+
declare const UnitreeControllerKindEnum: {
|
|
5350
|
+
readonly UnitreeController: "UnitreeController";
|
|
5351
|
+
};
|
|
5352
|
+
type UnitreeControllerKindEnum = typeof UnitreeControllerKindEnum[keyof typeof UnitreeControllerKindEnum];
|
|
5353
|
+
declare const UnitreeControllerRobotTypeEnum: {
|
|
5354
|
+
readonly Go2: "go2";
|
|
5355
|
+
readonly G1: "g1";
|
|
5356
|
+
readonly B2: "b2";
|
|
5357
|
+
readonly H1: "h1";
|
|
5358
|
+
};
|
|
5359
|
+
type UnitreeControllerRobotTypeEnum = typeof UnitreeControllerRobotTypeEnum[keyof typeof UnitreeControllerRobotTypeEnum];
|
|
4974
5360
|
/**
|
|
4975
5361
|
* The configuration of a physical Universal Robots controller has to contain IP address of the controller.
|
|
4976
5362
|
*/
|
|
4977
5363
|
interface UniversalrobotsController {
|
|
4978
5364
|
'kind': UniversalrobotsControllerKindEnum;
|
|
4979
5365
|
'controller_ip': string;
|
|
5366
|
+
'network_interface'?: ControllerNetworkInterface;
|
|
4980
5367
|
}
|
|
4981
5368
|
declare const UniversalrobotsControllerKindEnum: {
|
|
4982
5369
|
readonly UniversalrobotsController: "UniversalrobotsController";
|
|
4983
5370
|
};
|
|
4984
5371
|
type UniversalrobotsControllerKindEnum = typeof UniversalrobotsControllerKindEnum[keyof typeof UniversalrobotsControllerKindEnum];
|
|
5372
|
+
/**
|
|
5373
|
+
* Request to unpause executing action chunks. If successful, `execute` jogging state in [MotionGroupState](MotionGroupState.yaml) is set to `RUNNING`.
|
|
5374
|
+
*/
|
|
5375
|
+
interface UnpauseActionChunksRequest {
|
|
5376
|
+
/**
|
|
5377
|
+
* Type specifier for server, set automatically.
|
|
5378
|
+
*/
|
|
5379
|
+
'message_type': UnpauseActionChunksRequestMessageTypeEnum;
|
|
5380
|
+
}
|
|
5381
|
+
declare const UnpauseActionChunksRequestMessageTypeEnum: {
|
|
5382
|
+
readonly UnpauseActionChunksRequest: "UnpauseActionChunksRequest";
|
|
5383
|
+
};
|
|
5384
|
+
type UnpauseActionChunksRequestMessageTypeEnum = typeof UnpauseActionChunksRequestMessageTypeEnum[keyof typeof UnpauseActionChunksRequestMessageTypeEnum];
|
|
5385
|
+
/**
|
|
5386
|
+
* Acknowledgment to an UnpauseActionChunksRequest.
|
|
5387
|
+
*/
|
|
5388
|
+
interface UnpauseActionChunksResponse {
|
|
5389
|
+
/**
|
|
5390
|
+
* Error message in case of invalid UnpauseActionChunksRequest.
|
|
5391
|
+
*/
|
|
5392
|
+
'message'?: string;
|
|
5393
|
+
'kind': UnpauseActionChunksResponseKindEnum;
|
|
5394
|
+
}
|
|
5395
|
+
declare const UnpauseActionChunksResponseKindEnum: {
|
|
5396
|
+
readonly UnpauseReceived: "UNPAUSE_RECEIVED";
|
|
5397
|
+
};
|
|
5398
|
+
type UnpauseActionChunksResponseKindEnum = typeof UnpauseActionChunksResponseKindEnum[keyof typeof UnpauseActionChunksResponseKindEnum];
|
|
4985
5399
|
/**
|
|
4986
5400
|
* Update a single cell\'s Foundation chart version based on the indicated release channel.
|
|
4987
5401
|
*/
|
|
@@ -5050,9 +5464,13 @@ interface VirtualController {
|
|
|
5050
5464
|
*/
|
|
5051
5465
|
'json'?: string;
|
|
5052
5466
|
/**
|
|
5053
|
-
* Initial joint position of the first motion group from the virtual robot controller. Provides the joint position as a JSON array of float values in radians
|
|
5467
|
+
* Initial joint position of the first motion group from the virtual robot controller. Provides the joint position as a JSON array of float values in radians. The array length must match the robot\'s degrees of freedom, e.g., `\"[0, 0, 0, 0, 0, 0]\"` for a 6-DOF robot. If the provided array length does not match the robot\'s DOF, the array will be adjusted: if it is longer, extra values will be truncated; if it is shorter, missing values will be filled with zeros.
|
|
5054
5468
|
*/
|
|
5055
5469
|
'initial_joint_position'?: string;
|
|
5470
|
+
/**
|
|
5471
|
+
* Adds a motion group configuration for the virtual robot controller. > **NOTE** > > Set only one of the two options, **motion_group_model**, or **json_data** - **motion_group_model**: Identifies a single motion group. See [getMotionGroupModels](#/operations/getMotionGroupModels) for supported types - **json_data**: JSON configuration of the virtual robot controller, can be obtained from the physical controller\'s configuration via [getVirtualControllerConfiguration](#/operations/getVirtualControllerConfiguration) - **extracted_motion_group_id**: Motion group identifier to extract from the provided JSON configuration, required when using json_data - **motion_group**: Unique identifier for the motion group - **initial_joint_position**: Specifies the initial joint position for the added motion group
|
|
5472
|
+
*/
|
|
5473
|
+
'motion_groups'?: Array<AddVirtualControllerMotionGroupRequest>;
|
|
5056
5474
|
}
|
|
5057
5475
|
declare const VirtualControllerKindEnum: {
|
|
5058
5476
|
readonly VirtualController: "VirtualController";
|
|
@@ -5078,12 +5496,35 @@ interface WaitForIOEventRequest {
|
|
|
5078
5496
|
*/
|
|
5079
5497
|
'comparator': Comparator;
|
|
5080
5498
|
}
|
|
5499
|
+
/**
|
|
5500
|
+
* A waypoint for action chunk streaming. > **NOTE** > > This type is experimental and its behavior may change in future releases.
|
|
5501
|
+
*/
|
|
5502
|
+
interface Waypoint {
|
|
5503
|
+
/**
|
|
5504
|
+
* Exact timestamp [ms] at which the waypoint should be reached, relative to the start of the session.
|
|
5505
|
+
*/
|
|
5506
|
+
'timestamp': number;
|
|
5507
|
+
/**
|
|
5508
|
+
* Coordinates for this waypoint.
|
|
5509
|
+
*/
|
|
5510
|
+
'waypoint': WaypointCoordinates;
|
|
5511
|
+
}
|
|
5512
|
+
/**
|
|
5513
|
+
* @type WaypointCoordinates
|
|
5514
|
+
* Coordinates for an action chunk streaming waypoint. > **NOTE** > > This type is experimental and its behavior may change in future releases.
|
|
5515
|
+
*/
|
|
5516
|
+
type WaypointCoordinates = {
|
|
5517
|
+
kind: 'JOINTS';
|
|
5518
|
+
} & JointWaypoint | {
|
|
5519
|
+
kind: 'POSE';
|
|
5520
|
+
} & PoseWaypoint;
|
|
5081
5521
|
/**
|
|
5082
5522
|
* The configuration of a physical Yaskawa robot controller has to contain IP address of the controller.
|
|
5083
5523
|
*/
|
|
5084
5524
|
interface YaskawaController {
|
|
5085
5525
|
'kind': YaskawaControllerKindEnum;
|
|
5086
5526
|
'controller_ip': string;
|
|
5527
|
+
'network_interface'?: ControllerNetworkInterface;
|
|
5087
5528
|
}
|
|
5088
5529
|
declare const YaskawaControllerKindEnum: {
|
|
5089
5530
|
readonly YaskawaController: "YaskawaController";
|
|
@@ -5116,6 +5557,66 @@ interface ZodValidationErrorErrorDetailsInner {
|
|
|
5116
5557
|
* @type ZodValidationErrorErrorDetailsInnerPathInner
|
|
5117
5558
|
*/
|
|
5118
5559
|
type ZodValidationErrorErrorDetailsInnerPathInner = number | string;
|
|
5560
|
+
/**
|
|
5561
|
+
* ActionChunkStreamingApi - axios parameter creator
|
|
5562
|
+
*/
|
|
5563
|
+
declare const ActionChunkStreamingApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
5564
|
+
/**
|
|
5565
|
+
* **Required permissions:** `can_operate_controllers` - Operate and monitor robot controllers ___ <!-- theme: danger --> > **Experimental** > > This endpoint is experimental and its behavior may change in future releases. > Websocket endpoint Provides action chunk control for a motion group. An action chunk is a queue of timed waypoints that the robot moves through by best effort. This can be used for realtime action chunk streaming, e.g., from a Vision-Language-Action (VLA) model. ### Preconditions The motion group is not moved by any other endpoint. ### Requests #### 1. Send `InitializeActionChunksRequest` to configure the action chunk. - Sets the robot controller mode to control mode. - Claims the motion group. For robotic arms, TCP is required to ensure that limits, including TCP limits, are respected. #### 2. Send `ActionChunk`s to stream waypoints. - The first message starts an internal clock. - Each waypoint carries a timestamp relative to that clock for when it should be reached. - Existing waypoints in the queue that are older than the first new timestamp are removed. - The current session timestamp is reported in `execute.details.jogger_session_timestamp_ms` of the [streamRobotControllerState](#/operations/streamRobotControllerState) endpoint. #### 3. Stop the motion - Send `PauseActionChunksRequest` to stop the motion. ### Responses - Each request is acknowledged with a corresponding response: - `InitializeActionChunksResponse` after `InitializeActionChunksRequest` - `ActionChunkResponse` after `ActionChunkRequest` - `PauseActionChunksResponse` after `PauseActionChunksRequest` The responses confirm that the requests were received. They do not signal that the operation was successful; check the [motion group state](#/operations/streamMotionGroupState) for that. - `MovementErrorResponse` with error details is sent in case of an unexpected error, e.g., controller disconnects during moving. ### Tips and Tricks - Ensure that the websocket connection remains open until the action chunk motion is stopped to avoid unexpected stops. ### Robot States - The robot controller state is reported in the [streamRobotControllerState](#/operations/streamRobotControllerState) as JOGGING. - The meaning of the states is: - `RUNNING`: The robot is moving through the waypoints. The clock (`execute.details.jogger_session_timestamp_ms`) is running. - `PAUSED_BY_USER`: The robot is braking or in standstill due to a user request. The clock IS paused. - `PAUSED_NEAR_JOINT_LIMIT`: The robot is braking due to a joint limit. The clock is NOT paused. - `PAUSED_NEAR_COLLISION`: The robot is braking due to a collision. The clock is NOT paused. - `PAUSED_NEAR_SINGULARITY`: The robot is braking due to a singularity. The clock is NOT paused. - `PAUSED_NEAR_WORKSPACE_BOUNDARY`: The robot is braking due to a workspace boundary. The clock is NOT paused.
|
|
5566
|
+
* @summary Execute Action Chunks
|
|
5567
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
5568
|
+
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
5569
|
+
* @param {ExecuteActionChunksRequest} executeActionChunksRequest
|
|
5570
|
+
* @param {*} [options] Override http request option.
|
|
5571
|
+
* @throws {RequiredError}
|
|
5572
|
+
*/
|
|
5573
|
+
executeActionChunks: (cell: string, controller: string, executeActionChunksRequest: ExecuteActionChunksRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
5574
|
+
};
|
|
5575
|
+
/**
|
|
5576
|
+
* ActionChunkStreamingApi - functional programming interface
|
|
5577
|
+
*/
|
|
5578
|
+
declare const ActionChunkStreamingApiFp: (configuration?: Configuration) => {
|
|
5579
|
+
/**
|
|
5580
|
+
* **Required permissions:** `can_operate_controllers` - Operate and monitor robot controllers ___ <!-- theme: danger --> > **Experimental** > > This endpoint is experimental and its behavior may change in future releases. > Websocket endpoint Provides action chunk control for a motion group. An action chunk is a queue of timed waypoints that the robot moves through by best effort. This can be used for realtime action chunk streaming, e.g., from a Vision-Language-Action (VLA) model. ### Preconditions The motion group is not moved by any other endpoint. ### Requests #### 1. Send `InitializeActionChunksRequest` to configure the action chunk. - Sets the robot controller mode to control mode. - Claims the motion group. For robotic arms, TCP is required to ensure that limits, including TCP limits, are respected. #### 2. Send `ActionChunk`s to stream waypoints. - The first message starts an internal clock. - Each waypoint carries a timestamp relative to that clock for when it should be reached. - Existing waypoints in the queue that are older than the first new timestamp are removed. - The current session timestamp is reported in `execute.details.jogger_session_timestamp_ms` of the [streamRobotControllerState](#/operations/streamRobotControllerState) endpoint. #### 3. Stop the motion - Send `PauseActionChunksRequest` to stop the motion. ### Responses - Each request is acknowledged with a corresponding response: - `InitializeActionChunksResponse` after `InitializeActionChunksRequest` - `ActionChunkResponse` after `ActionChunkRequest` - `PauseActionChunksResponse` after `PauseActionChunksRequest` The responses confirm that the requests were received. They do not signal that the operation was successful; check the [motion group state](#/operations/streamMotionGroupState) for that. - `MovementErrorResponse` with error details is sent in case of an unexpected error, e.g., controller disconnects during moving. ### Tips and Tricks - Ensure that the websocket connection remains open until the action chunk motion is stopped to avoid unexpected stops. ### Robot States - The robot controller state is reported in the [streamRobotControllerState](#/operations/streamRobotControllerState) as JOGGING. - The meaning of the states is: - `RUNNING`: The robot is moving through the waypoints. The clock (`execute.details.jogger_session_timestamp_ms`) is running. - `PAUSED_BY_USER`: The robot is braking or in standstill due to a user request. The clock IS paused. - `PAUSED_NEAR_JOINT_LIMIT`: The robot is braking due to a joint limit. The clock is NOT paused. - `PAUSED_NEAR_COLLISION`: The robot is braking due to a collision. The clock is NOT paused. - `PAUSED_NEAR_SINGULARITY`: The robot is braking due to a singularity. The clock is NOT paused. - `PAUSED_NEAR_WORKSPACE_BOUNDARY`: The robot is braking due to a workspace boundary. The clock is NOT paused.
|
|
5581
|
+
* @summary Execute Action Chunks
|
|
5582
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
5583
|
+
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
5584
|
+
* @param {ExecuteActionChunksRequest} executeActionChunksRequest
|
|
5585
|
+
* @param {*} [options] Override http request option.
|
|
5586
|
+
* @throws {RequiredError}
|
|
5587
|
+
*/
|
|
5588
|
+
executeActionChunks(cell: string, controller: string, executeActionChunksRequest: ExecuteActionChunksRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ExecuteActionChunksResponse>>;
|
|
5589
|
+
};
|
|
5590
|
+
/**
|
|
5591
|
+
* ActionChunkStreamingApi - factory interface
|
|
5592
|
+
*/
|
|
5593
|
+
declare const ActionChunkStreamingApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
5594
|
+
/**
|
|
5595
|
+
* **Required permissions:** `can_operate_controllers` - Operate and monitor robot controllers ___ <!-- theme: danger --> > **Experimental** > > This endpoint is experimental and its behavior may change in future releases. > Websocket endpoint Provides action chunk control for a motion group. An action chunk is a queue of timed waypoints that the robot moves through by best effort. This can be used for realtime action chunk streaming, e.g., from a Vision-Language-Action (VLA) model. ### Preconditions The motion group is not moved by any other endpoint. ### Requests #### 1. Send `InitializeActionChunksRequest` to configure the action chunk. - Sets the robot controller mode to control mode. - Claims the motion group. For robotic arms, TCP is required to ensure that limits, including TCP limits, are respected. #### 2. Send `ActionChunk`s to stream waypoints. - The first message starts an internal clock. - Each waypoint carries a timestamp relative to that clock for when it should be reached. - Existing waypoints in the queue that are older than the first new timestamp are removed. - The current session timestamp is reported in `execute.details.jogger_session_timestamp_ms` of the [streamRobotControllerState](#/operations/streamRobotControllerState) endpoint. #### 3. Stop the motion - Send `PauseActionChunksRequest` to stop the motion. ### Responses - Each request is acknowledged with a corresponding response: - `InitializeActionChunksResponse` after `InitializeActionChunksRequest` - `ActionChunkResponse` after `ActionChunkRequest` - `PauseActionChunksResponse` after `PauseActionChunksRequest` The responses confirm that the requests were received. They do not signal that the operation was successful; check the [motion group state](#/operations/streamMotionGroupState) for that. - `MovementErrorResponse` with error details is sent in case of an unexpected error, e.g., controller disconnects during moving. ### Tips and Tricks - Ensure that the websocket connection remains open until the action chunk motion is stopped to avoid unexpected stops. ### Robot States - The robot controller state is reported in the [streamRobotControllerState](#/operations/streamRobotControllerState) as JOGGING. - The meaning of the states is: - `RUNNING`: The robot is moving through the waypoints. The clock (`execute.details.jogger_session_timestamp_ms`) is running. - `PAUSED_BY_USER`: The robot is braking or in standstill due to a user request. The clock IS paused. - `PAUSED_NEAR_JOINT_LIMIT`: The robot is braking due to a joint limit. The clock is NOT paused. - `PAUSED_NEAR_COLLISION`: The robot is braking due to a collision. The clock is NOT paused. - `PAUSED_NEAR_SINGULARITY`: The robot is braking due to a singularity. The clock is NOT paused. - `PAUSED_NEAR_WORKSPACE_BOUNDARY`: The robot is braking due to a workspace boundary. The clock is NOT paused.
|
|
5596
|
+
* @summary Execute Action Chunks
|
|
5597
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
5598
|
+
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
5599
|
+
* @param {ExecuteActionChunksRequest} executeActionChunksRequest
|
|
5600
|
+
* @param {*} [options] Override http request option.
|
|
5601
|
+
* @throws {RequiredError}
|
|
5602
|
+
*/
|
|
5603
|
+
executeActionChunks(cell: string, controller: string, executeActionChunksRequest: ExecuteActionChunksRequest, options?: RawAxiosRequestConfig): AxiosPromise<ExecuteActionChunksResponse>;
|
|
5604
|
+
};
|
|
5605
|
+
/**
|
|
5606
|
+
* ActionChunkStreamingApi - object-oriented interface
|
|
5607
|
+
*/
|
|
5608
|
+
declare class ActionChunkStreamingApi extends BaseAPI {
|
|
5609
|
+
/**
|
|
5610
|
+
* **Required permissions:** `can_operate_controllers` - Operate and monitor robot controllers ___ <!-- theme: danger --> > **Experimental** > > This endpoint is experimental and its behavior may change in future releases. > Websocket endpoint Provides action chunk control for a motion group. An action chunk is a queue of timed waypoints that the robot moves through by best effort. This can be used for realtime action chunk streaming, e.g., from a Vision-Language-Action (VLA) model. ### Preconditions The motion group is not moved by any other endpoint. ### Requests #### 1. Send `InitializeActionChunksRequest` to configure the action chunk. - Sets the robot controller mode to control mode. - Claims the motion group. For robotic arms, TCP is required to ensure that limits, including TCP limits, are respected. #### 2. Send `ActionChunk`s to stream waypoints. - The first message starts an internal clock. - Each waypoint carries a timestamp relative to that clock for when it should be reached. - Existing waypoints in the queue that are older than the first new timestamp are removed. - The current session timestamp is reported in `execute.details.jogger_session_timestamp_ms` of the [streamRobotControllerState](#/operations/streamRobotControllerState) endpoint. #### 3. Stop the motion - Send `PauseActionChunksRequest` to stop the motion. ### Responses - Each request is acknowledged with a corresponding response: - `InitializeActionChunksResponse` after `InitializeActionChunksRequest` - `ActionChunkResponse` after `ActionChunkRequest` - `PauseActionChunksResponse` after `PauseActionChunksRequest` The responses confirm that the requests were received. They do not signal that the operation was successful; check the [motion group state](#/operations/streamMotionGroupState) for that. - `MovementErrorResponse` with error details is sent in case of an unexpected error, e.g., controller disconnects during moving. ### Tips and Tricks - Ensure that the websocket connection remains open until the action chunk motion is stopped to avoid unexpected stops. ### Robot States - The robot controller state is reported in the [streamRobotControllerState](#/operations/streamRobotControllerState) as JOGGING. - The meaning of the states is: - `RUNNING`: The robot is moving through the waypoints. The clock (`execute.details.jogger_session_timestamp_ms`) is running. - `PAUSED_BY_USER`: The robot is braking or in standstill due to a user request. The clock IS paused. - `PAUSED_NEAR_JOINT_LIMIT`: The robot is braking due to a joint limit. The clock is NOT paused. - `PAUSED_NEAR_COLLISION`: The robot is braking due to a collision. The clock is NOT paused. - `PAUSED_NEAR_SINGULARITY`: The robot is braking due to a singularity. The clock is NOT paused. - `PAUSED_NEAR_WORKSPACE_BOUNDARY`: The robot is braking due to a workspace boundary. The clock is NOT paused.
|
|
5611
|
+
* @summary Execute Action Chunks
|
|
5612
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
5613
|
+
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
5614
|
+
* @param {ExecuteActionChunksRequest} executeActionChunksRequest
|
|
5615
|
+
* @param {*} [options] Override http request option.
|
|
5616
|
+
* @throws {RequiredError}
|
|
5617
|
+
*/
|
|
5618
|
+
executeActionChunks(cell: string, controller: string, executeActionChunksRequest: ExecuteActionChunksRequest, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<ExecuteActionChunksResponse, any, {}>>;
|
|
5619
|
+
}
|
|
5119
5620
|
/**
|
|
5120
5621
|
* ApplicationApi - axios parameter creator
|
|
5121
5622
|
*/
|
|
@@ -5510,15 +6011,16 @@ declare const BUSInputsOutputsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
5510
6011
|
*/
|
|
5511
6012
|
getProfinetGSDML: (cell: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
5512
6013
|
/**
|
|
5513
|
-
* **Required permissions:** `can_operate_bus_ios` - Read and write BUS IO values ___ Get input/output variable configuration of the PROFINET device, e.g., NOVA\'s PROFINET service as file. You can specify byte offsets for
|
|
6014
|
+
* **Required permissions:** `can_operate_bus_ios` - Read and write BUS IO values ___ Get input/output variable configuration of the PROFINET device, e.g., NOVA\'s PROFINET service as file. You can specify per-slot byte offsets for input and output variable addresses to get an XML tag map that is ready for pasting to third party software, e.g., TIA portal. For backward compatibility, the legacy `input_offset` and `output_offset` query parameters remain available, but deprecated.
|
|
5514
6015
|
* @summary PROFINET Inputs/Outputs to File
|
|
5515
6016
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
6017
|
+
* @param {Array<ProfinetSlotOffset>} [offsets] Per-slot offsets used to convert device-local byte addresses to controller byte addresses for export. If this parameter is provided, it is preferred over the deprecated `input_offset` and `output_offset` query parameters.
|
|
5516
6018
|
* @param {number} [inputOffset]
|
|
5517
6019
|
* @param {number} [outputOffset]
|
|
5518
6020
|
* @param {*} [options] Override http request option.
|
|
5519
6021
|
* @throws {RequiredError}
|
|
5520
6022
|
*/
|
|
5521
|
-
getProfinetIOsFromFile: (cell: string, inputOffset?: number, outputOffset?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
6023
|
+
getProfinetIOsFromFile: (cell: string, offsets?: Array<ProfinetSlotOffset>, inputOffset?: number, outputOffset?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
5522
6024
|
/**
|
|
5523
6025
|
* **Required permissions:** `can_operate_bus_ios` - Read and write BUS IO values ___ 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.
|
|
5524
6026
|
* @summary List Descriptions
|
|
@@ -5716,15 +6218,16 @@ declare const BUSInputsOutputsApiFp: (configuration?: Configuration) => {
|
|
|
5716
6218
|
*/
|
|
5717
6219
|
getProfinetGSDML(cell: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<string>>;
|
|
5718
6220
|
/**
|
|
5719
|
-
* **Required permissions:** `can_operate_bus_ios` - Read and write BUS IO values ___ Get input/output variable configuration of the PROFINET device, e.g., NOVA\'s PROFINET service as file. You can specify byte offsets for
|
|
6221
|
+
* **Required permissions:** `can_operate_bus_ios` - Read and write BUS IO values ___ Get input/output variable configuration of the PROFINET device, e.g., NOVA\'s PROFINET service as file. You can specify per-slot byte offsets for input and output variable addresses to get an XML tag map that is ready for pasting to third party software, e.g., TIA portal. For backward compatibility, the legacy `input_offset` and `output_offset` query parameters remain available, but deprecated.
|
|
5720
6222
|
* @summary PROFINET Inputs/Outputs to File
|
|
5721
6223
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
6224
|
+
* @param {Array<ProfinetSlotOffset>} [offsets] Per-slot offsets used to convert device-local byte addresses to controller byte addresses for export. If this parameter is provided, it is preferred over the deprecated `input_offset` and `output_offset` query parameters.
|
|
5722
6225
|
* @param {number} [inputOffset]
|
|
5723
6226
|
* @param {number} [outputOffset]
|
|
5724
6227
|
* @param {*} [options] Override http request option.
|
|
5725
6228
|
* @throws {RequiredError}
|
|
5726
6229
|
*/
|
|
5727
|
-
getProfinetIOsFromFile(cell: string, inputOffset?: number, outputOffset?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<string>>;
|
|
6230
|
+
getProfinetIOsFromFile(cell: string, offsets?: Array<ProfinetSlotOffset>, inputOffset?: number, outputOffset?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<string>>;
|
|
5728
6231
|
/**
|
|
5729
6232
|
* **Required permissions:** `can_operate_bus_ios` - Read and write BUS IO values ___ 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.
|
|
5730
6233
|
* @summary List Descriptions
|
|
@@ -5922,15 +6425,16 @@ declare const BUSInputsOutputsApiFactory: (configuration?: Configuration, basePa
|
|
|
5922
6425
|
*/
|
|
5923
6426
|
getProfinetGSDML(cell: string, options?: RawAxiosRequestConfig): AxiosPromise<string>;
|
|
5924
6427
|
/**
|
|
5925
|
-
* **Required permissions:** `can_operate_bus_ios` - Read and write BUS IO values ___ Get input/output variable configuration of the PROFINET device, e.g., NOVA\'s PROFINET service as file. You can specify byte offsets for
|
|
6428
|
+
* **Required permissions:** `can_operate_bus_ios` - Read and write BUS IO values ___ Get input/output variable configuration of the PROFINET device, e.g., NOVA\'s PROFINET service as file. You can specify per-slot byte offsets for input and output variable addresses to get an XML tag map that is ready for pasting to third party software, e.g., TIA portal. For backward compatibility, the legacy `input_offset` and `output_offset` query parameters remain available, but deprecated.
|
|
5926
6429
|
* @summary PROFINET Inputs/Outputs to File
|
|
5927
6430
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
6431
|
+
* @param {Array<ProfinetSlotOffset>} [offsets] Per-slot offsets used to convert device-local byte addresses to controller byte addresses for export. If this parameter is provided, it is preferred over the deprecated `input_offset` and `output_offset` query parameters.
|
|
5928
6432
|
* @param {number} [inputOffset]
|
|
5929
6433
|
* @param {number} [outputOffset]
|
|
5930
6434
|
* @param {*} [options] Override http request option.
|
|
5931
6435
|
* @throws {RequiredError}
|
|
5932
6436
|
*/
|
|
5933
|
-
getProfinetIOsFromFile(cell: string, inputOffset?: number, outputOffset?: number, options?: RawAxiosRequestConfig): AxiosPromise<string>;
|
|
6437
|
+
getProfinetIOsFromFile(cell: string, offsets?: Array<ProfinetSlotOffset>, inputOffset?: number, outputOffset?: number, options?: RawAxiosRequestConfig): AxiosPromise<string>;
|
|
5934
6438
|
/**
|
|
5935
6439
|
* **Required permissions:** `can_operate_bus_ios` - Read and write BUS IO values ___ 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.
|
|
5936
6440
|
* @summary List Descriptions
|
|
@@ -6128,15 +6632,16 @@ declare class BUSInputsOutputsApi extends BaseAPI {
|
|
|
6128
6632
|
*/
|
|
6129
6633
|
getProfinetGSDML(cell: string, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<string, any, {}>>;
|
|
6130
6634
|
/**
|
|
6131
|
-
* **Required permissions:** `can_operate_bus_ios` - Read and write BUS IO values ___ Get input/output variable configuration of the PROFINET device, e.g., NOVA\'s PROFINET service as file. You can specify byte offsets for
|
|
6635
|
+
* **Required permissions:** `can_operate_bus_ios` - Read and write BUS IO values ___ Get input/output variable configuration of the PROFINET device, e.g., NOVA\'s PROFINET service as file. You can specify per-slot byte offsets for input and output variable addresses to get an XML tag map that is ready for pasting to third party software, e.g., TIA portal. For backward compatibility, the legacy `input_offset` and `output_offset` query parameters remain available, but deprecated.
|
|
6132
6636
|
* @summary PROFINET Inputs/Outputs to File
|
|
6133
6637
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
6638
|
+
* @param {Array<ProfinetSlotOffset>} [offsets] Per-slot offsets used to convert device-local byte addresses to controller byte addresses for export. If this parameter is provided, it is preferred over the deprecated `input_offset` and `output_offset` query parameters.
|
|
6134
6639
|
* @param {number} [inputOffset]
|
|
6135
6640
|
* @param {number} [outputOffset]
|
|
6136
6641
|
* @param {*} [options] Override http request option.
|
|
6137
6642
|
* @throws {RequiredError}
|
|
6138
6643
|
*/
|
|
6139
|
-
getProfinetIOsFromFile(cell: string, inputOffset?: number, outputOffset?: number, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<string, any, {}>>;
|
|
6644
|
+
getProfinetIOsFromFile(cell: string, offsets?: Array<ProfinetSlotOffset>, inputOffset?: number, outputOffset?: number, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<string, any, {}>>;
|
|
6140
6645
|
/**
|
|
6141
6646
|
* **Required permissions:** `can_operate_bus_ios` - Read and write BUS IO values ___ 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.
|
|
6142
6647
|
* @summary List Descriptions
|
|
@@ -6220,7 +6725,7 @@ declare const CellApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
6220
6725
|
*/
|
|
6221
6726
|
deployCell: (cell: Cell, completionTimeout?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
6222
6727
|
/**
|
|
6223
|
-
* **Required permissions:** `
|
|
6728
|
+
* **Required permissions:** `can_access_system` - View system status and metadata ___ List all cell resources.
|
|
6224
6729
|
* @summary Configuration
|
|
6225
6730
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
6226
6731
|
* @param {*} [options] Override http request option.
|
|
@@ -6303,7 +6808,7 @@ declare const CellApiFp: (configuration?: Configuration) => {
|
|
|
6303
6808
|
*/
|
|
6304
6809
|
deployCell(cell: Cell, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
6305
6810
|
/**
|
|
6306
|
-
* **Required permissions:** `
|
|
6811
|
+
* **Required permissions:** `can_access_system` - View system status and metadata ___ List all cell resources.
|
|
6307
6812
|
* @summary Configuration
|
|
6308
6813
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
6309
6814
|
* @param {*} [options] Override http request option.
|
|
@@ -6386,7 +6891,7 @@ declare const CellApiFactory: (configuration?: Configuration, basePath?: string,
|
|
|
6386
6891
|
*/
|
|
6387
6892
|
deployCell(cell: Cell, completionTimeout?: number, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
6388
6893
|
/**
|
|
6389
|
-
* **Required permissions:** `
|
|
6894
|
+
* **Required permissions:** `can_access_system` - View system status and metadata ___ List all cell resources.
|
|
6390
6895
|
* @summary Configuration
|
|
6391
6896
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
6392
6897
|
* @param {*} [options] Override http request option.
|
|
@@ -6469,7 +6974,7 @@ declare class CellApi extends BaseAPI {
|
|
|
6469
6974
|
*/
|
|
6470
6975
|
deployCell(cell: Cell, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<void, any, {}>>;
|
|
6471
6976
|
/**
|
|
6472
|
-
* **Required permissions:** `
|
|
6977
|
+
* **Required permissions:** `can_access_system` - View system status and metadata ___ List all cell resources.
|
|
6473
6978
|
* @summary Configuration
|
|
6474
6979
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
6475
6980
|
* @param {*} [options] Override http request option.
|
|
@@ -7330,16 +7835,6 @@ declare const JoggingApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
7330
7835
|
* @throws {RequiredError}
|
|
7331
7836
|
*/
|
|
7332
7837
|
executeJogging: (cell: string, controller: string, executeJoggingRequest: ExecuteJoggingRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
7333
|
-
/**
|
|
7334
|
-
* **Required permissions:** `can_operate_controllers` - Operate and monitor robot controllers ___ <!-- theme: danger --> > **Experimental** > > This endpoint is experimental and its behavior may change in future releases. > Websocket endpoint Provides waypoint-based jogging control for a motion group. Instead of commanding target velocities (see [executeJogging](#/operations/executeJogging)), waypoint jogging streams a queue of timed waypoints that the robot moves through by best effort. This can be used for realtime action chunk streaming, e.g., from a Vision-Language-Action (VLA) model. ### 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. - Claims the motion group for jogging. For robotic arms, TCP is required to ensure that limits, including TCP limits, are respected. #### 2. Send `JointWaypointsRequest` or `PoseWaypointsRequest` to stream waypoints. - The first waypoints message starts an internal clock. - Each waypoint carries a timestamp relative to that clock for when it should be reached. - Existing waypoints in the queue that are older than the first new timestamp are removed. - The current session timestamp is reported in `execute.details.jogger_session_timestamp_ms` of the [streamRobotControllerState](#/operations/streamRobotControllerState) endpoint. #### 3. Stop the jogging motion - Send `PauseJoggingRequest` to stop the motion. ### Responses - Each request is acknowledged with a corresponding response: - `InitializeJoggingResponse` after `InitializeJoggingRequest` - `JointWaypointsResponse` after `JointWaypointsRequest` - `PoseWaypointsResponse` after `PoseWaypointsRequest` - `PauseJoggingResponse` after `PauseJoggingRequest` The responses confirm that the requests were received. They do not signal that the operation was successful; check the [motion group state](#/operations/streamMotionGroupState) for that. - `MovementErrorResponse` with error details is sent in case of an unexpected error, e.g., controller disconnects during jogging. ### Tips and Tricks - Ensure that the websocket connection remains open until the jogging motion is stopped to avoid unexpected stops.
|
|
7335
|
-
* @summary Execute Waypoint Jogging
|
|
7336
|
-
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
7337
|
-
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
7338
|
-
* @param {ExecuteWaypointJoggingRequest} executeWaypointJoggingRequest
|
|
7339
|
-
* @param {*} [options] Override http request option.
|
|
7340
|
-
* @throws {RequiredError}
|
|
7341
|
-
*/
|
|
7342
|
-
executeWaypointJogging: (cell: string, controller: string, executeWaypointJoggingRequest: ExecuteWaypointJoggingRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
7343
7838
|
};
|
|
7344
7839
|
/**
|
|
7345
7840
|
* JoggingApi - functional programming interface
|
|
@@ -7355,16 +7850,6 @@ declare const JoggingApiFp: (configuration?: Configuration) => {
|
|
|
7355
7850
|
* @throws {RequiredError}
|
|
7356
7851
|
*/
|
|
7357
7852
|
executeJogging(cell: string, controller: string, executeJoggingRequest: ExecuteJoggingRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ExecuteJoggingResponse>>;
|
|
7358
|
-
/**
|
|
7359
|
-
* **Required permissions:** `can_operate_controllers` - Operate and monitor robot controllers ___ <!-- theme: danger --> > **Experimental** > > This endpoint is experimental and its behavior may change in future releases. > Websocket endpoint Provides waypoint-based jogging control for a motion group. Instead of commanding target velocities (see [executeJogging](#/operations/executeJogging)), waypoint jogging streams a queue of timed waypoints that the robot moves through by best effort. This can be used for realtime action chunk streaming, e.g., from a Vision-Language-Action (VLA) model. ### 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. - Claims the motion group for jogging. For robotic arms, TCP is required to ensure that limits, including TCP limits, are respected. #### 2. Send `JointWaypointsRequest` or `PoseWaypointsRequest` to stream waypoints. - The first waypoints message starts an internal clock. - Each waypoint carries a timestamp relative to that clock for when it should be reached. - Existing waypoints in the queue that are older than the first new timestamp are removed. - The current session timestamp is reported in `execute.details.jogger_session_timestamp_ms` of the [streamRobotControllerState](#/operations/streamRobotControllerState) endpoint. #### 3. Stop the jogging motion - Send `PauseJoggingRequest` to stop the motion. ### Responses - Each request is acknowledged with a corresponding response: - `InitializeJoggingResponse` after `InitializeJoggingRequest` - `JointWaypointsResponse` after `JointWaypointsRequest` - `PoseWaypointsResponse` after `PoseWaypointsRequest` - `PauseJoggingResponse` after `PauseJoggingRequest` The responses confirm that the requests were received. They do not signal that the operation was successful; check the [motion group state](#/operations/streamMotionGroupState) for that. - `MovementErrorResponse` with error details is sent in case of an unexpected error, e.g., controller disconnects during jogging. ### Tips and Tricks - Ensure that the websocket connection remains open until the jogging motion is stopped to avoid unexpected stops.
|
|
7360
|
-
* @summary Execute Waypoint Jogging
|
|
7361
|
-
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
7362
|
-
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
7363
|
-
* @param {ExecuteWaypointJoggingRequest} executeWaypointJoggingRequest
|
|
7364
|
-
* @param {*} [options] Override http request option.
|
|
7365
|
-
* @throws {RequiredError}
|
|
7366
|
-
*/
|
|
7367
|
-
executeWaypointJogging(cell: string, controller: string, executeWaypointJoggingRequest: ExecuteWaypointJoggingRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ExecuteWaypointJoggingResponse>>;
|
|
7368
7853
|
};
|
|
7369
7854
|
/**
|
|
7370
7855
|
* JoggingApi - factory interface
|
|
@@ -7380,16 +7865,6 @@ declare const JoggingApiFactory: (configuration?: Configuration, basePath?: stri
|
|
|
7380
7865
|
* @throws {RequiredError}
|
|
7381
7866
|
*/
|
|
7382
7867
|
executeJogging(cell: string, controller: string, executeJoggingRequest: ExecuteJoggingRequest, options?: RawAxiosRequestConfig): AxiosPromise<ExecuteJoggingResponse>;
|
|
7383
|
-
/**
|
|
7384
|
-
* **Required permissions:** `can_operate_controllers` - Operate and monitor robot controllers ___ <!-- theme: danger --> > **Experimental** > > This endpoint is experimental and its behavior may change in future releases. > Websocket endpoint Provides waypoint-based jogging control for a motion group. Instead of commanding target velocities (see [executeJogging](#/operations/executeJogging)), waypoint jogging streams a queue of timed waypoints that the robot moves through by best effort. This can be used for realtime action chunk streaming, e.g., from a Vision-Language-Action (VLA) model. ### 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. - Claims the motion group for jogging. For robotic arms, TCP is required to ensure that limits, including TCP limits, are respected. #### 2. Send `JointWaypointsRequest` or `PoseWaypointsRequest` to stream waypoints. - The first waypoints message starts an internal clock. - Each waypoint carries a timestamp relative to that clock for when it should be reached. - Existing waypoints in the queue that are older than the first new timestamp are removed. - The current session timestamp is reported in `execute.details.jogger_session_timestamp_ms` of the [streamRobotControllerState](#/operations/streamRobotControllerState) endpoint. #### 3. Stop the jogging motion - Send `PauseJoggingRequest` to stop the motion. ### Responses - Each request is acknowledged with a corresponding response: - `InitializeJoggingResponse` after `InitializeJoggingRequest` - `JointWaypointsResponse` after `JointWaypointsRequest` - `PoseWaypointsResponse` after `PoseWaypointsRequest` - `PauseJoggingResponse` after `PauseJoggingRequest` The responses confirm that the requests were received. They do not signal that the operation was successful; check the [motion group state](#/operations/streamMotionGroupState) for that. - `MovementErrorResponse` with error details is sent in case of an unexpected error, e.g., controller disconnects during jogging. ### Tips and Tricks - Ensure that the websocket connection remains open until the jogging motion is stopped to avoid unexpected stops.
|
|
7385
|
-
* @summary Execute Waypoint Jogging
|
|
7386
|
-
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
7387
|
-
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
7388
|
-
* @param {ExecuteWaypointJoggingRequest} executeWaypointJoggingRequest
|
|
7389
|
-
* @param {*} [options] Override http request option.
|
|
7390
|
-
* @throws {RequiredError}
|
|
7391
|
-
*/
|
|
7392
|
-
executeWaypointJogging(cell: string, controller: string, executeWaypointJoggingRequest: ExecuteWaypointJoggingRequest, options?: RawAxiosRequestConfig): AxiosPromise<ExecuteWaypointJoggingResponse>;
|
|
7393
7868
|
};
|
|
7394
7869
|
/**
|
|
7395
7870
|
* JoggingApi - object-oriented interface
|
|
@@ -7405,16 +7880,6 @@ declare class JoggingApi extends BaseAPI {
|
|
|
7405
7880
|
* @throws {RequiredError}
|
|
7406
7881
|
*/
|
|
7407
7882
|
executeJogging(cell: string, controller: string, executeJoggingRequest: ExecuteJoggingRequest, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<ExecuteJoggingResponse, any, {}>>;
|
|
7408
|
-
/**
|
|
7409
|
-
* **Required permissions:** `can_operate_controllers` - Operate and monitor robot controllers ___ <!-- theme: danger --> > **Experimental** > > This endpoint is experimental and its behavior may change in future releases. > Websocket endpoint Provides waypoint-based jogging control for a motion group. Instead of commanding target velocities (see [executeJogging](#/operations/executeJogging)), waypoint jogging streams a queue of timed waypoints that the robot moves through by best effort. This can be used for realtime action chunk streaming, e.g., from a Vision-Language-Action (VLA) model. ### 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. - Claims the motion group for jogging. For robotic arms, TCP is required to ensure that limits, including TCP limits, are respected. #### 2. Send `JointWaypointsRequest` or `PoseWaypointsRequest` to stream waypoints. - The first waypoints message starts an internal clock. - Each waypoint carries a timestamp relative to that clock for when it should be reached. - Existing waypoints in the queue that are older than the first new timestamp are removed. - The current session timestamp is reported in `execute.details.jogger_session_timestamp_ms` of the [streamRobotControllerState](#/operations/streamRobotControllerState) endpoint. #### 3. Stop the jogging motion - Send `PauseJoggingRequest` to stop the motion. ### Responses - Each request is acknowledged with a corresponding response: - `InitializeJoggingResponse` after `InitializeJoggingRequest` - `JointWaypointsResponse` after `JointWaypointsRequest` - `PoseWaypointsResponse` after `PoseWaypointsRequest` - `PauseJoggingResponse` after `PauseJoggingRequest` The responses confirm that the requests were received. They do not signal that the operation was successful; check the [motion group state](#/operations/streamMotionGroupState) for that. - `MovementErrorResponse` with error details is sent in case of an unexpected error, e.g., controller disconnects during jogging. ### Tips and Tricks - Ensure that the websocket connection remains open until the jogging motion is stopped to avoid unexpected stops.
|
|
7410
|
-
* @summary Execute Waypoint Jogging
|
|
7411
|
-
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
7412
|
-
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
7413
|
-
* @param {ExecuteWaypointJoggingRequest} executeWaypointJoggingRequest
|
|
7414
|
-
* @param {*} [options] Override http request option.
|
|
7415
|
-
* @throws {RequiredError}
|
|
7416
|
-
*/
|
|
7417
|
-
executeWaypointJogging(cell: string, controller: string, executeWaypointJoggingRequest: ExecuteWaypointJoggingRequest, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<ExecuteWaypointJoggingResponse, any, {}>>;
|
|
7418
7883
|
}
|
|
7419
7884
|
/**
|
|
7420
7885
|
* KinematicsApi - axios parameter creator
|
|
@@ -7447,6 +7912,15 @@ declare const KinematicsApiAxiosParamCreator: (configuration?: Configuration) =>
|
|
|
7447
7912
|
* @throws {RequiredError}
|
|
7448
7913
|
*/
|
|
7449
7914
|
forwardKinematics: (cell: string, forwardKinematicsRequest: ForwardKinematicsRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
7915
|
+
/**
|
|
7916
|
+
* **Required permissions:** `can_plan_motion` - Plan robot motions and trajectories ___ Returns the kinematic configuration for each given joint position including branch and axis ranges. Supported for 6-DOF robots with spherical or offset wrist that implement kinematic branch calculation. Returns 422 with `ErrorUnsupportedOperation` for motion groups that do not support kinematic branch calculation.
|
|
7917
|
+
* @summary Get kinematic configuration
|
|
7918
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
7919
|
+
* @param {GetKinematicConfigurationRequest} getKinematicConfigurationRequest
|
|
7920
|
+
* @param {*} [options] Override http request option.
|
|
7921
|
+
* @throws {RequiredError}
|
|
7922
|
+
*/
|
|
7923
|
+
getKinematicConfiguration: (cell: string, getKinematicConfigurationRequest: GetKinematicConfigurationRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
7450
7924
|
/**
|
|
7451
7925
|
* **Required permissions:** `can_plan_motion` - Plan robot motions and trajectories ___ Returns the reachable joint positions for a list of given poses.
|
|
7452
7926
|
* @summary Inverse kinematics
|
|
@@ -7497,6 +7971,15 @@ declare const KinematicsApiFp: (configuration?: Configuration) => {
|
|
|
7497
7971
|
* @throws {RequiredError}
|
|
7498
7972
|
*/
|
|
7499
7973
|
forwardKinematics(cell: string, forwardKinematicsRequest: ForwardKinematicsRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ForwardKinematicsResponse>>;
|
|
7974
|
+
/**
|
|
7975
|
+
* **Required permissions:** `can_plan_motion` - Plan robot motions and trajectories ___ Returns the kinematic configuration for each given joint position including branch and axis ranges. Supported for 6-DOF robots with spherical or offset wrist that implement kinematic branch calculation. Returns 422 with `ErrorUnsupportedOperation` for motion groups that do not support kinematic branch calculation.
|
|
7976
|
+
* @summary Get kinematic configuration
|
|
7977
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
7978
|
+
* @param {GetKinematicConfigurationRequest} getKinematicConfigurationRequest
|
|
7979
|
+
* @param {*} [options] Override http request option.
|
|
7980
|
+
* @throws {RequiredError}
|
|
7981
|
+
*/
|
|
7982
|
+
getKinematicConfiguration(cell: string, getKinematicConfigurationRequest: GetKinematicConfigurationRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetKinematicConfigurationResponse>>;
|
|
7500
7983
|
/**
|
|
7501
7984
|
* **Required permissions:** `can_plan_motion` - Plan robot motions and trajectories ___ Returns the reachable joint positions for a list of given poses.
|
|
7502
7985
|
* @summary Inverse kinematics
|
|
@@ -7547,6 +8030,15 @@ declare const KinematicsApiFactory: (configuration?: Configuration, basePath?: s
|
|
|
7547
8030
|
* @throws {RequiredError}
|
|
7548
8031
|
*/
|
|
7549
8032
|
forwardKinematics(cell: string, forwardKinematicsRequest: ForwardKinematicsRequest, options?: RawAxiosRequestConfig): AxiosPromise<ForwardKinematicsResponse>;
|
|
8033
|
+
/**
|
|
8034
|
+
* **Required permissions:** `can_plan_motion` - Plan robot motions and trajectories ___ Returns the kinematic configuration for each given joint position including branch and axis ranges. Supported for 6-DOF robots with spherical or offset wrist that implement kinematic branch calculation. Returns 422 with `ErrorUnsupportedOperation` for motion groups that do not support kinematic branch calculation.
|
|
8035
|
+
* @summary Get kinematic configuration
|
|
8036
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
8037
|
+
* @param {GetKinematicConfigurationRequest} getKinematicConfigurationRequest
|
|
8038
|
+
* @param {*} [options] Override http request option.
|
|
8039
|
+
* @throws {RequiredError}
|
|
8040
|
+
*/
|
|
8041
|
+
getKinematicConfiguration(cell: string, getKinematicConfigurationRequest: GetKinematicConfigurationRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetKinematicConfigurationResponse>;
|
|
7550
8042
|
/**
|
|
7551
8043
|
* **Required permissions:** `can_plan_motion` - Plan robot motions and trajectories ___ Returns the reachable joint positions for a list of given poses.
|
|
7552
8044
|
* @summary Inverse kinematics
|
|
@@ -7597,6 +8089,15 @@ declare class KinematicsApi extends BaseAPI {
|
|
|
7597
8089
|
* @throws {RequiredError}
|
|
7598
8090
|
*/
|
|
7599
8091
|
forwardKinematics(cell: string, forwardKinematicsRequest: ForwardKinematicsRequest, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<ForwardKinematicsResponse, any, {}>>;
|
|
8092
|
+
/**
|
|
8093
|
+
* **Required permissions:** `can_plan_motion` - Plan robot motions and trajectories ___ Returns the kinematic configuration for each given joint position including branch and axis ranges. Supported for 6-DOF robots with spherical or offset wrist that implement kinematic branch calculation. Returns 422 with `ErrorUnsupportedOperation` for motion groups that do not support kinematic branch calculation.
|
|
8094
|
+
* @summary Get kinematic configuration
|
|
8095
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
8096
|
+
* @param {GetKinematicConfigurationRequest} getKinematicConfigurationRequest
|
|
8097
|
+
* @param {*} [options] Override http request option.
|
|
8098
|
+
* @throws {RequiredError}
|
|
8099
|
+
*/
|
|
8100
|
+
getKinematicConfiguration(cell: string, getKinematicConfigurationRequest: GetKinematicConfigurationRequest, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<GetKinematicConfigurationResponse, any, {}>>;
|
|
7600
8101
|
/**
|
|
7601
8102
|
* **Required permissions:** `can_plan_motion` - Plan robot motions and trajectories ___ Returns the reachable joint positions for a list of given poses.
|
|
7602
8103
|
* @summary Inverse kinematics
|
|
@@ -7918,7 +8419,7 @@ declare const MotionGroupModelsApiAxiosParamCreator: (configuration?: Configurat
|
|
|
7918
8419
|
*/
|
|
7919
8420
|
copyMotionGroupModel: (motionGroupModel: string, copyMotionGroupModelRequest: CopyMotionGroupModelRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
7920
8421
|
/**
|
|
7921
|
-
* **Required permissions:** `can_access_system` - View system status and metadata ___ Deletes a custom motion group model. Only custom models
|
|
8422
|
+
* **Required permissions:** `can_access_system` - View system status and metadata ___ Deletes a custom motion group model. Only custom models, where `is_custom` is `true`, can be deleted. Built-in base models cannot be removed.
|
|
7922
8423
|
* @summary Delete Motion Group Model
|
|
7923
8424
|
* @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](#/operations/getOptimizerConfiguration).
|
|
7924
8425
|
* @param {*} [options] Override http request option.
|
|
@@ -7933,6 +8434,14 @@ declare const MotionGroupModelsApiAxiosParamCreator: (configuration?: Configurat
|
|
|
7933
8434
|
* @throws {RequiredError}
|
|
7934
8435
|
*/
|
|
7935
8436
|
exportMotionGroupModel: (motionGroupModel: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
8437
|
+
/**
|
|
8438
|
+
* **Required permissions:** `can_access_system` - View system status and metadata ___ Get a robot configuration containing the specified motion group model. This endpoint is designed for Virtual Robot to dynamically add motion groups by model name without needing to know the robot configuration name. Returns the full GCI transcript along with the motion group UID that corresponds to the requested motion group model.
|
|
8439
|
+
* @summary Get Configuration for Motion Group
|
|
8440
|
+
* @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](#/operations/getOptimizerConfiguration).
|
|
8441
|
+
* @param {*} [options] Override http request option.
|
|
8442
|
+
* @throws {RequiredError}
|
|
8443
|
+
*/
|
|
8444
|
+
getConfigurationForMotionGroup: (motionGroupModel: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
7936
8445
|
/**
|
|
7937
8446
|
* **Required permissions:** `can_access_system` - View system status and metadata ___ Returns the default collision link chain for a given motion group model. See [getMotionGroupModels](#/operations/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.
|
|
7938
8447
|
* @summary Get Collision Model
|
|
@@ -7988,6 +8497,13 @@ declare const MotionGroupModelsApiAxiosParamCreator: (configuration?: Configurat
|
|
|
7988
8497
|
* @throws {RequiredError}
|
|
7989
8498
|
*/
|
|
7990
8499
|
getMotionGroupModels: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
8500
|
+
/**
|
|
8501
|
+
* **Required permissions:** `can_access_system` - View system status and metadata ___ Returns the catalog of all motion groups with their motion group names and readable names.
|
|
8502
|
+
* @summary Motion Group Model Catalog
|
|
8503
|
+
* @param {*} [options] Override http request option.
|
|
8504
|
+
* @throws {RequiredError}
|
|
8505
|
+
*/
|
|
8506
|
+
getMotionGroupModelsCatalog: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
7991
8507
|
/**
|
|
7992
8508
|
* **Required permissions:** `can_access_system` - View system status and metadata ___ Returns the USD scene model for the specified motion group model. See [getMotionGroupModels](#/operations/getMotionGroupModels) for supported identifiers.
|
|
7993
8509
|
* @summary Download USD Model
|
|
@@ -8019,7 +8535,7 @@ declare const MotionGroupModelsApiFp: (configuration?: Configuration) => {
|
|
|
8019
8535
|
*/
|
|
8020
8536
|
copyMotionGroupModel(motionGroupModel: string, copyMotionGroupModelRequest: CopyMotionGroupModelRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MotionGroupModelDescription>>;
|
|
8021
8537
|
/**
|
|
8022
|
-
* **Required permissions:** `can_access_system` - View system status and metadata ___ Deletes a custom motion group model. Only custom models
|
|
8538
|
+
* **Required permissions:** `can_access_system` - View system status and metadata ___ Deletes a custom motion group model. Only custom models, where `is_custom` is `true`, can be deleted. Built-in base models cannot be removed.
|
|
8023
8539
|
* @summary Delete Motion Group Model
|
|
8024
8540
|
* @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](#/operations/getOptimizerConfiguration).
|
|
8025
8541
|
* @param {*} [options] Override http request option.
|
|
@@ -8034,6 +8550,14 @@ declare const MotionGroupModelsApiFp: (configuration?: Configuration) => {
|
|
|
8034
8550
|
* @throws {RequiredError}
|
|
8035
8551
|
*/
|
|
8036
8552
|
exportMotionGroupModel(motionGroupModel: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<File>>;
|
|
8553
|
+
/**
|
|
8554
|
+
* **Required permissions:** `can_access_system` - View system status and metadata ___ Get a robot configuration containing the specified motion group model. This endpoint is designed for Virtual Robot to dynamically add motion groups by model name without needing to know the robot configuration name. Returns the full GCI transcript along with the motion group UID that corresponds to the requested motion group model.
|
|
8555
|
+
* @summary Get Configuration for Motion Group
|
|
8556
|
+
* @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](#/operations/getOptimizerConfiguration).
|
|
8557
|
+
* @param {*} [options] Override http request option.
|
|
8558
|
+
* @throws {RequiredError}
|
|
8559
|
+
*/
|
|
8560
|
+
getConfigurationForMotionGroup(motionGroupModel: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MotionGroupConfiguration>>;
|
|
8037
8561
|
/**
|
|
8038
8562
|
* **Required permissions:** `can_access_system` - View system status and metadata ___ Returns the default collision link chain for a given motion group model. See [getMotionGroupModels](#/operations/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.
|
|
8039
8563
|
* @summary Get Collision Model
|
|
@@ -8091,6 +8615,13 @@ declare const MotionGroupModelsApiFp: (configuration?: Configuration) => {
|
|
|
8091
8615
|
* @throws {RequiredError}
|
|
8092
8616
|
*/
|
|
8093
8617
|
getMotionGroupModels(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<string>>>;
|
|
8618
|
+
/**
|
|
8619
|
+
* **Required permissions:** `can_access_system` - View system status and metadata ___ Returns the catalog of all motion groups with their motion group names and readable names.
|
|
8620
|
+
* @summary Motion Group Model Catalog
|
|
8621
|
+
* @param {*} [options] Override http request option.
|
|
8622
|
+
* @throws {RequiredError}
|
|
8623
|
+
*/
|
|
8624
|
+
getMotionGroupModelsCatalog(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<MotionGroupModelCatalog>>>;
|
|
8094
8625
|
/**
|
|
8095
8626
|
* **Required permissions:** `can_access_system` - View system status and metadata ___ Returns the USD scene model for the specified motion group model. See [getMotionGroupModels](#/operations/getMotionGroupModels) for supported identifiers.
|
|
8096
8627
|
* @summary Download USD Model
|
|
@@ -8122,7 +8653,7 @@ declare const MotionGroupModelsApiFactory: (configuration?: Configuration, baseP
|
|
|
8122
8653
|
*/
|
|
8123
8654
|
copyMotionGroupModel(motionGroupModel: string, copyMotionGroupModelRequest: CopyMotionGroupModelRequest, options?: RawAxiosRequestConfig): AxiosPromise<MotionGroupModelDescription>;
|
|
8124
8655
|
/**
|
|
8125
|
-
* **Required permissions:** `can_access_system` - View system status and metadata ___ Deletes a custom motion group model. Only custom models
|
|
8656
|
+
* **Required permissions:** `can_access_system` - View system status and metadata ___ Deletes a custom motion group model. Only custom models, where `is_custom` is `true`, can be deleted. Built-in base models cannot be removed.
|
|
8126
8657
|
* @summary Delete Motion Group Model
|
|
8127
8658
|
* @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](#/operations/getOptimizerConfiguration).
|
|
8128
8659
|
* @param {*} [options] Override http request option.
|
|
@@ -8137,6 +8668,14 @@ declare const MotionGroupModelsApiFactory: (configuration?: Configuration, baseP
|
|
|
8137
8668
|
* @throws {RequiredError}
|
|
8138
8669
|
*/
|
|
8139
8670
|
exportMotionGroupModel(motionGroupModel: string, options?: RawAxiosRequestConfig): AxiosPromise<File>;
|
|
8671
|
+
/**
|
|
8672
|
+
* **Required permissions:** `can_access_system` - View system status and metadata ___ Get a robot configuration containing the specified motion group model. This endpoint is designed for Virtual Robot to dynamically add motion groups by model name without needing to know the robot configuration name. Returns the full GCI transcript along with the motion group UID that corresponds to the requested motion group model.
|
|
8673
|
+
* @summary Get Configuration for Motion Group
|
|
8674
|
+
* @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](#/operations/getOptimizerConfiguration).
|
|
8675
|
+
* @param {*} [options] Override http request option.
|
|
8676
|
+
* @throws {RequiredError}
|
|
8677
|
+
*/
|
|
8678
|
+
getConfigurationForMotionGroup(motionGroupModel: string, options?: RawAxiosRequestConfig): AxiosPromise<MotionGroupConfiguration>;
|
|
8140
8679
|
/**
|
|
8141
8680
|
* **Required permissions:** `can_access_system` - View system status and metadata ___ Returns the default collision link chain for a given motion group model. See [getMotionGroupModels](#/operations/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.
|
|
8142
8681
|
* @summary Get Collision Model
|
|
@@ -8194,6 +8733,13 @@ declare const MotionGroupModelsApiFactory: (configuration?: Configuration, baseP
|
|
|
8194
8733
|
* @throws {RequiredError}
|
|
8195
8734
|
*/
|
|
8196
8735
|
getMotionGroupModels(options?: RawAxiosRequestConfig): AxiosPromise<Array<string>>;
|
|
8736
|
+
/**
|
|
8737
|
+
* **Required permissions:** `can_access_system` - View system status and metadata ___ Returns the catalog of all motion groups with their motion group names and readable names.
|
|
8738
|
+
* @summary Motion Group Model Catalog
|
|
8739
|
+
* @param {*} [options] Override http request option.
|
|
8740
|
+
* @throws {RequiredError}
|
|
8741
|
+
*/
|
|
8742
|
+
getMotionGroupModelsCatalog(options?: RawAxiosRequestConfig): AxiosPromise<Array<MotionGroupModelCatalog>>;
|
|
8197
8743
|
/**
|
|
8198
8744
|
* **Required permissions:** `can_access_system` - View system status and metadata ___ Returns the USD scene model for the specified motion group model. See [getMotionGroupModels](#/operations/getMotionGroupModels) for supported identifiers.
|
|
8199
8745
|
* @summary Download USD Model
|
|
@@ -8225,7 +8771,7 @@ declare class MotionGroupModelsApi extends BaseAPI {
|
|
|
8225
8771
|
*/
|
|
8226
8772
|
copyMotionGroupModel(motionGroupModel: string, copyMotionGroupModelRequest: CopyMotionGroupModelRequest, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<MotionGroupModelDescription, any, {}>>;
|
|
8227
8773
|
/**
|
|
8228
|
-
* **Required permissions:** `can_access_system` - View system status and metadata ___ Deletes a custom motion group model. Only custom models
|
|
8774
|
+
* **Required permissions:** `can_access_system` - View system status and metadata ___ Deletes a custom motion group model. Only custom models, where `is_custom` is `true`, can be deleted. Built-in base models cannot be removed.
|
|
8229
8775
|
* @summary Delete Motion Group Model
|
|
8230
8776
|
* @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](#/operations/getOptimizerConfiguration).
|
|
8231
8777
|
* @param {*} [options] Override http request option.
|
|
@@ -8240,6 +8786,14 @@ declare class MotionGroupModelsApi extends BaseAPI {
|
|
|
8240
8786
|
* @throws {RequiredError}
|
|
8241
8787
|
*/
|
|
8242
8788
|
exportMotionGroupModel(motionGroupModel: string, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<File, any, {}>>;
|
|
8789
|
+
/**
|
|
8790
|
+
* **Required permissions:** `can_access_system` - View system status and metadata ___ Get a robot configuration containing the specified motion group model. This endpoint is designed for Virtual Robot to dynamically add motion groups by model name without needing to know the robot configuration name. Returns the full GCI transcript along with the motion group UID that corresponds to the requested motion group model.
|
|
8791
|
+
* @summary Get Configuration for Motion Group
|
|
8792
|
+
* @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](#/operations/getOptimizerConfiguration).
|
|
8793
|
+
* @param {*} [options] Override http request option.
|
|
8794
|
+
* @throws {RequiredError}
|
|
8795
|
+
*/
|
|
8796
|
+
getConfigurationForMotionGroup(motionGroupModel: string, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<MotionGroupConfiguration, any, {}>>;
|
|
8243
8797
|
/**
|
|
8244
8798
|
* **Required permissions:** `can_access_system` - View system status and metadata ___ Returns the default collision link chain for a given motion group model. See [getMotionGroupModels](#/operations/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.
|
|
8245
8799
|
* @summary Get Collision Model
|
|
@@ -8297,6 +8851,13 @@ declare class MotionGroupModelsApi extends BaseAPI {
|
|
|
8297
8851
|
* @throws {RequiredError}
|
|
8298
8852
|
*/
|
|
8299
8853
|
getMotionGroupModels(options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<string[], any, {}>>;
|
|
8854
|
+
/**
|
|
8855
|
+
* **Required permissions:** `can_access_system` - View system status and metadata ___ Returns the catalog of all motion groups with their motion group names and readable names.
|
|
8856
|
+
* @summary Motion Group Model Catalog
|
|
8857
|
+
* @param {*} [options] Override http request option.
|
|
8858
|
+
* @throws {RequiredError}
|
|
8859
|
+
*/
|
|
8860
|
+
getMotionGroupModelsCatalog(options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<MotionGroupModelCatalog[], any, {}>>;
|
|
8300
8861
|
/**
|
|
8301
8862
|
* **Required permissions:** `can_access_system` - View system status and metadata ___ Returns the USD scene model for the specified motion group model. See [getMotionGroupModels](#/operations/getMotionGroupModels) for supported identifiers.
|
|
8302
8863
|
* @summary Download USD Model
|
|
@@ -8335,6 +8896,13 @@ declare const NOVACloudApiAxiosParamCreator: (configuration?: Configuration) =>
|
|
|
8335
8896
|
* @throws {RequiredError}
|
|
8336
8897
|
*/
|
|
8337
8898
|
disconnectFromNovaCloud: (completionTimeout?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
8899
|
+
/**
|
|
8900
|
+
* **Required permissions:** `can_access_system` - View system status and metadata ___ <!-- theme: danger --> > **Experimental** Get the current NOVA Cloud connection status for this instance, including whether the configured cloud deployment is currently reachable.
|
|
8901
|
+
* @summary Get Connection Status
|
|
8902
|
+
* @param {*} [options] Override http request option.
|
|
8903
|
+
* @throws {RequiredError}
|
|
8904
|
+
*/
|
|
8905
|
+
getCloudStatus: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
8338
8906
|
/**
|
|
8339
8907
|
* **Required permissions:** `can_access_system` - View system status and metadata ___ <!-- theme: danger --> > **Experimental** Get the current NOVA Cloud connection config for this instance.
|
|
8340
8908
|
* @summary Get Connection Config
|
|
@@ -8364,6 +8932,13 @@ declare const NOVACloudApiFp: (configuration?: Configuration) => {
|
|
|
8364
8932
|
* @throws {RequiredError}
|
|
8365
8933
|
*/
|
|
8366
8934
|
disconnectFromNovaCloud(completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CloudDisconnectionStatusDisconnected>>;
|
|
8935
|
+
/**
|
|
8936
|
+
* **Required permissions:** `can_access_system` - View system status and metadata ___ <!-- theme: danger --> > **Experimental** Get the current NOVA Cloud connection status for this instance, including whether the configured cloud deployment is currently reachable.
|
|
8937
|
+
* @summary Get Connection Status
|
|
8938
|
+
* @param {*} [options] Override http request option.
|
|
8939
|
+
* @throws {RequiredError}
|
|
8940
|
+
*/
|
|
8941
|
+
getCloudStatus(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CloudStatus>>;
|
|
8367
8942
|
/**
|
|
8368
8943
|
* **Required permissions:** `can_access_system` - View system status and metadata ___ <!-- theme: danger --> > **Experimental** Get the current NOVA Cloud connection config for this instance.
|
|
8369
8944
|
* @summary Get Connection Config
|
|
@@ -8393,6 +8968,13 @@ declare const NOVACloudApiFactory: (configuration?: Configuration, basePath?: st
|
|
|
8393
8968
|
* @throws {RequiredError}
|
|
8394
8969
|
*/
|
|
8395
8970
|
disconnectFromNovaCloud(completionTimeout?: number, options?: RawAxiosRequestConfig): AxiosPromise<CloudDisconnectionStatusDisconnected>;
|
|
8971
|
+
/**
|
|
8972
|
+
* **Required permissions:** `can_access_system` - View system status and metadata ___ <!-- theme: danger --> > **Experimental** Get the current NOVA Cloud connection status for this instance, including whether the configured cloud deployment is currently reachable.
|
|
8973
|
+
* @summary Get Connection Status
|
|
8974
|
+
* @param {*} [options] Override http request option.
|
|
8975
|
+
* @throws {RequiredError}
|
|
8976
|
+
*/
|
|
8977
|
+
getCloudStatus(options?: RawAxiosRequestConfig): AxiosPromise<CloudStatus>;
|
|
8396
8978
|
/**
|
|
8397
8979
|
* **Required permissions:** `can_access_system` - View system status and metadata ___ <!-- theme: danger --> > **Experimental** Get the current NOVA Cloud connection config for this instance.
|
|
8398
8980
|
* @summary Get Connection Config
|
|
@@ -8422,6 +9004,13 @@ declare class NOVACloudApi extends BaseAPI {
|
|
|
8422
9004
|
* @throws {RequiredError}
|
|
8423
9005
|
*/
|
|
8424
9006
|
disconnectFromNovaCloud(completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<CloudDisconnectionStatusDisconnected, any, {}>>;
|
|
9007
|
+
/**
|
|
9008
|
+
* **Required permissions:** `can_access_system` - View system status and metadata ___ <!-- theme: danger --> > **Experimental** Get the current NOVA Cloud connection status for this instance, including whether the configured cloud deployment is currently reachable.
|
|
9009
|
+
* @summary Get Connection Status
|
|
9010
|
+
* @param {*} [options] Override http request option.
|
|
9011
|
+
* @throws {RequiredError}
|
|
9012
|
+
*/
|
|
9013
|
+
getCloudStatus(options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<CloudStatus, any, {}>>;
|
|
8425
9014
|
/**
|
|
8426
9015
|
* **Required permissions:** `can_access_system` - View system status and metadata ___ <!-- theme: danger --> > **Experimental** Get the current NOVA Cloud connection config for this instance.
|
|
8427
9016
|
* @summary Get Connection Config
|
|
@@ -11827,4 +12416,4 @@ declare class VirtualControllerInputsOutputsApi extends BaseAPI {
|
|
|
11827
12416
|
setIOValues(cell: string, controller: string, iOValue: Array<IOValue>, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<void, any, {}>>;
|
|
11828
12417
|
}
|
|
11829
12418
|
//#endregion
|
|
11830
|
-
export { AbbConfdata, AbbConfiguredPose, AbbController, AbbControllerEgmServer, AbbControllerKindEnum, AbbPose, ActivateLicenseRequest, AddTrajectoryError, AddTrajectoryErrorData, AddTrajectoryRequest, AddTrajectoryResponse, AddVirtualControllerMotionGroupRequest, ApiVersion, App, ApplicationApi, ApplicationApiAxiosParamCreator, ApplicationApiFactory, ApplicationApiFp, AxisRange, BASE_PATH, BUSInputsOutputsApi, BUSInputsOutputsApiAxiosParamCreator, BUSInputsOutputsApiFactory, BUSInputsOutputsApiFp, BaseAPI, Behavior, BlendingAuto, BlendingAutoBlendingNameEnum, BlendingPosition, BlendingPositionBlendingNameEnum, BlendingSpace, BooleanValue, BooleanValueValueTypeEnum, Box, BoxBoxTypeEnum, BoxShapeTypeEnum, BusIODescription, BusIOModbusClient, BusIOModbusClientBusTypeEnum, BusIOModbusServer, BusIOModbusServerBusTypeEnum, BusIOModbusTCPClient, BusIOModbusTCPClientNetworkTypeEnum, BusIOModbusTCPServer, BusIOModbusTCPServerNetworkTypeEnum, BusIOModbusVirtual, BusIOModbusVirtualBusTypeEnum, BusIOProfinet, BusIOProfinetBusTypeEnum, BusIOProfinetDefaultRoute, BusIOProfinetIpConfig, BusIOProfinetNetwork, BusIOProfinetSlot, BusIOProfinetVirtual, BusIOProfinetVirtualBusTypeEnum, BusIOSnap7, BusIOSnap7BusTypeEnum, BusIOType, BusIOsState, BusIOsStateEnum, COLLECTION_FORMATS, CapabilityEntry, Capsule, CapsuleShapeTypeEnum, CartesianLimits, Cell, CellApi, CellApiAxiosParamCreator, CellApiFactory, CellApiFp, CloudConfigStatus, CloudConfigStatusConfigured, CloudConfigStatusConfiguredStatusEnum, CloudConfigStatusNotConfigured, CloudConfigStatusNotConfiguredStatusEnum, CloudConfiguration, CloudConnectionError, CloudConnectionErrorError, CloudConnectionErrorInvalidToken, CloudConnectionErrorInvalidTokenCodeEnum, CloudConnectionErrorInvalidTokenDetails, CloudConnectionErrorInvalidTokenDetailsCloudResponse, CloudConnectionErrorLeafnodeConnectionError, CloudConnectionErrorLeafnodeConnectionErrorCodeEnum, CloudConnectionErrorLeafnodeConnectionErrorDetails, CloudConnectionErrorLeafnodeConnectionTimeout, CloudConnectionErrorLeafnodeConnectionTimeoutCodeEnum, CloudConnectionErrorLeafnodeRestartTimeout, CloudConnectionErrorLeafnodeRestartTimeoutCodeEnum, CloudConnectionErrorNatsFailed, CloudConnectionErrorNatsFailedCodeEnum, CloudConnectionErrorNatsFailedDetails, CloudConnectionErrorUnexpectedResponse, CloudConnectionErrorUnexpectedResponseCodeEnum, CloudConnectionErrorUnexpectedResponseDetails, CloudConnectionErrorUnexpectedResponseDetailsCloudResponse, CloudConnectionRequest, CloudDisconnectionError, CloudDisconnectionStatusDisconnected, CloudDisconnectionStatusDisconnectedStatusEnum, CloudDisconnectionStatusDisconnecting, CloudDisconnectionStatusDisconnectingStatusEnum, CloudRegistrationSuccessResponse, Collider, ColliderShape, ColliderValue, ColliderValueOrKey, ColliderValueSourceEnum, Collision, CollisionContact, CollisionError, CollisionErrorKindEnum, CollisionFreeAlgorithm, CollisionMotionGroup, CollisionSetup, CollisionSetupValue, CollisionSetupValueOrKey, CollisionSetupValueSourceEnum, Comparator, Configuration, ConfigurationArchiveStatus, ConfigurationArchiveStatusCreating, ConfigurationArchiveStatusCreatingStatusEnum, ConfigurationArchiveStatusError, ConfigurationArchiveStatusErrorStatusEnum, ConfigurationArchiveStatusSuccess, ConfigurationArchiveStatusSuccessStatusEnum, ConfigurationParameters, ConfigurationResource, ConfiguredPose, ConfiguredPoseInverse422Response, ConfiguredPoseInverseFailedResponse, ConfiguredPoseInverseRequest, ConfiguredPoseInverseResponse, ConfiguredPoseInverseResponseResponse, ConstrainedPose, ContainerEnvironmentInner, ContainerImage, ContainerImageSecretsInner, ContainerResources, ContainerStorage, ControllerApi, ControllerApiAxiosParamCreator, ControllerApiFactory, ControllerApiFp, ControllerDescription, ControllerInputsOutputsApi, ControllerInputsOutputsApiAxiosParamCreator, ControllerInputsOutputsApiFactory, ControllerInputsOutputsApiFp, ConvertVendorConfiguredPose422Response, ConvertVendorConfiguredPoseRequest, ConvertVendorConfiguredPoseRequestVendorConfiguredPoses, ConvexHull, ConvexHullShapeTypeEnum, CoordinateSystem, CoordinateSystemData, CopyMotionGroupModelRequest, CubicSplineParameter, CycleTime, Cylinder, CylinderShapeTypeEnum, DHParameter, Direction, DirectionConstraint, DirectionConstraintConstraintNameEnum, DynamicModel, ErrorDirectionConstraintNotMet, ErrorDirectionConstraintNotMetErrorFeedbackNameEnum, ErrorDirectionConstraintNotNormalized, ErrorDirectionConstraintNotNormalizedErrorFeedbackNameEnum, ErrorInvalidJointCount, ErrorInvalidJointCountErrorFeedbackNameEnum, ErrorJointLimitExceeded, ErrorJointLimitExceededErrorFeedbackNameEnum, ErrorJointPositionCollision, ErrorJointPositionCollisionErrorFeedbackNameEnum, ErrorMaxIterationsExceeded, ErrorMaxIterationsExceededErrorFeedbackNameEnum, ErrorMotionGroupKeyMismatch, ErrorUnsupportedOperation, ErrorUnsupportedOperationErrorFeedbackNameEnum, Execute, ExecuteDetails, ExecuteJoggingRequest, ExecuteJoggingResponse, ExecuteTrajectoryRequest, ExecuteTrajectoryResponse, ExecuteWaypointJoggingRequest, ExecuteWaypointJoggingResponse, ExternalJointStreamDatapoint, ExternalJointStreamRequest, FanucController, FanucControllerKindEnum, FeedbackAxisRangeExceeded, FeedbackAxisRangeExceededErrorFeedbackNameEnum, FeedbackCollision, FeedbackCollisionErrorFeedbackNameEnum, FeedbackCommandsMissing, FeedbackCommandsMissingErrorFeedbackNameEnum, FeedbackCubicSplineIsNotIncreasing, FeedbackCubicSplineIsNotIncreasingErrorFeedbackNameEnum, FeedbackCubicSplineNotAtStartPose, FeedbackCubicSplineNotAtStartPoseErrorFeedbackNameEnum, FeedbackDirectionConstraintNoSolutionExists, FeedbackDirectionConstraintNoSolutionExistsErrorFeedbackNameEnum, FeedbackDirectionConstraintNotMet, FeedbackDirectionConstraintNotMetErrorFeedbackNameEnum, FeedbackDirectionConstraintNotNormalized, FeedbackDirectionConstraintNotNormalizedErrorFeedbackNameEnum, FeedbackInvalidDof, FeedbackInvalidDofErrorFeedbackNameEnum, FeedbackInvalidNanValue, FeedbackInvalidNanValueErrorFeedbackNameEnum, FeedbackInvalidSamplingTime, FeedbackInvalidSamplingTimeErrorFeedbackNameEnum, FeedbackJointLimitExceeded, FeedbackJointLimitExceededErrorFeedbackNameEnum, FeedbackNoSolutionInCurrentConfiguration, FeedbackNoSolutionInCurrentConfigurationErrorFeedbackNameEnum, FeedbackOutOfWorkspace, FeedbackOutOfWorkspaceErrorFeedbackNameEnum, FeedbackSingularity, FeedbackSingularityErrorFeedbackNameEnum, FeedbackStartJointsMissing, FeedbackStartJointsMissingErrorFeedbackNameEnum, FeedbackTorqueExceeded, FeedbackTorqueExceededErrorFeedbackNameEnum, Flag, FlangePayload, FloatValue, FloatValueValueTypeEnum, ForwardKinematics422Response, ForwardKinematicsRequest, ForwardKinematicsResponse, ForwardKinematicsValidationError, GetTrajectoryResponse, HTTPValidationError, IOBooleanValue, IOBooleanValueValueTypeEnum, IOBoundary, IODescription, IODirection, IOFloatValue, IOFloatValueValueTypeEnum, IOIntegerValue, IOIntegerValueValueTypeEnum, IOOrigin, IOValue, IOValueType, ImageCredentials, InconsistentTrajectorySizeError, InconsistentTrajectorySizeErrorInconsistentTrajectorySize, InconsistentTrajectorySizeErrorKindEnum, InertiaTensor, InitializeJoggingRequest, InitializeJoggingRequestMessageTypeEnum, InitializeJoggingResponse, InitializeJoggingResponseKindEnum, InitializeMovementRequest, InitializeMovementRequestMessageTypeEnum, InitializeMovementRequestTrajectory, InitializeMovementResponse, InitializeMovementResponseKindEnum, IntegerValue, IntegerValueValueTypeEnum, InvalidDofError, InvalidDofErrorInvalidDof, InvalidDofErrorKindEnum, InverseFeedbackAtIndex, InverseFeedbackAtIndexErrorFeedback, InverseKinematics422Response, InverseKinematicsRequest, InverseKinematicsResponse, InverseKinematicsValidationError, InverseKinematicsValidationErrorAllOfData, JoggingApi, JoggingApiAxiosParamCreator, JoggingApiFactory, JoggingApiFp, JoggingDetails, JoggingDetailsKindEnum, JoggingDetailsState, JoggingPausedByUser, JoggingPausedByUserKindEnum, JoggingPausedNearCollision, JoggingPausedNearCollisionKindEnum, JoggingPausedNearJointLimit, JoggingPausedNearJointLimitKindEnum, JoggingPausedNearSingularity, JoggingPausedNearSingularityKindEnum, JoggingPausedOnIO, JoggingPausedOnIOKindEnum, JoggingRunning, JoggingRunningKindEnum, JointLimitExceededError, JointLimitExceededErrorKindEnum, JointLimits, JointPTPMotion, JointTrajectory, JointTypeEnum, JointVelocityRequest, JointVelocityRequestMessageTypeEnum, JointVelocityResponse, JointVelocityResponseKindEnum, JointWaypoint, JointWaypointsRequest, JointWaypointsRequestMessageTypeEnum, JointWaypointsResponse, JointWaypointsResponseKindEnum, KinematicBranch, KinematicBranchElbow, KinematicBranchShoulder, KinematicBranchWrist, KinematicConfiguration, KinematicModel, KinematicsApi, KinematicsApiAxiosParamCreator, KinematicsApiFactory, KinematicsApiFp, KukaConfiguredPose, KukaController, KukaControllerKindEnum, KukaControllerRsiServer, KukaPose, KukaStatusAndTurnBits, License, LicenseApi, LicenseApiAxiosParamCreator, LicenseApiFactory, LicenseApiFp, LicenseStatus, LicenseStatusEnum, LimitRange, LimitSet, LimitsOverride, LinkChainValue, LinkChainValueOrKey, LinkChainValueSourceEnum, ListTrajectoriesResponse, Manufacturer, MergeTrajectories422Response, MergeTrajectoriesError, MergeTrajectoriesErrorErrorFeedback, MergeTrajectoriesRequest, MergeTrajectoriesResponse, MergeTrajectoriesResponseFeedbackInner, MergeTrajectoriesSegment, MergeTrajectoriesValidationError, MidpointInsertionAlgorithm, MidpointInsertionAlgorithmAlgorithmNameEnum, ModbusIO, ModbusIOArea, ModbusIOByteOrder, ModbusIOData, ModbusIOTypeEnum, ModelError, MotionCommand, MotionCommandBlending, MotionCommandPath, MotionGroupApi, MotionGroupApiAxiosParamCreator, MotionGroupApiFactory, MotionGroupApiFp, MotionGroupDescription, MotionGroupFromJson, MotionGroupFromType, MotionGroupInfo, MotionGroupJoints, MotionGroupModelDescription, MotionGroupModelsApi, MotionGroupModelsApiAxiosParamCreator, MotionGroupModelsApiFactory, MotionGroupModelsApiFp, MotionGroupSetup, MotionGroupState, MotionGroupStateJointLimitReached, MovementErrorResponse, MovementErrorResponseKindEnum, MultiCollisionSetup, MultiErrorInvalidJointCount, MultiErrorJointLimitExceeded, MultiErrorJointPositionCollision, MultiJointTrajectory, MultiSearchCollisionFree422Response, MultiSearchCollisionFreeRequest, MultiSearchCollisionFreeResponse, MultiSearchCollisionFreeResponseResponse, MultiSearchCollisionFreeValidationError, MultiSearchCollisionFreeValidationErrorAllOfData, NOVACloudApi, NOVACloudApiAxiosParamCreator, NOVACloudApiFactory, NOVACloudApiFp, NanValueError, NanValueErrorKindEnum, NanValueErrorNanValue, NetworkDevice, NetworkInterface, NetworkState, NetworkStateConnectionTypeEnum, OpMode, OperatingState, OperationLimits, OperationMode, OrientationType, PathCartesianPTP, PathCartesianPTPPathDefinitionNameEnum, PathCircle, PathCirclePathDefinitionNameEnum, PathCubicSpline, PathCubicSplinePathDefinitionNameEnum, PathDirectionConstrainedCartesianPTP, PathDirectionConstrainedCartesianPTPPathDefinitionNameEnum, PathDirectionConstrainedJointPTP, PathDirectionConstrainedJointPTPPathDefinitionNameEnum, 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, PoseWaypoint, PoseWaypointsRequest, PoseWaypointsRequestMessageTypeEnum, PoseWaypointsResponse, PoseWaypointsResponseKindEnum, ProfinetDescription, ProfinetIO, ProfinetIOData, ProfinetIODirection, ProfinetIOTypeEnum, ProfinetInputOutputConfig, ProfinetSlotDescription, ProfinetSubSlotDescription, Program, ProgramApi, ProgramApiAxiosParamCreator, ProgramApiFactory, ProgramApiFp, ProgramRun, ProgramRunState, ProgramStartRequest, ProjectJointPositionDirectionConstraint422Response, ProjectJointPositionDirectionConstraintRequest, ProjectJointPositionDirectionConstraintResponse, ProjectJointPositionDirectionConstraintValidationError, ProjectJointPositionDirectionConstraintValidationErrorAllOfData, RRTConnectAlgorithm, RRTConnectAlgorithmAlgorithmNameEnum, RRTConnectAlgorithmStepSize, Range, Rectangle, RectangleShapeTypeEnum, RectangularCapsule, RectangularCapsuleShapeTypeEnum, ReleaseChannel, RequestArgs, RequiredError, RobotConfigurationsApi, RobotConfigurationsApiAxiosParamCreator, RobotConfigurationsApiFactory, RobotConfigurationsApiFp, RobotController, RobotControllerConfiguration, RobotControllerConfigurationRequest, RobotControllerState, RobotSystemMode, RobotTcp, RobotTcpData, SafetyGeometry, SafetyGeometryBox, SafetyGeometryCapsule, SafetyGeometryLozenge, SafetyGeometryPlane, SafetyGeometryPrism, SafetyGeometrySphere, SafetyStateType, SafetyZone, SafetyZonePose, SafetyZones, ServiceGroup, ServiceStatus, ServiceStatusPhase, ServiceStatusResponse, ServiceStatusSeverity, ServiceStatusStatus, SessionApi, SessionApiAxiosParamCreator, SessionApiFactory, SessionApiFp, SessionResponse, SetIO, SettableRobotSystemMode, SingularityTypeEnum, Snap7IO, Snap7IOArea, Snap7IOData, Snap7IODirection, Snap7IOTypeEnum, Sphere, SphereShapeTypeEnum, StartMovementRequest, StartMovementRequestMessageTypeEnum, StartMovementResponse, StartMovementResponseKindEnum, StartOnIO, StorageKey, StorageKeySourceEnum, StoreCollisionComponentsApi, StoreCollisionComponentsApiAxiosParamCreator, StoreCollisionComponentsApiFactory, StoreCollisionComponentsApiFp, StoreCollisionSetupsApi, StoreCollisionSetupsApiAxiosParamCreator, StoreCollisionSetupsApiFactory, StoreCollisionSetupsApiFp, StoreObjectApi, StoreObjectApiAxiosParamCreator, StoreObjectApiFactory, StoreObjectApiFp, StreamIOValuesResponse, SystemApi, SystemApiAxiosParamCreator, SystemApiFactory, SystemApiFp, TcpOffset, TcpRequiredError, TcpRequiredErrorKindEnum, TcpVelocityRequest, TcpVelocityRequestMessageTypeEnum, TcpVelocityResponse, TcpVelocityResponseKindEnum, ToolValue, ToolValueOrKey, ToolValueSourceEnum, TorqueExceededError, TorqueExceededErrorKindEnum, TorqueExceededErrorTorqueExceeded, 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, TrajectorySection, TrajectoryWaitForIO, TrajectoryWaitForIOKindEnum, UnitType, UniversalrobotsController, UniversalrobotsControllerKindEnum, UpdateCellVersionRequest, UpdateNovaVersionRequest, User, ValidationError, ValidationError2, ValidationErrorLocInner, VersionApi, VersionApiAxiosParamCreator, VersionApiFactory, VersionApiFp, VirtualController, VirtualControllerApi, VirtualControllerApiAxiosParamCreator, VirtualControllerApiFactory, VirtualControllerApiFp, VirtualControllerBehaviorApi, VirtualControllerBehaviorApiAxiosParamCreator, VirtualControllerBehaviorApiFactory, VirtualControllerBehaviorApiFp, VirtualControllerInputsOutputsApi, VirtualControllerInputsOutputsApiAxiosParamCreator, VirtualControllerInputsOutputsApiFactory, VirtualControllerInputsOutputsApiFp, VirtualControllerKindEnum, VirtualRobotConfiguration, WaitForIOEventRequest, YaskawaController, YaskawaControllerKindEnum, ZodValidationError, ZodValidationErrorError, ZodValidationErrorErrorCodeEnum, ZodValidationErrorErrorDetailsInner, ZodValidationErrorErrorDetailsInnerPathInner, operationServerMap };
|
|
12419
|
+
export { AbbConfdata, AbbConfiguredPose, AbbController, AbbControllerEgmServer, AbbControllerKindEnum, AbbPose, ActionChunkRequest, ActionChunkRequestMessageTypeEnum, ActionChunkResponse, ActionChunkResponseKindEnum, ActionChunkStreamingApi, ActionChunkStreamingApiAxiosParamCreator, ActionChunkStreamingApiFactory, ActionChunkStreamingApiFp, ActivateLicenseRequest, AddTrajectoryError, AddTrajectoryErrorData, AddTrajectoryRequest, AddTrajectoryResponse, AddVirtualControllerMotionGroupRequest, ApiVersion, App, ApplicationApi, ApplicationApiAxiosParamCreator, ApplicationApiFactory, ApplicationApiFp, AxisRange, BASE_PATH, BUSInputsOutputsApi, BUSInputsOutputsApiAxiosParamCreator, BUSInputsOutputsApiFactory, BUSInputsOutputsApiFp, BaseAPI, Behavior, BlendingAuto, BlendingAutoBlendingNameEnum, BlendingPosition, BlendingPositionBlendingNameEnum, BlendingSpace, BooleanValue, BooleanValueValueTypeEnum, BostondynamicsController, BostondynamicsControllerKindEnum, BostondynamicsControllerRobotTypeEnum, Box, BoxBoxTypeEnum, BoxShapeTypeEnum, BusIODescription, BusIOModbusClient, BusIOModbusClientBusTypeEnum, BusIOModbusServer, BusIOModbusServerBusTypeEnum, BusIOModbusTCPClient, BusIOModbusTCPClientNetworkTypeEnum, BusIOModbusTCPServer, BusIOModbusTCPServerNetworkTypeEnum, BusIOModbusVirtual, BusIOModbusVirtualBusTypeEnum, BusIOProfinet, BusIOProfinetBusTypeEnum, BusIOProfinetDefaultRoute, BusIOProfinetIpConfig, BusIOProfinetNetwork, BusIOProfinetSlot, BusIOProfinetVirtual, BusIOProfinetVirtualBusTypeEnum, BusIOSnap7, BusIOSnap7BusTypeEnum, BusIOType, BusIOsState, BusIOsStateEnum, COLLECTION_FORMATS, CapabilityEntry, Capsule, CapsuleShapeTypeEnum, CartesianLimits, CartesianVelocity, Cell, CellApi, CellApiAxiosParamCreator, CellApiFactory, CellApiFp, CloudConfigStatus, CloudConfigStatusConfigured, CloudConfigStatusConfiguredStatusEnum, CloudConfigStatusNotConfigured, CloudConfigStatusNotConfiguredStatusEnum, CloudConfiguration, CloudConnectionError, CloudConnectionErrorError, CloudConnectionErrorInvalidToken, CloudConnectionErrorInvalidTokenCodeEnum, CloudConnectionErrorInvalidTokenDetails, CloudConnectionErrorInvalidTokenDetailsCloudResponse, CloudConnectionErrorLeafnodeConnectionError, CloudConnectionErrorLeafnodeConnectionErrorCodeEnum, CloudConnectionErrorLeafnodeConnectionErrorDetails, CloudConnectionErrorLeafnodeConnectionTimeout, CloudConnectionErrorLeafnodeConnectionTimeoutCodeEnum, CloudConnectionErrorLeafnodeRestartTimeout, CloudConnectionErrorLeafnodeRestartTimeoutCodeEnum, CloudConnectionErrorNatsFailed, CloudConnectionErrorNatsFailedCodeEnum, CloudConnectionErrorNatsFailedDetails, CloudConnectionErrorUnexpectedResponse, CloudConnectionErrorUnexpectedResponseCodeEnum, CloudConnectionErrorUnexpectedResponseDetails, CloudConnectionErrorUnexpectedResponseDetailsCloudResponse, CloudConnectionRequest, CloudDisconnectionError, CloudDisconnectionStatusDisconnected, CloudDisconnectionStatusDisconnectedStatusEnum, CloudDisconnectionStatusDisconnecting, CloudDisconnectionStatusDisconnectingStatusEnum, CloudRegistrationSuccessResponse, CloudStatus, CloudStatusChecks, CloudStatusErrors, Collider, ColliderShape, ColliderValue, ColliderValueOrKey, ColliderValueSourceEnum, Collision, CollisionContact, CollisionError, CollisionErrorKindEnum, CollisionFreeAlgorithm, CollisionMotionGroup, CollisionSetup, CollisionSetupValue, CollisionSetupValueOrKey, CollisionSetupValueSourceEnum, Comparator, Configuration, ConfigurationArchiveStatus, ConfigurationArchiveStatusCreating, ConfigurationArchiveStatusCreatingStatusEnum, ConfigurationArchiveStatusError, ConfigurationArchiveStatusErrorStatusEnum, ConfigurationArchiveStatusSuccess, ConfigurationArchiveStatusSuccessStatusEnum, ConfigurationParameters, ConfigurationResource, ConfiguredPose, ConfiguredPoseInverse422Response, ConfiguredPoseInverseFailedResponse, ConfiguredPoseInverseRequest, ConfiguredPoseInverseResponse, ConfiguredPoseInverseResponseResponse, ConstrainedPose, ContainerEnvironmentInner, ContainerImage, ContainerImageSecretsInner, ContainerResources, ContainerStorage, ControllerApi, ControllerApiAxiosParamCreator, ControllerApiFactory, ControllerApiFp, ControllerDescription, ControllerInputsOutputsApi, ControllerInputsOutputsApiAxiosParamCreator, ControllerInputsOutputsApiFactory, ControllerInputsOutputsApiFp, ControllerNetworkInterface, ConvertVendorConfiguredPose422Response, ConvertVendorConfiguredPoseRequest, ConvertVendorConfiguredPoseRequestVendorConfiguredPoses, ConvexHull, ConvexHullShapeTypeEnum, CoordinateSystem, CoordinateSystemData, CopyMotionGroupModelRequest, CubicSplineParameter, CycleTime, Cylinder, CylinderShapeTypeEnum, DHParameter, Direction, DirectionConstraint, DirectionConstraintConstraintNameEnum, DynamicModel, ErrorDirectionConstraintNotMet, ErrorDirectionConstraintNotMetErrorFeedbackNameEnum, ErrorDirectionConstraintNotNormalized, ErrorDirectionConstraintNotNormalizedErrorFeedbackNameEnum, ErrorInvalidJointCount, ErrorInvalidJointCountErrorFeedbackNameEnum, ErrorJointLimitExceeded, ErrorJointLimitExceededErrorFeedbackNameEnum, ErrorJointPositionCollision, ErrorJointPositionCollisionErrorFeedbackNameEnum, ErrorMaxIterationsExceeded, ErrorMaxIterationsExceededErrorFeedbackNameEnum, ErrorMotionGroupKeyMismatch, ErrorUnsupportedOperation, ErrorUnsupportedOperationErrorFeedbackNameEnum, Execute, ExecuteActionChunksRequest, ExecuteActionChunksResponse, ExecuteDetails, ExecuteJoggingRequest, ExecuteJoggingResponse, ExecuteTrajectoryRequest, ExecuteTrajectoryResponse, ExternalJointStreamDatapoint, ExternalJointStreamRequest, FanucController, FanucControllerKindEnum, FeedbackAxisRangeExceeded, FeedbackAxisRangeExceededErrorFeedbackNameEnum, FeedbackCollision, FeedbackCollisionErrorFeedbackNameEnum, FeedbackCommandsMissing, FeedbackCommandsMissingErrorFeedbackNameEnum, FeedbackCubicSplineIsNotIncreasing, FeedbackCubicSplineIsNotIncreasingErrorFeedbackNameEnum, FeedbackCubicSplineNotAtStartPose, FeedbackCubicSplineNotAtStartPoseErrorFeedbackNameEnum, FeedbackDirectionConstraintNoSolutionExists, FeedbackDirectionConstraintNoSolutionExistsErrorFeedbackNameEnum, FeedbackDirectionConstraintNotMet, FeedbackDirectionConstraintNotMetErrorFeedbackNameEnum, FeedbackDirectionConstraintNotNormalized, FeedbackDirectionConstraintNotNormalizedErrorFeedbackNameEnum, FeedbackInvalidDof, FeedbackInvalidDofErrorFeedbackNameEnum, FeedbackInvalidNanValue, FeedbackInvalidNanValueErrorFeedbackNameEnum, FeedbackInvalidSamplingTime, FeedbackInvalidSamplingTimeErrorFeedbackNameEnum, FeedbackJointLimitExceeded, FeedbackJointLimitExceededErrorFeedbackNameEnum, FeedbackNoSolutionInCurrentConfiguration, FeedbackNoSolutionInCurrentConfigurationErrorFeedbackNameEnum, FeedbackOutOfWorkspace, FeedbackOutOfWorkspaceErrorFeedbackNameEnum, FeedbackSingularity, FeedbackSingularityErrorFeedbackNameEnum, FeedbackStartJointsMissing, FeedbackStartJointsMissingErrorFeedbackNameEnum, FeedbackTorqueExceeded, FeedbackTorqueExceededErrorFeedbackNameEnum, Flag, FlangePayload, FloatValue, FloatValueValueTypeEnum, ForwardKinematics422Response, ForwardKinematicsRequest, ForwardKinematicsResponse, ForwardKinematicsValidationError, GetKinematicConfiguration422Response, GetKinematicConfigurationRequest, GetKinematicConfigurationResponse, GetKinematicConfigurationValidationError, GetKinematicConfigurationValidationErrorAllOfData, GetTrajectoryResponse, HTTPValidationError, IOBooleanValue, IOBooleanValueValueTypeEnum, IOBoundary, IODescription, IODirection, IOFloatValue, IOFloatValueValueTypeEnum, IOIntegerValue, IOIntegerValueValueTypeEnum, IOOrigin, IOValue, IOValueType, ImageCredentials, InconsistentTrajectorySizeError, InconsistentTrajectorySizeErrorInconsistentTrajectorySize, InconsistentTrajectorySizeErrorKindEnum, InertiaTensor, InitializeActionChunksRequest, InitializeActionChunksRequestMessageTypeEnum, InitializeActionChunksResponse, InitializeActionChunksResponseKindEnum, InitializeJoggingRequest, InitializeJoggingRequestMessageTypeEnum, InitializeJoggingResponse, InitializeJoggingResponseKindEnum, InitializeMovementRequest, InitializeMovementRequestMessageTypeEnum, InitializeMovementRequestTrajectory, InitializeMovementResponse, InitializeMovementResponseKindEnum, IntegerValue, IntegerValueValueTypeEnum, InvalidDofError, InvalidDofErrorInvalidDof, InvalidDofErrorKindEnum, InverseFeedbackAtIndex, InverseFeedbackAtIndexErrorFeedback, InverseKinematics422Response, InverseKinematicsRequest, InverseKinematicsResponse, InverseKinematicsValidationError, InverseKinematicsValidationErrorAllOfData, JoggingApi, JoggingApiAxiosParamCreator, JoggingApiFactory, JoggingApiFp, JoggingDetails, JoggingDetailsKindEnum, JoggingDetailsState, JoggingPausedByUser, JoggingPausedByUserKindEnum, JoggingPausedNearCollision, JoggingPausedNearCollisionKindEnum, JoggingPausedNearJointLimit, JoggingPausedNearJointLimitKindEnum, JoggingPausedNearSingularity, JoggingPausedNearSingularityKindEnum, JoggingPausedOnIO, JoggingPausedOnIOKindEnum, JoggingRunning, JoggingRunningKindEnum, JointLimitExceededError, JointLimitExceededErrorKindEnum, JointLimits, JointPTPMotion, JointTrajectory, JointTypeEnum, JointVelocityRequest, JointVelocityRequestMessageTypeEnum, JointVelocityResponse, JointVelocityResponseKindEnum, JointWaypoint, JointWaypointKindEnum, KinematicBranch, KinematicBranchElbow, KinematicBranchShoulder, KinematicBranchWrist, KinematicConfiguration, KinematicModel, KinematicsApi, KinematicsApiAxiosParamCreator, KinematicsApiFactory, KinematicsApiFp, KukaConfiguredPose, KukaController, KukaControllerKindEnum, KukaControllerRsiServer, KukaPose, KukaStatusAndTurnBits, License, LicenseApi, LicenseApiAxiosParamCreator, LicenseApiFactory, LicenseApiFp, LicenseStatus, LicenseStatusEnum, LimitRange, LimitSet, LimitsOverride, LinkChainValue, LinkChainValueOrKey, LinkChainValueSourceEnum, ListTrajectoriesResponse, Manufacturer, MergeTrajectories422Response, MergeTrajectoriesError, MergeTrajectoriesErrorErrorFeedback, MergeTrajectoriesRequest, MergeTrajectoriesResponse, MergeTrajectoriesResponseFeedbackInner, MergeTrajectoriesSegment, MergeTrajectoriesValidationError, MidpointInsertionAlgorithm, MidpointInsertionAlgorithmAlgorithmNameEnum, ModbusIO, ModbusIOArea, ModbusIOByteOrder, ModbusIOData, ModbusIOTypeEnum, ModelError, MotionCommand, MotionCommandBlending, MotionCommandPath, MotionGroupApi, MotionGroupApiAxiosParamCreator, MotionGroupApiFactory, MotionGroupApiFp, MotionGroupConfiguration, MotionGroupDescription, MotionGroupFromJson, MotionGroupFromType, MotionGroupInfo, MotionGroupJoints, MotionGroupModelCatalog, MotionGroupModelDescription, MotionGroupModelsApi, MotionGroupModelsApiAxiosParamCreator, MotionGroupModelsApiFactory, MotionGroupModelsApiFp, MotionGroupSetup, MotionGroupState, MotionGroupStateJointLimitReached, MovementErrorResponse, MovementErrorResponseKindEnum, MultiCollisionSetup, MultiErrorInvalidJointCount, MultiErrorJointLimitExceeded, MultiErrorJointPositionCollision, MultiJointTrajectory, MultiSearchCollisionFree422Response, MultiSearchCollisionFreeRequest, MultiSearchCollisionFreeResponse, MultiSearchCollisionFreeResponseResponse, MultiSearchCollisionFreeValidationError, MultiSearchCollisionFreeValidationErrorAllOfData, NOVACloudApi, NOVACloudApiAxiosParamCreator, NOVACloudApiFactory, NOVACloudApiFp, NanValueError, NanValueErrorKindEnum, NanValueErrorNanValue, NetworkDevice, NetworkInterface, NetworkState, NetworkStateConnectionTypeEnum, OpMode, OperatingState, OperationLimits, OperationMode, OrientationType, PathCartesianPTP, PathCartesianPTPPathDefinitionNameEnum, PathCircle, PathCirclePathDefinitionNameEnum, PathCubicSpline, PathCubicSplinePathDefinitionNameEnum, PathDirectionConstrainedCartesianPTP, PathDirectionConstrainedCartesianPTPPathDefinitionNameEnum, PathDirectionConstrainedJointPTP, PathDirectionConstrainedJointPTPPathDefinitionNameEnum, PathJointPTP, PathJointPTPPathDefinitionNameEnum, PathLine, PathLinePathDefinitionNameEnum, PauseActionChunksRequest, PauseActionChunksRequestMessageTypeEnum, PauseActionChunksResponse, PauseActionChunksResponseKindEnum, 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, PoseWaypoint, PoseWaypointKindEnum, ProfinetDescription, ProfinetIO, ProfinetIOData, ProfinetIODirection, ProfinetIOTypeEnum, ProfinetInputOutputConfig, ProfinetSlotDescription, ProfinetSlotOffset, ProfinetSubSlotDescription, Program, ProgramApi, ProgramApiAxiosParamCreator, ProgramApiFactory, ProgramApiFp, ProgramRun, ProgramRunState, ProgramStartRequest, ProjectJointPositionDirectionConstraint422Response, ProjectJointPositionDirectionConstraintRequest, ProjectJointPositionDirectionConstraintResponse, ProjectJointPositionDirectionConstraintValidationError, ProjectJointPositionDirectionConstraintValidationErrorAllOfData, RRTConnectAlgorithm, RRTConnectAlgorithmAlgorithmNameEnum, RRTConnectAlgorithmStepSize, Range, Rectangle, RectangleShapeTypeEnum, RectangularCapsule, RectangularCapsuleShapeTypeEnum, ReleaseChannel, RequestArgs, RequiredError, RobotConfigurationsApi, RobotConfigurationsApiAxiosParamCreator, RobotConfigurationsApiFactory, RobotConfigurationsApiFp, RobotController, RobotControllerConfiguration, RobotControllerConfigurationRequest, RobotControllerState, RobotSystemMode, RobotTcp, RobotTcpData, SafetyGeometry, SafetyGeometryBox, SafetyGeometryCapsule, SafetyGeometryLozenge, SafetyGeometryPlane, SafetyGeometryPrism, SafetyGeometrySphere, SafetyStateType, SafetyZone, SafetyZonePose, SafetyZones, ServiceGroup, ServiceStatus, ServiceStatusPhase, ServiceStatusResponse, ServiceStatusSeverity, ServiceStatusStatus, SessionApi, SessionApiAxiosParamCreator, SessionApiFactory, SessionApiFp, SessionResponse, SetIO, SettableRobotSystemMode, SingularityHandling, SingularityTypeEnum, Snap7IO, Snap7IOArea, Snap7IOData, Snap7IODirection, Snap7IOTypeEnum, Sphere, SphereShapeTypeEnum, StartMovementRequest, StartMovementRequestMessageTypeEnum, StartMovementResponse, StartMovementResponseKindEnum, StartOnIO, StaubliController, StaubliControllerKindEnum, StaubliControllerRtiServer, StopActionChunksRequest, StopActionChunksRequestMessageTypeEnum, StopActionChunksResponse, StopActionChunksResponseKindEnum, StorageKey, StorageKeySourceEnum, StoreCollisionComponentsApi, StoreCollisionComponentsApiAxiosParamCreator, StoreCollisionComponentsApiFactory, StoreCollisionComponentsApiFp, StoreCollisionSetupsApi, StoreCollisionSetupsApiAxiosParamCreator, StoreCollisionSetupsApiFactory, StoreCollisionSetupsApiFp, StoreObjectApi, StoreObjectApiAxiosParamCreator, StoreObjectApiFactory, StoreObjectApiFp, StreamIOValuesResponse, SystemApi, SystemApiAxiosParamCreator, SystemApiFactory, SystemApiFp, TcpOffset, TcpRequiredError, TcpRequiredErrorKindEnum, TcpVelocityRequest, TcpVelocityRequestMessageTypeEnum, TcpVelocityResponse, TcpVelocityResponseKindEnum, ToolValue, ToolValueOrKey, ToolValueSourceEnum, TorqueExceededError, TorqueExceededErrorKindEnum, TorqueExceededErrorTorqueExceeded, 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, TrajectorySection, TrajectoryWaitForIO, TrajectoryWaitForIOKindEnum, UnitType, UnitreeController, UnitreeControllerKindEnum, UnitreeControllerRobotTypeEnum, UniversalrobotsController, UniversalrobotsControllerKindEnum, UnpauseActionChunksRequest, UnpauseActionChunksRequestMessageTypeEnum, UnpauseActionChunksResponse, UnpauseActionChunksResponseKindEnum, UpdateCellVersionRequest, UpdateNovaVersionRequest, User, ValidationError, ValidationError2, ValidationErrorLocInner, VersionApi, VersionApiAxiosParamCreator, VersionApiFactory, VersionApiFp, VirtualController, VirtualControllerApi, VirtualControllerApiAxiosParamCreator, VirtualControllerApiFactory, VirtualControllerApiFp, VirtualControllerBehaviorApi, VirtualControllerBehaviorApiAxiosParamCreator, VirtualControllerBehaviorApiFactory, VirtualControllerBehaviorApiFp, VirtualControllerInputsOutputsApi, VirtualControllerInputsOutputsApiAxiosParamCreator, VirtualControllerInputsOutputsApiFactory, VirtualControllerInputsOutputsApiFp, VirtualControllerKindEnum, VirtualRobotConfiguration, WaitForIOEventRequest, Waypoint, WaypointCoordinates, YaskawaController, YaskawaControllerKindEnum, ZodValidationError, ZodValidationErrorError, ZodValidationErrorErrorCodeEnum, ZodValidationErrorErrorDetailsInner, ZodValidationErrorErrorDetailsInnerPathInner, operationServerMap };
|