@wandelbots/nova-api 26.5.0-dev.9 → 26.6.0-dev.2
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 +485 -275
- package/dist/v2/index.d.cts +449 -5
- package/dist/v2/index.d.ts +449 -5
- package/dist/v2/index.js +241 -40
- package/package.json +1 -1
package/dist/v2/index.d.cts
CHANGED
|
@@ -6,7 +6,7 @@ import { AxiosInstance, AxiosPromise, RawAxiosRequestConfig } from "axios";
|
|
|
6
6
|
* Wandelbots NOVA API
|
|
7
7
|
* Interact with robots in an easy and intuitive way.
|
|
8
8
|
*
|
|
9
|
-
* The version of the OpenAPI document: 2.5.0
|
|
9
|
+
* The version of the OpenAPI document: 2.5.0
|
|
10
10
|
*
|
|
11
11
|
*
|
|
12
12
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -700,6 +700,7 @@ interface CartesianLimits {
|
|
|
700
700
|
* 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
701
|
*/
|
|
702
702
|
interface Cell {
|
|
703
|
+
[key: string]: any;
|
|
703
704
|
/**
|
|
704
705
|
* A unique name for the cell used as an identifier for addressing the cell in all API calls. It must be a valid k8s label name as defined by [RFC 1123](https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#dns-label-names).
|
|
705
706
|
*/
|
|
@@ -910,6 +911,32 @@ type ColliderShape = {
|
|
|
910
911
|
} & RectangularCapsule | {
|
|
911
912
|
shape_type: 'sphere';
|
|
912
913
|
} & Sphere;
|
|
914
|
+
/**
|
|
915
|
+
* An inline Collider object wrapped for discriminator support.
|
|
916
|
+
*/
|
|
917
|
+
interface ColliderValue {
|
|
918
|
+
/**
|
|
919
|
+
* Discriminator value indicating an inline value.
|
|
920
|
+
*/
|
|
921
|
+
'source': ColliderValueSourceEnum;
|
|
922
|
+
/**
|
|
923
|
+
* The inline Collider definition.
|
|
924
|
+
*/
|
|
925
|
+
'collider': Collider;
|
|
926
|
+
}
|
|
927
|
+
declare const ColliderValueSourceEnum: {
|
|
928
|
+
readonly Value: "value";
|
|
929
|
+
};
|
|
930
|
+
type ColliderValueSourceEnum = typeof ColliderValueSourceEnum[keyof typeof ColliderValueSourceEnum];
|
|
931
|
+
/**
|
|
932
|
+
* @type ColliderValueOrKey
|
|
933
|
+
* Either an inline Collider object or a storage key referencing a stored Collider. Discriminated by the \"source\" property.
|
|
934
|
+
*/
|
|
935
|
+
type ColliderValueOrKey = {
|
|
936
|
+
source: 'key';
|
|
937
|
+
} & StorageKey | {
|
|
938
|
+
source: 'value';
|
|
939
|
+
} & ColliderValue;
|
|
913
940
|
interface Collision {
|
|
914
941
|
'id_of_a'?: string;
|
|
915
942
|
'id_of_b'?: string;
|
|
@@ -986,6 +1013,46 @@ interface CollisionSetup {
|
|
|
986
1013
|
*/
|
|
987
1014
|
'self_collision_detection'?: boolean;
|
|
988
1015
|
}
|
|
1016
|
+
/**
|
|
1017
|
+
* An inline collision setup wrapped for discriminator support. Colliders, tool, and link_chain can each be either inline values or storage key references.
|
|
1018
|
+
*/
|
|
1019
|
+
interface CollisionSetupValue {
|
|
1020
|
+
/**
|
|
1021
|
+
* Discriminator value indicating an inline value.
|
|
1022
|
+
*/
|
|
1023
|
+
'source': CollisionSetupValueSourceEnum;
|
|
1024
|
+
/**
|
|
1025
|
+
* A dictionary of colliders where each value is either an inline Collider object or a string key referencing a stored Collider.
|
|
1026
|
+
*/
|
|
1027
|
+
'colliders'?: {
|
|
1028
|
+
[key: string]: ColliderValueOrKey;
|
|
1029
|
+
};
|
|
1030
|
+
/**
|
|
1031
|
+
* The shape of the motion group links. Either an inline LinkChain or a store key.
|
|
1032
|
+
*/
|
|
1033
|
+
'link_chain'?: LinkChainValueOrKey;
|
|
1034
|
+
/**
|
|
1035
|
+
* Shape of the tool. Either an inline tool collider or a store key.
|
|
1036
|
+
*/
|
|
1037
|
+
'tool'?: ToolValueOrKey;
|
|
1038
|
+
/**
|
|
1039
|
+
* If true, self-collision detection is enabled. Default is true.
|
|
1040
|
+
*/
|
|
1041
|
+
'self_collision_detection'?: boolean;
|
|
1042
|
+
}
|
|
1043
|
+
declare const CollisionSetupValueSourceEnum: {
|
|
1044
|
+
readonly Value: "value";
|
|
1045
|
+
};
|
|
1046
|
+
type CollisionSetupValueSourceEnum = typeof CollisionSetupValueSourceEnum[keyof typeof CollisionSetupValueSourceEnum];
|
|
1047
|
+
/**
|
|
1048
|
+
* @type CollisionSetupValueOrKey
|
|
1049
|
+
* Either an inline collision setup or a storage key referencing a complete stored CollisionSetup. Discriminated by the \"source\" property.
|
|
1050
|
+
*/
|
|
1051
|
+
type CollisionSetupValueOrKey = {
|
|
1052
|
+
source: 'key';
|
|
1053
|
+
} & StorageKey | {
|
|
1054
|
+
source: 'value';
|
|
1055
|
+
} & CollisionSetupValue;
|
|
989
1056
|
/**
|
|
990
1057
|
* Comparator for the comparison of two values. The comparator is used to compare two values and return a boolean result. The default comparator is unknown.
|
|
991
1058
|
*/
|
|
@@ -1332,6 +1399,29 @@ declare const DirectionConstraintConstraintNameEnum: {
|
|
|
1332
1399
|
readonly DirectionConstraint: "DirectionConstraint";
|
|
1333
1400
|
};
|
|
1334
1401
|
type DirectionConstraintConstraintNameEnum = typeof DirectionConstraintConstraintNameEnum[keyof typeof DirectionConstraintConstraintNameEnum];
|
|
1402
|
+
interface DynamicModel {
|
|
1403
|
+
/**
|
|
1404
|
+
* Mass of the link in kg
|
|
1405
|
+
*/
|
|
1406
|
+
'mass'?: number;
|
|
1407
|
+
/**
|
|
1408
|
+
* Center of mass coordinates [x, y, z] in mm
|
|
1409
|
+
*/
|
|
1410
|
+
'center_of_mass'?: Array<number>;
|
|
1411
|
+
'inertia'?: InertiaTensor;
|
|
1412
|
+
/**
|
|
1413
|
+
* Actuator moment of inertia in kg⋅mm²
|
|
1414
|
+
*/
|
|
1415
|
+
'actuator_inertia'?: number;
|
|
1416
|
+
/**
|
|
1417
|
+
* Static friction coefficient
|
|
1418
|
+
*/
|
|
1419
|
+
'static_friction'?: number;
|
|
1420
|
+
/**
|
|
1421
|
+
* Viscous friction coefficient
|
|
1422
|
+
*/
|
|
1423
|
+
'viscous_friction'?: number;
|
|
1424
|
+
}
|
|
1335
1425
|
/**
|
|
1336
1426
|
* A reference joint position (start or target) violates the direction constraint.
|
|
1337
1427
|
*/
|
|
@@ -1486,6 +1576,24 @@ type ExecuteTrajectoryResponse = {
|
|
|
1486
1576
|
} & PlaybackSpeedResponse | {
|
|
1487
1577
|
kind: 'START_RECEIVED';
|
|
1488
1578
|
} & StartMovementResponse;
|
|
1579
|
+
/**
|
|
1580
|
+
* @type ExecuteWaypointJoggingRequest
|
|
1581
|
+
*/
|
|
1582
|
+
type ExecuteWaypointJoggingRequest = InitializeJoggingRequest | JointWaypointsRequest | PauseJoggingRequest | PoseWaypointsRequest;
|
|
1583
|
+
/**
|
|
1584
|
+
* @type ExecuteWaypointJoggingResponse
|
|
1585
|
+
*/
|
|
1586
|
+
type ExecuteWaypointJoggingResponse = {
|
|
1587
|
+
kind: 'INITIALIZE_RECEIVED';
|
|
1588
|
+
} & InitializeJoggingResponse | {
|
|
1589
|
+
kind: 'JOINT_WAYPOINTS_RECEIVED';
|
|
1590
|
+
} & JointWaypointsResponse | {
|
|
1591
|
+
kind: 'MOTION_ERROR';
|
|
1592
|
+
} & MovementErrorResponse | {
|
|
1593
|
+
kind: 'PAUSE_RECEIVED';
|
|
1594
|
+
} & PauseJoggingResponse | {
|
|
1595
|
+
kind: 'POSE_WAYPOINTS_RECEIVED';
|
|
1596
|
+
} & PoseWaypointsResponse;
|
|
1489
1597
|
/**
|
|
1490
1598
|
* A datapoint inside external joint stream.
|
|
1491
1599
|
*/
|
|
@@ -1928,6 +2036,35 @@ interface InconsistentTrajectorySizeErrorInconsistentTrajectorySize {
|
|
|
1928
2036
|
'times_size'?: number;
|
|
1929
2037
|
'locations_size'?: number;
|
|
1930
2038
|
}
|
|
2039
|
+
/**
|
|
2040
|
+
* Inertia tensor components in kg⋅mm²
|
|
2041
|
+
*/
|
|
2042
|
+
interface InertiaTensor {
|
|
2043
|
+
/**
|
|
2044
|
+
* Inertia tensor component Ixx
|
|
2045
|
+
*/
|
|
2046
|
+
'xx': number;
|
|
2047
|
+
/**
|
|
2048
|
+
* Inertia tensor component Iyy
|
|
2049
|
+
*/
|
|
2050
|
+
'yy': number;
|
|
2051
|
+
/**
|
|
2052
|
+
* Inertia tensor component Izz
|
|
2053
|
+
*/
|
|
2054
|
+
'zz': number;
|
|
2055
|
+
/**
|
|
2056
|
+
* Inertia tensor component Ixy
|
|
2057
|
+
*/
|
|
2058
|
+
'xy': number;
|
|
2059
|
+
/**
|
|
2060
|
+
* Inertia tensor component Ixz
|
|
2061
|
+
*/
|
|
2062
|
+
'xz': number;
|
|
2063
|
+
/**
|
|
2064
|
+
* Inertia tensor component Iyz
|
|
2065
|
+
*/
|
|
2066
|
+
'yz': number;
|
|
2067
|
+
}
|
|
1931
2068
|
/**
|
|
1932
2069
|
* Send this message to start jogging a motion group.
|
|
1933
2070
|
*/
|
|
@@ -2100,6 +2237,10 @@ type InverseKinematicsValidationErrorAllOfData = ErrorInvalidJointCount | ErrorJ
|
|
|
2100
2237
|
*/
|
|
2101
2238
|
interface JoggingDetails {
|
|
2102
2239
|
'state': JoggingDetailsState;
|
|
2240
|
+
/**
|
|
2241
|
+
* Timestamp of the current jogger session in milliseconds. Only waypoint sessions are supported. Other sessions return 0. > **NOTE** > > This field is experimental and its behavior may change in future releases.
|
|
2242
|
+
*/
|
|
2243
|
+
'jogger_session_timestamp_ms'?: number;
|
|
2103
2244
|
'kind': JoggingDetailsKindEnum;
|
|
2104
2245
|
}
|
|
2105
2246
|
declare const JoggingDetailsKindEnum: {
|
|
@@ -2255,13 +2396,57 @@ declare const JointVelocityResponseKindEnum: {
|
|
|
2255
2396
|
readonly JointVelocityReceived: "JOINT_VELOCITY_RECEIVED";
|
|
2256
2397
|
};
|
|
2257
2398
|
type JointVelocityResponseKindEnum = typeof JointVelocityResponseKindEnum[keyof typeof JointVelocityResponseKindEnum];
|
|
2399
|
+
/**
|
|
2400
|
+
* A waypoint in joint space for jogging. > **NOTE** > > This type is experimental and its behavior may change in future releases.
|
|
2401
|
+
*/
|
|
2402
|
+
interface JointWaypoint {
|
|
2403
|
+
/**
|
|
2404
|
+
* Time since session start for when this waypoint should be reached [ms].
|
|
2405
|
+
*/
|
|
2406
|
+
'timestamp': number;
|
|
2407
|
+
/**
|
|
2408
|
+
* This structure describes a set of joint values, e.g., positions, currents, torques, of a motion group. Float precision is the default.
|
|
2409
|
+
*/
|
|
2410
|
+
'joints': Array<number>;
|
|
2411
|
+
}
|
|
2412
|
+
/**
|
|
2413
|
+
* Adds joint waypoints to the jogging 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** > > This jogging type is experimental and its behavior may change in future releases.
|
|
2414
|
+
*/
|
|
2415
|
+
interface JointWaypointsRequest {
|
|
2416
|
+
/**
|
|
2417
|
+
* Type specifier for server, set automatically.
|
|
2418
|
+
*/
|
|
2419
|
+
'message_type': JointWaypointsRequestMessageTypeEnum;
|
|
2420
|
+
/**
|
|
2421
|
+
* List of joint waypoints.
|
|
2422
|
+
*/
|
|
2423
|
+
'waypoints': Array<JointWaypoint>;
|
|
2424
|
+
}
|
|
2425
|
+
declare const JointWaypointsRequestMessageTypeEnum: {
|
|
2426
|
+
readonly JointWaypointsRequest: "JointWaypointsRequest";
|
|
2427
|
+
};
|
|
2428
|
+
type JointWaypointsRequestMessageTypeEnum = typeof JointWaypointsRequestMessageTypeEnum[keyof typeof JointWaypointsRequestMessageTypeEnum];
|
|
2429
|
+
/**
|
|
2430
|
+
* Acknowledgment to a JointWaypointsRequest.
|
|
2431
|
+
*/
|
|
2432
|
+
interface JointWaypointsResponse {
|
|
2433
|
+
/**
|
|
2434
|
+
* Error message in case of invalid JointWaypointsRequest.
|
|
2435
|
+
*/
|
|
2436
|
+
'message'?: string;
|
|
2437
|
+
'kind': JointWaypointsResponseKindEnum;
|
|
2438
|
+
}
|
|
2439
|
+
declare const JointWaypointsResponseKindEnum: {
|
|
2440
|
+
readonly JointWaypointsReceived: "JOINT_WAYPOINTS_RECEIVED";
|
|
2441
|
+
};
|
|
2442
|
+
type JointWaypointsResponseKindEnum = typeof JointWaypointsResponseKindEnum[keyof typeof JointWaypointsResponseKindEnum];
|
|
2258
2443
|
/**
|
|
2259
2444
|
* 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.
|
|
2260
2445
|
*/
|
|
2261
2446
|
interface KinematicBranch {
|
|
2262
|
-
'wrist_branch'
|
|
2263
|
-
'elbow_branch'
|
|
2264
|
-
'shoulder_branch'
|
|
2447
|
+
'wrist_branch': KinematicBranchWrist;
|
|
2448
|
+
'elbow_branch': KinematicBranchElbow;
|
|
2449
|
+
'shoulder_branch': KinematicBranchShoulder;
|
|
2265
2450
|
}
|
|
2266
2451
|
declare const KinematicBranchElbow: {
|
|
2267
2452
|
readonly Up: "UP";
|
|
@@ -2487,6 +2672,34 @@ interface LimitsOverride {
|
|
|
2487
2672
|
*/
|
|
2488
2673
|
'tcp_orientation_jerk_limit'?: number;
|
|
2489
2674
|
}
|
|
2675
|
+
/**
|
|
2676
|
+
* An inline link chain wrapped for discriminator support.
|
|
2677
|
+
*/
|
|
2678
|
+
interface LinkChainValue {
|
|
2679
|
+
/**
|
|
2680
|
+
* Discriminator value indicating an inline value.
|
|
2681
|
+
*/
|
|
2682
|
+
'source': LinkChainValueSourceEnum;
|
|
2683
|
+
/**
|
|
2684
|
+
* A link chain is a kinematic chain of links that is connected via joints. A motion group can be used to control the motion of the joints in a link chain. A link is a group of colliders that is attached to the link reference frame. The reference frame of a link is obtained after applying all sets of Denavit-Hartenberg-parameters from base to (including) the link index. This means that the reference frame of the link is on the rotation axis of the next joint in the kinematic chain. Example: For a motion group with 2 joints, the collider reference frame (CRF) for link 1 is on the rotation axis of joint 2. The chain looks like: - Origin >> Mounting >> Base >> (CRF Base) Joint 0 >> Link 0 >> (CRF Link 0) Joint 1 >> Link 1 >> (CRF Link 1) Flange (CRF Tool) >> TCP Adjacent links in the kinematic chain of the motion group are not checked for mutual collision.
|
|
2685
|
+
*/
|
|
2686
|
+
'link_chain': Array<{
|
|
2687
|
+
[key: string]: Collider;
|
|
2688
|
+
}>;
|
|
2689
|
+
}
|
|
2690
|
+
declare const LinkChainValueSourceEnum: {
|
|
2691
|
+
readonly Value: "value";
|
|
2692
|
+
};
|
|
2693
|
+
type LinkChainValueSourceEnum = typeof LinkChainValueSourceEnum[keyof typeof LinkChainValueSourceEnum];
|
|
2694
|
+
/**
|
|
2695
|
+
* @type LinkChainValueOrKey
|
|
2696
|
+
* Either an inline link chain or a storage key referencing a stored link chain. Discriminated by the \"source\" property.
|
|
2697
|
+
*/
|
|
2698
|
+
type LinkChainValueOrKey = {
|
|
2699
|
+
source: 'key';
|
|
2700
|
+
} & StorageKey | {
|
|
2701
|
+
source: 'value';
|
|
2702
|
+
} & LinkChainValue;
|
|
2490
2703
|
interface ListTrajectoriesResponse {
|
|
2491
2704
|
/**
|
|
2492
2705
|
* Identifiers of trajectories which are currently cached. Use [addTrajectory](#/operations/addTrajectory) to add a new trajectory. Adding trajectories is necessary to execute them. Trajectories are removed if the corresponding motion group or controller disconnects.
|
|
@@ -3385,6 +3598,12 @@ interface PlanCollisionFreeRequest {
|
|
|
3385
3598
|
* The data to assemble the robot setup can be retrieved from the [getMotionGroupDescription](#/operations/getMotionGroupDescription) endpoint.
|
|
3386
3599
|
*/
|
|
3387
3600
|
'motion_group_setup': MotionGroupSetup;
|
|
3601
|
+
/**
|
|
3602
|
+
* Collision layers with support for storage references. Each value is either a store key referencing a stored CollisionSetup, or an inline collision setup object with optional store key references. All storage keys are resolved against the {cell} path parameter of the request URL, which determines the storage bucket. If set on the request, overrides motion_group_setup.collision_setups.
|
|
3603
|
+
*/
|
|
3604
|
+
'collision_setups'?: {
|
|
3605
|
+
[key: string]: CollisionSetupValueOrKey;
|
|
3606
|
+
};
|
|
3388
3607
|
'start_joint_position': Array<number>;
|
|
3389
3608
|
'target': Array<number>;
|
|
3390
3609
|
/**
|
|
@@ -3504,6 +3723,50 @@ interface Pose {
|
|
|
3504
3723
|
*/
|
|
3505
3724
|
'orientation'?: Array<number>;
|
|
3506
3725
|
}
|
|
3726
|
+
/**
|
|
3727
|
+
* A waypoint in Cartesian space for jogging. > **NOTE** > > This type is experimental and its behavior may change in future releases.
|
|
3728
|
+
*/
|
|
3729
|
+
interface PoseWaypoint {
|
|
3730
|
+
/**
|
|
3731
|
+
* Time since session start for when this waypoint should be reached [ms].
|
|
3732
|
+
*/
|
|
3733
|
+
'timestamp': number;
|
|
3734
|
+
/**
|
|
3735
|
+
* Cartesian pose for this waypoint.
|
|
3736
|
+
*/
|
|
3737
|
+
'pose': Pose;
|
|
3738
|
+
}
|
|
3739
|
+
/**
|
|
3740
|
+
* Adds pose waypoints to the jogging 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** > > This jogging type is experimental and its behavior may change in future releases.
|
|
3741
|
+
*/
|
|
3742
|
+
interface PoseWaypointsRequest {
|
|
3743
|
+
/**
|
|
3744
|
+
* Type specifier for server, set automatically.
|
|
3745
|
+
*/
|
|
3746
|
+
'message_type': PoseWaypointsRequestMessageTypeEnum;
|
|
3747
|
+
/**
|
|
3748
|
+
* List of pose waypoints.
|
|
3749
|
+
*/
|
|
3750
|
+
'waypoints': Array<PoseWaypoint>;
|
|
3751
|
+
}
|
|
3752
|
+
declare const PoseWaypointsRequestMessageTypeEnum: {
|
|
3753
|
+
readonly PoseWaypointsRequest: "PoseWaypointsRequest";
|
|
3754
|
+
};
|
|
3755
|
+
type PoseWaypointsRequestMessageTypeEnum = typeof PoseWaypointsRequestMessageTypeEnum[keyof typeof PoseWaypointsRequestMessageTypeEnum];
|
|
3756
|
+
/**
|
|
3757
|
+
* Acknowledgment to a PoseWaypointsRequest.
|
|
3758
|
+
*/
|
|
3759
|
+
interface PoseWaypointsResponse {
|
|
3760
|
+
/**
|
|
3761
|
+
* Error message in case of invalid PoseWaypointsRequest.
|
|
3762
|
+
*/
|
|
3763
|
+
'message'?: string;
|
|
3764
|
+
'kind': PoseWaypointsResponseKindEnum;
|
|
3765
|
+
}
|
|
3766
|
+
declare const PoseWaypointsResponseKindEnum: {
|
|
3767
|
+
readonly PoseWaypointsReceived: "POSE_WAYPOINTS_RECEIVED";
|
|
3768
|
+
};
|
|
3769
|
+
type PoseWaypointsResponseKindEnum = typeof PoseWaypointsResponseKindEnum[keyof typeof PoseWaypointsResponseKindEnum];
|
|
3507
3770
|
interface ProfinetDescription {
|
|
3508
3771
|
/**
|
|
3509
3772
|
* The vendor identifier of the PROFINET device, identifying the manufacturer.
|
|
@@ -4428,6 +4691,23 @@ interface StartOnIO {
|
|
|
4428
4691
|
'comparator': Comparator;
|
|
4429
4692
|
'io_origin': IOOrigin;
|
|
4430
4693
|
}
|
|
4694
|
+
/**
|
|
4695
|
+
* A reference to an object stored in the storage service. The key is resolved against the appropriate S3 path prefix depending on context (e.g. collision/setups/, collision/colliders/).
|
|
4696
|
+
*/
|
|
4697
|
+
interface StorageKey {
|
|
4698
|
+
/**
|
|
4699
|
+
* Discriminator value indicating a storage reference.
|
|
4700
|
+
*/
|
|
4701
|
+
'source': StorageKeySourceEnum;
|
|
4702
|
+
/**
|
|
4703
|
+
* The storage key identifying the object. Resolved against the storage service using the {cell} path parameter of the request URL as the storage bucket. Keys correspond to identifiers used in the Storage Service API (e.g. the {tool} parameter in GET /api/v2/cells/{cell}/store/collision/tools/{tool}).
|
|
4704
|
+
*/
|
|
4705
|
+
'key': string;
|
|
4706
|
+
}
|
|
4707
|
+
declare const StorageKeySourceEnum: {
|
|
4708
|
+
readonly Key: "key";
|
|
4709
|
+
};
|
|
4710
|
+
type StorageKeySourceEnum = typeof StorageKeySourceEnum[keyof typeof StorageKeySourceEnum];
|
|
4431
4711
|
/**
|
|
4432
4712
|
* Array of input/output values.
|
|
4433
4713
|
*/
|
|
@@ -4499,6 +4779,34 @@ declare const TcpVelocityResponseKindEnum: {
|
|
|
4499
4779
|
readonly TcpVelocityReceived: "TCP_VELOCITY_RECEIVED";
|
|
4500
4780
|
};
|
|
4501
4781
|
type TcpVelocityResponseKindEnum = typeof TcpVelocityResponseKindEnum[keyof typeof TcpVelocityResponseKindEnum];
|
|
4782
|
+
/**
|
|
4783
|
+
* An inline tool collider wrapped for discriminator support.
|
|
4784
|
+
*/
|
|
4785
|
+
interface ToolValue {
|
|
4786
|
+
/**
|
|
4787
|
+
* Discriminator value indicating an inline value.
|
|
4788
|
+
*/
|
|
4789
|
+
'source': ToolValueSourceEnum;
|
|
4790
|
+
/**
|
|
4791
|
+
* Defines the shape of a tool. A tool is a dictionary of colliders. All colliders that make up a tool are attached to the flange frame of the motion group.
|
|
4792
|
+
*/
|
|
4793
|
+
'tool': {
|
|
4794
|
+
[key: string]: Collider;
|
|
4795
|
+
};
|
|
4796
|
+
}
|
|
4797
|
+
declare const ToolValueSourceEnum: {
|
|
4798
|
+
readonly Value: "value";
|
|
4799
|
+
};
|
|
4800
|
+
type ToolValueSourceEnum = typeof ToolValueSourceEnum[keyof typeof ToolValueSourceEnum];
|
|
4801
|
+
/**
|
|
4802
|
+
* @type ToolValueOrKey
|
|
4803
|
+
* Either an inline tool collider or a storage key referencing a stored tool. Discriminated by the \"source\" property.
|
|
4804
|
+
*/
|
|
4805
|
+
type ToolValueOrKey = {
|
|
4806
|
+
source: 'key';
|
|
4807
|
+
} & StorageKey | {
|
|
4808
|
+
source: 'value';
|
|
4809
|
+
} & ToolValue;
|
|
4502
4810
|
interface TorqueExceededError {
|
|
4503
4811
|
'kind': TorqueExceededErrorKindEnum;
|
|
4504
4812
|
'torque_exceeded'?: TorqueExceededErrorTorqueExceeded;
|
|
@@ -7022,6 +7330,16 @@ declare const JoggingApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
7022
7330
|
* @throws {RequiredError}
|
|
7023
7331
|
*/
|
|
7024
7332
|
executeJogging: (cell: string, controller: string, executeJoggingRequest: ExecuteJoggingRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
7333
|
+
/**
|
|
7334
|
+
* **Required permissions:** `can_operate_controllers` - Operate and monitor robot controllers ___ <!-- theme: danger --> > **Experimental** > > This endpoint is experimental and its behavior may change in future releases. > Websocket endpoint Provides waypoint-based jogging control for a motion group. Instead of commanding target velocities (see [executeJogging](#/operations/executeJogging)), waypoint jogging streams a queue of timed waypoints that the robot moves through by best effort. This can be used for realtime action chunk streaming, e.g., from a Vision-Language-Action (VLA) model. ### Preconditions The motion group is not moved by any other endpoint. ### Requests #### 1. Send `InitializeJoggingRequest` to configure the jogging. - Sets the robot controller mode to control mode. - Claims the motion group for jogging. For robotic arms, TCP is required to ensure that limits, including TCP limits, are respected. #### 2. Send `JointWaypointsRequest` or `PoseWaypointsRequest` to stream waypoints. - The first waypoints message starts an internal clock. - Each waypoint carries a timestamp relative to that clock for when it should be reached. - Existing waypoints in the queue that are older than the first new timestamp are removed. - The current session timestamp is reported in `execute.details.jogger_session_timestamp_ms` of the [streamRobotControllerState](#/operations/streamRobotControllerState) endpoint. #### 3. Stop the jogging motion - Send `PauseJoggingRequest` to stop the motion. ### Responses - Each request is acknowledged with a corresponding response: - `InitializeJoggingResponse` after `InitializeJoggingRequest` - `JointWaypointsResponse` after `JointWaypointsRequest` - `PoseWaypointsResponse` after `PoseWaypointsRequest` - `PauseJoggingResponse` after `PauseJoggingRequest` The responses confirm that the requests were received. They do not signal that the operation was successful; check the [motion group state](#/operations/streamMotionGroupState) for that. - `MovementErrorResponse` with error details is sent in case of an unexpected error, e.g., controller disconnects during jogging. ### Tips and Tricks - Ensure that the websocket connection remains open until the jogging motion is stopped to avoid unexpected stops.
|
|
7335
|
+
* @summary Execute Waypoint Jogging
|
|
7336
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
7337
|
+
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
7338
|
+
* @param {ExecuteWaypointJoggingRequest} executeWaypointJoggingRequest
|
|
7339
|
+
* @param {*} [options] Override http request option.
|
|
7340
|
+
* @throws {RequiredError}
|
|
7341
|
+
*/
|
|
7342
|
+
executeWaypointJogging: (cell: string, controller: string, executeWaypointJoggingRequest: ExecuteWaypointJoggingRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
7025
7343
|
};
|
|
7026
7344
|
/**
|
|
7027
7345
|
* JoggingApi - functional programming interface
|
|
@@ -7037,6 +7355,16 @@ declare const JoggingApiFp: (configuration?: Configuration) => {
|
|
|
7037
7355
|
* @throws {RequiredError}
|
|
7038
7356
|
*/
|
|
7039
7357
|
executeJogging(cell: string, controller: string, executeJoggingRequest: ExecuteJoggingRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ExecuteJoggingResponse>>;
|
|
7358
|
+
/**
|
|
7359
|
+
* **Required permissions:** `can_operate_controllers` - Operate and monitor robot controllers ___ <!-- theme: danger --> > **Experimental** > > This endpoint is experimental and its behavior may change in future releases. > Websocket endpoint Provides waypoint-based jogging control for a motion group. Instead of commanding target velocities (see [executeJogging](#/operations/executeJogging)), waypoint jogging streams a queue of timed waypoints that the robot moves through by best effort. This can be used for realtime action chunk streaming, e.g., from a Vision-Language-Action (VLA) model. ### Preconditions The motion group is not moved by any other endpoint. ### Requests #### 1. Send `InitializeJoggingRequest` to configure the jogging. - Sets the robot controller mode to control mode. - Claims the motion group for jogging. For robotic arms, TCP is required to ensure that limits, including TCP limits, are respected. #### 2. Send `JointWaypointsRequest` or `PoseWaypointsRequest` to stream waypoints. - The first waypoints message starts an internal clock. - Each waypoint carries a timestamp relative to that clock for when it should be reached. - Existing waypoints in the queue that are older than the first new timestamp are removed. - The current session timestamp is reported in `execute.details.jogger_session_timestamp_ms` of the [streamRobotControllerState](#/operations/streamRobotControllerState) endpoint. #### 3. Stop the jogging motion - Send `PauseJoggingRequest` to stop the motion. ### Responses - Each request is acknowledged with a corresponding response: - `InitializeJoggingResponse` after `InitializeJoggingRequest` - `JointWaypointsResponse` after `JointWaypointsRequest` - `PoseWaypointsResponse` after `PoseWaypointsRequest` - `PauseJoggingResponse` after `PauseJoggingRequest` The responses confirm that the requests were received. They do not signal that the operation was successful; check the [motion group state](#/operations/streamMotionGroupState) for that. - `MovementErrorResponse` with error details is sent in case of an unexpected error, e.g., controller disconnects during jogging. ### Tips and Tricks - Ensure that the websocket connection remains open until the jogging motion is stopped to avoid unexpected stops.
|
|
7360
|
+
* @summary Execute Waypoint Jogging
|
|
7361
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
7362
|
+
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
7363
|
+
* @param {ExecuteWaypointJoggingRequest} executeWaypointJoggingRequest
|
|
7364
|
+
* @param {*} [options] Override http request option.
|
|
7365
|
+
* @throws {RequiredError}
|
|
7366
|
+
*/
|
|
7367
|
+
executeWaypointJogging(cell: string, controller: string, executeWaypointJoggingRequest: ExecuteWaypointJoggingRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ExecuteWaypointJoggingResponse>>;
|
|
7040
7368
|
};
|
|
7041
7369
|
/**
|
|
7042
7370
|
* JoggingApi - factory interface
|
|
@@ -7052,6 +7380,16 @@ declare const JoggingApiFactory: (configuration?: Configuration, basePath?: stri
|
|
|
7052
7380
|
* @throws {RequiredError}
|
|
7053
7381
|
*/
|
|
7054
7382
|
executeJogging(cell: string, controller: string, executeJoggingRequest: ExecuteJoggingRequest, options?: RawAxiosRequestConfig): AxiosPromise<ExecuteJoggingResponse>;
|
|
7383
|
+
/**
|
|
7384
|
+
* **Required permissions:** `can_operate_controllers` - Operate and monitor robot controllers ___ <!-- theme: danger --> > **Experimental** > > This endpoint is experimental and its behavior may change in future releases. > Websocket endpoint Provides waypoint-based jogging control for a motion group. Instead of commanding target velocities (see [executeJogging](#/operations/executeJogging)), waypoint jogging streams a queue of timed waypoints that the robot moves through by best effort. This can be used for realtime action chunk streaming, e.g., from a Vision-Language-Action (VLA) model. ### Preconditions The motion group is not moved by any other endpoint. ### Requests #### 1. Send `InitializeJoggingRequest` to configure the jogging. - Sets the robot controller mode to control mode. - Claims the motion group for jogging. For robotic arms, TCP is required to ensure that limits, including TCP limits, are respected. #### 2. Send `JointWaypointsRequest` or `PoseWaypointsRequest` to stream waypoints. - The first waypoints message starts an internal clock. - Each waypoint carries a timestamp relative to that clock for when it should be reached. - Existing waypoints in the queue that are older than the first new timestamp are removed. - The current session timestamp is reported in `execute.details.jogger_session_timestamp_ms` of the [streamRobotControllerState](#/operations/streamRobotControllerState) endpoint. #### 3. Stop the jogging motion - Send `PauseJoggingRequest` to stop the motion. ### Responses - Each request is acknowledged with a corresponding response: - `InitializeJoggingResponse` after `InitializeJoggingRequest` - `JointWaypointsResponse` after `JointWaypointsRequest` - `PoseWaypointsResponse` after `PoseWaypointsRequest` - `PauseJoggingResponse` after `PauseJoggingRequest` The responses confirm that the requests were received. They do not signal that the operation was successful; check the [motion group state](#/operations/streamMotionGroupState) for that. - `MovementErrorResponse` with error details is sent in case of an unexpected error, e.g., controller disconnects during jogging. ### Tips and Tricks - Ensure that the websocket connection remains open until the jogging motion is stopped to avoid unexpected stops.
|
|
7385
|
+
* @summary Execute Waypoint Jogging
|
|
7386
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
7387
|
+
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
7388
|
+
* @param {ExecuteWaypointJoggingRequest} executeWaypointJoggingRequest
|
|
7389
|
+
* @param {*} [options] Override http request option.
|
|
7390
|
+
* @throws {RequiredError}
|
|
7391
|
+
*/
|
|
7392
|
+
executeWaypointJogging(cell: string, controller: string, executeWaypointJoggingRequest: ExecuteWaypointJoggingRequest, options?: RawAxiosRequestConfig): AxiosPromise<ExecuteWaypointJoggingResponse>;
|
|
7055
7393
|
};
|
|
7056
7394
|
/**
|
|
7057
7395
|
* JoggingApi - object-oriented interface
|
|
@@ -7067,6 +7405,16 @@ declare class JoggingApi extends BaseAPI {
|
|
|
7067
7405
|
* @throws {RequiredError}
|
|
7068
7406
|
*/
|
|
7069
7407
|
executeJogging(cell: string, controller: string, executeJoggingRequest: ExecuteJoggingRequest, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<ExecuteJoggingResponse, any, {}>>;
|
|
7408
|
+
/**
|
|
7409
|
+
* **Required permissions:** `can_operate_controllers` - Operate and monitor robot controllers ___ <!-- theme: danger --> > **Experimental** > > This endpoint is experimental and its behavior may change in future releases. > Websocket endpoint Provides waypoint-based jogging control for a motion group. Instead of commanding target velocities (see [executeJogging](#/operations/executeJogging)), waypoint jogging streams a queue of timed waypoints that the robot moves through by best effort. This can be used for realtime action chunk streaming, e.g., from a Vision-Language-Action (VLA) model. ### Preconditions The motion group is not moved by any other endpoint. ### Requests #### 1. Send `InitializeJoggingRequest` to configure the jogging. - Sets the robot controller mode to control mode. - Claims the motion group for jogging. For robotic arms, TCP is required to ensure that limits, including TCP limits, are respected. #### 2. Send `JointWaypointsRequest` or `PoseWaypointsRequest` to stream waypoints. - The first waypoints message starts an internal clock. - Each waypoint carries a timestamp relative to that clock for when it should be reached. - Existing waypoints in the queue that are older than the first new timestamp are removed. - The current session timestamp is reported in `execute.details.jogger_session_timestamp_ms` of the [streamRobotControllerState](#/operations/streamRobotControllerState) endpoint. #### 3. Stop the jogging motion - Send `PauseJoggingRequest` to stop the motion. ### Responses - Each request is acknowledged with a corresponding response: - `InitializeJoggingResponse` after `InitializeJoggingRequest` - `JointWaypointsResponse` after `JointWaypointsRequest` - `PoseWaypointsResponse` after `PoseWaypointsRequest` - `PauseJoggingResponse` after `PauseJoggingRequest` The responses confirm that the requests were received. They do not signal that the operation was successful; check the [motion group state](#/operations/streamMotionGroupState) for that. - `MovementErrorResponse` with error details is sent in case of an unexpected error, e.g., controller disconnects during jogging. ### Tips and Tricks - Ensure that the websocket connection remains open until the jogging motion is stopped to avoid unexpected stops.
|
|
7410
|
+
* @summary Execute Waypoint Jogging
|
|
7411
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
7412
|
+
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
7413
|
+
* @param {ExecuteWaypointJoggingRequest} executeWaypointJoggingRequest
|
|
7414
|
+
* @param {*} [options] Override http request option.
|
|
7415
|
+
* @throws {RequiredError}
|
|
7416
|
+
*/
|
|
7417
|
+
executeWaypointJogging(cell: string, controller: string, executeWaypointJoggingRequest: ExecuteWaypointJoggingRequest, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<ExecuteWaypointJoggingResponse, any, {}>>;
|
|
7070
7418
|
}
|
|
7071
7419
|
/**
|
|
7072
7420
|
* KinematicsApi - axios parameter creator
|
|
@@ -7593,6 +7941,14 @@ declare const MotionGroupModelsApiAxiosParamCreator: (configuration?: Configurat
|
|
|
7593
7941
|
* @throws {RequiredError}
|
|
7594
7942
|
*/
|
|
7595
7943
|
getMotionGroupCollisionModel: (motionGroupModel: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
7944
|
+
/**
|
|
7945
|
+
* **Required permissions:** `can_access_system` - View system status and metadata ___ Returns the dynamics model (mass, center of mass, inertia, friction parameters) for the given motion group model. See [getMotionGroupModels](#/operations/getMotionGroupModels) for supported motion group models.
|
|
7946
|
+
* @summary Get Dynamics
|
|
7947
|
+
* @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).
|
|
7948
|
+
* @param {*} [options] Override http request option.
|
|
7949
|
+
* @throws {RequiredError}
|
|
7950
|
+
*/
|
|
7951
|
+
getMotionGroupDynamicModel: (motionGroupModel: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
7596
7952
|
/**
|
|
7597
7953
|
* **Required permissions:** `can_access_system` - View system status and metadata ___ Returns the GLB asset for the specified motion group model. See [getMotionGroupModels](#/operations/getMotionGroupModels) for supported identifiers.
|
|
7598
7954
|
* @summary Download GLB Model
|
|
@@ -7601,6 +7957,14 @@ declare const MotionGroupModelsApiAxiosParamCreator: (configuration?: Configurat
|
|
|
7601
7957
|
* @throws {RequiredError}
|
|
7602
7958
|
*/
|
|
7603
7959
|
getMotionGroupGlbModel: (motionGroupModel: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
7960
|
+
/**
|
|
7961
|
+
* **Required permissions:** `can_access_system` - View system status and metadata ___ Returns the default joint positions from which a virtual robot is started. See [getMotionGroupModels](#/operations/getMotionGroupModels) for supported motion group models.
|
|
7962
|
+
* @summary Get Homejoints
|
|
7963
|
+
* @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).
|
|
7964
|
+
* @param {*} [options] Override http request option.
|
|
7965
|
+
* @throws {RequiredError}
|
|
7966
|
+
*/
|
|
7967
|
+
getMotionGroupHomejoints: (motionGroupModel: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
7604
7968
|
/**
|
|
7605
7969
|
* **Required permissions:** `can_access_system` - View system status and metadata ___ Returns the kinematics model (DH parameters) for the given motion group model. See [getMotionGroupModels](#/operations/getMotionGroupModels) for supported motion group models.
|
|
7606
7970
|
* @summary Get Kinematics
|
|
@@ -7609,6 +7973,14 @@ declare const MotionGroupModelsApiAxiosParamCreator: (configuration?: Configurat
|
|
|
7609
7973
|
* @throws {RequiredError}
|
|
7610
7974
|
*/
|
|
7611
7975
|
getMotionGroupKinematicModel: (motionGroupModel: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
7976
|
+
/**
|
|
7977
|
+
* **Required permissions:** `can_access_system` - View system status and metadata ___ Returns the operation limits for the given motion group model. See [getMotionGroupModels](#/operations/getMotionGroupModels) for supported motion group models.
|
|
7978
|
+
* @summary Get Limits
|
|
7979
|
+
* @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).
|
|
7980
|
+
* @param {*} [options] Override http request option.
|
|
7981
|
+
* @throws {RequiredError}
|
|
7982
|
+
*/
|
|
7983
|
+
getMotionGroupLimitModel: (motionGroupModel: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
7612
7984
|
/**
|
|
7613
7985
|
* **Required permissions:** `can_access_system` - View system status and metadata ___ Returns the list of supported motion group models.
|
|
7614
7986
|
* @summary Motion Group Models
|
|
@@ -7672,6 +8044,14 @@ declare const MotionGroupModelsApiFp: (configuration?: Configuration) => {
|
|
|
7672
8044
|
getMotionGroupCollisionModel(motionGroupModel: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<{
|
|
7673
8045
|
[key: string]: Collider;
|
|
7674
8046
|
}>>>;
|
|
8047
|
+
/**
|
|
8048
|
+
* **Required permissions:** `can_access_system` - View system status and metadata ___ Returns the dynamics model (mass, center of mass, inertia, friction parameters) for the given motion group model. See [getMotionGroupModels](#/operations/getMotionGroupModels) for supported motion group models.
|
|
8049
|
+
* @summary Get Dynamics
|
|
8050
|
+
* @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).
|
|
8051
|
+
* @param {*} [options] Override http request option.
|
|
8052
|
+
* @throws {RequiredError}
|
|
8053
|
+
*/
|
|
8054
|
+
getMotionGroupDynamicModel(motionGroupModel: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<DynamicModel>>>;
|
|
7675
8055
|
/**
|
|
7676
8056
|
* **Required permissions:** `can_access_system` - View system status and metadata ___ Returns the GLB asset for the specified motion group model. See [getMotionGroupModels](#/operations/getMotionGroupModels) for supported identifiers.
|
|
7677
8057
|
* @summary Download GLB Model
|
|
@@ -7680,6 +8060,14 @@ declare const MotionGroupModelsApiFp: (configuration?: Configuration) => {
|
|
|
7680
8060
|
* @throws {RequiredError}
|
|
7681
8061
|
*/
|
|
7682
8062
|
getMotionGroupGlbModel(motionGroupModel: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<File>>;
|
|
8063
|
+
/**
|
|
8064
|
+
* **Required permissions:** `can_access_system` - View system status and metadata ___ Returns the default joint positions from which a virtual robot is started. See [getMotionGroupModels](#/operations/getMotionGroupModels) for supported motion group models.
|
|
8065
|
+
* @summary Get Homejoints
|
|
8066
|
+
* @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).
|
|
8067
|
+
* @param {*} [options] Override http request option.
|
|
8068
|
+
* @throws {RequiredError}
|
|
8069
|
+
*/
|
|
8070
|
+
getMotionGroupHomejoints(motionGroupModel: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<number>>>;
|
|
7683
8071
|
/**
|
|
7684
8072
|
* **Required permissions:** `can_access_system` - View system status and metadata ___ Returns the kinematics model (DH parameters) for the given motion group model. See [getMotionGroupModels](#/operations/getMotionGroupModels) for supported motion group models.
|
|
7685
8073
|
* @summary Get Kinematics
|
|
@@ -7688,6 +8076,14 @@ declare const MotionGroupModelsApiFp: (configuration?: Configuration) => {
|
|
|
7688
8076
|
* @throws {RequiredError}
|
|
7689
8077
|
*/
|
|
7690
8078
|
getMotionGroupKinematicModel(motionGroupModel: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<KinematicModel>>;
|
|
8079
|
+
/**
|
|
8080
|
+
* **Required permissions:** `can_access_system` - View system status and metadata ___ Returns the operation limits for the given motion group model. See [getMotionGroupModels](#/operations/getMotionGroupModels) for supported motion group models.
|
|
8081
|
+
* @summary Get Limits
|
|
8082
|
+
* @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).
|
|
8083
|
+
* @param {*} [options] Override http request option.
|
|
8084
|
+
* @throws {RequiredError}
|
|
8085
|
+
*/
|
|
8086
|
+
getMotionGroupLimitModel(motionGroupModel: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<OperationLimits>>;
|
|
7691
8087
|
/**
|
|
7692
8088
|
* **Required permissions:** `can_access_system` - View system status and metadata ___ Returns the list of supported motion group models.
|
|
7693
8089
|
* @summary Motion Group Models
|
|
@@ -7751,6 +8147,14 @@ declare const MotionGroupModelsApiFactory: (configuration?: Configuration, baseP
|
|
|
7751
8147
|
getMotionGroupCollisionModel(motionGroupModel: string, options?: RawAxiosRequestConfig): AxiosPromise<Array<{
|
|
7752
8148
|
[key: string]: Collider;
|
|
7753
8149
|
}>>;
|
|
8150
|
+
/**
|
|
8151
|
+
* **Required permissions:** `can_access_system` - View system status and metadata ___ Returns the dynamics model (mass, center of mass, inertia, friction parameters) for the given motion group model. See [getMotionGroupModels](#/operations/getMotionGroupModels) for supported motion group models.
|
|
8152
|
+
* @summary Get Dynamics
|
|
8153
|
+
* @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).
|
|
8154
|
+
* @param {*} [options] Override http request option.
|
|
8155
|
+
* @throws {RequiredError}
|
|
8156
|
+
*/
|
|
8157
|
+
getMotionGroupDynamicModel(motionGroupModel: string, options?: RawAxiosRequestConfig): AxiosPromise<Array<DynamicModel>>;
|
|
7754
8158
|
/**
|
|
7755
8159
|
* **Required permissions:** `can_access_system` - View system status and metadata ___ Returns the GLB asset for the specified motion group model. See [getMotionGroupModels](#/operations/getMotionGroupModels) for supported identifiers.
|
|
7756
8160
|
* @summary Download GLB Model
|
|
@@ -7759,6 +8163,14 @@ declare const MotionGroupModelsApiFactory: (configuration?: Configuration, baseP
|
|
|
7759
8163
|
* @throws {RequiredError}
|
|
7760
8164
|
*/
|
|
7761
8165
|
getMotionGroupGlbModel(motionGroupModel: string, options?: RawAxiosRequestConfig): AxiosPromise<File>;
|
|
8166
|
+
/**
|
|
8167
|
+
* **Required permissions:** `can_access_system` - View system status and metadata ___ Returns the default joint positions from which a virtual robot is started. See [getMotionGroupModels](#/operations/getMotionGroupModels) for supported motion group models.
|
|
8168
|
+
* @summary Get Homejoints
|
|
8169
|
+
* @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).
|
|
8170
|
+
* @param {*} [options] Override http request option.
|
|
8171
|
+
* @throws {RequiredError}
|
|
8172
|
+
*/
|
|
8173
|
+
getMotionGroupHomejoints(motionGroupModel: string, options?: RawAxiosRequestConfig): AxiosPromise<Array<number>>;
|
|
7762
8174
|
/**
|
|
7763
8175
|
* **Required permissions:** `can_access_system` - View system status and metadata ___ Returns the kinematics model (DH parameters) for the given motion group model. See [getMotionGroupModels](#/operations/getMotionGroupModels) for supported motion group models.
|
|
7764
8176
|
* @summary Get Kinematics
|
|
@@ -7767,6 +8179,14 @@ declare const MotionGroupModelsApiFactory: (configuration?: Configuration, baseP
|
|
|
7767
8179
|
* @throws {RequiredError}
|
|
7768
8180
|
*/
|
|
7769
8181
|
getMotionGroupKinematicModel(motionGroupModel: string, options?: RawAxiosRequestConfig): AxiosPromise<KinematicModel>;
|
|
8182
|
+
/**
|
|
8183
|
+
* **Required permissions:** `can_access_system` - View system status and metadata ___ Returns the operation limits for the given motion group model. See [getMotionGroupModels](#/operations/getMotionGroupModels) for supported motion group models.
|
|
8184
|
+
* @summary Get Limits
|
|
8185
|
+
* @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).
|
|
8186
|
+
* @param {*} [options] Override http request option.
|
|
8187
|
+
* @throws {RequiredError}
|
|
8188
|
+
*/
|
|
8189
|
+
getMotionGroupLimitModel(motionGroupModel: string, options?: RawAxiosRequestConfig): AxiosPromise<OperationLimits>;
|
|
7770
8190
|
/**
|
|
7771
8191
|
* **Required permissions:** `can_access_system` - View system status and metadata ___ Returns the list of supported motion group models.
|
|
7772
8192
|
* @summary Motion Group Models
|
|
@@ -7830,6 +8250,14 @@ declare class MotionGroupModelsApi extends BaseAPI {
|
|
|
7830
8250
|
getMotionGroupCollisionModel(motionGroupModel: string, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<{
|
|
7831
8251
|
[key: string]: Collider;
|
|
7832
8252
|
}[], any, {}>>;
|
|
8253
|
+
/**
|
|
8254
|
+
* **Required permissions:** `can_access_system` - View system status and metadata ___ Returns the dynamics model (mass, center of mass, inertia, friction parameters) for the given motion group model. See [getMotionGroupModels](#/operations/getMotionGroupModels) for supported motion group models.
|
|
8255
|
+
* @summary Get Dynamics
|
|
8256
|
+
* @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).
|
|
8257
|
+
* @param {*} [options] Override http request option.
|
|
8258
|
+
* @throws {RequiredError}
|
|
8259
|
+
*/
|
|
8260
|
+
getMotionGroupDynamicModel(motionGroupModel: string, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<DynamicModel[], any, {}>>;
|
|
7833
8261
|
/**
|
|
7834
8262
|
* **Required permissions:** `can_access_system` - View system status and metadata ___ Returns the GLB asset for the specified motion group model. See [getMotionGroupModels](#/operations/getMotionGroupModels) for supported identifiers.
|
|
7835
8263
|
* @summary Download GLB Model
|
|
@@ -7838,6 +8266,14 @@ declare class MotionGroupModelsApi extends BaseAPI {
|
|
|
7838
8266
|
* @throws {RequiredError}
|
|
7839
8267
|
*/
|
|
7840
8268
|
getMotionGroupGlbModel(motionGroupModel: string, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<File, any, {}>>;
|
|
8269
|
+
/**
|
|
8270
|
+
* **Required permissions:** `can_access_system` - View system status and metadata ___ Returns the default joint positions from which a virtual robot is started. See [getMotionGroupModels](#/operations/getMotionGroupModels) for supported motion group models.
|
|
8271
|
+
* @summary Get Homejoints
|
|
8272
|
+
* @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).
|
|
8273
|
+
* @param {*} [options] Override http request option.
|
|
8274
|
+
* @throws {RequiredError}
|
|
8275
|
+
*/
|
|
8276
|
+
getMotionGroupHomejoints(motionGroupModel: string, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<number[], any, {}>>;
|
|
7841
8277
|
/**
|
|
7842
8278
|
* **Required permissions:** `can_access_system` - View system status and metadata ___ Returns the kinematics model (DH parameters) for the given motion group model. See [getMotionGroupModels](#/operations/getMotionGroupModels) for supported motion group models.
|
|
7843
8279
|
* @summary Get Kinematics
|
|
@@ -7846,6 +8282,14 @@ declare class MotionGroupModelsApi extends BaseAPI {
|
|
|
7846
8282
|
* @throws {RequiredError}
|
|
7847
8283
|
*/
|
|
7848
8284
|
getMotionGroupKinematicModel(motionGroupModel: string, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<KinematicModel, any, {}>>;
|
|
8285
|
+
/**
|
|
8286
|
+
* **Required permissions:** `can_access_system` - View system status and metadata ___ Returns the operation limits for the given motion group model. See [getMotionGroupModels](#/operations/getMotionGroupModels) for supported motion group models.
|
|
8287
|
+
* @summary Get Limits
|
|
8288
|
+
* @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).
|
|
8289
|
+
* @param {*} [options] Override http request option.
|
|
8290
|
+
* @throws {RequiredError}
|
|
8291
|
+
*/
|
|
8292
|
+
getMotionGroupLimitModel(motionGroupModel: string, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<OperationLimits, any, {}>>;
|
|
7849
8293
|
/**
|
|
7850
8294
|
* **Required permissions:** `can_access_system` - View system status and metadata ___ Returns the list of supported motion group models.
|
|
7851
8295
|
* @summary Motion Group Models
|
|
@@ -11383,4 +11827,4 @@ declare class VirtualControllerInputsOutputsApi extends BaseAPI {
|
|
|
11383
11827
|
setIOValues(cell: string, controller: string, iOValue: Array<IOValue>, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<void, any, {}>>;
|
|
11384
11828
|
}
|
|
11385
11829
|
//#endregion
|
|
11386
|
-
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, Collision, CollisionContact, CollisionError, CollisionErrorKindEnum, CollisionFreeAlgorithm, CollisionMotionGroup, CollisionSetup, Comparator, Configuration, ConfigurationArchiveStatus, ConfigurationArchiveStatusCreating, ConfigurationArchiveStatusCreatingStatusEnum, ConfigurationArchiveStatusError, ConfigurationArchiveStatusErrorStatusEnum, ConfigurationArchiveStatusSuccess, ConfigurationArchiveStatusSuccessStatusEnum, ConfigurationParameters, ConfigurationResource, ConfiguredPose, ConfiguredPoseInverse422Response, ConfiguredPoseInverseFailedResponse, ConfiguredPoseInverseRequest, ConfiguredPoseInverseResponse, ConfiguredPoseInverseResponseResponse, ConstrainedPose, ContainerEnvironmentInner, ContainerImage, ContainerImageSecretsInner, ContainerResources, ContainerStorage, ControllerApi, ControllerApiAxiosParamCreator, ControllerApiFactory, ControllerApiFp, ControllerDescription, ControllerInputsOutputsApi, ControllerInputsOutputsApiAxiosParamCreator, ControllerInputsOutputsApiFactory, ControllerInputsOutputsApiFp, ConvertVendorConfiguredPose422Response, ConvertVendorConfiguredPoseRequest, ConvertVendorConfiguredPoseRequestVendorConfiguredPoses, ConvexHull, ConvexHullShapeTypeEnum, CoordinateSystem, CoordinateSystemData, CopyMotionGroupModelRequest, CubicSplineParameter, CycleTime, Cylinder, CylinderShapeTypeEnum, DHParameter, Direction, DirectionConstraint, DirectionConstraintConstraintNameEnum, ErrorDirectionConstraintNotMet, ErrorDirectionConstraintNotMetErrorFeedbackNameEnum, ErrorDirectionConstraintNotNormalized, ErrorDirectionConstraintNotNormalizedErrorFeedbackNameEnum, ErrorInvalidJointCount, ErrorInvalidJointCountErrorFeedbackNameEnum, ErrorJointLimitExceeded, ErrorJointLimitExceededErrorFeedbackNameEnum, ErrorJointPositionCollision, ErrorJointPositionCollisionErrorFeedbackNameEnum, ErrorMaxIterationsExceeded, ErrorMaxIterationsExceededErrorFeedbackNameEnum, ErrorMotionGroupKeyMismatch, ErrorUnsupportedOperation, ErrorUnsupportedOperationErrorFeedbackNameEnum, Execute, 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, GetTrajectoryResponse, HTTPValidationError, IOBooleanValue, IOBooleanValueValueTypeEnum, IOBoundary, IODescription, IODirection, IOFloatValue, IOFloatValueValueTypeEnum, IOIntegerValue, IOIntegerValueValueTypeEnum, IOOrigin, IOValue, IOValueType, ImageCredentials, InconsistentTrajectorySizeError, InconsistentTrajectorySizeErrorInconsistentTrajectorySize, InconsistentTrajectorySizeErrorKindEnum, 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, 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, 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, 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, StoreCollisionComponentsApi, StoreCollisionComponentsApiAxiosParamCreator, StoreCollisionComponentsApiFactory, StoreCollisionComponentsApiFp, StoreCollisionSetupsApi, StoreCollisionSetupsApiAxiosParamCreator, StoreCollisionSetupsApiFactory, StoreCollisionSetupsApiFp, StoreObjectApi, StoreObjectApiAxiosParamCreator, StoreObjectApiFactory, StoreObjectApiFp, StreamIOValuesResponse, SystemApi, SystemApiAxiosParamCreator, SystemApiFactory, SystemApiFp, TcpOffset, TcpRequiredError, TcpRequiredErrorKindEnum, TcpVelocityRequest, TcpVelocityRequestMessageTypeEnum, TcpVelocityResponse, TcpVelocityResponseKindEnum, 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 };
|
|
11830
|
+
export { AbbConfdata, AbbConfiguredPose, AbbController, AbbControllerEgmServer, AbbControllerKindEnum, AbbPose, ActivateLicenseRequest, AddTrajectoryError, AddTrajectoryErrorData, AddTrajectoryRequest, AddTrajectoryResponse, AddVirtualControllerMotionGroupRequest, ApiVersion, App, ApplicationApi, ApplicationApiAxiosParamCreator, ApplicationApiFactory, ApplicationApiFp, AxisRange, BASE_PATH, BUSInputsOutputsApi, BUSInputsOutputsApiAxiosParamCreator, BUSInputsOutputsApiFactory, BUSInputsOutputsApiFp, BaseAPI, Behavior, BlendingAuto, BlendingAutoBlendingNameEnum, BlendingPosition, BlendingPositionBlendingNameEnum, BlendingSpace, BooleanValue, BooleanValueValueTypeEnum, Box, BoxBoxTypeEnum, BoxShapeTypeEnum, BusIODescription, BusIOModbusClient, BusIOModbusClientBusTypeEnum, BusIOModbusServer, BusIOModbusServerBusTypeEnum, BusIOModbusTCPClient, BusIOModbusTCPClientNetworkTypeEnum, BusIOModbusTCPServer, BusIOModbusTCPServerNetworkTypeEnum, BusIOModbusVirtual, BusIOModbusVirtualBusTypeEnum, BusIOProfinet, BusIOProfinetBusTypeEnum, BusIOProfinetDefaultRoute, BusIOProfinetIpConfig, BusIOProfinetNetwork, BusIOProfinetSlot, BusIOProfinetVirtual, BusIOProfinetVirtualBusTypeEnum, BusIOSnap7, BusIOSnap7BusTypeEnum, BusIOType, BusIOsState, BusIOsStateEnum, COLLECTION_FORMATS, CapabilityEntry, Capsule, CapsuleShapeTypeEnum, CartesianLimits, Cell, CellApi, CellApiAxiosParamCreator, CellApiFactory, CellApiFp, CloudConfigStatus, CloudConfigStatusConfigured, CloudConfigStatusConfiguredStatusEnum, CloudConfigStatusNotConfigured, CloudConfigStatusNotConfiguredStatusEnum, CloudConfiguration, CloudConnectionError, CloudConnectionErrorError, CloudConnectionErrorInvalidToken, CloudConnectionErrorInvalidTokenCodeEnum, CloudConnectionErrorInvalidTokenDetails, CloudConnectionErrorInvalidTokenDetailsCloudResponse, CloudConnectionErrorLeafnodeConnectionError, CloudConnectionErrorLeafnodeConnectionErrorCodeEnum, CloudConnectionErrorLeafnodeConnectionErrorDetails, CloudConnectionErrorLeafnodeConnectionTimeout, CloudConnectionErrorLeafnodeConnectionTimeoutCodeEnum, CloudConnectionErrorLeafnodeRestartTimeout, CloudConnectionErrorLeafnodeRestartTimeoutCodeEnum, CloudConnectionErrorNatsFailed, CloudConnectionErrorNatsFailedCodeEnum, CloudConnectionErrorNatsFailedDetails, CloudConnectionErrorUnexpectedResponse, CloudConnectionErrorUnexpectedResponseCodeEnum, CloudConnectionErrorUnexpectedResponseDetails, CloudConnectionErrorUnexpectedResponseDetailsCloudResponse, CloudConnectionRequest, CloudDisconnectionError, CloudDisconnectionStatusDisconnected, CloudDisconnectionStatusDisconnectedStatusEnum, CloudDisconnectionStatusDisconnecting, CloudDisconnectionStatusDisconnectingStatusEnum, CloudRegistrationSuccessResponse, Collider, ColliderShape, ColliderValue, ColliderValueOrKey, ColliderValueSourceEnum, Collision, CollisionContact, CollisionError, CollisionErrorKindEnum, CollisionFreeAlgorithm, CollisionMotionGroup, CollisionSetup, CollisionSetupValue, CollisionSetupValueOrKey, CollisionSetupValueSourceEnum, Comparator, Configuration, ConfigurationArchiveStatus, ConfigurationArchiveStatusCreating, ConfigurationArchiveStatusCreatingStatusEnum, ConfigurationArchiveStatusError, ConfigurationArchiveStatusErrorStatusEnum, ConfigurationArchiveStatusSuccess, ConfigurationArchiveStatusSuccessStatusEnum, ConfigurationParameters, ConfigurationResource, ConfiguredPose, ConfiguredPoseInverse422Response, ConfiguredPoseInverseFailedResponse, ConfiguredPoseInverseRequest, ConfiguredPoseInverseResponse, ConfiguredPoseInverseResponseResponse, ConstrainedPose, ContainerEnvironmentInner, ContainerImage, ContainerImageSecretsInner, ContainerResources, ContainerStorage, ControllerApi, ControllerApiAxiosParamCreator, ControllerApiFactory, ControllerApiFp, ControllerDescription, ControllerInputsOutputsApi, ControllerInputsOutputsApiAxiosParamCreator, ControllerInputsOutputsApiFactory, ControllerInputsOutputsApiFp, ConvertVendorConfiguredPose422Response, ConvertVendorConfiguredPoseRequest, ConvertVendorConfiguredPoseRequestVendorConfiguredPoses, ConvexHull, ConvexHullShapeTypeEnum, CoordinateSystem, CoordinateSystemData, CopyMotionGroupModelRequest, CubicSplineParameter, CycleTime, Cylinder, CylinderShapeTypeEnum, DHParameter, Direction, DirectionConstraint, DirectionConstraintConstraintNameEnum, DynamicModel, ErrorDirectionConstraintNotMet, ErrorDirectionConstraintNotMetErrorFeedbackNameEnum, ErrorDirectionConstraintNotNormalized, ErrorDirectionConstraintNotNormalizedErrorFeedbackNameEnum, ErrorInvalidJointCount, ErrorInvalidJointCountErrorFeedbackNameEnum, ErrorJointLimitExceeded, ErrorJointLimitExceededErrorFeedbackNameEnum, ErrorJointPositionCollision, ErrorJointPositionCollisionErrorFeedbackNameEnum, ErrorMaxIterationsExceeded, ErrorMaxIterationsExceededErrorFeedbackNameEnum, ErrorMotionGroupKeyMismatch, ErrorUnsupportedOperation, ErrorUnsupportedOperationErrorFeedbackNameEnum, Execute, ExecuteDetails, ExecuteJoggingRequest, ExecuteJoggingResponse, ExecuteTrajectoryRequest, ExecuteTrajectoryResponse, ExecuteWaypointJoggingRequest, ExecuteWaypointJoggingResponse, ExternalJointStreamDatapoint, ExternalJointStreamRequest, FanucController, FanucControllerKindEnum, FeedbackAxisRangeExceeded, FeedbackAxisRangeExceededErrorFeedbackNameEnum, FeedbackCollision, FeedbackCollisionErrorFeedbackNameEnum, FeedbackCommandsMissing, FeedbackCommandsMissingErrorFeedbackNameEnum, FeedbackCubicSplineIsNotIncreasing, FeedbackCubicSplineIsNotIncreasingErrorFeedbackNameEnum, FeedbackCubicSplineNotAtStartPose, FeedbackCubicSplineNotAtStartPoseErrorFeedbackNameEnum, FeedbackDirectionConstraintNoSolutionExists, FeedbackDirectionConstraintNoSolutionExistsErrorFeedbackNameEnum, FeedbackDirectionConstraintNotMet, FeedbackDirectionConstraintNotMetErrorFeedbackNameEnum, FeedbackDirectionConstraintNotNormalized, FeedbackDirectionConstraintNotNormalizedErrorFeedbackNameEnum, FeedbackInvalidDof, FeedbackInvalidDofErrorFeedbackNameEnum, FeedbackInvalidNanValue, FeedbackInvalidNanValueErrorFeedbackNameEnum, FeedbackInvalidSamplingTime, FeedbackInvalidSamplingTimeErrorFeedbackNameEnum, FeedbackJointLimitExceeded, FeedbackJointLimitExceededErrorFeedbackNameEnum, FeedbackNoSolutionInCurrentConfiguration, FeedbackNoSolutionInCurrentConfigurationErrorFeedbackNameEnum, FeedbackOutOfWorkspace, FeedbackOutOfWorkspaceErrorFeedbackNameEnum, FeedbackSingularity, FeedbackSingularityErrorFeedbackNameEnum, FeedbackStartJointsMissing, FeedbackStartJointsMissingErrorFeedbackNameEnum, FeedbackTorqueExceeded, FeedbackTorqueExceededErrorFeedbackNameEnum, Flag, FlangePayload, FloatValue, FloatValueValueTypeEnum, ForwardKinematics422Response, ForwardKinematicsRequest, ForwardKinematicsResponse, ForwardKinematicsValidationError, GetTrajectoryResponse, HTTPValidationError, IOBooleanValue, IOBooleanValueValueTypeEnum, IOBoundary, IODescription, IODirection, IOFloatValue, IOFloatValueValueTypeEnum, IOIntegerValue, IOIntegerValueValueTypeEnum, IOOrigin, IOValue, IOValueType, ImageCredentials, InconsistentTrajectorySizeError, InconsistentTrajectorySizeErrorInconsistentTrajectorySize, InconsistentTrajectorySizeErrorKindEnum, InertiaTensor, InitializeJoggingRequest, InitializeJoggingRequestMessageTypeEnum, InitializeJoggingResponse, InitializeJoggingResponseKindEnum, InitializeMovementRequest, InitializeMovementRequestMessageTypeEnum, InitializeMovementRequestTrajectory, InitializeMovementResponse, InitializeMovementResponseKindEnum, IntegerValue, IntegerValueValueTypeEnum, InvalidDofError, InvalidDofErrorInvalidDof, InvalidDofErrorKindEnum, InverseFeedbackAtIndex, InverseFeedbackAtIndexErrorFeedback, InverseKinematics422Response, InverseKinematicsRequest, InverseKinematicsResponse, InverseKinematicsValidationError, InverseKinematicsValidationErrorAllOfData, JoggingApi, JoggingApiAxiosParamCreator, JoggingApiFactory, JoggingApiFp, JoggingDetails, JoggingDetailsKindEnum, JoggingDetailsState, JoggingPausedByUser, JoggingPausedByUserKindEnum, JoggingPausedNearCollision, JoggingPausedNearCollisionKindEnum, JoggingPausedNearJointLimit, JoggingPausedNearJointLimitKindEnum, JoggingPausedNearSingularity, JoggingPausedNearSingularityKindEnum, JoggingPausedOnIO, JoggingPausedOnIOKindEnum, JoggingRunning, JoggingRunningKindEnum, JointLimitExceededError, JointLimitExceededErrorKindEnum, JointLimits, JointPTPMotion, JointTrajectory, JointTypeEnum, JointVelocityRequest, JointVelocityRequestMessageTypeEnum, JointVelocityResponse, JointVelocityResponseKindEnum, JointWaypoint, JointWaypointsRequest, JointWaypointsRequestMessageTypeEnum, JointWaypointsResponse, JointWaypointsResponseKindEnum, KinematicBranch, KinematicBranchElbow, KinematicBranchShoulder, KinematicBranchWrist, KinematicConfiguration, KinematicModel, KinematicsApi, KinematicsApiAxiosParamCreator, KinematicsApiFactory, KinematicsApiFp, KukaConfiguredPose, KukaController, KukaControllerKindEnum, KukaControllerRsiServer, KukaPose, KukaStatusAndTurnBits, License, LicenseApi, LicenseApiAxiosParamCreator, LicenseApiFactory, LicenseApiFp, LicenseStatus, LicenseStatusEnum, LimitRange, LimitSet, LimitsOverride, LinkChainValue, LinkChainValueOrKey, LinkChainValueSourceEnum, ListTrajectoriesResponse, Manufacturer, MergeTrajectories422Response, MergeTrajectoriesError, MergeTrajectoriesErrorErrorFeedback, MergeTrajectoriesRequest, MergeTrajectoriesResponse, MergeTrajectoriesResponseFeedbackInner, MergeTrajectoriesSegment, MergeTrajectoriesValidationError, MidpointInsertionAlgorithm, MidpointInsertionAlgorithmAlgorithmNameEnum, ModbusIO, ModbusIOArea, ModbusIOByteOrder, ModbusIOData, ModbusIOTypeEnum, ModelError, MotionCommand, MotionCommandBlending, MotionCommandPath, MotionGroupApi, MotionGroupApiAxiosParamCreator, MotionGroupApiFactory, MotionGroupApiFp, MotionGroupDescription, MotionGroupFromJson, MotionGroupFromType, MotionGroupInfo, MotionGroupJoints, MotionGroupModelDescription, MotionGroupModelsApi, MotionGroupModelsApiAxiosParamCreator, MotionGroupModelsApiFactory, MotionGroupModelsApiFp, MotionGroupSetup, MotionGroupState, MotionGroupStateJointLimitReached, MovementErrorResponse, MovementErrorResponseKindEnum, MultiCollisionSetup, MultiErrorInvalidJointCount, MultiErrorJointLimitExceeded, MultiErrorJointPositionCollision, MultiJointTrajectory, MultiSearchCollisionFree422Response, MultiSearchCollisionFreeRequest, MultiSearchCollisionFreeResponse, MultiSearchCollisionFreeResponseResponse, MultiSearchCollisionFreeValidationError, MultiSearchCollisionFreeValidationErrorAllOfData, NOVACloudApi, NOVACloudApiAxiosParamCreator, NOVACloudApiFactory, NOVACloudApiFp, NanValueError, NanValueErrorKindEnum, NanValueErrorNanValue, NetworkDevice, NetworkInterface, NetworkState, NetworkStateConnectionTypeEnum, OpMode, OperatingState, OperationLimits, OperationMode, OrientationType, PathCartesianPTP, PathCartesianPTPPathDefinitionNameEnum, PathCircle, PathCirclePathDefinitionNameEnum, PathCubicSpline, PathCubicSplinePathDefinitionNameEnum, PathDirectionConstrainedCartesianPTP, PathDirectionConstrainedCartesianPTPPathDefinitionNameEnum, PathDirectionConstrainedJointPTP, PathDirectionConstrainedJointPTPPathDefinitionNameEnum, PathJointPTP, PathJointPTPPathDefinitionNameEnum, PathLine, PathLinePathDefinitionNameEnum, PauseJoggingRequest, PauseJoggingRequestMessageTypeEnum, PauseJoggingResponse, PauseJoggingResponseKindEnum, PauseMovementRequest, PauseMovementRequestMessageTypeEnum, PauseMovementResponse, PauseMovementResponseKindEnum, PauseOnIO, Payload, Plan422Response, PlanCollisionFreeFailedResponse, PlanCollisionFreeRequest, PlanCollisionFreeResponse, PlanCollisionFreeResponseResponse, PlanTrajectoryFailedResponse, PlanTrajectoryFailedResponseErrorFeedback, PlanTrajectoryRequest, PlanTrajectoryResponse, PlanTrajectoryResponseResponse, PlanValidationError, PlanValidationErrorAllOfData, Plane, PlaneShapeTypeEnum, PlaybackSpeedRequest, PlaybackSpeedRequestMessageTypeEnum, PlaybackSpeedResponse, PlaybackSpeedResponseKindEnum, Pose, PoseWaypoint, PoseWaypointsRequest, PoseWaypointsRequestMessageTypeEnum, PoseWaypointsResponse, PoseWaypointsResponseKindEnum, ProfinetDescription, ProfinetIO, ProfinetIOData, ProfinetIODirection, ProfinetIOTypeEnum, ProfinetInputOutputConfig, ProfinetSlotDescription, ProfinetSubSlotDescription, Program, ProgramApi, ProgramApiAxiosParamCreator, ProgramApiFactory, ProgramApiFp, ProgramRun, ProgramRunState, ProgramStartRequest, ProjectJointPositionDirectionConstraint422Response, ProjectJointPositionDirectionConstraintRequest, ProjectJointPositionDirectionConstraintResponse, ProjectJointPositionDirectionConstraintValidationError, ProjectJointPositionDirectionConstraintValidationErrorAllOfData, RRTConnectAlgorithm, RRTConnectAlgorithmAlgorithmNameEnum, RRTConnectAlgorithmStepSize, Range, Rectangle, RectangleShapeTypeEnum, RectangularCapsule, RectangularCapsuleShapeTypeEnum, ReleaseChannel, RequestArgs, RequiredError, RobotConfigurationsApi, RobotConfigurationsApiAxiosParamCreator, RobotConfigurationsApiFactory, RobotConfigurationsApiFp, RobotController, RobotControllerConfiguration, RobotControllerConfigurationRequest, RobotControllerState, RobotSystemMode, RobotTcp, RobotTcpData, SafetyGeometry, SafetyGeometryBox, SafetyGeometryCapsule, SafetyGeometryLozenge, SafetyGeometryPlane, SafetyGeometryPrism, SafetyGeometrySphere, SafetyStateType, SafetyZone, SafetyZonePose, SafetyZones, ServiceGroup, ServiceStatus, ServiceStatusPhase, ServiceStatusResponse, ServiceStatusSeverity, ServiceStatusStatus, SessionApi, SessionApiAxiosParamCreator, SessionApiFactory, SessionApiFp, SessionResponse, SetIO, SettableRobotSystemMode, SingularityTypeEnum, Snap7IO, Snap7IOArea, Snap7IOData, Snap7IODirection, Snap7IOTypeEnum, Sphere, SphereShapeTypeEnum, StartMovementRequest, StartMovementRequestMessageTypeEnum, StartMovementResponse, StartMovementResponseKindEnum, StartOnIO, StorageKey, StorageKeySourceEnum, StoreCollisionComponentsApi, StoreCollisionComponentsApiAxiosParamCreator, StoreCollisionComponentsApiFactory, StoreCollisionComponentsApiFp, StoreCollisionSetupsApi, StoreCollisionSetupsApiAxiosParamCreator, StoreCollisionSetupsApiFactory, StoreCollisionSetupsApiFp, StoreObjectApi, StoreObjectApiAxiosParamCreator, StoreObjectApiFactory, StoreObjectApiFp, StreamIOValuesResponse, SystemApi, SystemApiAxiosParamCreator, SystemApiFactory, SystemApiFp, TcpOffset, TcpRequiredError, TcpRequiredErrorKindEnum, TcpVelocityRequest, TcpVelocityRequestMessageTypeEnum, TcpVelocityResponse, TcpVelocityResponseKindEnum, ToolValue, ToolValueOrKey, ToolValueSourceEnum, TorqueExceededError, TorqueExceededErrorKindEnum, TorqueExceededErrorTorqueExceeded, TrajectoryCachingApi, TrajectoryCachingApiAxiosParamCreator, TrajectoryCachingApiFactory, TrajectoryCachingApiFp, TrajectoryData, TrajectoryDataMessageTypeEnum, TrajectoryDetails, TrajectoryDetailsKindEnum, TrajectoryDetailsState, TrajectoryEnded, TrajectoryEndedKindEnum, TrajectoryExecutionApi, TrajectoryExecutionApiAxiosParamCreator, TrajectoryExecutionApiFactory, TrajectoryExecutionApiFp, TrajectoryId, TrajectoryIdMessageTypeEnum, TrajectoryPausedByUser, TrajectoryPausedByUserKindEnum, TrajectoryPausedOnIO, TrajectoryPausedOnIOKindEnum, TrajectoryPlanningApi, TrajectoryPlanningApiAxiosParamCreator, TrajectoryPlanningApiFactory, TrajectoryPlanningApiFp, TrajectoryRunning, TrajectoryRunningKindEnum, TrajectorySection, TrajectoryWaitForIO, TrajectoryWaitForIOKindEnum, UnitType, UniversalrobotsController, UniversalrobotsControllerKindEnum, UpdateCellVersionRequest, UpdateNovaVersionRequest, User, ValidationError, ValidationError2, ValidationErrorLocInner, VersionApi, VersionApiAxiosParamCreator, VersionApiFactory, VersionApiFp, VirtualController, VirtualControllerApi, VirtualControllerApiAxiosParamCreator, VirtualControllerApiFactory, VirtualControllerApiFp, VirtualControllerBehaviorApi, VirtualControllerBehaviorApiAxiosParamCreator, VirtualControllerBehaviorApiFactory, VirtualControllerBehaviorApiFp, VirtualControllerInputsOutputsApi, VirtualControllerInputsOutputsApiAxiosParamCreator, VirtualControllerInputsOutputsApiFactory, VirtualControllerInputsOutputsApiFp, VirtualControllerKindEnum, VirtualRobotConfiguration, WaitForIOEventRequest, YaskawaController, YaskawaControllerKindEnum, ZodValidationError, ZodValidationErrorError, ZodValidationErrorErrorCodeEnum, ZodValidationErrorErrorDetailsInner, ZodValidationErrorErrorDetailsInnerPathInner, operationServerMap };
|