@wandelbots/nova-api 26.6.0-dev.14 → 26.6.0-dev.140
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 +816 -502
- package/dist/v2/index.d.cts +827 -218
- package/dist/v2/index.d.ts +827 -218
- package/dist/v2/index.js +399 -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,12 @@ 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 Techman: "techman";
|
|
2935
|
+
readonly Unitree: "unitree";
|
|
2728
2936
|
readonly Universalrobots: "universalrobots";
|
|
2729
2937
|
readonly Yaskawa: "yaskawa";
|
|
2730
2938
|
};
|
|
@@ -2773,7 +2981,7 @@ interface MergeTrajectoriesSegment {
|
|
|
2773
2981
|
*/
|
|
2774
2982
|
'trajectory': JointTrajectory;
|
|
2775
2983
|
/**
|
|
2776
|
-
* Limits override
|
|
2984
|
+
* 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
2985
|
*/
|
|
2778
2986
|
'limits_override'?: LimitsOverride;
|
|
2779
2987
|
/**
|
|
@@ -2894,7 +3102,7 @@ interface ModelError {
|
|
|
2894
3102
|
interface MotionCommand {
|
|
2895
3103
|
'blending'?: MotionCommandBlending;
|
|
2896
3104
|
/**
|
|
2897
|
-
* Limits override
|
|
3105
|
+
* 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
3106
|
*/
|
|
2899
3107
|
'limits_override'?: LimitsOverride;
|
|
2900
3108
|
'path': MotionCommandPath;
|
|
@@ -2908,6 +3116,27 @@ type MotionCommandBlending = BlendingAuto | BlendingPosition;
|
|
|
2908
3116
|
* @type MotionCommandPath
|
|
2909
3117
|
*/
|
|
2910
3118
|
type MotionCommandPath = PathCartesianPTP | PathCircle | PathCubicSpline | PathDirectionConstrainedCartesianPTP | PathDirectionConstrainedJointPTP | PathJointPTP | PathLine;
|
|
3119
|
+
/**
|
|
3120
|
+
* Response for motion group configuration lookup.
|
|
3121
|
+
*/
|
|
3122
|
+
interface MotionGroupConfiguration {
|
|
3123
|
+
/**
|
|
3124
|
+
* Name of the robot configuration containing this motion group.
|
|
3125
|
+
*/
|
|
3126
|
+
'robot_configuration': string;
|
|
3127
|
+
/**
|
|
3128
|
+
* Identifies a single motion group model. See [getMotionGroupModels](#/operations/getMotionGroupModels) for supported types.
|
|
3129
|
+
*/
|
|
3130
|
+
'motion_group_model': string;
|
|
3131
|
+
/**
|
|
3132
|
+
* Internal UID of the motion group inside the GCI transcript.
|
|
3133
|
+
*/
|
|
3134
|
+
'motion_group_uid': number;
|
|
3135
|
+
/**
|
|
3136
|
+
* Full GCI transcript (JSON) containing the robot configuration and motion group.
|
|
3137
|
+
*/
|
|
3138
|
+
'content': string;
|
|
3139
|
+
}
|
|
2911
3140
|
/**
|
|
2912
3141
|
* 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
3142
|
*/
|
|
@@ -2984,7 +3213,7 @@ interface MotionGroupFromJson {
|
|
|
2984
3213
|
*/
|
|
2985
3214
|
'motion_group': string;
|
|
2986
3215
|
/**
|
|
2987
|
-
*
|
|
3216
|
+
* JSON configuration of the virtual robot controller, can be obtained from the physical controller\'s configuration via [getVirtualControllerConfiguration](#/operations/getVirtualControllerConfiguration).
|
|
2988
3217
|
*/
|
|
2989
3218
|
'json_data': string;
|
|
2990
3219
|
/**
|
|
@@ -2992,7 +3221,7 @@ interface MotionGroupFromJson {
|
|
|
2992
3221
|
*/
|
|
2993
3222
|
'extracted_motion_group_id': string;
|
|
2994
3223
|
/**
|
|
2995
|
-
* Initial joint position of the added motion group. Provides the joint position as a JSON array of float values in radians
|
|
3224
|
+
* 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
3225
|
*/
|
|
2997
3226
|
'initial_joint_position'?: string;
|
|
2998
3227
|
}
|
|
@@ -3006,7 +3235,7 @@ interface MotionGroupFromType {
|
|
|
3006
3235
|
*/
|
|
3007
3236
|
'motion_group_model': string;
|
|
3008
3237
|
/**
|
|
3009
|
-
* Initial joint position of the added motion group. Provides the joint position as a JSON array of float values in radians
|
|
3238
|
+
* 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
3239
|
*/
|
|
3011
3240
|
'initial_joint_position'?: string;
|
|
3012
3241
|
}
|
|
@@ -3045,6 +3274,19 @@ interface MotionGroupJoints {
|
|
|
3045
3274
|
*/
|
|
3046
3275
|
'torques'?: Array<number>;
|
|
3047
3276
|
}
|
|
3277
|
+
/**
|
|
3278
|
+
* Entry for a motion group with its name and readable name.
|
|
3279
|
+
*/
|
|
3280
|
+
interface MotionGroupModelCatalog {
|
|
3281
|
+
/**
|
|
3282
|
+
* Name of the motion group.
|
|
3283
|
+
*/
|
|
3284
|
+
'motion_group_name': string;
|
|
3285
|
+
/**
|
|
3286
|
+
* Readable name for the motion group.
|
|
3287
|
+
*/
|
|
3288
|
+
'readable_name': string;
|
|
3289
|
+
}
|
|
3048
3290
|
/**
|
|
3049
3291
|
* Metadata about a motion group model.
|
|
3050
3292
|
*/
|
|
@@ -3123,17 +3365,25 @@ interface MotionGroupState {
|
|
|
3123
3365
|
*/
|
|
3124
3366
|
'joint_current'?: Array<number>;
|
|
3125
3367
|
/**
|
|
3126
|
-
* Pose of the flange. Positions are in [mm]. Orientations are in [rad]. The pose is relative to the
|
|
3368
|
+
* 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
3369
|
*/
|
|
3128
3370
|
'flange_pose'?: Pose;
|
|
3371
|
+
/**
|
|
3372
|
+
* Cartesian velocity of the flange. The velocity is relative to the response coordinate system specified in the request.
|
|
3373
|
+
*/
|
|
3374
|
+
'flange_velocity'?: CartesianVelocity;
|
|
3129
3375
|
/**
|
|
3130
3376
|
* Unique identifier addressing the active TCP. Might not be returned for positioners as some do not support TCPs, depending on the model.
|
|
3131
3377
|
*/
|
|
3132
3378
|
'tcp'?: string;
|
|
3133
3379
|
/**
|
|
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
|
|
3380
|
+
* 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
3381
|
*/
|
|
3136
3382
|
'tcp_pose'?: Pose;
|
|
3383
|
+
/**
|
|
3384
|
+
* Cartesian velocity of the TCP selected on the robot control panel. The velocity is relative to the response coordinate system specified in the request.
|
|
3385
|
+
*/
|
|
3386
|
+
'tcp_velocity'?: CartesianVelocity;
|
|
3137
3387
|
/**
|
|
3138
3388
|
* 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
3389
|
*/
|
|
@@ -3299,55 +3549,61 @@ interface NanValueErrorNanValue {
|
|
|
3299
3549
|
*/
|
|
3300
3550
|
'joint_position'?: Array<number>;
|
|
3301
3551
|
}
|
|
3552
|
+
/**
|
|
3553
|
+
* Network attachment method used to expose the interface to workloads.
|
|
3554
|
+
*/
|
|
3555
|
+
declare const NetworkBackend: {
|
|
3556
|
+
readonly Macvlan: "macvlan";
|
|
3557
|
+
readonly Sriov: "sriov";
|
|
3558
|
+
};
|
|
3559
|
+
type NetworkBackend = typeof NetworkBackend[keyof typeof NetworkBackend];
|
|
3302
3560
|
interface NetworkDevice {
|
|
3303
3561
|
/**
|
|
3304
|
-
*
|
|
3562
|
+
* IPv4 address of the discovered device.
|
|
3305
3563
|
*/
|
|
3306
3564
|
'ip': string;
|
|
3307
3565
|
/**
|
|
3308
|
-
*
|
|
3566
|
+
* MAC address of the discovered device.
|
|
3309
3567
|
*/
|
|
3310
3568
|
'mac': string;
|
|
3311
3569
|
/**
|
|
3312
|
-
*
|
|
3570
|
+
* Hardware manufacturer name derived from the MAC address, omitted when unknown.
|
|
3313
3571
|
*/
|
|
3314
3572
|
'vendor'?: string;
|
|
3315
3573
|
}
|
|
3316
3574
|
interface NetworkInterface {
|
|
3317
3575
|
/**
|
|
3318
|
-
*
|
|
3576
|
+
* Host network interface name, e.g., enp0s31f6.
|
|
3319
3577
|
*/
|
|
3320
3578
|
'name': string;
|
|
3321
3579
|
/**
|
|
3322
|
-
*
|
|
3580
|
+
* Stable identifier for this interface. Pass it as the `interface` field in ARP scan request, e.g., wandelbox-abc123-enp3s0.
|
|
3323
3581
|
*/
|
|
3324
|
-
'
|
|
3582
|
+
'interface': string;
|
|
3325
3583
|
/**
|
|
3326
|
-
*
|
|
3584
|
+
* Hostname that exposes this interface.
|
|
3327
3585
|
*/
|
|
3328
|
-
'
|
|
3586
|
+
'node': string;
|
|
3587
|
+
'backend': NetworkBackend;
|
|
3588
|
+
'link': NetworkLinkState;
|
|
3329
3589
|
/**
|
|
3330
|
-
*
|
|
3590
|
+
* IP/CIDR addresses currently assigned to the interface. Omitted when not available.
|
|
3331
3591
|
*/
|
|
3332
|
-
'
|
|
3592
|
+
'addresses'?: Array<string>;
|
|
3333
3593
|
}
|
|
3594
|
+
/**
|
|
3595
|
+
* Link state of the physical interface.
|
|
3596
|
+
*/
|
|
3597
|
+
declare const NetworkLinkState: {
|
|
3598
|
+
readonly Up: "up";
|
|
3599
|
+
readonly Down: "down";
|
|
3600
|
+
};
|
|
3601
|
+
type NetworkLinkState = typeof NetworkLinkState[keyof typeof NetworkLinkState];
|
|
3334
3602
|
interface NetworkState {
|
|
3335
3603
|
/**
|
|
3336
3604
|
* Indicates whether the system is connected to the internet.
|
|
3337
3605
|
*/
|
|
3338
3606
|
'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
3607
|
/**
|
|
3352
3608
|
* Round-trip latency to the probe endpoint measured in milliseconds.
|
|
3353
3609
|
*/
|
|
@@ -3357,14 +3613,6 @@ interface NetworkState {
|
|
|
3357
3613
|
*/
|
|
3358
3614
|
'bandwidth_mbps'?: number;
|
|
3359
3615
|
}
|
|
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
3616
|
/**
|
|
3369
3617
|
* 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
3618
|
*/
|
|
@@ -3518,6 +3766,33 @@ declare const PathLinePathDefinitionNameEnum: {
|
|
|
3518
3766
|
readonly PathLine: "PathLine";
|
|
3519
3767
|
};
|
|
3520
3768
|
type PathLinePathDefinitionNameEnum = typeof PathLinePathDefinitionNameEnum[keyof typeof PathLinePathDefinitionNameEnum];
|
|
3769
|
+
/**
|
|
3770
|
+
* Request to pause executing action chunks. If successful, `execute` jogging state in [MotionGroupState](MotionGroupState.yaml) is set to `PAUSED_BY_USER`.
|
|
3771
|
+
*/
|
|
3772
|
+
interface PauseActionChunksRequest {
|
|
3773
|
+
/**
|
|
3774
|
+
* Type specifier for server, set automatically.
|
|
3775
|
+
*/
|
|
3776
|
+
'message_type': PauseActionChunksRequestMessageTypeEnum;
|
|
3777
|
+
}
|
|
3778
|
+
declare const PauseActionChunksRequestMessageTypeEnum: {
|
|
3779
|
+
readonly PauseActionChunksRequest: "PauseActionChunksRequest";
|
|
3780
|
+
};
|
|
3781
|
+
type PauseActionChunksRequestMessageTypeEnum = typeof PauseActionChunksRequestMessageTypeEnum[keyof typeof PauseActionChunksRequestMessageTypeEnum];
|
|
3782
|
+
/**
|
|
3783
|
+
* Acknowledgment to a PauseActionChunksRequest.
|
|
3784
|
+
*/
|
|
3785
|
+
interface PauseActionChunksResponse {
|
|
3786
|
+
/**
|
|
3787
|
+
* Error message in case of invalid PauseActionChunksRequest.
|
|
3788
|
+
*/
|
|
3789
|
+
'message'?: string;
|
|
3790
|
+
'kind': PauseActionChunksResponseKindEnum;
|
|
3791
|
+
}
|
|
3792
|
+
declare const PauseActionChunksResponseKindEnum: {
|
|
3793
|
+
readonly PauseReceived: "PAUSE_RECEIVED";
|
|
3794
|
+
};
|
|
3795
|
+
type PauseActionChunksResponseKindEnum = typeof PauseActionChunksResponseKindEnum[keyof typeof PauseActionChunksResponseKindEnum];
|
|
3521
3796
|
/**
|
|
3522
3797
|
* Request to pause jogging. If successful, `execute` jogging state in [MotionGroupState](MotionGroupState.yaml) is set to `PAUSED_BY_USER`.
|
|
3523
3798
|
*/
|
|
@@ -3631,6 +3906,10 @@ interface PlanCollisionFreeRequest {
|
|
|
3631
3906
|
*/
|
|
3632
3907
|
interface PlanCollisionFreeResponse {
|
|
3633
3908
|
'response': PlanCollisionFreeResponseResponse;
|
|
3909
|
+
/**
|
|
3910
|
+
* The motion commands that produced the trajectory.
|
|
3911
|
+
*/
|
|
3912
|
+
'motion_commands'?: Array<MotionCommand>;
|
|
3634
3913
|
}
|
|
3635
3914
|
/**
|
|
3636
3915
|
* @type PlanCollisionFreeResponseResponse
|
|
@@ -3661,6 +3940,10 @@ interface PlanTrajectoryRequest {
|
|
|
3661
3940
|
* List of motion commands. A command consists of a path definition (line, circle, joint_ptp, cartesian_ptp, cubic_spline), blending, and limits override.
|
|
3662
3941
|
*/
|
|
3663
3942
|
'motion_commands': Array<MotionCommand>;
|
|
3943
|
+
/**
|
|
3944
|
+
* <!-- theme: danger --> > > **Experimental** Strategy used to deal with wrist singularities along a cartesian path.
|
|
3945
|
+
*/
|
|
3946
|
+
'singularity_handling'?: SingularityHandling;
|
|
3664
3947
|
}
|
|
3665
3948
|
interface PlanTrajectoryResponse {
|
|
3666
3949
|
'response': PlanTrajectoryResponseResponse;
|
|
@@ -3738,49 +4021,22 @@ interface Pose {
|
|
|
3738
4021
|
'orientation'?: Array<number>;
|
|
3739
4022
|
}
|
|
3740
4023
|
/**
|
|
3741
|
-
* A waypoint
|
|
4024
|
+
* A pose waypoint for action chunk streaming. > **NOTE** > > This type is experimental and its behavior may change in future releases.
|
|
3742
4025
|
*/
|
|
3743
4026
|
interface PoseWaypoint {
|
|
3744
4027
|
/**
|
|
3745
|
-
*
|
|
4028
|
+
* Type specifier for server, set automatically.
|
|
3746
4029
|
*/
|
|
3747
|
-
'
|
|
4030
|
+
'kind': PoseWaypointKindEnum;
|
|
3748
4031
|
/**
|
|
3749
4032
|
* Cartesian pose for this waypoint.
|
|
3750
4033
|
*/
|
|
3751
4034
|
'pose': Pose;
|
|
3752
4035
|
}
|
|
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";
|
|
3768
|
-
};
|
|
3769
|
-
type PoseWaypointsRequestMessageTypeEnum = typeof PoseWaypointsRequestMessageTypeEnum[keyof typeof PoseWaypointsRequestMessageTypeEnum];
|
|
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";
|
|
4036
|
+
declare const PoseWaypointKindEnum: {
|
|
4037
|
+
readonly Pose: "POSE";
|
|
3782
4038
|
};
|
|
3783
|
-
type
|
|
4039
|
+
type PoseWaypointKindEnum = typeof PoseWaypointKindEnum[keyof typeof PoseWaypointKindEnum];
|
|
3784
4040
|
interface ProfinetDescription {
|
|
3785
4041
|
/**
|
|
3786
4042
|
* The vendor identifier of the PROFINET device, identifying the manufacturer.
|
|
@@ -3808,7 +4064,7 @@ interface ProfinetIO {
|
|
|
3808
4064
|
*/
|
|
3809
4065
|
'direction': ProfinetIODirection;
|
|
3810
4066
|
/**
|
|
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
|
|
4067
|
+
* 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
4068
|
*/
|
|
3813
4069
|
'byte_address': number;
|
|
3814
4070
|
/**
|
|
@@ -3831,7 +4087,7 @@ interface ProfinetIOData {
|
|
|
3831
4087
|
*/
|
|
3832
4088
|
'direction': ProfinetIODirection;
|
|
3833
4089
|
/**
|
|
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
|
|
4090
|
+
* 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
4091
|
*/
|
|
3836
4092
|
'byte_address': number;
|
|
3837
4093
|
/**
|
|
@@ -3870,13 +4126,19 @@ interface ProfinetInputOutputConfig {
|
|
|
3870
4126
|
*/
|
|
3871
4127
|
'config': string;
|
|
3872
4128
|
/**
|
|
3873
|
-
*
|
|
4129
|
+
* 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
4130
|
*/
|
|
3875
|
-
'
|
|
4131
|
+
'offsets'?: Array<ProfinetSlotOffset>;
|
|
3876
4132
|
/**
|
|
3877
|
-
* Offset in bytes for the
|
|
4133
|
+
* 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.
|
|
4134
|
+
* @deprecated
|
|
3878
4135
|
*/
|
|
3879
|
-
'
|
|
4136
|
+
'input_offset'?: number;
|
|
4137
|
+
/**
|
|
4138
|
+
* 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.
|
|
4139
|
+
* @deprecated
|
|
4140
|
+
*/
|
|
4141
|
+
'output_offset'?: number;
|
|
3880
4142
|
}
|
|
3881
4143
|
/**
|
|
3882
4144
|
* 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 +4157,20 @@ interface ProfinetSlotDescription {
|
|
|
3895
4157
|
*/
|
|
3896
4158
|
'subslots': Array<ProfinetSubSlotDescription>;
|
|
3897
4159
|
}
|
|
4160
|
+
interface ProfinetSlotOffset {
|
|
4161
|
+
/**
|
|
4162
|
+
* 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.
|
|
4163
|
+
*/
|
|
4164
|
+
'slot': number;
|
|
4165
|
+
/**
|
|
4166
|
+
* 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.
|
|
4167
|
+
*/
|
|
4168
|
+
'input_offset': number;
|
|
4169
|
+
/**
|
|
4170
|
+
* 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.
|
|
4171
|
+
*/
|
|
4172
|
+
'output_offset': number;
|
|
4173
|
+
}
|
|
3898
4174
|
interface ProfinetSubSlotDescription {
|
|
3899
4175
|
/**
|
|
3900
4176
|
* The number/index of the PROFINET subslot.
|
|
@@ -4148,7 +4424,7 @@ interface RobotController {
|
|
|
4148
4424
|
/**
|
|
4149
4425
|
* @type RobotControllerConfiguration
|
|
4150
4426
|
*/
|
|
4151
|
-
type RobotControllerConfiguration = AbbController | FanucController | KukaController | UniversalrobotsController | VirtualController | YaskawaController;
|
|
4427
|
+
type RobotControllerConfiguration = AbbController | BostondynamicsController | FanucController | KukaController | StaubliController | TechmanController | UnitreeController | UniversalrobotsController | VirtualController | YaskawaController;
|
|
4152
4428
|
/**
|
|
4153
4429
|
* Information to generate all robot controller configurations that match a given ARP scan result.
|
|
4154
4430
|
*/
|
|
@@ -4544,6 +4820,15 @@ declare const SettableRobotSystemMode: {
|
|
|
4544
4820
|
readonly ModeControl: "MODE_CONTROL";
|
|
4545
4821
|
};
|
|
4546
4822
|
type SettableRobotSystemMode = typeof SettableRobotSystemMode[keyof typeof SettableRobotSystemMode];
|
|
4823
|
+
/**
|
|
4824
|
+
* <!-- 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.
|
|
4825
|
+
*/
|
|
4826
|
+
declare const SingularityHandling: {
|
|
4827
|
+
readonly None: "NONE";
|
|
4828
|
+
readonly PalletizingWrist: "PALLETIZING_WRIST";
|
|
4829
|
+
readonly AdaptiveSampling: "ADAPTIVE_SAMPLING";
|
|
4830
|
+
};
|
|
4831
|
+
type SingularityHandling = typeof SingularityHandling[keyof typeof SingularityHandling];
|
|
4547
4832
|
declare const SingularityTypeEnum: {
|
|
4548
4833
|
readonly Wrist: "WRIST";
|
|
4549
4834
|
readonly Elbow: "ELBOW";
|
|
@@ -4705,6 +4990,55 @@ interface StartOnIO {
|
|
|
4705
4990
|
'comparator': Comparator;
|
|
4706
4991
|
'io_origin': IOOrigin;
|
|
4707
4992
|
}
|
|
4993
|
+
/**
|
|
4994
|
+
* 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.
|
|
4995
|
+
*/
|
|
4996
|
+
interface StaubliController {
|
|
4997
|
+
'kind': StaubliControllerKindEnum;
|
|
4998
|
+
'controller_ip': string;
|
|
4999
|
+
'network_interface'?: ControllerNetworkInterface;
|
|
5000
|
+
'controller_port': number;
|
|
5001
|
+
'command_port': number;
|
|
5002
|
+
'rti_server': StaubliControllerRtiServer;
|
|
5003
|
+
}
|
|
5004
|
+
declare const StaubliControllerKindEnum: {
|
|
5005
|
+
readonly StaubliController: "StaubliController";
|
|
5006
|
+
};
|
|
5007
|
+
type StaubliControllerKindEnum = typeof StaubliControllerKindEnum[keyof typeof StaubliControllerKindEnum];
|
|
5008
|
+
/**
|
|
5009
|
+
* The RTI server runs inside of the cell.
|
|
5010
|
+
*/
|
|
5011
|
+
interface StaubliControllerRtiServer {
|
|
5012
|
+
'ip': string;
|
|
5013
|
+
'port': number;
|
|
5014
|
+
}
|
|
5015
|
+
/**
|
|
5016
|
+
* Request to stop executing action chunks. If successful, `execute` jogging state in [MotionGroupState](MotionGroupState.yaml) is set to `PAUSED_BY_USER`.
|
|
5017
|
+
*/
|
|
5018
|
+
interface StopActionChunksRequest {
|
|
5019
|
+
/**
|
|
5020
|
+
* Type specifier for server, set automatically.
|
|
5021
|
+
*/
|
|
5022
|
+
'message_type': StopActionChunksRequestMessageTypeEnum;
|
|
5023
|
+
}
|
|
5024
|
+
declare const StopActionChunksRequestMessageTypeEnum: {
|
|
5025
|
+
readonly StopActionChunksRequest: "StopActionChunksRequest";
|
|
5026
|
+
};
|
|
5027
|
+
type StopActionChunksRequestMessageTypeEnum = typeof StopActionChunksRequestMessageTypeEnum[keyof typeof StopActionChunksRequestMessageTypeEnum];
|
|
5028
|
+
/**
|
|
5029
|
+
* Acknowledgment to a StopActionChunksRequest.
|
|
5030
|
+
*/
|
|
5031
|
+
interface StopActionChunksResponse {
|
|
5032
|
+
/**
|
|
5033
|
+
* Error message in case of invalid StopActionChunksRequest.
|
|
5034
|
+
*/
|
|
5035
|
+
'message'?: string;
|
|
5036
|
+
'kind': StopActionChunksResponseKindEnum;
|
|
5037
|
+
}
|
|
5038
|
+
declare const StopActionChunksResponseKindEnum: {
|
|
5039
|
+
readonly StopReceived: "STOP_RECEIVED";
|
|
5040
|
+
};
|
|
5041
|
+
type StopActionChunksResponseKindEnum = typeof StopActionChunksResponseKindEnum[keyof typeof StopActionChunksResponseKindEnum];
|
|
4708
5042
|
/**
|
|
4709
5043
|
* 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
5044
|
*/
|
|
@@ -4793,6 +5127,41 @@ declare const TcpVelocityResponseKindEnum: {
|
|
|
4793
5127
|
readonly TcpVelocityReceived: "TCP_VELOCITY_RECEIVED";
|
|
4794
5128
|
};
|
|
4795
5129
|
type TcpVelocityResponseKindEnum = typeof TcpVelocityResponseKindEnum[keyof typeof TcpVelocityResponseKindEnum];
|
|
5130
|
+
/**
|
|
5131
|
+
* The configuration of a physical Techman robot controller has to contain an IP address. Additionally an RTRS server configuration has to be specified in order to obtain state from the robot.
|
|
5132
|
+
*/
|
|
5133
|
+
interface TechmanController {
|
|
5134
|
+
'kind': TechmanControllerKindEnum;
|
|
5135
|
+
'controller_ip': string;
|
|
5136
|
+
'network_interface'?: ControllerNetworkInterface;
|
|
5137
|
+
/**
|
|
5138
|
+
* TCP port for the TMSVR channel on the robot controller.
|
|
5139
|
+
*/
|
|
5140
|
+
'tmsvr_port'?: number;
|
|
5141
|
+
/**
|
|
5142
|
+
* TCP port for the TMSCT channel on the robot controller.
|
|
5143
|
+
*/
|
|
5144
|
+
'tmsct_port'?: number;
|
|
5145
|
+
'rtrs': TechmanControllerRtrs;
|
|
5146
|
+
}
|
|
5147
|
+
declare const TechmanControllerKindEnum: {
|
|
5148
|
+
readonly TechmanController: "TechmanController";
|
|
5149
|
+
};
|
|
5150
|
+
type TechmanControllerKindEnum = typeof TechmanControllerKindEnum[keyof typeof TechmanControllerKindEnum];
|
|
5151
|
+
/**
|
|
5152
|
+
* The RTRS server configuration for real-time communication.
|
|
5153
|
+
*/
|
|
5154
|
+
interface TechmanControllerRtrs {
|
|
5155
|
+
'ip': string;
|
|
5156
|
+
/**
|
|
5157
|
+
* TCP port for the TMRTS state reporting channel.
|
|
5158
|
+
*/
|
|
5159
|
+
'tmrts_port'?: number;
|
|
5160
|
+
/**
|
|
5161
|
+
* TCP port for the TMRTC real-time control channel.
|
|
5162
|
+
*/
|
|
5163
|
+
'tmrtc_port'?: number;
|
|
5164
|
+
}
|
|
4796
5165
|
/**
|
|
4797
5166
|
* An inline tool collider wrapped for discriminator support.
|
|
4798
5167
|
*/
|
|
@@ -4985,17 +5354,82 @@ declare const UnitType: {
|
|
|
4985
5354
|
readonly UnitMeter: "UNIT_METER";
|
|
4986
5355
|
};
|
|
4987
5356
|
type UnitType = typeof UnitType[keyof typeof UnitType];
|
|
5357
|
+
/**
|
|
5358
|
+
* 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.
|
|
5359
|
+
*/
|
|
5360
|
+
interface UnitreeController {
|
|
5361
|
+
'kind': UnitreeControllerKindEnum;
|
|
5362
|
+
/**
|
|
5363
|
+
* The IP address of the Unitree robot.
|
|
5364
|
+
*/
|
|
5365
|
+
'controller_ip': string;
|
|
5366
|
+
/**
|
|
5367
|
+
* The Unitree robot model type.
|
|
5368
|
+
*/
|
|
5369
|
+
'robot_type': UnitreeControllerRobotTypeEnum;
|
|
5370
|
+
/**
|
|
5371
|
+
* The network interface used for DDS discovery.
|
|
5372
|
+
*/
|
|
5373
|
+
'network_interface'?: string;
|
|
5374
|
+
/**
|
|
5375
|
+
* Enable DDS unicast mode for environments where multicast is unavailable.
|
|
5376
|
+
*/
|
|
5377
|
+
'dds_unicast_mode'?: boolean;
|
|
5378
|
+
/**
|
|
5379
|
+
* Enable exclusive lease-based control of the robot.
|
|
5380
|
+
*/
|
|
5381
|
+
'enable_lease'?: boolean;
|
|
5382
|
+
}
|
|
5383
|
+
declare const UnitreeControllerKindEnum: {
|
|
5384
|
+
readonly UnitreeController: "UnitreeController";
|
|
5385
|
+
};
|
|
5386
|
+
type UnitreeControllerKindEnum = typeof UnitreeControllerKindEnum[keyof typeof UnitreeControllerKindEnum];
|
|
5387
|
+
declare const UnitreeControllerRobotTypeEnum: {
|
|
5388
|
+
readonly Go2: "go2";
|
|
5389
|
+
readonly G1: "g1";
|
|
5390
|
+
readonly B2: "b2";
|
|
5391
|
+
readonly H1: "h1";
|
|
5392
|
+
};
|
|
5393
|
+
type UnitreeControllerRobotTypeEnum = typeof UnitreeControllerRobotTypeEnum[keyof typeof UnitreeControllerRobotTypeEnum];
|
|
4988
5394
|
/**
|
|
4989
5395
|
* The configuration of a physical Universal Robots controller has to contain IP address of the controller.
|
|
4990
5396
|
*/
|
|
4991
5397
|
interface UniversalrobotsController {
|
|
4992
5398
|
'kind': UniversalrobotsControllerKindEnum;
|
|
4993
5399
|
'controller_ip': string;
|
|
5400
|
+
'network_interface'?: ControllerNetworkInterface;
|
|
4994
5401
|
}
|
|
4995
5402
|
declare const UniversalrobotsControllerKindEnum: {
|
|
4996
5403
|
readonly UniversalrobotsController: "UniversalrobotsController";
|
|
4997
5404
|
};
|
|
4998
5405
|
type UniversalrobotsControllerKindEnum = typeof UniversalrobotsControllerKindEnum[keyof typeof UniversalrobotsControllerKindEnum];
|
|
5406
|
+
/**
|
|
5407
|
+
* Request to unpause executing action chunks. If successful, `execute` jogging state in [MotionGroupState](MotionGroupState.yaml) is set to `RUNNING`.
|
|
5408
|
+
*/
|
|
5409
|
+
interface UnpauseActionChunksRequest {
|
|
5410
|
+
/**
|
|
5411
|
+
* Type specifier for server, set automatically.
|
|
5412
|
+
*/
|
|
5413
|
+
'message_type': UnpauseActionChunksRequestMessageTypeEnum;
|
|
5414
|
+
}
|
|
5415
|
+
declare const UnpauseActionChunksRequestMessageTypeEnum: {
|
|
5416
|
+
readonly UnpauseActionChunksRequest: "UnpauseActionChunksRequest";
|
|
5417
|
+
};
|
|
5418
|
+
type UnpauseActionChunksRequestMessageTypeEnum = typeof UnpauseActionChunksRequestMessageTypeEnum[keyof typeof UnpauseActionChunksRequestMessageTypeEnum];
|
|
5419
|
+
/**
|
|
5420
|
+
* Acknowledgment to an UnpauseActionChunksRequest.
|
|
5421
|
+
*/
|
|
5422
|
+
interface UnpauseActionChunksResponse {
|
|
5423
|
+
/**
|
|
5424
|
+
* Error message in case of invalid UnpauseActionChunksRequest.
|
|
5425
|
+
*/
|
|
5426
|
+
'message'?: string;
|
|
5427
|
+
'kind': UnpauseActionChunksResponseKindEnum;
|
|
5428
|
+
}
|
|
5429
|
+
declare const UnpauseActionChunksResponseKindEnum: {
|
|
5430
|
+
readonly UnpauseReceived: "UNPAUSE_RECEIVED";
|
|
5431
|
+
};
|
|
5432
|
+
type UnpauseActionChunksResponseKindEnum = typeof UnpauseActionChunksResponseKindEnum[keyof typeof UnpauseActionChunksResponseKindEnum];
|
|
4999
5433
|
/**
|
|
5000
5434
|
* Update a single cell\'s Foundation chart version based on the indicated release channel.
|
|
5001
5435
|
*/
|
|
@@ -5064,9 +5498,13 @@ interface VirtualController {
|
|
|
5064
5498
|
*/
|
|
5065
5499
|
'json'?: string;
|
|
5066
5500
|
/**
|
|
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
|
|
5501
|
+
* 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
5502
|
*/
|
|
5069
5503
|
'initial_joint_position'?: string;
|
|
5504
|
+
/**
|
|
5505
|
+
* 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
|
|
5506
|
+
*/
|
|
5507
|
+
'motion_groups'?: Array<AddVirtualControllerMotionGroupRequest>;
|
|
5070
5508
|
}
|
|
5071
5509
|
declare const VirtualControllerKindEnum: {
|
|
5072
5510
|
readonly VirtualController: "VirtualController";
|
|
@@ -5092,12 +5530,35 @@ interface WaitForIOEventRequest {
|
|
|
5092
5530
|
*/
|
|
5093
5531
|
'comparator': Comparator;
|
|
5094
5532
|
}
|
|
5533
|
+
/**
|
|
5534
|
+
* A waypoint for action chunk streaming. > **NOTE** > > This type is experimental and its behavior may change in future releases.
|
|
5535
|
+
*/
|
|
5536
|
+
interface Waypoint {
|
|
5537
|
+
/**
|
|
5538
|
+
* Exact timestamp [ms] at which the waypoint should be reached, relative to the start of the session.
|
|
5539
|
+
*/
|
|
5540
|
+
'timestamp': number;
|
|
5541
|
+
/**
|
|
5542
|
+
* Coordinates for this waypoint.
|
|
5543
|
+
*/
|
|
5544
|
+
'waypoint': WaypointCoordinates;
|
|
5545
|
+
}
|
|
5546
|
+
/**
|
|
5547
|
+
* @type WaypointCoordinates
|
|
5548
|
+
* Coordinates for an action chunk streaming waypoint. > **NOTE** > > This type is experimental and its behavior may change in future releases.
|
|
5549
|
+
*/
|
|
5550
|
+
type WaypointCoordinates = {
|
|
5551
|
+
kind: 'JOINTS';
|
|
5552
|
+
} & JointWaypoint | {
|
|
5553
|
+
kind: 'POSE';
|
|
5554
|
+
} & PoseWaypoint;
|
|
5095
5555
|
/**
|
|
5096
5556
|
* The configuration of a physical Yaskawa robot controller has to contain IP address of the controller.
|
|
5097
5557
|
*/
|
|
5098
5558
|
interface YaskawaController {
|
|
5099
5559
|
'kind': YaskawaControllerKindEnum;
|
|
5100
5560
|
'controller_ip': string;
|
|
5561
|
+
'network_interface'?: ControllerNetworkInterface;
|
|
5101
5562
|
}
|
|
5102
5563
|
declare const YaskawaControllerKindEnum: {
|
|
5103
5564
|
readonly YaskawaController: "YaskawaController";
|
|
@@ -5130,6 +5591,66 @@ interface ZodValidationErrorErrorDetailsInner {
|
|
|
5130
5591
|
* @type ZodValidationErrorErrorDetailsInnerPathInner
|
|
5131
5592
|
*/
|
|
5132
5593
|
type ZodValidationErrorErrorDetailsInnerPathInner = number | string;
|
|
5594
|
+
/**
|
|
5595
|
+
* ActionChunkStreamingApi - axios parameter creator
|
|
5596
|
+
*/
|
|
5597
|
+
declare const ActionChunkStreamingApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
5598
|
+
/**
|
|
5599
|
+
* **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.
|
|
5600
|
+
* @summary Execute Action Chunks
|
|
5601
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
5602
|
+
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
5603
|
+
* @param {ExecuteActionChunksRequest} executeActionChunksRequest
|
|
5604
|
+
* @param {*} [options] Override http request option.
|
|
5605
|
+
* @throws {RequiredError}
|
|
5606
|
+
*/
|
|
5607
|
+
executeActionChunks: (cell: string, controller: string, executeActionChunksRequest: ExecuteActionChunksRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
5608
|
+
};
|
|
5609
|
+
/**
|
|
5610
|
+
* ActionChunkStreamingApi - functional programming interface
|
|
5611
|
+
*/
|
|
5612
|
+
declare const ActionChunkStreamingApiFp: (configuration?: Configuration) => {
|
|
5613
|
+
/**
|
|
5614
|
+
* **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.
|
|
5615
|
+
* @summary Execute Action Chunks
|
|
5616
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
5617
|
+
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
5618
|
+
* @param {ExecuteActionChunksRequest} executeActionChunksRequest
|
|
5619
|
+
* @param {*} [options] Override http request option.
|
|
5620
|
+
* @throws {RequiredError}
|
|
5621
|
+
*/
|
|
5622
|
+
executeActionChunks(cell: string, controller: string, executeActionChunksRequest: ExecuteActionChunksRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ExecuteActionChunksResponse>>;
|
|
5623
|
+
};
|
|
5624
|
+
/**
|
|
5625
|
+
* ActionChunkStreamingApi - factory interface
|
|
5626
|
+
*/
|
|
5627
|
+
declare const ActionChunkStreamingApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
5628
|
+
/**
|
|
5629
|
+
* **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.
|
|
5630
|
+
* @summary Execute Action Chunks
|
|
5631
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
5632
|
+
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
5633
|
+
* @param {ExecuteActionChunksRequest} executeActionChunksRequest
|
|
5634
|
+
* @param {*} [options] Override http request option.
|
|
5635
|
+
* @throws {RequiredError}
|
|
5636
|
+
*/
|
|
5637
|
+
executeActionChunks(cell: string, controller: string, executeActionChunksRequest: ExecuteActionChunksRequest, options?: RawAxiosRequestConfig): AxiosPromise<ExecuteActionChunksResponse>;
|
|
5638
|
+
};
|
|
5639
|
+
/**
|
|
5640
|
+
* ActionChunkStreamingApi - object-oriented interface
|
|
5641
|
+
*/
|
|
5642
|
+
declare class ActionChunkStreamingApi extends BaseAPI {
|
|
5643
|
+
/**
|
|
5644
|
+
* **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.
|
|
5645
|
+
* @summary Execute Action Chunks
|
|
5646
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
5647
|
+
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
5648
|
+
* @param {ExecuteActionChunksRequest} executeActionChunksRequest
|
|
5649
|
+
* @param {*} [options] Override http request option.
|
|
5650
|
+
* @throws {RequiredError}
|
|
5651
|
+
*/
|
|
5652
|
+
executeActionChunks(cell: string, controller: string, executeActionChunksRequest: ExecuteActionChunksRequest, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<ExecuteActionChunksResponse, any, {}>>;
|
|
5653
|
+
}
|
|
5133
5654
|
/**
|
|
5134
5655
|
* ApplicationApi - axios parameter creator
|
|
5135
5656
|
*/
|
|
@@ -5524,15 +6045,16 @@ declare const BUSInputsOutputsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
5524
6045
|
*/
|
|
5525
6046
|
getProfinetGSDML: (cell: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
5526
6047
|
/**
|
|
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
|
|
6048
|
+
* **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
6049
|
* @summary PROFINET Inputs/Outputs to File
|
|
5529
6050
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
6051
|
+
* @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
6052
|
* @param {number} [inputOffset]
|
|
5531
6053
|
* @param {number} [outputOffset]
|
|
5532
6054
|
* @param {*} [options] Override http request option.
|
|
5533
6055
|
* @throws {RequiredError}
|
|
5534
6056
|
*/
|
|
5535
|
-
getProfinetIOsFromFile: (cell: string, inputOffset?: number, outputOffset?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
6057
|
+
getProfinetIOsFromFile: (cell: string, offsets?: Array<ProfinetSlotOffset>, inputOffset?: number, outputOffset?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
5536
6058
|
/**
|
|
5537
6059
|
* **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
6060
|
* @summary List Descriptions
|
|
@@ -5730,15 +6252,16 @@ declare const BUSInputsOutputsApiFp: (configuration?: Configuration) => {
|
|
|
5730
6252
|
*/
|
|
5731
6253
|
getProfinetGSDML(cell: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<string>>;
|
|
5732
6254
|
/**
|
|
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
|
|
6255
|
+
* **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
6256
|
* @summary PROFINET Inputs/Outputs to File
|
|
5735
6257
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
6258
|
+
* @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
6259
|
* @param {number} [inputOffset]
|
|
5737
6260
|
* @param {number} [outputOffset]
|
|
5738
6261
|
* @param {*} [options] Override http request option.
|
|
5739
6262
|
* @throws {RequiredError}
|
|
5740
6263
|
*/
|
|
5741
|
-
getProfinetIOsFromFile(cell: string, inputOffset?: number, outputOffset?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<string>>;
|
|
6264
|
+
getProfinetIOsFromFile(cell: string, offsets?: Array<ProfinetSlotOffset>, inputOffset?: number, outputOffset?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<string>>;
|
|
5742
6265
|
/**
|
|
5743
6266
|
* **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
6267
|
* @summary List Descriptions
|
|
@@ -5936,15 +6459,16 @@ declare const BUSInputsOutputsApiFactory: (configuration?: Configuration, basePa
|
|
|
5936
6459
|
*/
|
|
5937
6460
|
getProfinetGSDML(cell: string, options?: RawAxiosRequestConfig): AxiosPromise<string>;
|
|
5938
6461
|
/**
|
|
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
|
|
6462
|
+
* **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
6463
|
* @summary PROFINET Inputs/Outputs to File
|
|
5941
6464
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
6465
|
+
* @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
6466
|
* @param {number} [inputOffset]
|
|
5943
6467
|
* @param {number} [outputOffset]
|
|
5944
6468
|
* @param {*} [options] Override http request option.
|
|
5945
6469
|
* @throws {RequiredError}
|
|
5946
6470
|
*/
|
|
5947
|
-
getProfinetIOsFromFile(cell: string, inputOffset?: number, outputOffset?: number, options?: RawAxiosRequestConfig): AxiosPromise<string>;
|
|
6471
|
+
getProfinetIOsFromFile(cell: string, offsets?: Array<ProfinetSlotOffset>, inputOffset?: number, outputOffset?: number, options?: RawAxiosRequestConfig): AxiosPromise<string>;
|
|
5948
6472
|
/**
|
|
5949
6473
|
* **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
6474
|
* @summary List Descriptions
|
|
@@ -6142,15 +6666,16 @@ declare class BUSInputsOutputsApi extends BaseAPI {
|
|
|
6142
6666
|
*/
|
|
6143
6667
|
getProfinetGSDML(cell: string, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<string, any, {}>>;
|
|
6144
6668
|
/**
|
|
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
|
|
6669
|
+
* **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
6670
|
* @summary PROFINET Inputs/Outputs to File
|
|
6147
6671
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
6672
|
+
* @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
6673
|
* @param {number} [inputOffset]
|
|
6149
6674
|
* @param {number} [outputOffset]
|
|
6150
6675
|
* @param {*} [options] Override http request option.
|
|
6151
6676
|
* @throws {RequiredError}
|
|
6152
6677
|
*/
|
|
6153
|
-
getProfinetIOsFromFile(cell: string, inputOffset?: number, outputOffset?: number, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<string, any, {}>>;
|
|
6678
|
+
getProfinetIOsFromFile(cell: string, offsets?: Array<ProfinetSlotOffset>, inputOffset?: number, outputOffset?: number, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<string, any, {}>>;
|
|
6154
6679
|
/**
|
|
6155
6680
|
* **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
6681
|
* @summary List Descriptions
|
|
@@ -6234,7 +6759,7 @@ declare const CellApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
6234
6759
|
*/
|
|
6235
6760
|
deployCell: (cell: Cell, completionTimeout?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
6236
6761
|
/**
|
|
6237
|
-
* **Required permissions:** `
|
|
6762
|
+
* **Required permissions:** `can_access_system` - View system status and metadata ___ List all cell resources.
|
|
6238
6763
|
* @summary Configuration
|
|
6239
6764
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
6240
6765
|
* @param {*} [options] Override http request option.
|
|
@@ -6317,7 +6842,7 @@ declare const CellApiFp: (configuration?: Configuration) => {
|
|
|
6317
6842
|
*/
|
|
6318
6843
|
deployCell(cell: Cell, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
6319
6844
|
/**
|
|
6320
|
-
* **Required permissions:** `
|
|
6845
|
+
* **Required permissions:** `can_access_system` - View system status and metadata ___ List all cell resources.
|
|
6321
6846
|
* @summary Configuration
|
|
6322
6847
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
6323
6848
|
* @param {*} [options] Override http request option.
|
|
@@ -6400,7 +6925,7 @@ declare const CellApiFactory: (configuration?: Configuration, basePath?: string,
|
|
|
6400
6925
|
*/
|
|
6401
6926
|
deployCell(cell: Cell, completionTimeout?: number, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
6402
6927
|
/**
|
|
6403
|
-
* **Required permissions:** `
|
|
6928
|
+
* **Required permissions:** `can_access_system` - View system status and metadata ___ List all cell resources.
|
|
6404
6929
|
* @summary Configuration
|
|
6405
6930
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
6406
6931
|
* @param {*} [options] Override http request option.
|
|
@@ -6483,7 +7008,7 @@ declare class CellApi extends BaseAPI {
|
|
|
6483
7008
|
*/
|
|
6484
7009
|
deployCell(cell: Cell, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<void, any, {}>>;
|
|
6485
7010
|
/**
|
|
6486
|
-
* **Required permissions:** `
|
|
7011
|
+
* **Required permissions:** `can_access_system` - View system status and metadata ___ List all cell resources.
|
|
6487
7012
|
* @summary Configuration
|
|
6488
7013
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
6489
7014
|
* @param {*} [options] Override http request option.
|
|
@@ -7344,16 +7869,6 @@ declare const JoggingApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
7344
7869
|
* @throws {RequiredError}
|
|
7345
7870
|
*/
|
|
7346
7871
|
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
7872
|
};
|
|
7358
7873
|
/**
|
|
7359
7874
|
* JoggingApi - functional programming interface
|
|
@@ -7369,16 +7884,6 @@ declare const JoggingApiFp: (configuration?: Configuration) => {
|
|
|
7369
7884
|
* @throws {RequiredError}
|
|
7370
7885
|
*/
|
|
7371
7886
|
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
7887
|
};
|
|
7383
7888
|
/**
|
|
7384
7889
|
* JoggingApi - factory interface
|
|
@@ -7394,16 +7899,6 @@ declare const JoggingApiFactory: (configuration?: Configuration, basePath?: stri
|
|
|
7394
7899
|
* @throws {RequiredError}
|
|
7395
7900
|
*/
|
|
7396
7901
|
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
7902
|
};
|
|
7408
7903
|
/**
|
|
7409
7904
|
* JoggingApi - object-oriented interface
|
|
@@ -7419,16 +7914,6 @@ declare class JoggingApi extends BaseAPI {
|
|
|
7419
7914
|
* @throws {RequiredError}
|
|
7420
7915
|
*/
|
|
7421
7916
|
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
7917
|
}
|
|
7433
7918
|
/**
|
|
7434
7919
|
* KinematicsApi - axios parameter creator
|
|
@@ -7461,6 +7946,15 @@ declare const KinematicsApiAxiosParamCreator: (configuration?: Configuration) =>
|
|
|
7461
7946
|
* @throws {RequiredError}
|
|
7462
7947
|
*/
|
|
7463
7948
|
forwardKinematics: (cell: string, forwardKinematicsRequest: ForwardKinematicsRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
7949
|
+
/**
|
|
7950
|
+
* **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.
|
|
7951
|
+
* @summary Get kinematic configuration
|
|
7952
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
7953
|
+
* @param {GetKinematicConfigurationRequest} getKinematicConfigurationRequest
|
|
7954
|
+
* @param {*} [options] Override http request option.
|
|
7955
|
+
* @throws {RequiredError}
|
|
7956
|
+
*/
|
|
7957
|
+
getKinematicConfiguration: (cell: string, getKinematicConfigurationRequest: GetKinematicConfigurationRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
7464
7958
|
/**
|
|
7465
7959
|
* **Required permissions:** `can_plan_motion` - Plan robot motions and trajectories ___ Returns the reachable joint positions for a list of given poses.
|
|
7466
7960
|
* @summary Inverse kinematics
|
|
@@ -7511,6 +8005,15 @@ declare const KinematicsApiFp: (configuration?: Configuration) => {
|
|
|
7511
8005
|
* @throws {RequiredError}
|
|
7512
8006
|
*/
|
|
7513
8007
|
forwardKinematics(cell: string, forwardKinematicsRequest: ForwardKinematicsRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ForwardKinematicsResponse>>;
|
|
8008
|
+
/**
|
|
8009
|
+
* **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.
|
|
8010
|
+
* @summary Get kinematic configuration
|
|
8011
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
8012
|
+
* @param {GetKinematicConfigurationRequest} getKinematicConfigurationRequest
|
|
8013
|
+
* @param {*} [options] Override http request option.
|
|
8014
|
+
* @throws {RequiredError}
|
|
8015
|
+
*/
|
|
8016
|
+
getKinematicConfiguration(cell: string, getKinematicConfigurationRequest: GetKinematicConfigurationRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetKinematicConfigurationResponse>>;
|
|
7514
8017
|
/**
|
|
7515
8018
|
* **Required permissions:** `can_plan_motion` - Plan robot motions and trajectories ___ Returns the reachable joint positions for a list of given poses.
|
|
7516
8019
|
* @summary Inverse kinematics
|
|
@@ -7561,6 +8064,15 @@ declare const KinematicsApiFactory: (configuration?: Configuration, basePath?: s
|
|
|
7561
8064
|
* @throws {RequiredError}
|
|
7562
8065
|
*/
|
|
7563
8066
|
forwardKinematics(cell: string, forwardKinematicsRequest: ForwardKinematicsRequest, options?: RawAxiosRequestConfig): AxiosPromise<ForwardKinematicsResponse>;
|
|
8067
|
+
/**
|
|
8068
|
+
* **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.
|
|
8069
|
+
* @summary Get kinematic configuration
|
|
8070
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
8071
|
+
* @param {GetKinematicConfigurationRequest} getKinematicConfigurationRequest
|
|
8072
|
+
* @param {*} [options] Override http request option.
|
|
8073
|
+
* @throws {RequiredError}
|
|
8074
|
+
*/
|
|
8075
|
+
getKinematicConfiguration(cell: string, getKinematicConfigurationRequest: GetKinematicConfigurationRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetKinematicConfigurationResponse>;
|
|
7564
8076
|
/**
|
|
7565
8077
|
* **Required permissions:** `can_plan_motion` - Plan robot motions and trajectories ___ Returns the reachable joint positions for a list of given poses.
|
|
7566
8078
|
* @summary Inverse kinematics
|
|
@@ -7611,6 +8123,15 @@ declare class KinematicsApi extends BaseAPI {
|
|
|
7611
8123
|
* @throws {RequiredError}
|
|
7612
8124
|
*/
|
|
7613
8125
|
forwardKinematics(cell: string, forwardKinematicsRequest: ForwardKinematicsRequest, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<ForwardKinematicsResponse, any, {}>>;
|
|
8126
|
+
/**
|
|
8127
|
+
* **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.
|
|
8128
|
+
* @summary Get kinematic configuration
|
|
8129
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
8130
|
+
* @param {GetKinematicConfigurationRequest} getKinematicConfigurationRequest
|
|
8131
|
+
* @param {*} [options] Override http request option.
|
|
8132
|
+
* @throws {RequiredError}
|
|
8133
|
+
*/
|
|
8134
|
+
getKinematicConfiguration(cell: string, getKinematicConfigurationRequest: GetKinematicConfigurationRequest, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<GetKinematicConfigurationResponse, any, {}>>;
|
|
7614
8135
|
/**
|
|
7615
8136
|
* **Required permissions:** `can_plan_motion` - Plan robot motions and trajectories ___ Returns the reachable joint positions for a list of given poses.
|
|
7616
8137
|
* @summary Inverse kinematics
|
|
@@ -7932,7 +8453,7 @@ declare const MotionGroupModelsApiAxiosParamCreator: (configuration?: Configurat
|
|
|
7932
8453
|
*/
|
|
7933
8454
|
copyMotionGroupModel: (motionGroupModel: string, copyMotionGroupModelRequest: CopyMotionGroupModelRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
7934
8455
|
/**
|
|
7935
|
-
* **Required permissions:** `can_access_system` - View system status and metadata ___ Deletes a custom motion group model. Only custom models
|
|
8456
|
+
* **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
8457
|
* @summary Delete Motion Group Model
|
|
7937
8458
|
* @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
8459
|
* @param {*} [options] Override http request option.
|
|
@@ -7947,6 +8468,14 @@ declare const MotionGroupModelsApiAxiosParamCreator: (configuration?: Configurat
|
|
|
7947
8468
|
* @throws {RequiredError}
|
|
7948
8469
|
*/
|
|
7949
8470
|
exportMotionGroupModel: (motionGroupModel: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
8471
|
+
/**
|
|
8472
|
+
* **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.
|
|
8473
|
+
* @summary Get Configuration for Motion Group
|
|
8474
|
+
* @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).
|
|
8475
|
+
* @param {*} [options] Override http request option.
|
|
8476
|
+
* @throws {RequiredError}
|
|
8477
|
+
*/
|
|
8478
|
+
getConfigurationForMotionGroup: (motionGroupModel: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
7950
8479
|
/**
|
|
7951
8480
|
* **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
8481
|
* @summary Get Collision Model
|
|
@@ -8002,6 +8531,13 @@ declare const MotionGroupModelsApiAxiosParamCreator: (configuration?: Configurat
|
|
|
8002
8531
|
* @throws {RequiredError}
|
|
8003
8532
|
*/
|
|
8004
8533
|
getMotionGroupModels: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
8534
|
+
/**
|
|
8535
|
+
* **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.
|
|
8536
|
+
* @summary Motion Group Model Catalog
|
|
8537
|
+
* @param {*} [options] Override http request option.
|
|
8538
|
+
* @throws {RequiredError}
|
|
8539
|
+
*/
|
|
8540
|
+
getMotionGroupModelsCatalog: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
8005
8541
|
/**
|
|
8006
8542
|
* **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
8543
|
* @summary Download USD Model
|
|
@@ -8033,7 +8569,7 @@ declare const MotionGroupModelsApiFp: (configuration?: Configuration) => {
|
|
|
8033
8569
|
*/
|
|
8034
8570
|
copyMotionGroupModel(motionGroupModel: string, copyMotionGroupModelRequest: CopyMotionGroupModelRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MotionGroupModelDescription>>;
|
|
8035
8571
|
/**
|
|
8036
|
-
* **Required permissions:** `can_access_system` - View system status and metadata ___ Deletes a custom motion group model. Only custom models
|
|
8572
|
+
* **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
8573
|
* @summary Delete Motion Group Model
|
|
8038
8574
|
* @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
8575
|
* @param {*} [options] Override http request option.
|
|
@@ -8048,6 +8584,14 @@ declare const MotionGroupModelsApiFp: (configuration?: Configuration) => {
|
|
|
8048
8584
|
* @throws {RequiredError}
|
|
8049
8585
|
*/
|
|
8050
8586
|
exportMotionGroupModel(motionGroupModel: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<File>>;
|
|
8587
|
+
/**
|
|
8588
|
+
* **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.
|
|
8589
|
+
* @summary Get Configuration for Motion Group
|
|
8590
|
+
* @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).
|
|
8591
|
+
* @param {*} [options] Override http request option.
|
|
8592
|
+
* @throws {RequiredError}
|
|
8593
|
+
*/
|
|
8594
|
+
getConfigurationForMotionGroup(motionGroupModel: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MotionGroupConfiguration>>;
|
|
8051
8595
|
/**
|
|
8052
8596
|
* **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
8597
|
* @summary Get Collision Model
|
|
@@ -8105,6 +8649,13 @@ declare const MotionGroupModelsApiFp: (configuration?: Configuration) => {
|
|
|
8105
8649
|
* @throws {RequiredError}
|
|
8106
8650
|
*/
|
|
8107
8651
|
getMotionGroupModels(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<string>>>;
|
|
8652
|
+
/**
|
|
8653
|
+
* **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.
|
|
8654
|
+
* @summary Motion Group Model Catalog
|
|
8655
|
+
* @param {*} [options] Override http request option.
|
|
8656
|
+
* @throws {RequiredError}
|
|
8657
|
+
*/
|
|
8658
|
+
getMotionGroupModelsCatalog(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<MotionGroupModelCatalog>>>;
|
|
8108
8659
|
/**
|
|
8109
8660
|
* **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
8661
|
* @summary Download USD Model
|
|
@@ -8136,7 +8687,7 @@ declare const MotionGroupModelsApiFactory: (configuration?: Configuration, baseP
|
|
|
8136
8687
|
*/
|
|
8137
8688
|
copyMotionGroupModel(motionGroupModel: string, copyMotionGroupModelRequest: CopyMotionGroupModelRequest, options?: RawAxiosRequestConfig): AxiosPromise<MotionGroupModelDescription>;
|
|
8138
8689
|
/**
|
|
8139
|
-
* **Required permissions:** `can_access_system` - View system status and metadata ___ Deletes a custom motion group model. Only custom models
|
|
8690
|
+
* **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
8691
|
* @summary Delete Motion Group Model
|
|
8141
8692
|
* @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
8693
|
* @param {*} [options] Override http request option.
|
|
@@ -8151,6 +8702,14 @@ declare const MotionGroupModelsApiFactory: (configuration?: Configuration, baseP
|
|
|
8151
8702
|
* @throws {RequiredError}
|
|
8152
8703
|
*/
|
|
8153
8704
|
exportMotionGroupModel(motionGroupModel: string, options?: RawAxiosRequestConfig): AxiosPromise<File>;
|
|
8705
|
+
/**
|
|
8706
|
+
* **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.
|
|
8707
|
+
* @summary Get Configuration for Motion Group
|
|
8708
|
+
* @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).
|
|
8709
|
+
* @param {*} [options] Override http request option.
|
|
8710
|
+
* @throws {RequiredError}
|
|
8711
|
+
*/
|
|
8712
|
+
getConfigurationForMotionGroup(motionGroupModel: string, options?: RawAxiosRequestConfig): AxiosPromise<MotionGroupConfiguration>;
|
|
8154
8713
|
/**
|
|
8155
8714
|
* **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
8715
|
* @summary Get Collision Model
|
|
@@ -8208,6 +8767,13 @@ declare const MotionGroupModelsApiFactory: (configuration?: Configuration, baseP
|
|
|
8208
8767
|
* @throws {RequiredError}
|
|
8209
8768
|
*/
|
|
8210
8769
|
getMotionGroupModels(options?: RawAxiosRequestConfig): AxiosPromise<Array<string>>;
|
|
8770
|
+
/**
|
|
8771
|
+
* **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.
|
|
8772
|
+
* @summary Motion Group Model Catalog
|
|
8773
|
+
* @param {*} [options] Override http request option.
|
|
8774
|
+
* @throws {RequiredError}
|
|
8775
|
+
*/
|
|
8776
|
+
getMotionGroupModelsCatalog(options?: RawAxiosRequestConfig): AxiosPromise<Array<MotionGroupModelCatalog>>;
|
|
8211
8777
|
/**
|
|
8212
8778
|
* **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
8779
|
* @summary Download USD Model
|
|
@@ -8239,7 +8805,7 @@ declare class MotionGroupModelsApi extends BaseAPI {
|
|
|
8239
8805
|
*/
|
|
8240
8806
|
copyMotionGroupModel(motionGroupModel: string, copyMotionGroupModelRequest: CopyMotionGroupModelRequest, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<MotionGroupModelDescription, any, {}>>;
|
|
8241
8807
|
/**
|
|
8242
|
-
* **Required permissions:** `can_access_system` - View system status and metadata ___ Deletes a custom motion group model. Only custom models
|
|
8808
|
+
* **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
8809
|
* @summary Delete Motion Group Model
|
|
8244
8810
|
* @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
8811
|
* @param {*} [options] Override http request option.
|
|
@@ -8254,6 +8820,14 @@ declare class MotionGroupModelsApi extends BaseAPI {
|
|
|
8254
8820
|
* @throws {RequiredError}
|
|
8255
8821
|
*/
|
|
8256
8822
|
exportMotionGroupModel(motionGroupModel: string, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<File, any, {}>>;
|
|
8823
|
+
/**
|
|
8824
|
+
* **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.
|
|
8825
|
+
* @summary Get Configuration for Motion Group
|
|
8826
|
+
* @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).
|
|
8827
|
+
* @param {*} [options] Override http request option.
|
|
8828
|
+
* @throws {RequiredError}
|
|
8829
|
+
*/
|
|
8830
|
+
getConfigurationForMotionGroup(motionGroupModel: string, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<MotionGroupConfiguration, any, {}>>;
|
|
8257
8831
|
/**
|
|
8258
8832
|
* **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
8833
|
* @summary Get Collision Model
|
|
@@ -8311,6 +8885,13 @@ declare class MotionGroupModelsApi extends BaseAPI {
|
|
|
8311
8885
|
* @throws {RequiredError}
|
|
8312
8886
|
*/
|
|
8313
8887
|
getMotionGroupModels(options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<string[], any, {}>>;
|
|
8888
|
+
/**
|
|
8889
|
+
* **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.
|
|
8890
|
+
* @summary Motion Group Model Catalog
|
|
8891
|
+
* @param {*} [options] Override http request option.
|
|
8892
|
+
* @throws {RequiredError}
|
|
8893
|
+
*/
|
|
8894
|
+
getMotionGroupModelsCatalog(options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<MotionGroupModelCatalog[], any, {}>>;
|
|
8314
8895
|
/**
|
|
8315
8896
|
* **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
8897
|
* @summary Download USD Model
|
|
@@ -8349,6 +8930,13 @@ declare const NOVACloudApiAxiosParamCreator: (configuration?: Configuration) =>
|
|
|
8349
8930
|
* @throws {RequiredError}
|
|
8350
8931
|
*/
|
|
8351
8932
|
disconnectFromNovaCloud: (completionTimeout?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
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<RequestArgs>;
|
|
8352
8940
|
/**
|
|
8353
8941
|
* **Required permissions:** `can_access_system` - View system status and metadata ___ <!-- theme: danger --> > **Experimental** Get the current NOVA Cloud connection config for this instance.
|
|
8354
8942
|
* @summary Get Connection Config
|
|
@@ -8378,6 +8966,13 @@ declare const NOVACloudApiFp: (configuration?: Configuration) => {
|
|
|
8378
8966
|
* @throws {RequiredError}
|
|
8379
8967
|
*/
|
|
8380
8968
|
disconnectFromNovaCloud(completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => 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): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CloudStatus>>;
|
|
8381
8976
|
/**
|
|
8382
8977
|
* **Required permissions:** `can_access_system` - View system status and metadata ___ <!-- theme: danger --> > **Experimental** Get the current NOVA Cloud connection config for this instance.
|
|
8383
8978
|
* @summary Get Connection Config
|
|
@@ -8407,6 +9002,13 @@ declare const NOVACloudApiFactory: (configuration?: Configuration, basePath?: st
|
|
|
8407
9002
|
* @throws {RequiredError}
|
|
8408
9003
|
*/
|
|
8409
9004
|
disconnectFromNovaCloud(completionTimeout?: number, options?: RawAxiosRequestConfig): AxiosPromise<CloudDisconnectionStatusDisconnected>;
|
|
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): AxiosPromise<CloudStatus>;
|
|
8410
9012
|
/**
|
|
8411
9013
|
* **Required permissions:** `can_access_system` - View system status and metadata ___ <!-- theme: danger --> > **Experimental** Get the current NOVA Cloud connection config for this instance.
|
|
8412
9014
|
* @summary Get Connection Config
|
|
@@ -8436,6 +9038,13 @@ declare class NOVACloudApi extends BaseAPI {
|
|
|
8436
9038
|
* @throws {RequiredError}
|
|
8437
9039
|
*/
|
|
8438
9040
|
disconnectFromNovaCloud(completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<CloudDisconnectionStatusDisconnected, any, {}>>;
|
|
9041
|
+
/**
|
|
9042
|
+
* **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.
|
|
9043
|
+
* @summary Get Connection Status
|
|
9044
|
+
* @param {*} [options] Override http request option.
|
|
9045
|
+
* @throws {RequiredError}
|
|
9046
|
+
*/
|
|
9047
|
+
getCloudStatus(options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<CloudStatus, any, {}>>;
|
|
8439
9048
|
/**
|
|
8440
9049
|
* **Required permissions:** `can_access_system` - View system status and metadata ___ <!-- theme: danger --> > **Experimental** Get the current NOVA Cloud connection config for this instance.
|
|
8441
9050
|
* @summary Get Connection Config
|
|
@@ -9824,15 +10433,15 @@ declare const SystemApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
9824
10433
|
*/
|
|
9825
10434
|
checkNovaVersionUpdate: (channel: ReleaseChannel, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
9826
10435
|
/**
|
|
9827
|
-
* **Required permissions:** `can_access_system` - View system status and metadata ___
|
|
10436
|
+
* **Required permissions:** `can_access_system` - View system status and metadata ___ Runs an ARP scan on the target interface and returns all discovered devices.
|
|
9828
10437
|
* @summary Get ARP-Scan
|
|
9829
|
-
* @param {string}
|
|
9830
|
-
* @param {string}
|
|
10438
|
+
* @param {string} _interface
|
|
10439
|
+
* @param {string} cidr
|
|
9831
10440
|
* @param {number} [timeout]
|
|
9832
10441
|
* @param {*} [options] Override http request option.
|
|
9833
10442
|
* @throws {RequiredError}
|
|
9834
10443
|
*/
|
|
9835
|
-
getArpScan: (_interface
|
|
10444
|
+
getArpScan: (_interface: string, cidr: string, timeout?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
9836
10445
|
/**
|
|
9837
10446
|
* **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
10447
|
* @summary Retrieve Backup Status
|
|
@@ -9849,7 +10458,7 @@ declare const SystemApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
9849
10458
|
*/
|
|
9850
10459
|
getDiagnosePackage: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
9851
10460
|
/**
|
|
9852
|
-
* **Required permissions:** `can_access_system` - View system status and metadata ___
|
|
10461
|
+
* **Required permissions:** `can_access_system` - View system status and metadata ___ Lists all managed network interfaces available for controller connections and ARP scanning.
|
|
9853
10462
|
* @summary Network Interfaces
|
|
9854
10463
|
* @param {*} [options] Override http request option.
|
|
9855
10464
|
* @throws {RequiredError}
|
|
@@ -9925,15 +10534,15 @@ declare const SystemApiFp: (configuration?: Configuration) => {
|
|
|
9925
10534
|
*/
|
|
9926
10535
|
checkNovaVersionUpdate(channel: ReleaseChannel, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<string>>;
|
|
9927
10536
|
/**
|
|
9928
|
-
* **Required permissions:** `can_access_system` - View system status and metadata ___
|
|
10537
|
+
* **Required permissions:** `can_access_system` - View system status and metadata ___ Runs an ARP scan on the target interface and returns all discovered devices.
|
|
9929
10538
|
* @summary Get ARP-Scan
|
|
9930
|
-
* @param {string}
|
|
9931
|
-
* @param {string}
|
|
10539
|
+
* @param {string} _interface
|
|
10540
|
+
* @param {string} cidr
|
|
9932
10541
|
* @param {number} [timeout]
|
|
9933
10542
|
* @param {*} [options] Override http request option.
|
|
9934
10543
|
* @throws {RequiredError}
|
|
9935
10544
|
*/
|
|
9936
|
-
getArpScan(_interface
|
|
10545
|
+
getArpScan(_interface: string, cidr: string, timeout?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<NetworkDevice>>>;
|
|
9937
10546
|
/**
|
|
9938
10547
|
* **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
10548
|
* @summary Retrieve Backup Status
|
|
@@ -9950,7 +10559,7 @@ declare const SystemApiFp: (configuration?: Configuration) => {
|
|
|
9950
10559
|
*/
|
|
9951
10560
|
getDiagnosePackage(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<File>>;
|
|
9952
10561
|
/**
|
|
9953
|
-
* **Required permissions:** `can_access_system` - View system status and metadata ___
|
|
10562
|
+
* **Required permissions:** `can_access_system` - View system status and metadata ___ Lists all managed network interfaces available for controller connections and ARP scanning.
|
|
9954
10563
|
* @summary Network Interfaces
|
|
9955
10564
|
* @param {*} [options] Override http request option.
|
|
9956
10565
|
* @throws {RequiredError}
|
|
@@ -10026,15 +10635,15 @@ declare const SystemApiFactory: (configuration?: Configuration, basePath?: strin
|
|
|
10026
10635
|
*/
|
|
10027
10636
|
checkNovaVersionUpdate(channel: ReleaseChannel, options?: RawAxiosRequestConfig): AxiosPromise<string>;
|
|
10028
10637
|
/**
|
|
10029
|
-
* **Required permissions:** `can_access_system` - View system status and metadata ___
|
|
10638
|
+
* **Required permissions:** `can_access_system` - View system status and metadata ___ Runs an ARP scan on the target interface and returns all discovered devices.
|
|
10030
10639
|
* @summary Get ARP-Scan
|
|
10031
|
-
* @param {string}
|
|
10032
|
-
* @param {string}
|
|
10640
|
+
* @param {string} _interface
|
|
10641
|
+
* @param {string} cidr
|
|
10033
10642
|
* @param {number} [timeout]
|
|
10034
10643
|
* @param {*} [options] Override http request option.
|
|
10035
10644
|
* @throws {RequiredError}
|
|
10036
10645
|
*/
|
|
10037
|
-
getArpScan(_interface
|
|
10646
|
+
getArpScan(_interface: string, cidr: string, timeout?: number, options?: RawAxiosRequestConfig): AxiosPromise<Array<NetworkDevice>>;
|
|
10038
10647
|
/**
|
|
10039
10648
|
* **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
10649
|
* @summary Retrieve Backup Status
|
|
@@ -10051,7 +10660,7 @@ declare const SystemApiFactory: (configuration?: Configuration, basePath?: strin
|
|
|
10051
10660
|
*/
|
|
10052
10661
|
getDiagnosePackage(options?: RawAxiosRequestConfig): AxiosPromise<File>;
|
|
10053
10662
|
/**
|
|
10054
|
-
* **Required permissions:** `can_access_system` - View system status and metadata ___
|
|
10663
|
+
* **Required permissions:** `can_access_system` - View system status and metadata ___ Lists all managed network interfaces available for controller connections and ARP scanning.
|
|
10055
10664
|
* @summary Network Interfaces
|
|
10056
10665
|
* @param {*} [options] Override http request option.
|
|
10057
10666
|
* @throws {RequiredError}
|
|
@@ -10127,15 +10736,15 @@ declare class SystemApi extends BaseAPI {
|
|
|
10127
10736
|
*/
|
|
10128
10737
|
checkNovaVersionUpdate(channel: ReleaseChannel, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<string, any, {}>>;
|
|
10129
10738
|
/**
|
|
10130
|
-
* **Required permissions:** `can_access_system` - View system status and metadata ___
|
|
10739
|
+
* **Required permissions:** `can_access_system` - View system status and metadata ___ Runs an ARP scan on the target interface and returns all discovered devices.
|
|
10131
10740
|
* @summary Get ARP-Scan
|
|
10132
|
-
* @param {string}
|
|
10133
|
-
* @param {string}
|
|
10741
|
+
* @param {string} _interface
|
|
10742
|
+
* @param {string} cidr
|
|
10134
10743
|
* @param {number} [timeout]
|
|
10135
10744
|
* @param {*} [options] Override http request option.
|
|
10136
10745
|
* @throws {RequiredError}
|
|
10137
10746
|
*/
|
|
10138
|
-
getArpScan(_interface
|
|
10747
|
+
getArpScan(_interface: string, cidr: string, timeout?: number, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<NetworkDevice[], any, {}>>;
|
|
10139
10748
|
/**
|
|
10140
10749
|
* **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
10750
|
* @summary Retrieve Backup Status
|
|
@@ -10152,7 +10761,7 @@ declare class SystemApi extends BaseAPI {
|
|
|
10152
10761
|
*/
|
|
10153
10762
|
getDiagnosePackage(options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<File, any, {}>>;
|
|
10154
10763
|
/**
|
|
10155
|
-
* **Required permissions:** `can_access_system` - View system status and metadata ___
|
|
10764
|
+
* **Required permissions:** `can_access_system` - View system status and metadata ___ Lists all managed network interfaces available for controller connections and ARP scanning.
|
|
10156
10765
|
* @summary Network Interfaces
|
|
10157
10766
|
* @param {*} [options] Override http request option.
|
|
10158
10767
|
* @throws {RequiredError}
|
|
@@ -11841,4 +12450,4 @@ declare class VirtualControllerInputsOutputsApi extends BaseAPI {
|
|
|
11841
12450
|
setIOValues(cell: string, controller: string, iOValue: Array<IOValue>, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<void, any, {}>>;
|
|
11842
12451
|
}
|
|
11843
12452
|
//#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 };
|
|
12453
|
+
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, TechmanController, TechmanControllerKindEnum, TechmanControllerRtrs, 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 };
|