@wandelbots/nova-api 26.6.0-dev.13 → 26.6.0-dev.131
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 +813 -502
- package/dist/v2/index.d.cts +791 -218
- package/dist/v2/index.d.ts +791 -218
- package/dist/v2/index.js +397 -127
- 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
|
@@ -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>;
|
|
@@ -1241,17 +1377,17 @@ interface ControllerDescription {
|
|
|
1241
1377
|
'supports_safety_zones': boolean;
|
|
1242
1378
|
}
|
|
1243
1379
|
/**
|
|
1244
|
-
*
|
|
1380
|
+
* Direct network interface for the robot controller. When set, the controller gets its own interface on the specified port with the given addresses to reach the controller\'s network.
|
|
1245
1381
|
*/
|
|
1246
1382
|
interface ControllerNetworkInterface {
|
|
1247
1383
|
/**
|
|
1248
|
-
*
|
|
1384
|
+
* Network port identifier. Either a bare port name, e.g., `enp3s0` or a node-qualified identifier, e.g., `wandelbox-abc123-enp3s0`. Use the node-qualified form on multi-node clusters to pin the interface to a specific node. Cannot be changed in-place. Delete and add the controller again to another port.
|
|
1249
1385
|
*/
|
|
1250
|
-
'
|
|
1386
|
+
'interface': string;
|
|
1251
1387
|
/**
|
|
1252
|
-
*
|
|
1388
|
+
* IPv4 addresses to assign to the interface, in address/prefix format, e.g., `192.168.1.10/24`.
|
|
1253
1389
|
*/
|
|
1254
|
-
'
|
|
1390
|
+
'addresses': Array<string>;
|
|
1255
1391
|
}
|
|
1256
1392
|
interface ConvertVendorConfiguredPose422Response {
|
|
1257
1393
|
'detail'?: Array<ValidationError>;
|
|
@@ -1536,7 +1672,7 @@ declare const ErrorUnsupportedOperationErrorFeedbackNameEnum: {
|
|
|
1536
1672
|
};
|
|
1537
1673
|
type ErrorUnsupportedOperationErrorFeedbackNameEnum = typeof ErrorUnsupportedOperationErrorFeedbackNameEnum[keyof typeof ErrorUnsupportedOperationErrorFeedbackNameEnum];
|
|
1538
1674
|
/**
|
|
1539
|
-
* 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.
|
|
1540
1676
|
*/
|
|
1541
1677
|
interface Execute {
|
|
1542
1678
|
/**
|
|
@@ -1545,6 +1681,26 @@ interface Execute {
|
|
|
1545
1681
|
'joint_position': Array<number>;
|
|
1546
1682
|
'details'?: ExecuteDetails;
|
|
1547
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;
|
|
1548
1704
|
/**
|
|
1549
1705
|
* @type ExecuteDetails
|
|
1550
1706
|
*/
|
|
@@ -1589,24 +1745,6 @@ type ExecuteTrajectoryResponse = {
|
|
|
1589
1745
|
} & PlaybackSpeedResponse | {
|
|
1590
1746
|
kind: 'START_RECEIVED';
|
|
1591
1747
|
} & StartMovementResponse;
|
|
1592
|
-
/**
|
|
1593
|
-
* @type ExecuteWaypointJoggingRequest
|
|
1594
|
-
*/
|
|
1595
|
-
type ExecuteWaypointJoggingRequest = InitializeJoggingRequest | JointWaypointsRequest | PauseJoggingRequest | PoseWaypointsRequest;
|
|
1596
|
-
/**
|
|
1597
|
-
* @type ExecuteWaypointJoggingResponse
|
|
1598
|
-
*/
|
|
1599
|
-
type ExecuteWaypointJoggingResponse = {
|
|
1600
|
-
kind: 'INITIALIZE_RECEIVED';
|
|
1601
|
-
} & InitializeJoggingResponse | {
|
|
1602
|
-
kind: 'JOINT_WAYPOINTS_RECEIVED';
|
|
1603
|
-
} & JointWaypointsResponse | {
|
|
1604
|
-
kind: 'MOTION_ERROR';
|
|
1605
|
-
} & MovementErrorResponse | {
|
|
1606
|
-
kind: 'PAUSE_RECEIVED';
|
|
1607
|
-
} & PauseJoggingResponse | {
|
|
1608
|
-
kind: 'POSE_WAYPOINTS_RECEIVED';
|
|
1609
|
-
} & PoseWaypointsResponse;
|
|
1610
1748
|
/**
|
|
1611
1749
|
* A datapoint inside external joint stream.
|
|
1612
1750
|
*/
|
|
@@ -1627,6 +1765,10 @@ interface FanucController {
|
|
|
1627
1765
|
'kind': FanucControllerKindEnum;
|
|
1628
1766
|
'controller_ip': string;
|
|
1629
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;
|
|
1630
1772
|
}
|
|
1631
1773
|
declare const FanucControllerKindEnum: {
|
|
1632
1774
|
readonly FanucController: "FanucController";
|
|
@@ -1897,6 +2039,39 @@ interface ForwardKinematicsValidationError {
|
|
|
1897
2039
|
};
|
|
1898
2040
|
'data'?: ErrorInvalidJointCount;
|
|
1899
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;
|
|
1900
2075
|
interface GetTrajectoryResponse {
|
|
1901
2076
|
/**
|
|
1902
2077
|
* Unique identifier of the motion group the trajectory is planned for.
|
|
@@ -2079,6 +2254,41 @@ interface InertiaTensor {
|
|
|
2079
2254
|
*/
|
|
2080
2255
|
'yz': number;
|
|
2081
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];
|
|
2082
2292
|
/**
|
|
2083
2293
|
* Send this message to start jogging a motion group.
|
|
2084
2294
|
*/
|
|
@@ -2349,13 +2559,25 @@ declare const JointLimitExceededErrorKindEnum: {
|
|
|
2349
2559
|
};
|
|
2350
2560
|
type JointLimitExceededErrorKindEnum = typeof JointLimitExceededErrorKindEnum[keyof typeof JointLimitExceededErrorKindEnum];
|
|
2351
2561
|
interface JointLimits {
|
|
2562
|
+
/**
|
|
2563
|
+
* Joint position limits in rad.
|
|
2564
|
+
*/
|
|
2352
2565
|
'position'?: LimitRange;
|
|
2566
|
+
/**
|
|
2567
|
+
* Joint velocity limit in rad/s.
|
|
2568
|
+
*/
|
|
2353
2569
|
'velocity'?: number;
|
|
2570
|
+
/**
|
|
2571
|
+
* Joint acceleration limit in rad/s².
|
|
2572
|
+
*/
|
|
2354
2573
|
'acceleration'?: number;
|
|
2355
2574
|
/**
|
|
2356
|
-
* > **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.
|
|
2357
2576
|
*/
|
|
2358
2577
|
'jerk'?: number;
|
|
2578
|
+
/**
|
|
2579
|
+
* Joint torque limit in Nm.
|
|
2580
|
+
*/
|
|
2359
2581
|
'torque'?: number;
|
|
2360
2582
|
}
|
|
2361
2583
|
interface JointPTPMotion {
|
|
@@ -2411,49 +2633,22 @@ declare const JointVelocityResponseKindEnum: {
|
|
|
2411
2633
|
};
|
|
2412
2634
|
type JointVelocityResponseKindEnum = typeof JointVelocityResponseKindEnum[keyof typeof JointVelocityResponseKindEnum];
|
|
2413
2635
|
/**
|
|
2414
|
-
* A waypoint
|
|
2636
|
+
* A joint waypoint for action chunk streaming. > **NOTE** > > This type is experimental and its behavior may change in future releases.
|
|
2415
2637
|
*/
|
|
2416
2638
|
interface JointWaypoint {
|
|
2417
2639
|
/**
|
|
2418
|
-
*
|
|
2640
|
+
* Type specifier for server, set automatically.
|
|
2419
2641
|
*/
|
|
2420
|
-
'
|
|
2642
|
+
'kind': JointWaypointKindEnum;
|
|
2421
2643
|
/**
|
|
2422
2644
|
* This structure describes a set of joint values, e.g., positions, currents, torques, of a motion group. Float precision is the default.
|
|
2423
2645
|
*/
|
|
2424
2646
|
'joints': Array<number>;
|
|
2425
2647
|
}
|
|
2426
|
-
|
|
2427
|
-
|
|
2428
|
-
*/
|
|
2429
|
-
interface JointWaypointsRequest {
|
|
2430
|
-
/**
|
|
2431
|
-
* Type specifier for server, set automatically.
|
|
2432
|
-
*/
|
|
2433
|
-
'message_type': JointWaypointsRequestMessageTypeEnum;
|
|
2434
|
-
/**
|
|
2435
|
-
* List of joint waypoints.
|
|
2436
|
-
*/
|
|
2437
|
-
'waypoints': Array<JointWaypoint>;
|
|
2438
|
-
}
|
|
2439
|
-
declare const JointWaypointsRequestMessageTypeEnum: {
|
|
2440
|
-
readonly JointWaypointsRequest: "JointWaypointsRequest";
|
|
2648
|
+
declare const JointWaypointKindEnum: {
|
|
2649
|
+
readonly Joints: "JOINTS";
|
|
2441
2650
|
};
|
|
2442
|
-
type
|
|
2443
|
-
/**
|
|
2444
|
-
* Acknowledgment to a JointWaypointsRequest.
|
|
2445
|
-
*/
|
|
2446
|
-
interface JointWaypointsResponse {
|
|
2447
|
-
/**
|
|
2448
|
-
* Error message in case of invalid JointWaypointsRequest.
|
|
2449
|
-
*/
|
|
2450
|
-
'message'?: string;
|
|
2451
|
-
'kind': JointWaypointsResponseKindEnum;
|
|
2452
|
-
}
|
|
2453
|
-
declare const JointWaypointsResponseKindEnum: {
|
|
2454
|
-
readonly JointWaypointsReceived: "JOINT_WAYPOINTS_RECEIVED";
|
|
2455
|
-
};
|
|
2456
|
-
type JointWaypointsResponseKindEnum = typeof JointWaypointsResponseKindEnum[keyof typeof JointWaypointsResponseKindEnum];
|
|
2651
|
+
type JointWaypointKindEnum = typeof JointWaypointKindEnum[keyof typeof JointWaypointKindEnum];
|
|
2457
2652
|
/**
|
|
2458
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.
|
|
2459
2654
|
*/
|
|
@@ -2515,6 +2710,10 @@ interface KukaConfiguredPose {
|
|
|
2515
2710
|
interface KukaController {
|
|
2516
2711
|
'kind': KukaControllerKindEnum;
|
|
2517
2712
|
'controller_ip': string;
|
|
2713
|
+
/**
|
|
2714
|
+
* The addresses must be ordered as KLI first and RSI second.
|
|
2715
|
+
*/
|
|
2716
|
+
'network_interface'?: ControllerNetworkInterface;
|
|
2518
2717
|
'controller_port': number;
|
|
2519
2718
|
'rsi_server': KukaControllerRsiServer;
|
|
2520
2719
|
/**
|
|
@@ -2635,7 +2834,13 @@ type LicenseStatusEnum = typeof LicenseStatusEnum[keyof typeof LicenseStatusEnum
|
|
|
2635
2834
|
* The upper_limit must be greater then the lower_limit.
|
|
2636
2835
|
*/
|
|
2637
2836
|
interface LimitRange {
|
|
2837
|
+
/**
|
|
2838
|
+
* Lower position limit in rad.
|
|
2839
|
+
*/
|
|
2638
2840
|
'lower_limit'?: number;
|
|
2841
|
+
/**
|
|
2842
|
+
* Upper position limit in rad.
|
|
2843
|
+
*/
|
|
2639
2844
|
'upper_limit'?: number;
|
|
2640
2845
|
}
|
|
2641
2846
|
interface LimitSet {
|
|
@@ -2722,9 +2927,11 @@ interface ListTrajectoriesResponse {
|
|
|
2722
2927
|
}
|
|
2723
2928
|
declare const Manufacturer: {
|
|
2724
2929
|
readonly Abb: "abb";
|
|
2930
|
+
readonly Bostondynamics: "bostondynamics";
|
|
2725
2931
|
readonly Fanuc: "fanuc";
|
|
2726
2932
|
readonly Kuka: "kuka";
|
|
2727
2933
|
readonly Staubli: "staubli";
|
|
2934
|
+
readonly Unitree: "unitree";
|
|
2728
2935
|
readonly Universalrobots: "universalrobots";
|
|
2729
2936
|
readonly Yaskawa: "yaskawa";
|
|
2730
2937
|
};
|
|
@@ -2773,7 +2980,7 @@ interface MergeTrajectoriesSegment {
|
|
|
2773
2980
|
*/
|
|
2774
2981
|
'trajectory': JointTrajectory;
|
|
2775
2982
|
/**
|
|
2776
|
-
* 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.
|
|
2777
2984
|
*/
|
|
2778
2985
|
'limits_override'?: LimitsOverride;
|
|
2779
2986
|
/**
|
|
@@ -2894,7 +3101,7 @@ interface ModelError {
|
|
|
2894
3101
|
interface MotionCommand {
|
|
2895
3102
|
'blending'?: MotionCommandBlending;
|
|
2896
3103
|
/**
|
|
2897
|
-
* 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.
|
|
2898
3105
|
*/
|
|
2899
3106
|
'limits_override'?: LimitsOverride;
|
|
2900
3107
|
'path': MotionCommandPath;
|
|
@@ -2908,6 +3115,27 @@ type MotionCommandBlending = BlendingAuto | BlendingPosition;
|
|
|
2908
3115
|
* @type MotionCommandPath
|
|
2909
3116
|
*/
|
|
2910
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
|
+
}
|
|
2911
3139
|
/**
|
|
2912
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].
|
|
2913
3141
|
*/
|
|
@@ -2984,7 +3212,7 @@ interface MotionGroupFromJson {
|
|
|
2984
3212
|
*/
|
|
2985
3213
|
'motion_group': string;
|
|
2986
3214
|
/**
|
|
2987
|
-
*
|
|
3215
|
+
* JSON configuration of the virtual robot controller, can be obtained from the physical controller\'s configuration via [getVirtualControllerConfiguration](#/operations/getVirtualControllerConfiguration).
|
|
2988
3216
|
*/
|
|
2989
3217
|
'json_data': string;
|
|
2990
3218
|
/**
|
|
@@ -2992,7 +3220,7 @@ interface MotionGroupFromJson {
|
|
|
2992
3220
|
*/
|
|
2993
3221
|
'extracted_motion_group_id': string;
|
|
2994
3222
|
/**
|
|
2995
|
-
* 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.
|
|
2996
3224
|
*/
|
|
2997
3225
|
'initial_joint_position'?: string;
|
|
2998
3226
|
}
|
|
@@ -3006,7 +3234,7 @@ interface MotionGroupFromType {
|
|
|
3006
3234
|
*/
|
|
3007
3235
|
'motion_group_model': string;
|
|
3008
3236
|
/**
|
|
3009
|
-
* 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.
|
|
3010
3238
|
*/
|
|
3011
3239
|
'initial_joint_position'?: string;
|
|
3012
3240
|
}
|
|
@@ -3045,6 +3273,19 @@ interface MotionGroupJoints {
|
|
|
3045
3273
|
*/
|
|
3046
3274
|
'torques'?: Array<number>;
|
|
3047
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
|
+
}
|
|
3048
3289
|
/**
|
|
3049
3290
|
* Metadata about a motion group model.
|
|
3050
3291
|
*/
|
|
@@ -3123,17 +3364,25 @@ interface MotionGroupState {
|
|
|
3123
3364
|
*/
|
|
3124
3365
|
'joint_current'?: Array<number>;
|
|
3125
3366
|
/**
|
|
3126
|
-
* 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.
|
|
3127
3368
|
*/
|
|
3128
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;
|
|
3129
3374
|
/**
|
|
3130
3375
|
* Unique identifier addressing the active TCP. Might not be returned for positioners as some do not support TCPs, depending on the model.
|
|
3131
3376
|
*/
|
|
3132
3377
|
'tcp'?: string;
|
|
3133
3378
|
/**
|
|
3134
|
-
* 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.
|
|
3135
3380
|
*/
|
|
3136
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;
|
|
3137
3386
|
/**
|
|
3138
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.
|
|
3139
3388
|
*/
|
|
@@ -3299,55 +3548,61 @@ interface NanValueErrorNanValue {
|
|
|
3299
3548
|
*/
|
|
3300
3549
|
'joint_position'?: Array<number>;
|
|
3301
3550
|
}
|
|
3551
|
+
/**
|
|
3552
|
+
* Network attachment method used to expose the interface to workloads.
|
|
3553
|
+
*/
|
|
3554
|
+
declare const NetworkBackend: {
|
|
3555
|
+
readonly Macvlan: "macvlan";
|
|
3556
|
+
readonly Sriov: "sriov";
|
|
3557
|
+
};
|
|
3558
|
+
type NetworkBackend = typeof NetworkBackend[keyof typeof NetworkBackend];
|
|
3302
3559
|
interface NetworkDevice {
|
|
3303
3560
|
/**
|
|
3304
|
-
*
|
|
3561
|
+
* IPv4 address of the discovered device.
|
|
3305
3562
|
*/
|
|
3306
3563
|
'ip': string;
|
|
3307
3564
|
/**
|
|
3308
|
-
*
|
|
3565
|
+
* MAC address of the discovered device.
|
|
3309
3566
|
*/
|
|
3310
3567
|
'mac': string;
|
|
3311
3568
|
/**
|
|
3312
|
-
*
|
|
3569
|
+
* Hardware manufacturer name derived from the MAC address, omitted when unknown.
|
|
3313
3570
|
*/
|
|
3314
3571
|
'vendor'?: string;
|
|
3315
3572
|
}
|
|
3316
3573
|
interface NetworkInterface {
|
|
3317
3574
|
/**
|
|
3318
|
-
*
|
|
3575
|
+
* Host network interface name, e.g., enp0s31f6.
|
|
3319
3576
|
*/
|
|
3320
3577
|
'name': string;
|
|
3321
3578
|
/**
|
|
3322
|
-
*
|
|
3579
|
+
* Stable identifier for this interface. Pass it as the `interface` field in ARP scan request, e.g., wandelbox-abc123-enp3s0.
|
|
3323
3580
|
*/
|
|
3324
|
-
'
|
|
3581
|
+
'interface': string;
|
|
3325
3582
|
/**
|
|
3326
|
-
*
|
|
3583
|
+
* Hostname that exposes this interface.
|
|
3327
3584
|
*/
|
|
3328
|
-
'
|
|
3585
|
+
'node': string;
|
|
3586
|
+
'backend': NetworkBackend;
|
|
3587
|
+
'link': NetworkLinkState;
|
|
3329
3588
|
/**
|
|
3330
|
-
*
|
|
3589
|
+
* IP/CIDR addresses currently assigned to the interface. Omitted when not available.
|
|
3331
3590
|
*/
|
|
3332
|
-
'
|
|
3591
|
+
'addresses'?: Array<string>;
|
|
3333
3592
|
}
|
|
3593
|
+
/**
|
|
3594
|
+
* Link state of the physical interface.
|
|
3595
|
+
*/
|
|
3596
|
+
declare const NetworkLinkState: {
|
|
3597
|
+
readonly Up: "up";
|
|
3598
|
+
readonly Down: "down";
|
|
3599
|
+
};
|
|
3600
|
+
type NetworkLinkState = typeof NetworkLinkState[keyof typeof NetworkLinkState];
|
|
3334
3601
|
interface NetworkState {
|
|
3335
3602
|
/**
|
|
3336
3603
|
* Indicates whether the system is connected to the internet.
|
|
3337
3604
|
*/
|
|
3338
3605
|
'internet_connected': boolean;
|
|
3339
|
-
/**
|
|
3340
|
-
* Type of the active network link (e.g., ethernet, wifi, cellular, vpn, unknown).
|
|
3341
|
-
*/
|
|
3342
|
-
'connection_type'?: NetworkStateConnectionTypeEnum;
|
|
3343
|
-
/**
|
|
3344
|
-
* Received signal strength in dBm for wireless interfaces; negative values indicate weaker signals.
|
|
3345
|
-
*/
|
|
3346
|
-
'signal_strength'?: number;
|
|
3347
|
-
/**
|
|
3348
|
-
* Normalized link quality metric from 0 (poor) to 1 (excellent) when provided by the interface.
|
|
3349
|
-
*/
|
|
3350
|
-
'link_quality'?: number;
|
|
3351
3606
|
/**
|
|
3352
3607
|
* Round-trip latency to the probe endpoint measured in milliseconds.
|
|
3353
3608
|
*/
|
|
@@ -3357,14 +3612,6 @@ interface NetworkState {
|
|
|
3357
3612
|
*/
|
|
3358
3613
|
'bandwidth_mbps'?: number;
|
|
3359
3614
|
}
|
|
3360
|
-
declare const NetworkStateConnectionTypeEnum: {
|
|
3361
|
-
readonly Ethernet: "ethernet";
|
|
3362
|
-
readonly Wifi: "wifi";
|
|
3363
|
-
readonly Cellular: "cellular";
|
|
3364
|
-
readonly Vpn: "vpn";
|
|
3365
|
-
readonly Unknown: "unknown";
|
|
3366
|
-
};
|
|
3367
|
-
type NetworkStateConnectionTypeEnum = typeof NetworkStateConnectionTypeEnum[keyof typeof NetworkStateConnectionTypeEnum];
|
|
3368
3615
|
/**
|
|
3369
3616
|
* Controllers have two operating modes: AUTOMATIC and MANUAL. MANUAL mode is mainly used for teaching a robot application. To ensure safe operation the velocity of the robot is limited to 250 mm/s. Running the finished application is done in AUTOMATIC operating mode without the limited velocity of the MANUAL mode.
|
|
3370
3617
|
*/
|
|
@@ -3518,6 +3765,33 @@ declare const PathLinePathDefinitionNameEnum: {
|
|
|
3518
3765
|
readonly PathLine: "PathLine";
|
|
3519
3766
|
};
|
|
3520
3767
|
type PathLinePathDefinitionNameEnum = typeof PathLinePathDefinitionNameEnum[keyof typeof PathLinePathDefinitionNameEnum];
|
|
3768
|
+
/**
|
|
3769
|
+
* Request to pause executing action chunks. If successful, `execute` jogging state in [MotionGroupState](MotionGroupState.yaml) is set to `PAUSED_BY_USER`.
|
|
3770
|
+
*/
|
|
3771
|
+
interface PauseActionChunksRequest {
|
|
3772
|
+
/**
|
|
3773
|
+
* Type specifier for server, set automatically.
|
|
3774
|
+
*/
|
|
3775
|
+
'message_type': PauseActionChunksRequestMessageTypeEnum;
|
|
3776
|
+
}
|
|
3777
|
+
declare const PauseActionChunksRequestMessageTypeEnum: {
|
|
3778
|
+
readonly PauseActionChunksRequest: "PauseActionChunksRequest";
|
|
3779
|
+
};
|
|
3780
|
+
type PauseActionChunksRequestMessageTypeEnum = typeof PauseActionChunksRequestMessageTypeEnum[keyof typeof PauseActionChunksRequestMessageTypeEnum];
|
|
3781
|
+
/**
|
|
3782
|
+
* Acknowledgment to a PauseActionChunksRequest.
|
|
3783
|
+
*/
|
|
3784
|
+
interface PauseActionChunksResponse {
|
|
3785
|
+
/**
|
|
3786
|
+
* Error message in case of invalid PauseActionChunksRequest.
|
|
3787
|
+
*/
|
|
3788
|
+
'message'?: string;
|
|
3789
|
+
'kind': PauseActionChunksResponseKindEnum;
|
|
3790
|
+
}
|
|
3791
|
+
declare const PauseActionChunksResponseKindEnum: {
|
|
3792
|
+
readonly PauseReceived: "PAUSE_RECEIVED";
|
|
3793
|
+
};
|
|
3794
|
+
type PauseActionChunksResponseKindEnum = typeof PauseActionChunksResponseKindEnum[keyof typeof PauseActionChunksResponseKindEnum];
|
|
3521
3795
|
/**
|
|
3522
3796
|
* Request to pause jogging. If successful, `execute` jogging state in [MotionGroupState](MotionGroupState.yaml) is set to `PAUSED_BY_USER`.
|
|
3523
3797
|
*/
|
|
@@ -3631,6 +3905,10 @@ interface PlanCollisionFreeRequest {
|
|
|
3631
3905
|
*/
|
|
3632
3906
|
interface PlanCollisionFreeResponse {
|
|
3633
3907
|
'response': PlanCollisionFreeResponseResponse;
|
|
3908
|
+
/**
|
|
3909
|
+
* The motion commands that produced the trajectory.
|
|
3910
|
+
*/
|
|
3911
|
+
'motion_commands'?: Array<MotionCommand>;
|
|
3634
3912
|
}
|
|
3635
3913
|
/**
|
|
3636
3914
|
* @type PlanCollisionFreeResponseResponse
|
|
@@ -3661,6 +3939,10 @@ interface PlanTrajectoryRequest {
|
|
|
3661
3939
|
* List of motion commands. A command consists of a path definition (line, circle, joint_ptp, cartesian_ptp, cubic_spline), blending, and limits override.
|
|
3662
3940
|
*/
|
|
3663
3941
|
'motion_commands': Array<MotionCommand>;
|
|
3942
|
+
/**
|
|
3943
|
+
* <!-- theme: danger --> > > **Experimental** Strategy used to deal with wrist singularities along a cartesian path.
|
|
3944
|
+
*/
|
|
3945
|
+
'singularity_handling'?: SingularityHandling;
|
|
3664
3946
|
}
|
|
3665
3947
|
interface PlanTrajectoryResponse {
|
|
3666
3948
|
'response': PlanTrajectoryResponseResponse;
|
|
@@ -3738,49 +4020,22 @@ interface Pose {
|
|
|
3738
4020
|
'orientation'?: Array<number>;
|
|
3739
4021
|
}
|
|
3740
4022
|
/**
|
|
3741
|
-
* A waypoint
|
|
4023
|
+
* A pose waypoint for action chunk streaming. > **NOTE** > > This type is experimental and its behavior may change in future releases.
|
|
3742
4024
|
*/
|
|
3743
4025
|
interface PoseWaypoint {
|
|
3744
4026
|
/**
|
|
3745
|
-
*
|
|
4027
|
+
* Type specifier for server, set automatically.
|
|
3746
4028
|
*/
|
|
3747
|
-
'
|
|
4029
|
+
'kind': PoseWaypointKindEnum;
|
|
3748
4030
|
/**
|
|
3749
4031
|
* Cartesian pose for this waypoint.
|
|
3750
4032
|
*/
|
|
3751
4033
|
'pose': Pose;
|
|
3752
4034
|
}
|
|
3753
|
-
|
|
3754
|
-
|
|
3755
|
-
*/
|
|
3756
|
-
interface PoseWaypointsRequest {
|
|
3757
|
-
/**
|
|
3758
|
-
* Type specifier for server, set automatically.
|
|
3759
|
-
*/
|
|
3760
|
-
'message_type': PoseWaypointsRequestMessageTypeEnum;
|
|
3761
|
-
/**
|
|
3762
|
-
* List of pose waypoints.
|
|
3763
|
-
*/
|
|
3764
|
-
'waypoints': Array<PoseWaypoint>;
|
|
3765
|
-
}
|
|
3766
|
-
declare const PoseWaypointsRequestMessageTypeEnum: {
|
|
3767
|
-
readonly PoseWaypointsRequest: "PoseWaypointsRequest";
|
|
4035
|
+
declare const PoseWaypointKindEnum: {
|
|
4036
|
+
readonly Pose: "POSE";
|
|
3768
4037
|
};
|
|
3769
|
-
type
|
|
3770
|
-
/**
|
|
3771
|
-
* Acknowledgment to a PoseWaypointsRequest.
|
|
3772
|
-
*/
|
|
3773
|
-
interface PoseWaypointsResponse {
|
|
3774
|
-
/**
|
|
3775
|
-
* Error message in case of invalid PoseWaypointsRequest.
|
|
3776
|
-
*/
|
|
3777
|
-
'message'?: string;
|
|
3778
|
-
'kind': PoseWaypointsResponseKindEnum;
|
|
3779
|
-
}
|
|
3780
|
-
declare const PoseWaypointsResponseKindEnum: {
|
|
3781
|
-
readonly PoseWaypointsReceived: "POSE_WAYPOINTS_RECEIVED";
|
|
3782
|
-
};
|
|
3783
|
-
type PoseWaypointsResponseKindEnum = typeof PoseWaypointsResponseKindEnum[keyof typeof PoseWaypointsResponseKindEnum];
|
|
4038
|
+
type PoseWaypointKindEnum = typeof PoseWaypointKindEnum[keyof typeof PoseWaypointKindEnum];
|
|
3784
4039
|
interface ProfinetDescription {
|
|
3785
4040
|
/**
|
|
3786
4041
|
* The vendor identifier of the PROFINET device, identifying the manufacturer.
|
|
@@ -3808,7 +4063,7 @@ interface ProfinetIO {
|
|
|
3808
4063
|
*/
|
|
3809
4064
|
'direction': ProfinetIODirection;
|
|
3810
4065
|
/**
|
|
3811
|
-
* 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
|
|
4066
|
+
* 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
|
|
3812
4067
|
*/
|
|
3813
4068
|
'byte_address': number;
|
|
3814
4069
|
/**
|
|
@@ -3831,7 +4086,7 @@ interface ProfinetIOData {
|
|
|
3831
4086
|
*/
|
|
3832
4087
|
'direction': ProfinetIODirection;
|
|
3833
4088
|
/**
|
|
3834
|
-
* 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
|
|
4089
|
+
* 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
|
|
3835
4090
|
*/
|
|
3836
4091
|
'byte_address': number;
|
|
3837
4092
|
/**
|
|
@@ -3870,13 +4125,19 @@ interface ProfinetInputOutputConfig {
|
|
|
3870
4125
|
*/
|
|
3871
4126
|
'config': string;
|
|
3872
4127
|
/**
|
|
3873
|
-
*
|
|
4128
|
+
* 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.
|
|
3874
4129
|
*/
|
|
3875
|
-
'
|
|
4130
|
+
'offsets'?: Array<ProfinetSlotOffset>;
|
|
3876
4131
|
/**
|
|
3877
|
-
* Offset in bytes for the
|
|
4132
|
+
* 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.
|
|
4133
|
+
* @deprecated
|
|
3878
4134
|
*/
|
|
3879
|
-
'
|
|
4135
|
+
'input_offset'?: number;
|
|
4136
|
+
/**
|
|
4137
|
+
* 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.
|
|
4138
|
+
* @deprecated
|
|
4139
|
+
*/
|
|
4140
|
+
'output_offset'?: number;
|
|
3880
4141
|
}
|
|
3881
4142
|
/**
|
|
3882
4143
|
* 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).
|
|
@@ -3895,6 +4156,20 @@ interface ProfinetSlotDescription {
|
|
|
3895
4156
|
*/
|
|
3896
4157
|
'subslots': Array<ProfinetSubSlotDescription>;
|
|
3897
4158
|
}
|
|
4159
|
+
interface ProfinetSlotOffset {
|
|
4160
|
+
/**
|
|
4161
|
+
* 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.
|
|
4162
|
+
*/
|
|
4163
|
+
'slot': number;
|
|
4164
|
+
/**
|
|
4165
|
+
* 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.
|
|
4166
|
+
*/
|
|
4167
|
+
'input_offset': number;
|
|
4168
|
+
/**
|
|
4169
|
+
* 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.
|
|
4170
|
+
*/
|
|
4171
|
+
'output_offset': number;
|
|
4172
|
+
}
|
|
3898
4173
|
interface ProfinetSubSlotDescription {
|
|
3899
4174
|
/**
|
|
3900
4175
|
* The number/index of the PROFINET subslot.
|
|
@@ -4148,7 +4423,7 @@ interface RobotController {
|
|
|
4148
4423
|
/**
|
|
4149
4424
|
* @type RobotControllerConfiguration
|
|
4150
4425
|
*/
|
|
4151
|
-
type RobotControllerConfiguration = AbbController | FanucController | KukaController | UniversalrobotsController | VirtualController | YaskawaController;
|
|
4426
|
+
type RobotControllerConfiguration = AbbController | BostondynamicsController | FanucController | KukaController | StaubliController | UnitreeController | UniversalrobotsController | VirtualController | YaskawaController;
|
|
4152
4427
|
/**
|
|
4153
4428
|
* Information to generate all robot controller configurations that match a given ARP scan result.
|
|
4154
4429
|
*/
|
|
@@ -4544,6 +4819,15 @@ declare const SettableRobotSystemMode: {
|
|
|
4544
4819
|
readonly ModeControl: "MODE_CONTROL";
|
|
4545
4820
|
};
|
|
4546
4821
|
type SettableRobotSystemMode = typeof SettableRobotSystemMode[keyof typeof SettableRobotSystemMode];
|
|
4822
|
+
/**
|
|
4823
|
+
* <!-- 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.
|
|
4824
|
+
*/
|
|
4825
|
+
declare const SingularityHandling: {
|
|
4826
|
+
readonly None: "NONE";
|
|
4827
|
+
readonly PalletizingWrist: "PALLETIZING_WRIST";
|
|
4828
|
+
readonly AdaptiveSampling: "ADAPTIVE_SAMPLING";
|
|
4829
|
+
};
|
|
4830
|
+
type SingularityHandling = typeof SingularityHandling[keyof typeof SingularityHandling];
|
|
4547
4831
|
declare const SingularityTypeEnum: {
|
|
4548
4832
|
readonly Wrist: "WRIST";
|
|
4549
4833
|
readonly Elbow: "ELBOW";
|
|
@@ -4705,6 +4989,55 @@ interface StartOnIO {
|
|
|
4705
4989
|
'comparator': Comparator;
|
|
4706
4990
|
'io_origin': IOOrigin;
|
|
4707
4991
|
}
|
|
4992
|
+
/**
|
|
4993
|
+
* 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.
|
|
4994
|
+
*/
|
|
4995
|
+
interface StaubliController {
|
|
4996
|
+
'kind': StaubliControllerKindEnum;
|
|
4997
|
+
'controller_ip': string;
|
|
4998
|
+
'network_interface'?: ControllerNetworkInterface;
|
|
4999
|
+
'controller_port': number;
|
|
5000
|
+
'command_port': number;
|
|
5001
|
+
'rti_server': StaubliControllerRtiServer;
|
|
5002
|
+
}
|
|
5003
|
+
declare const StaubliControllerKindEnum: {
|
|
5004
|
+
readonly StaubliController: "StaubliController";
|
|
5005
|
+
};
|
|
5006
|
+
type StaubliControllerKindEnum = typeof StaubliControllerKindEnum[keyof typeof StaubliControllerKindEnum];
|
|
5007
|
+
/**
|
|
5008
|
+
* The RTI server runs inside of the cell.
|
|
5009
|
+
*/
|
|
5010
|
+
interface StaubliControllerRtiServer {
|
|
5011
|
+
'ip': string;
|
|
5012
|
+
'port': number;
|
|
5013
|
+
}
|
|
5014
|
+
/**
|
|
5015
|
+
* Request to stop executing action chunks. If successful, `execute` jogging state in [MotionGroupState](MotionGroupState.yaml) is set to `PAUSED_BY_USER`.
|
|
5016
|
+
*/
|
|
5017
|
+
interface StopActionChunksRequest {
|
|
5018
|
+
/**
|
|
5019
|
+
* Type specifier for server, set automatically.
|
|
5020
|
+
*/
|
|
5021
|
+
'message_type': StopActionChunksRequestMessageTypeEnum;
|
|
5022
|
+
}
|
|
5023
|
+
declare const StopActionChunksRequestMessageTypeEnum: {
|
|
5024
|
+
readonly StopActionChunksRequest: "StopActionChunksRequest";
|
|
5025
|
+
};
|
|
5026
|
+
type StopActionChunksRequestMessageTypeEnum = typeof StopActionChunksRequestMessageTypeEnum[keyof typeof StopActionChunksRequestMessageTypeEnum];
|
|
5027
|
+
/**
|
|
5028
|
+
* Acknowledgment to a StopActionChunksRequest.
|
|
5029
|
+
*/
|
|
5030
|
+
interface StopActionChunksResponse {
|
|
5031
|
+
/**
|
|
5032
|
+
* Error message in case of invalid StopActionChunksRequest.
|
|
5033
|
+
*/
|
|
5034
|
+
'message'?: string;
|
|
5035
|
+
'kind': StopActionChunksResponseKindEnum;
|
|
5036
|
+
}
|
|
5037
|
+
declare const StopActionChunksResponseKindEnum: {
|
|
5038
|
+
readonly StopReceived: "STOP_RECEIVED";
|
|
5039
|
+
};
|
|
5040
|
+
type StopActionChunksResponseKindEnum = typeof StopActionChunksResponseKindEnum[keyof typeof StopActionChunksResponseKindEnum];
|
|
4708
5041
|
/**
|
|
4709
5042
|
* 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/).
|
|
4710
5043
|
*/
|
|
@@ -4985,17 +5318,82 @@ declare const UnitType: {
|
|
|
4985
5318
|
readonly UnitMeter: "UNIT_METER";
|
|
4986
5319
|
};
|
|
4987
5320
|
type UnitType = typeof UnitType[keyof typeof UnitType];
|
|
5321
|
+
/**
|
|
5322
|
+
* 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.
|
|
5323
|
+
*/
|
|
5324
|
+
interface UnitreeController {
|
|
5325
|
+
'kind': UnitreeControllerKindEnum;
|
|
5326
|
+
/**
|
|
5327
|
+
* The IP address of the Unitree robot.
|
|
5328
|
+
*/
|
|
5329
|
+
'controller_ip': string;
|
|
5330
|
+
/**
|
|
5331
|
+
* The Unitree robot model type.
|
|
5332
|
+
*/
|
|
5333
|
+
'robot_type': UnitreeControllerRobotTypeEnum;
|
|
5334
|
+
/**
|
|
5335
|
+
* The network interface used for DDS discovery.
|
|
5336
|
+
*/
|
|
5337
|
+
'network_interface'?: string;
|
|
5338
|
+
/**
|
|
5339
|
+
* Enable DDS unicast mode for environments where multicast is unavailable.
|
|
5340
|
+
*/
|
|
5341
|
+
'dds_unicast_mode'?: boolean;
|
|
5342
|
+
/**
|
|
5343
|
+
* Enable exclusive lease-based control of the robot.
|
|
5344
|
+
*/
|
|
5345
|
+
'enable_lease'?: boolean;
|
|
5346
|
+
}
|
|
5347
|
+
declare const UnitreeControllerKindEnum: {
|
|
5348
|
+
readonly UnitreeController: "UnitreeController";
|
|
5349
|
+
};
|
|
5350
|
+
type UnitreeControllerKindEnum = typeof UnitreeControllerKindEnum[keyof typeof UnitreeControllerKindEnum];
|
|
5351
|
+
declare const UnitreeControllerRobotTypeEnum: {
|
|
5352
|
+
readonly Go2: "go2";
|
|
5353
|
+
readonly G1: "g1";
|
|
5354
|
+
readonly B2: "b2";
|
|
5355
|
+
readonly H1: "h1";
|
|
5356
|
+
};
|
|
5357
|
+
type UnitreeControllerRobotTypeEnum = typeof UnitreeControllerRobotTypeEnum[keyof typeof UnitreeControllerRobotTypeEnum];
|
|
4988
5358
|
/**
|
|
4989
5359
|
* The configuration of a physical Universal Robots controller has to contain IP address of the controller.
|
|
4990
5360
|
*/
|
|
4991
5361
|
interface UniversalrobotsController {
|
|
4992
5362
|
'kind': UniversalrobotsControllerKindEnum;
|
|
4993
5363
|
'controller_ip': string;
|
|
5364
|
+
'network_interface'?: ControllerNetworkInterface;
|
|
4994
5365
|
}
|
|
4995
5366
|
declare const UniversalrobotsControllerKindEnum: {
|
|
4996
5367
|
readonly UniversalrobotsController: "UniversalrobotsController";
|
|
4997
5368
|
};
|
|
4998
5369
|
type UniversalrobotsControllerKindEnum = typeof UniversalrobotsControllerKindEnum[keyof typeof UniversalrobotsControllerKindEnum];
|
|
5370
|
+
/**
|
|
5371
|
+
* Request to unpause executing action chunks. If successful, `execute` jogging state in [MotionGroupState](MotionGroupState.yaml) is set to `RUNNING`.
|
|
5372
|
+
*/
|
|
5373
|
+
interface UnpauseActionChunksRequest {
|
|
5374
|
+
/**
|
|
5375
|
+
* Type specifier for server, set automatically.
|
|
5376
|
+
*/
|
|
5377
|
+
'message_type': UnpauseActionChunksRequestMessageTypeEnum;
|
|
5378
|
+
}
|
|
5379
|
+
declare const UnpauseActionChunksRequestMessageTypeEnum: {
|
|
5380
|
+
readonly UnpauseActionChunksRequest: "UnpauseActionChunksRequest";
|
|
5381
|
+
};
|
|
5382
|
+
type UnpauseActionChunksRequestMessageTypeEnum = typeof UnpauseActionChunksRequestMessageTypeEnum[keyof typeof UnpauseActionChunksRequestMessageTypeEnum];
|
|
5383
|
+
/**
|
|
5384
|
+
* Acknowledgment to an UnpauseActionChunksRequest.
|
|
5385
|
+
*/
|
|
5386
|
+
interface UnpauseActionChunksResponse {
|
|
5387
|
+
/**
|
|
5388
|
+
* Error message in case of invalid UnpauseActionChunksRequest.
|
|
5389
|
+
*/
|
|
5390
|
+
'message'?: string;
|
|
5391
|
+
'kind': UnpauseActionChunksResponseKindEnum;
|
|
5392
|
+
}
|
|
5393
|
+
declare const UnpauseActionChunksResponseKindEnum: {
|
|
5394
|
+
readonly UnpauseReceived: "UNPAUSE_RECEIVED";
|
|
5395
|
+
};
|
|
5396
|
+
type UnpauseActionChunksResponseKindEnum = typeof UnpauseActionChunksResponseKindEnum[keyof typeof UnpauseActionChunksResponseKindEnum];
|
|
4999
5397
|
/**
|
|
5000
5398
|
* Update a single cell\'s Foundation chart version based on the indicated release channel.
|
|
5001
5399
|
*/
|
|
@@ -5064,9 +5462,13 @@ interface VirtualController {
|
|
|
5064
5462
|
*/
|
|
5065
5463
|
'json'?: string;
|
|
5066
5464
|
/**
|
|
5067
|
-
* 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
|
|
5465
|
+
* 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.
|
|
5068
5466
|
*/
|
|
5069
5467
|
'initial_joint_position'?: string;
|
|
5468
|
+
/**
|
|
5469
|
+
* 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
|
|
5470
|
+
*/
|
|
5471
|
+
'motion_groups'?: Array<AddVirtualControllerMotionGroupRequest>;
|
|
5070
5472
|
}
|
|
5071
5473
|
declare const VirtualControllerKindEnum: {
|
|
5072
5474
|
readonly VirtualController: "VirtualController";
|
|
@@ -5092,12 +5494,35 @@ interface WaitForIOEventRequest {
|
|
|
5092
5494
|
*/
|
|
5093
5495
|
'comparator': Comparator;
|
|
5094
5496
|
}
|
|
5497
|
+
/**
|
|
5498
|
+
* A waypoint for action chunk streaming. > **NOTE** > > This type is experimental and its behavior may change in future releases.
|
|
5499
|
+
*/
|
|
5500
|
+
interface Waypoint {
|
|
5501
|
+
/**
|
|
5502
|
+
* Exact timestamp [ms] at which the waypoint should be reached, relative to the start of the session.
|
|
5503
|
+
*/
|
|
5504
|
+
'timestamp': number;
|
|
5505
|
+
/**
|
|
5506
|
+
* Coordinates for this waypoint.
|
|
5507
|
+
*/
|
|
5508
|
+
'waypoint': WaypointCoordinates;
|
|
5509
|
+
}
|
|
5510
|
+
/**
|
|
5511
|
+
* @type WaypointCoordinates
|
|
5512
|
+
* Coordinates for an action chunk streaming waypoint. > **NOTE** > > This type is experimental and its behavior may change in future releases.
|
|
5513
|
+
*/
|
|
5514
|
+
type WaypointCoordinates = {
|
|
5515
|
+
kind: 'JOINTS';
|
|
5516
|
+
} & JointWaypoint | {
|
|
5517
|
+
kind: 'POSE';
|
|
5518
|
+
} & PoseWaypoint;
|
|
5095
5519
|
/**
|
|
5096
5520
|
* The configuration of a physical Yaskawa robot controller has to contain IP address of the controller.
|
|
5097
5521
|
*/
|
|
5098
5522
|
interface YaskawaController {
|
|
5099
5523
|
'kind': YaskawaControllerKindEnum;
|
|
5100
5524
|
'controller_ip': string;
|
|
5525
|
+
'network_interface'?: ControllerNetworkInterface;
|
|
5101
5526
|
}
|
|
5102
5527
|
declare const YaskawaControllerKindEnum: {
|
|
5103
5528
|
readonly YaskawaController: "YaskawaController";
|
|
@@ -5130,6 +5555,66 @@ interface ZodValidationErrorErrorDetailsInner {
|
|
|
5130
5555
|
* @type ZodValidationErrorErrorDetailsInnerPathInner
|
|
5131
5556
|
*/
|
|
5132
5557
|
type ZodValidationErrorErrorDetailsInnerPathInner = number | string;
|
|
5558
|
+
/**
|
|
5559
|
+
* ActionChunkStreamingApi - axios parameter creator
|
|
5560
|
+
*/
|
|
5561
|
+
declare const ActionChunkStreamingApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
5562
|
+
/**
|
|
5563
|
+
* **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.
|
|
5564
|
+
* @summary Execute Action Chunks
|
|
5565
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
5566
|
+
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
5567
|
+
* @param {ExecuteActionChunksRequest} executeActionChunksRequest
|
|
5568
|
+
* @param {*} [options] Override http request option.
|
|
5569
|
+
* @throws {RequiredError}
|
|
5570
|
+
*/
|
|
5571
|
+
executeActionChunks: (cell: string, controller: string, executeActionChunksRequest: ExecuteActionChunksRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
5572
|
+
};
|
|
5573
|
+
/**
|
|
5574
|
+
* ActionChunkStreamingApi - functional programming interface
|
|
5575
|
+
*/
|
|
5576
|
+
declare const ActionChunkStreamingApiFp: (configuration?: Configuration) => {
|
|
5577
|
+
/**
|
|
5578
|
+
* **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.
|
|
5579
|
+
* @summary Execute Action Chunks
|
|
5580
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
5581
|
+
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
5582
|
+
* @param {ExecuteActionChunksRequest} executeActionChunksRequest
|
|
5583
|
+
* @param {*} [options] Override http request option.
|
|
5584
|
+
* @throws {RequiredError}
|
|
5585
|
+
*/
|
|
5586
|
+
executeActionChunks(cell: string, controller: string, executeActionChunksRequest: ExecuteActionChunksRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ExecuteActionChunksResponse>>;
|
|
5587
|
+
};
|
|
5588
|
+
/**
|
|
5589
|
+
* ActionChunkStreamingApi - factory interface
|
|
5590
|
+
*/
|
|
5591
|
+
declare const ActionChunkStreamingApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
5592
|
+
/**
|
|
5593
|
+
* **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.
|
|
5594
|
+
* @summary Execute Action Chunks
|
|
5595
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
5596
|
+
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
5597
|
+
* @param {ExecuteActionChunksRequest} executeActionChunksRequest
|
|
5598
|
+
* @param {*} [options] Override http request option.
|
|
5599
|
+
* @throws {RequiredError}
|
|
5600
|
+
*/
|
|
5601
|
+
executeActionChunks(cell: string, controller: string, executeActionChunksRequest: ExecuteActionChunksRequest, options?: RawAxiosRequestConfig): AxiosPromise<ExecuteActionChunksResponse>;
|
|
5602
|
+
};
|
|
5603
|
+
/**
|
|
5604
|
+
* ActionChunkStreamingApi - object-oriented interface
|
|
5605
|
+
*/
|
|
5606
|
+
declare class ActionChunkStreamingApi extends BaseAPI {
|
|
5607
|
+
/**
|
|
5608
|
+
* **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.
|
|
5609
|
+
* @summary Execute Action Chunks
|
|
5610
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
5611
|
+
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
5612
|
+
* @param {ExecuteActionChunksRequest} executeActionChunksRequest
|
|
5613
|
+
* @param {*} [options] Override http request option.
|
|
5614
|
+
* @throws {RequiredError}
|
|
5615
|
+
*/
|
|
5616
|
+
executeActionChunks(cell: string, controller: string, executeActionChunksRequest: ExecuteActionChunksRequest, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<ExecuteActionChunksResponse, any, {}>>;
|
|
5617
|
+
}
|
|
5133
5618
|
/**
|
|
5134
5619
|
* ApplicationApi - axios parameter creator
|
|
5135
5620
|
*/
|
|
@@ -5524,15 +6009,16 @@ declare const BUSInputsOutputsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
5524
6009
|
*/
|
|
5525
6010
|
getProfinetGSDML: (cell: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
5526
6011
|
/**
|
|
5527
|
-
* **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
|
|
6012
|
+
* **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.
|
|
5528
6013
|
* @summary PROFINET Inputs/Outputs to File
|
|
5529
6014
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
6015
|
+
* @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.
|
|
5530
6016
|
* @param {number} [inputOffset]
|
|
5531
6017
|
* @param {number} [outputOffset]
|
|
5532
6018
|
* @param {*} [options] Override http request option.
|
|
5533
6019
|
* @throws {RequiredError}
|
|
5534
6020
|
*/
|
|
5535
|
-
getProfinetIOsFromFile: (cell: string, inputOffset?: number, outputOffset?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
6021
|
+
getProfinetIOsFromFile: (cell: string, offsets?: Array<ProfinetSlotOffset>, inputOffset?: number, outputOffset?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
5536
6022
|
/**
|
|
5537
6023
|
* **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.
|
|
5538
6024
|
* @summary List Descriptions
|
|
@@ -5730,15 +6216,16 @@ declare const BUSInputsOutputsApiFp: (configuration?: Configuration) => {
|
|
|
5730
6216
|
*/
|
|
5731
6217
|
getProfinetGSDML(cell: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<string>>;
|
|
5732
6218
|
/**
|
|
5733
|
-
* **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
|
|
6219
|
+
* **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.
|
|
5734
6220
|
* @summary PROFINET Inputs/Outputs to File
|
|
5735
6221
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
6222
|
+
* @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.
|
|
5736
6223
|
* @param {number} [inputOffset]
|
|
5737
6224
|
* @param {number} [outputOffset]
|
|
5738
6225
|
* @param {*} [options] Override http request option.
|
|
5739
6226
|
* @throws {RequiredError}
|
|
5740
6227
|
*/
|
|
5741
|
-
getProfinetIOsFromFile(cell: string, inputOffset?: number, outputOffset?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<string>>;
|
|
6228
|
+
getProfinetIOsFromFile(cell: string, offsets?: Array<ProfinetSlotOffset>, inputOffset?: number, outputOffset?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<string>>;
|
|
5742
6229
|
/**
|
|
5743
6230
|
* **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.
|
|
5744
6231
|
* @summary List Descriptions
|
|
@@ -5936,15 +6423,16 @@ declare const BUSInputsOutputsApiFactory: (configuration?: Configuration, basePa
|
|
|
5936
6423
|
*/
|
|
5937
6424
|
getProfinetGSDML(cell: string, options?: RawAxiosRequestConfig): AxiosPromise<string>;
|
|
5938
6425
|
/**
|
|
5939
|
-
* **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
|
|
6426
|
+
* **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.
|
|
5940
6427
|
* @summary PROFINET Inputs/Outputs to File
|
|
5941
6428
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
6429
|
+
* @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.
|
|
5942
6430
|
* @param {number} [inputOffset]
|
|
5943
6431
|
* @param {number} [outputOffset]
|
|
5944
6432
|
* @param {*} [options] Override http request option.
|
|
5945
6433
|
* @throws {RequiredError}
|
|
5946
6434
|
*/
|
|
5947
|
-
getProfinetIOsFromFile(cell: string, inputOffset?: number, outputOffset?: number, options?: RawAxiosRequestConfig): AxiosPromise<string>;
|
|
6435
|
+
getProfinetIOsFromFile(cell: string, offsets?: Array<ProfinetSlotOffset>, inputOffset?: number, outputOffset?: number, options?: RawAxiosRequestConfig): AxiosPromise<string>;
|
|
5948
6436
|
/**
|
|
5949
6437
|
* **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.
|
|
5950
6438
|
* @summary List Descriptions
|
|
@@ -6142,15 +6630,16 @@ declare class BUSInputsOutputsApi extends BaseAPI {
|
|
|
6142
6630
|
*/
|
|
6143
6631
|
getProfinetGSDML(cell: string, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<string, any, {}>>;
|
|
6144
6632
|
/**
|
|
6145
|
-
* **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
|
|
6633
|
+
* **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.
|
|
6146
6634
|
* @summary PROFINET Inputs/Outputs to File
|
|
6147
6635
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
6636
|
+
* @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.
|
|
6148
6637
|
* @param {number} [inputOffset]
|
|
6149
6638
|
* @param {number} [outputOffset]
|
|
6150
6639
|
* @param {*} [options] Override http request option.
|
|
6151
6640
|
* @throws {RequiredError}
|
|
6152
6641
|
*/
|
|
6153
|
-
getProfinetIOsFromFile(cell: string, inputOffset?: number, outputOffset?: number, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<string, any, {}>>;
|
|
6642
|
+
getProfinetIOsFromFile(cell: string, offsets?: Array<ProfinetSlotOffset>, inputOffset?: number, outputOffset?: number, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<string, any, {}>>;
|
|
6154
6643
|
/**
|
|
6155
6644
|
* **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.
|
|
6156
6645
|
* @summary List Descriptions
|
|
@@ -6234,7 +6723,7 @@ declare const CellApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
6234
6723
|
*/
|
|
6235
6724
|
deployCell: (cell: Cell, completionTimeout?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
6236
6725
|
/**
|
|
6237
|
-
* **Required permissions:** `
|
|
6726
|
+
* **Required permissions:** `can_access_system` - View system status and metadata ___ List all cell resources.
|
|
6238
6727
|
* @summary Configuration
|
|
6239
6728
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
6240
6729
|
* @param {*} [options] Override http request option.
|
|
@@ -6317,7 +6806,7 @@ declare const CellApiFp: (configuration?: Configuration) => {
|
|
|
6317
6806
|
*/
|
|
6318
6807
|
deployCell(cell: Cell, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
6319
6808
|
/**
|
|
6320
|
-
* **Required permissions:** `
|
|
6809
|
+
* **Required permissions:** `can_access_system` - View system status and metadata ___ List all cell resources.
|
|
6321
6810
|
* @summary Configuration
|
|
6322
6811
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
6323
6812
|
* @param {*} [options] Override http request option.
|
|
@@ -6400,7 +6889,7 @@ declare const CellApiFactory: (configuration?: Configuration, basePath?: string,
|
|
|
6400
6889
|
*/
|
|
6401
6890
|
deployCell(cell: Cell, completionTimeout?: number, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
6402
6891
|
/**
|
|
6403
|
-
* **Required permissions:** `
|
|
6892
|
+
* **Required permissions:** `can_access_system` - View system status and metadata ___ List all cell resources.
|
|
6404
6893
|
* @summary Configuration
|
|
6405
6894
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
6406
6895
|
* @param {*} [options] Override http request option.
|
|
@@ -6483,7 +6972,7 @@ declare class CellApi extends BaseAPI {
|
|
|
6483
6972
|
*/
|
|
6484
6973
|
deployCell(cell: Cell, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<void, any, {}>>;
|
|
6485
6974
|
/**
|
|
6486
|
-
* **Required permissions:** `
|
|
6975
|
+
* **Required permissions:** `can_access_system` - View system status and metadata ___ List all cell resources.
|
|
6487
6976
|
* @summary Configuration
|
|
6488
6977
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
6489
6978
|
* @param {*} [options] Override http request option.
|
|
@@ -7344,16 +7833,6 @@ declare const JoggingApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
7344
7833
|
* @throws {RequiredError}
|
|
7345
7834
|
*/
|
|
7346
7835
|
executeJogging: (cell: string, controller: string, executeJoggingRequest: ExecuteJoggingRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
7347
|
-
/**
|
|
7348
|
-
* **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.
|
|
7349
|
-
* @summary Execute Waypoint Jogging
|
|
7350
|
-
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
7351
|
-
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
7352
|
-
* @param {ExecuteWaypointJoggingRequest} executeWaypointJoggingRequest
|
|
7353
|
-
* @param {*} [options] Override http request option.
|
|
7354
|
-
* @throws {RequiredError}
|
|
7355
|
-
*/
|
|
7356
|
-
executeWaypointJogging: (cell: string, controller: string, executeWaypointJoggingRequest: ExecuteWaypointJoggingRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
7357
7836
|
};
|
|
7358
7837
|
/**
|
|
7359
7838
|
* JoggingApi - functional programming interface
|
|
@@ -7369,16 +7848,6 @@ declare const JoggingApiFp: (configuration?: Configuration) => {
|
|
|
7369
7848
|
* @throws {RequiredError}
|
|
7370
7849
|
*/
|
|
7371
7850
|
executeJogging(cell: string, controller: string, executeJoggingRequest: ExecuteJoggingRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ExecuteJoggingResponse>>;
|
|
7372
|
-
/**
|
|
7373
|
-
* **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.
|
|
7374
|
-
* @summary Execute Waypoint Jogging
|
|
7375
|
-
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
7376
|
-
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
7377
|
-
* @param {ExecuteWaypointJoggingRequest} executeWaypointJoggingRequest
|
|
7378
|
-
* @param {*} [options] Override http request option.
|
|
7379
|
-
* @throws {RequiredError}
|
|
7380
|
-
*/
|
|
7381
|
-
executeWaypointJogging(cell: string, controller: string, executeWaypointJoggingRequest: ExecuteWaypointJoggingRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ExecuteWaypointJoggingResponse>>;
|
|
7382
7851
|
};
|
|
7383
7852
|
/**
|
|
7384
7853
|
* JoggingApi - factory interface
|
|
@@ -7394,16 +7863,6 @@ declare const JoggingApiFactory: (configuration?: Configuration, basePath?: stri
|
|
|
7394
7863
|
* @throws {RequiredError}
|
|
7395
7864
|
*/
|
|
7396
7865
|
executeJogging(cell: string, controller: string, executeJoggingRequest: ExecuteJoggingRequest, options?: RawAxiosRequestConfig): AxiosPromise<ExecuteJoggingResponse>;
|
|
7397
|
-
/**
|
|
7398
|
-
* **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.
|
|
7399
|
-
* @summary Execute Waypoint Jogging
|
|
7400
|
-
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
7401
|
-
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
7402
|
-
* @param {ExecuteWaypointJoggingRequest} executeWaypointJoggingRequest
|
|
7403
|
-
* @param {*} [options] Override http request option.
|
|
7404
|
-
* @throws {RequiredError}
|
|
7405
|
-
*/
|
|
7406
|
-
executeWaypointJogging(cell: string, controller: string, executeWaypointJoggingRequest: ExecuteWaypointJoggingRequest, options?: RawAxiosRequestConfig): AxiosPromise<ExecuteWaypointJoggingResponse>;
|
|
7407
7866
|
};
|
|
7408
7867
|
/**
|
|
7409
7868
|
* JoggingApi - object-oriented interface
|
|
@@ -7419,16 +7878,6 @@ declare class JoggingApi extends BaseAPI {
|
|
|
7419
7878
|
* @throws {RequiredError}
|
|
7420
7879
|
*/
|
|
7421
7880
|
executeJogging(cell: string, controller: string, executeJoggingRequest: ExecuteJoggingRequest, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<ExecuteJoggingResponse, any, {}>>;
|
|
7422
|
-
/**
|
|
7423
|
-
* **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.
|
|
7424
|
-
* @summary Execute Waypoint Jogging
|
|
7425
|
-
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
7426
|
-
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
7427
|
-
* @param {ExecuteWaypointJoggingRequest} executeWaypointJoggingRequest
|
|
7428
|
-
* @param {*} [options] Override http request option.
|
|
7429
|
-
* @throws {RequiredError}
|
|
7430
|
-
*/
|
|
7431
|
-
executeWaypointJogging(cell: string, controller: string, executeWaypointJoggingRequest: ExecuteWaypointJoggingRequest, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<ExecuteWaypointJoggingResponse, any, {}>>;
|
|
7432
7881
|
}
|
|
7433
7882
|
/**
|
|
7434
7883
|
* KinematicsApi - axios parameter creator
|
|
@@ -7461,6 +7910,15 @@ declare const KinematicsApiAxiosParamCreator: (configuration?: Configuration) =>
|
|
|
7461
7910
|
* @throws {RequiredError}
|
|
7462
7911
|
*/
|
|
7463
7912
|
forwardKinematics: (cell: string, forwardKinematicsRequest: ForwardKinematicsRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
7913
|
+
/**
|
|
7914
|
+
* **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.
|
|
7915
|
+
* @summary Get kinematic configuration
|
|
7916
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
7917
|
+
* @param {GetKinematicConfigurationRequest} getKinematicConfigurationRequest
|
|
7918
|
+
* @param {*} [options] Override http request option.
|
|
7919
|
+
* @throws {RequiredError}
|
|
7920
|
+
*/
|
|
7921
|
+
getKinematicConfiguration: (cell: string, getKinematicConfigurationRequest: GetKinematicConfigurationRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
7464
7922
|
/**
|
|
7465
7923
|
* **Required permissions:** `can_plan_motion` - Plan robot motions and trajectories ___ Returns the reachable joint positions for a list of given poses.
|
|
7466
7924
|
* @summary Inverse kinematics
|
|
@@ -7511,6 +7969,15 @@ declare const KinematicsApiFp: (configuration?: Configuration) => {
|
|
|
7511
7969
|
* @throws {RequiredError}
|
|
7512
7970
|
*/
|
|
7513
7971
|
forwardKinematics(cell: string, forwardKinematicsRequest: ForwardKinematicsRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ForwardKinematicsResponse>>;
|
|
7972
|
+
/**
|
|
7973
|
+
* **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.
|
|
7974
|
+
* @summary Get kinematic configuration
|
|
7975
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
7976
|
+
* @param {GetKinematicConfigurationRequest} getKinematicConfigurationRequest
|
|
7977
|
+
* @param {*} [options] Override http request option.
|
|
7978
|
+
* @throws {RequiredError}
|
|
7979
|
+
*/
|
|
7980
|
+
getKinematicConfiguration(cell: string, getKinematicConfigurationRequest: GetKinematicConfigurationRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetKinematicConfigurationResponse>>;
|
|
7514
7981
|
/**
|
|
7515
7982
|
* **Required permissions:** `can_plan_motion` - Plan robot motions and trajectories ___ Returns the reachable joint positions for a list of given poses.
|
|
7516
7983
|
* @summary Inverse kinematics
|
|
@@ -7561,6 +8028,15 @@ declare const KinematicsApiFactory: (configuration?: Configuration, basePath?: s
|
|
|
7561
8028
|
* @throws {RequiredError}
|
|
7562
8029
|
*/
|
|
7563
8030
|
forwardKinematics(cell: string, forwardKinematicsRequest: ForwardKinematicsRequest, options?: RawAxiosRequestConfig): AxiosPromise<ForwardKinematicsResponse>;
|
|
8031
|
+
/**
|
|
8032
|
+
* **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.
|
|
8033
|
+
* @summary Get kinematic configuration
|
|
8034
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
8035
|
+
* @param {GetKinematicConfigurationRequest} getKinematicConfigurationRequest
|
|
8036
|
+
* @param {*} [options] Override http request option.
|
|
8037
|
+
* @throws {RequiredError}
|
|
8038
|
+
*/
|
|
8039
|
+
getKinematicConfiguration(cell: string, getKinematicConfigurationRequest: GetKinematicConfigurationRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetKinematicConfigurationResponse>;
|
|
7564
8040
|
/**
|
|
7565
8041
|
* **Required permissions:** `can_plan_motion` - Plan robot motions and trajectories ___ Returns the reachable joint positions for a list of given poses.
|
|
7566
8042
|
* @summary Inverse kinematics
|
|
@@ -7611,6 +8087,15 @@ declare class KinematicsApi extends BaseAPI {
|
|
|
7611
8087
|
* @throws {RequiredError}
|
|
7612
8088
|
*/
|
|
7613
8089
|
forwardKinematics(cell: string, forwardKinematicsRequest: ForwardKinematicsRequest, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<ForwardKinematicsResponse, any, {}>>;
|
|
8090
|
+
/**
|
|
8091
|
+
* **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.
|
|
8092
|
+
* @summary Get kinematic configuration
|
|
8093
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
8094
|
+
* @param {GetKinematicConfigurationRequest} getKinematicConfigurationRequest
|
|
8095
|
+
* @param {*} [options] Override http request option.
|
|
8096
|
+
* @throws {RequiredError}
|
|
8097
|
+
*/
|
|
8098
|
+
getKinematicConfiguration(cell: string, getKinematicConfigurationRequest: GetKinematicConfigurationRequest, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<GetKinematicConfigurationResponse, any, {}>>;
|
|
7614
8099
|
/**
|
|
7615
8100
|
* **Required permissions:** `can_plan_motion` - Plan robot motions and trajectories ___ Returns the reachable joint positions for a list of given poses.
|
|
7616
8101
|
* @summary Inverse kinematics
|
|
@@ -7932,7 +8417,7 @@ declare const MotionGroupModelsApiAxiosParamCreator: (configuration?: Configurat
|
|
|
7932
8417
|
*/
|
|
7933
8418
|
copyMotionGroupModel: (motionGroupModel: string, copyMotionGroupModelRequest: CopyMotionGroupModelRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
7934
8419
|
/**
|
|
7935
|
-
* **Required permissions:** `can_access_system` - View system status and metadata ___ Deletes a custom motion group model. Only custom models
|
|
8420
|
+
* **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.
|
|
7936
8421
|
* @summary Delete Motion Group Model
|
|
7937
8422
|
* @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).
|
|
7938
8423
|
* @param {*} [options] Override http request option.
|
|
@@ -7947,6 +8432,14 @@ declare const MotionGroupModelsApiAxiosParamCreator: (configuration?: Configurat
|
|
|
7947
8432
|
* @throws {RequiredError}
|
|
7948
8433
|
*/
|
|
7949
8434
|
exportMotionGroupModel: (motionGroupModel: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
8435
|
+
/**
|
|
8436
|
+
* **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.
|
|
8437
|
+
* @summary Get Configuration for Motion Group
|
|
8438
|
+
* @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).
|
|
8439
|
+
* @param {*} [options] Override http request option.
|
|
8440
|
+
* @throws {RequiredError}
|
|
8441
|
+
*/
|
|
8442
|
+
getConfigurationForMotionGroup: (motionGroupModel: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
7950
8443
|
/**
|
|
7951
8444
|
* **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.
|
|
7952
8445
|
* @summary Get Collision Model
|
|
@@ -8002,6 +8495,13 @@ declare const MotionGroupModelsApiAxiosParamCreator: (configuration?: Configurat
|
|
|
8002
8495
|
* @throws {RequiredError}
|
|
8003
8496
|
*/
|
|
8004
8497
|
getMotionGroupModels: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
8498
|
+
/**
|
|
8499
|
+
* **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.
|
|
8500
|
+
* @summary Motion Group Model Catalog
|
|
8501
|
+
* @param {*} [options] Override http request option.
|
|
8502
|
+
* @throws {RequiredError}
|
|
8503
|
+
*/
|
|
8504
|
+
getMotionGroupModelsCatalog: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
8005
8505
|
/**
|
|
8006
8506
|
* **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.
|
|
8007
8507
|
* @summary Download USD Model
|
|
@@ -8033,7 +8533,7 @@ declare const MotionGroupModelsApiFp: (configuration?: Configuration) => {
|
|
|
8033
8533
|
*/
|
|
8034
8534
|
copyMotionGroupModel(motionGroupModel: string, copyMotionGroupModelRequest: CopyMotionGroupModelRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MotionGroupModelDescription>>;
|
|
8035
8535
|
/**
|
|
8036
|
-
* **Required permissions:** `can_access_system` - View system status and metadata ___ Deletes a custom motion group model. Only custom models
|
|
8536
|
+
* **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.
|
|
8037
8537
|
* @summary Delete Motion Group Model
|
|
8038
8538
|
* @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).
|
|
8039
8539
|
* @param {*} [options] Override http request option.
|
|
@@ -8048,6 +8548,14 @@ declare const MotionGroupModelsApiFp: (configuration?: Configuration) => {
|
|
|
8048
8548
|
* @throws {RequiredError}
|
|
8049
8549
|
*/
|
|
8050
8550
|
exportMotionGroupModel(motionGroupModel: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<File>>;
|
|
8551
|
+
/**
|
|
8552
|
+
* **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.
|
|
8553
|
+
* @summary Get Configuration for Motion Group
|
|
8554
|
+
* @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).
|
|
8555
|
+
* @param {*} [options] Override http request option.
|
|
8556
|
+
* @throws {RequiredError}
|
|
8557
|
+
*/
|
|
8558
|
+
getConfigurationForMotionGroup(motionGroupModel: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MotionGroupConfiguration>>;
|
|
8051
8559
|
/**
|
|
8052
8560
|
* **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.
|
|
8053
8561
|
* @summary Get Collision Model
|
|
@@ -8105,6 +8613,13 @@ declare const MotionGroupModelsApiFp: (configuration?: Configuration) => {
|
|
|
8105
8613
|
* @throws {RequiredError}
|
|
8106
8614
|
*/
|
|
8107
8615
|
getMotionGroupModels(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<string>>>;
|
|
8616
|
+
/**
|
|
8617
|
+
* **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.
|
|
8618
|
+
* @summary Motion Group Model Catalog
|
|
8619
|
+
* @param {*} [options] Override http request option.
|
|
8620
|
+
* @throws {RequiredError}
|
|
8621
|
+
*/
|
|
8622
|
+
getMotionGroupModelsCatalog(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<MotionGroupModelCatalog>>>;
|
|
8108
8623
|
/**
|
|
8109
8624
|
* **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.
|
|
8110
8625
|
* @summary Download USD Model
|
|
@@ -8136,7 +8651,7 @@ declare const MotionGroupModelsApiFactory: (configuration?: Configuration, baseP
|
|
|
8136
8651
|
*/
|
|
8137
8652
|
copyMotionGroupModel(motionGroupModel: string, copyMotionGroupModelRequest: CopyMotionGroupModelRequest, options?: RawAxiosRequestConfig): AxiosPromise<MotionGroupModelDescription>;
|
|
8138
8653
|
/**
|
|
8139
|
-
* **Required permissions:** `can_access_system` - View system status and metadata ___ Deletes a custom motion group model. Only custom models
|
|
8654
|
+
* **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.
|
|
8140
8655
|
* @summary Delete Motion Group Model
|
|
8141
8656
|
* @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).
|
|
8142
8657
|
* @param {*} [options] Override http request option.
|
|
@@ -8151,6 +8666,14 @@ declare const MotionGroupModelsApiFactory: (configuration?: Configuration, baseP
|
|
|
8151
8666
|
* @throws {RequiredError}
|
|
8152
8667
|
*/
|
|
8153
8668
|
exportMotionGroupModel(motionGroupModel: string, options?: RawAxiosRequestConfig): AxiosPromise<File>;
|
|
8669
|
+
/**
|
|
8670
|
+
* **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.
|
|
8671
|
+
* @summary Get Configuration for Motion Group
|
|
8672
|
+
* @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).
|
|
8673
|
+
* @param {*} [options] Override http request option.
|
|
8674
|
+
* @throws {RequiredError}
|
|
8675
|
+
*/
|
|
8676
|
+
getConfigurationForMotionGroup(motionGroupModel: string, options?: RawAxiosRequestConfig): AxiosPromise<MotionGroupConfiguration>;
|
|
8154
8677
|
/**
|
|
8155
8678
|
* **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.
|
|
8156
8679
|
* @summary Get Collision Model
|
|
@@ -8208,6 +8731,13 @@ declare const MotionGroupModelsApiFactory: (configuration?: Configuration, baseP
|
|
|
8208
8731
|
* @throws {RequiredError}
|
|
8209
8732
|
*/
|
|
8210
8733
|
getMotionGroupModels(options?: RawAxiosRequestConfig): AxiosPromise<Array<string>>;
|
|
8734
|
+
/**
|
|
8735
|
+
* **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.
|
|
8736
|
+
* @summary Motion Group Model Catalog
|
|
8737
|
+
* @param {*} [options] Override http request option.
|
|
8738
|
+
* @throws {RequiredError}
|
|
8739
|
+
*/
|
|
8740
|
+
getMotionGroupModelsCatalog(options?: RawAxiosRequestConfig): AxiosPromise<Array<MotionGroupModelCatalog>>;
|
|
8211
8741
|
/**
|
|
8212
8742
|
* **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.
|
|
8213
8743
|
* @summary Download USD Model
|
|
@@ -8239,7 +8769,7 @@ declare class MotionGroupModelsApi extends BaseAPI {
|
|
|
8239
8769
|
*/
|
|
8240
8770
|
copyMotionGroupModel(motionGroupModel: string, copyMotionGroupModelRequest: CopyMotionGroupModelRequest, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<MotionGroupModelDescription, any, {}>>;
|
|
8241
8771
|
/**
|
|
8242
|
-
* **Required permissions:** `can_access_system` - View system status and metadata ___ Deletes a custom motion group model. Only custom models
|
|
8772
|
+
* **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.
|
|
8243
8773
|
* @summary Delete Motion Group Model
|
|
8244
8774
|
* @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).
|
|
8245
8775
|
* @param {*} [options] Override http request option.
|
|
@@ -8254,6 +8784,14 @@ declare class MotionGroupModelsApi extends BaseAPI {
|
|
|
8254
8784
|
* @throws {RequiredError}
|
|
8255
8785
|
*/
|
|
8256
8786
|
exportMotionGroupModel(motionGroupModel: string, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<File, any, {}>>;
|
|
8787
|
+
/**
|
|
8788
|
+
* **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.
|
|
8789
|
+
* @summary Get Configuration for Motion Group
|
|
8790
|
+
* @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).
|
|
8791
|
+
* @param {*} [options] Override http request option.
|
|
8792
|
+
* @throws {RequiredError}
|
|
8793
|
+
*/
|
|
8794
|
+
getConfigurationForMotionGroup(motionGroupModel: string, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<MotionGroupConfiguration, any, {}>>;
|
|
8257
8795
|
/**
|
|
8258
8796
|
* **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.
|
|
8259
8797
|
* @summary Get Collision Model
|
|
@@ -8311,6 +8849,13 @@ declare class MotionGroupModelsApi extends BaseAPI {
|
|
|
8311
8849
|
* @throws {RequiredError}
|
|
8312
8850
|
*/
|
|
8313
8851
|
getMotionGroupModels(options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<string[], any, {}>>;
|
|
8852
|
+
/**
|
|
8853
|
+
* **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.
|
|
8854
|
+
* @summary Motion Group Model Catalog
|
|
8855
|
+
* @param {*} [options] Override http request option.
|
|
8856
|
+
* @throws {RequiredError}
|
|
8857
|
+
*/
|
|
8858
|
+
getMotionGroupModelsCatalog(options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<MotionGroupModelCatalog[], any, {}>>;
|
|
8314
8859
|
/**
|
|
8315
8860
|
* **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.
|
|
8316
8861
|
* @summary Download USD Model
|
|
@@ -8349,6 +8894,13 @@ declare const NOVACloudApiAxiosParamCreator: (configuration?: Configuration) =>
|
|
|
8349
8894
|
* @throws {RequiredError}
|
|
8350
8895
|
*/
|
|
8351
8896
|
disconnectFromNovaCloud: (completionTimeout?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
8897
|
+
/**
|
|
8898
|
+
* **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.
|
|
8899
|
+
* @summary Get Connection Status
|
|
8900
|
+
* @param {*} [options] Override http request option.
|
|
8901
|
+
* @throws {RequiredError}
|
|
8902
|
+
*/
|
|
8903
|
+
getCloudStatus: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
8352
8904
|
/**
|
|
8353
8905
|
* **Required permissions:** `can_access_system` - View system status and metadata ___ <!-- theme: danger --> > **Experimental** Get the current NOVA Cloud connection config for this instance.
|
|
8354
8906
|
* @summary Get Connection Config
|
|
@@ -8378,6 +8930,13 @@ declare const NOVACloudApiFp: (configuration?: Configuration) => {
|
|
|
8378
8930
|
* @throws {RequiredError}
|
|
8379
8931
|
*/
|
|
8380
8932
|
disconnectFromNovaCloud(completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CloudDisconnectionStatusDisconnected>>;
|
|
8933
|
+
/**
|
|
8934
|
+
* **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.
|
|
8935
|
+
* @summary Get Connection Status
|
|
8936
|
+
* @param {*} [options] Override http request option.
|
|
8937
|
+
* @throws {RequiredError}
|
|
8938
|
+
*/
|
|
8939
|
+
getCloudStatus(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CloudStatus>>;
|
|
8381
8940
|
/**
|
|
8382
8941
|
* **Required permissions:** `can_access_system` - View system status and metadata ___ <!-- theme: danger --> > **Experimental** Get the current NOVA Cloud connection config for this instance.
|
|
8383
8942
|
* @summary Get Connection Config
|
|
@@ -8407,6 +8966,13 @@ declare const NOVACloudApiFactory: (configuration?: Configuration, basePath?: st
|
|
|
8407
8966
|
* @throws {RequiredError}
|
|
8408
8967
|
*/
|
|
8409
8968
|
disconnectFromNovaCloud(completionTimeout?: number, options?: RawAxiosRequestConfig): AxiosPromise<CloudDisconnectionStatusDisconnected>;
|
|
8969
|
+
/**
|
|
8970
|
+
* **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.
|
|
8971
|
+
* @summary Get Connection Status
|
|
8972
|
+
* @param {*} [options] Override http request option.
|
|
8973
|
+
* @throws {RequiredError}
|
|
8974
|
+
*/
|
|
8975
|
+
getCloudStatus(options?: RawAxiosRequestConfig): AxiosPromise<CloudStatus>;
|
|
8410
8976
|
/**
|
|
8411
8977
|
* **Required permissions:** `can_access_system` - View system status and metadata ___ <!-- theme: danger --> > **Experimental** Get the current NOVA Cloud connection config for this instance.
|
|
8412
8978
|
* @summary Get Connection Config
|
|
@@ -8436,6 +9002,13 @@ declare class NOVACloudApi extends BaseAPI {
|
|
|
8436
9002
|
* @throws {RequiredError}
|
|
8437
9003
|
*/
|
|
8438
9004
|
disconnectFromNovaCloud(completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<CloudDisconnectionStatusDisconnected, any, {}>>;
|
|
9005
|
+
/**
|
|
9006
|
+
* **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.
|
|
9007
|
+
* @summary Get Connection Status
|
|
9008
|
+
* @param {*} [options] Override http request option.
|
|
9009
|
+
* @throws {RequiredError}
|
|
9010
|
+
*/
|
|
9011
|
+
getCloudStatus(options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<CloudStatus, any, {}>>;
|
|
8439
9012
|
/**
|
|
8440
9013
|
* **Required permissions:** `can_access_system` - View system status and metadata ___ <!-- theme: danger --> > **Experimental** Get the current NOVA Cloud connection config for this instance.
|
|
8441
9014
|
* @summary Get Connection Config
|
|
@@ -9824,15 +10397,15 @@ declare const SystemApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
9824
10397
|
*/
|
|
9825
10398
|
checkNovaVersionUpdate: (channel: ReleaseChannel, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
9826
10399
|
/**
|
|
9827
|
-
* **Required permissions:** `can_access_system` - View system status and metadata ___
|
|
10400
|
+
* **Required permissions:** `can_access_system` - View system status and metadata ___ Runs an ARP scan on the target interface and returns all discovered devices.
|
|
9828
10401
|
* @summary Get ARP-Scan
|
|
9829
|
-
* @param {string}
|
|
9830
|
-
* @param {string}
|
|
10402
|
+
* @param {string} _interface
|
|
10403
|
+
* @param {string} cidr
|
|
9831
10404
|
* @param {number} [timeout]
|
|
9832
10405
|
* @param {*} [options] Override http request option.
|
|
9833
10406
|
* @throws {RequiredError}
|
|
9834
10407
|
*/
|
|
9835
|
-
getArpScan: (_interface
|
|
10408
|
+
getArpScan: (_interface: string, cidr: string, timeout?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
9836
10409
|
/**
|
|
9837
10410
|
* **Required permissions:** `can_backup_system` - Create system backups ___ Retrieves the status of a configuration backup. The status can only be requested for 5 minutes after backup creation. After 5 minutes, 404 is returned.
|
|
9838
10411
|
* @summary Retrieve Backup Status
|
|
@@ -9849,7 +10422,7 @@ declare const SystemApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
9849
10422
|
*/
|
|
9850
10423
|
getDiagnosePackage: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
9851
10424
|
/**
|
|
9852
|
-
* **Required permissions:** `can_access_system` - View system status and metadata ___
|
|
10425
|
+
* **Required permissions:** `can_access_system` - View system status and metadata ___ Lists all managed network interfaces available for controller connections and ARP scanning.
|
|
9853
10426
|
* @summary Network Interfaces
|
|
9854
10427
|
* @param {*} [options] Override http request option.
|
|
9855
10428
|
* @throws {RequiredError}
|
|
@@ -9925,15 +10498,15 @@ declare const SystemApiFp: (configuration?: Configuration) => {
|
|
|
9925
10498
|
*/
|
|
9926
10499
|
checkNovaVersionUpdate(channel: ReleaseChannel, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<string>>;
|
|
9927
10500
|
/**
|
|
9928
|
-
* **Required permissions:** `can_access_system` - View system status and metadata ___
|
|
10501
|
+
* **Required permissions:** `can_access_system` - View system status and metadata ___ Runs an ARP scan on the target interface and returns all discovered devices.
|
|
9929
10502
|
* @summary Get ARP-Scan
|
|
9930
|
-
* @param {string}
|
|
9931
|
-
* @param {string}
|
|
10503
|
+
* @param {string} _interface
|
|
10504
|
+
* @param {string} cidr
|
|
9932
10505
|
* @param {number} [timeout]
|
|
9933
10506
|
* @param {*} [options] Override http request option.
|
|
9934
10507
|
* @throws {RequiredError}
|
|
9935
10508
|
*/
|
|
9936
|
-
getArpScan(_interface
|
|
10509
|
+
getArpScan(_interface: string, cidr: string, timeout?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<NetworkDevice>>>;
|
|
9937
10510
|
/**
|
|
9938
10511
|
* **Required permissions:** `can_backup_system` - Create system backups ___ Retrieves the status of a configuration backup. The status can only be requested for 5 minutes after backup creation. After 5 minutes, 404 is returned.
|
|
9939
10512
|
* @summary Retrieve Backup Status
|
|
@@ -9950,7 +10523,7 @@ declare const SystemApiFp: (configuration?: Configuration) => {
|
|
|
9950
10523
|
*/
|
|
9951
10524
|
getDiagnosePackage(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<File>>;
|
|
9952
10525
|
/**
|
|
9953
|
-
* **Required permissions:** `can_access_system` - View system status and metadata ___
|
|
10526
|
+
* **Required permissions:** `can_access_system` - View system status and metadata ___ Lists all managed network interfaces available for controller connections and ARP scanning.
|
|
9954
10527
|
* @summary Network Interfaces
|
|
9955
10528
|
* @param {*} [options] Override http request option.
|
|
9956
10529
|
* @throws {RequiredError}
|
|
@@ -10026,15 +10599,15 @@ declare const SystemApiFactory: (configuration?: Configuration, basePath?: strin
|
|
|
10026
10599
|
*/
|
|
10027
10600
|
checkNovaVersionUpdate(channel: ReleaseChannel, options?: RawAxiosRequestConfig): AxiosPromise<string>;
|
|
10028
10601
|
/**
|
|
10029
|
-
* **Required permissions:** `can_access_system` - View system status and metadata ___
|
|
10602
|
+
* **Required permissions:** `can_access_system` - View system status and metadata ___ Runs an ARP scan on the target interface and returns all discovered devices.
|
|
10030
10603
|
* @summary Get ARP-Scan
|
|
10031
|
-
* @param {string}
|
|
10032
|
-
* @param {string}
|
|
10604
|
+
* @param {string} _interface
|
|
10605
|
+
* @param {string} cidr
|
|
10033
10606
|
* @param {number} [timeout]
|
|
10034
10607
|
* @param {*} [options] Override http request option.
|
|
10035
10608
|
* @throws {RequiredError}
|
|
10036
10609
|
*/
|
|
10037
|
-
getArpScan(_interface
|
|
10610
|
+
getArpScan(_interface: string, cidr: string, timeout?: number, options?: RawAxiosRequestConfig): AxiosPromise<Array<NetworkDevice>>;
|
|
10038
10611
|
/**
|
|
10039
10612
|
* **Required permissions:** `can_backup_system` - Create system backups ___ Retrieves the status of a configuration backup. The status can only be requested for 5 minutes after backup creation. After 5 minutes, 404 is returned.
|
|
10040
10613
|
* @summary Retrieve Backup Status
|
|
@@ -10051,7 +10624,7 @@ declare const SystemApiFactory: (configuration?: Configuration, basePath?: strin
|
|
|
10051
10624
|
*/
|
|
10052
10625
|
getDiagnosePackage(options?: RawAxiosRequestConfig): AxiosPromise<File>;
|
|
10053
10626
|
/**
|
|
10054
|
-
* **Required permissions:** `can_access_system` - View system status and metadata ___
|
|
10627
|
+
* **Required permissions:** `can_access_system` - View system status and metadata ___ Lists all managed network interfaces available for controller connections and ARP scanning.
|
|
10055
10628
|
* @summary Network Interfaces
|
|
10056
10629
|
* @param {*} [options] Override http request option.
|
|
10057
10630
|
* @throws {RequiredError}
|
|
@@ -10127,15 +10700,15 @@ declare class SystemApi extends BaseAPI {
|
|
|
10127
10700
|
*/
|
|
10128
10701
|
checkNovaVersionUpdate(channel: ReleaseChannel, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<string, any, {}>>;
|
|
10129
10702
|
/**
|
|
10130
|
-
* **Required permissions:** `can_access_system` - View system status and metadata ___
|
|
10703
|
+
* **Required permissions:** `can_access_system` - View system status and metadata ___ Runs an ARP scan on the target interface and returns all discovered devices.
|
|
10131
10704
|
* @summary Get ARP-Scan
|
|
10132
|
-
* @param {string}
|
|
10133
|
-
* @param {string}
|
|
10705
|
+
* @param {string} _interface
|
|
10706
|
+
* @param {string} cidr
|
|
10134
10707
|
* @param {number} [timeout]
|
|
10135
10708
|
* @param {*} [options] Override http request option.
|
|
10136
10709
|
* @throws {RequiredError}
|
|
10137
10710
|
*/
|
|
10138
|
-
getArpScan(_interface
|
|
10711
|
+
getArpScan(_interface: string, cidr: string, timeout?: number, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<NetworkDevice[], any, {}>>;
|
|
10139
10712
|
/**
|
|
10140
10713
|
* **Required permissions:** `can_backup_system` - Create system backups ___ Retrieves the status of a configuration backup. The status can only be requested for 5 minutes after backup creation. After 5 minutes, 404 is returned.
|
|
10141
10714
|
* @summary Retrieve Backup Status
|
|
@@ -10152,7 +10725,7 @@ declare class SystemApi extends BaseAPI {
|
|
|
10152
10725
|
*/
|
|
10153
10726
|
getDiagnosePackage(options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<File, any, {}>>;
|
|
10154
10727
|
/**
|
|
10155
|
-
* **Required permissions:** `can_access_system` - View system status and metadata ___
|
|
10728
|
+
* **Required permissions:** `can_access_system` - View system status and metadata ___ Lists all managed network interfaces available for controller connections and ARP scanning.
|
|
10156
10729
|
* @summary Network Interfaces
|
|
10157
10730
|
* @param {*} [options] Override http request option.
|
|
10158
10731
|
* @throws {RequiredError}
|
|
@@ -11841,4 +12414,4 @@ declare class VirtualControllerInputsOutputsApi extends BaseAPI {
|
|
|
11841
12414
|
setIOValues(cell: string, controller: string, iOValue: Array<IOValue>, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<void, any, {}>>;
|
|
11842
12415
|
}
|
|
11843
12416
|
//#endregion
|
|
11844
|
-
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, 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, 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 };
|
|
12417
|
+
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, NetworkBackend, NetworkDevice, NetworkInterface, NetworkLinkState, NetworkState, 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 };
|