@wandelbots/nova-api 26.5.0-dev.3 → 26.5.0-dev.30
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 +350 -275
- package/dist/v2/index.d.cts +301 -5
- package/dist/v2/index.d.ts +301 -5
- package/dist/v2/index.js +106 -40
- package/package.json +1 -1
package/dist/v2/index.d.ts
CHANGED
|
@@ -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
|
*/
|
|
@@ -1486,6 +1553,24 @@ type ExecuteTrajectoryResponse = {
|
|
|
1486
1553
|
} & PlaybackSpeedResponse | {
|
|
1487
1554
|
kind: 'START_RECEIVED';
|
|
1488
1555
|
} & StartMovementResponse;
|
|
1556
|
+
/**
|
|
1557
|
+
* @type ExecuteWaypointJoggingRequest
|
|
1558
|
+
*/
|
|
1559
|
+
type ExecuteWaypointJoggingRequest = InitializeJoggingRequest | JointWaypointsRequest | PauseJoggingRequest | PoseWaypointsRequest;
|
|
1560
|
+
/**
|
|
1561
|
+
* @type ExecuteWaypointJoggingResponse
|
|
1562
|
+
*/
|
|
1563
|
+
type ExecuteWaypointJoggingResponse = {
|
|
1564
|
+
kind: 'INITIALIZE_RECEIVED';
|
|
1565
|
+
} & InitializeJoggingResponse | {
|
|
1566
|
+
kind: 'JOINT_WAYPOINTS_RECEIVED';
|
|
1567
|
+
} & JointWaypointsResponse | {
|
|
1568
|
+
kind: 'MOTION_ERROR';
|
|
1569
|
+
} & MovementErrorResponse | {
|
|
1570
|
+
kind: 'PAUSE_RECEIVED';
|
|
1571
|
+
} & PauseJoggingResponse | {
|
|
1572
|
+
kind: 'POSE_WAYPOINTS_RECEIVED';
|
|
1573
|
+
} & PoseWaypointsResponse;
|
|
1489
1574
|
/**
|
|
1490
1575
|
* A datapoint inside external joint stream.
|
|
1491
1576
|
*/
|
|
@@ -2100,6 +2185,10 @@ type InverseKinematicsValidationErrorAllOfData = ErrorInvalidJointCount | ErrorJ
|
|
|
2100
2185
|
*/
|
|
2101
2186
|
interface JoggingDetails {
|
|
2102
2187
|
'state': JoggingDetailsState;
|
|
2188
|
+
/**
|
|
2189
|
+
* 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.
|
|
2190
|
+
*/
|
|
2191
|
+
'jogger_session_timestamp_ms'?: number;
|
|
2103
2192
|
'kind': JoggingDetailsKindEnum;
|
|
2104
2193
|
}
|
|
2105
2194
|
declare const JoggingDetailsKindEnum: {
|
|
@@ -2255,13 +2344,57 @@ declare const JointVelocityResponseKindEnum: {
|
|
|
2255
2344
|
readonly JointVelocityReceived: "JOINT_VELOCITY_RECEIVED";
|
|
2256
2345
|
};
|
|
2257
2346
|
type JointVelocityResponseKindEnum = typeof JointVelocityResponseKindEnum[keyof typeof JointVelocityResponseKindEnum];
|
|
2347
|
+
/**
|
|
2348
|
+
* A waypoint in joint space for jogging. > **NOTE** > > This type is experimental and its behavior may change in future releases.
|
|
2349
|
+
*/
|
|
2350
|
+
interface JointWaypoint {
|
|
2351
|
+
/**
|
|
2352
|
+
* Time since session start for when this waypoint should be reached [ms].
|
|
2353
|
+
*/
|
|
2354
|
+
'timestamp': number;
|
|
2355
|
+
/**
|
|
2356
|
+
* This structure describes a set of joint values, e.g., positions, currents, torques, of a motion group. Float precision is the default.
|
|
2357
|
+
*/
|
|
2358
|
+
'joints': Array<number>;
|
|
2359
|
+
}
|
|
2360
|
+
/**
|
|
2361
|
+
* 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.
|
|
2362
|
+
*/
|
|
2363
|
+
interface JointWaypointsRequest {
|
|
2364
|
+
/**
|
|
2365
|
+
* Type specifier for server, set automatically.
|
|
2366
|
+
*/
|
|
2367
|
+
'message_type': JointWaypointsRequestMessageTypeEnum;
|
|
2368
|
+
/**
|
|
2369
|
+
* List of joint waypoints.
|
|
2370
|
+
*/
|
|
2371
|
+
'waypoints': Array<JointWaypoint>;
|
|
2372
|
+
}
|
|
2373
|
+
declare const JointWaypointsRequestMessageTypeEnum: {
|
|
2374
|
+
readonly JointWaypointsRequest: "JointWaypointsRequest";
|
|
2375
|
+
};
|
|
2376
|
+
type JointWaypointsRequestMessageTypeEnum = typeof JointWaypointsRequestMessageTypeEnum[keyof typeof JointWaypointsRequestMessageTypeEnum];
|
|
2377
|
+
/**
|
|
2378
|
+
* Acknowledgment to a JointWaypointsRequest.
|
|
2379
|
+
*/
|
|
2380
|
+
interface JointWaypointsResponse {
|
|
2381
|
+
/**
|
|
2382
|
+
* Error message in case of invalid JointWaypointsRequest.
|
|
2383
|
+
*/
|
|
2384
|
+
'message'?: string;
|
|
2385
|
+
'kind': JointWaypointsResponseKindEnum;
|
|
2386
|
+
}
|
|
2387
|
+
declare const JointWaypointsResponseKindEnum: {
|
|
2388
|
+
readonly JointWaypointsReceived: "JOINT_WAYPOINTS_RECEIVED";
|
|
2389
|
+
};
|
|
2390
|
+
type JointWaypointsResponseKindEnum = typeof JointWaypointsResponseKindEnum[keyof typeof JointWaypointsResponseKindEnum];
|
|
2258
2391
|
/**
|
|
2259
2392
|
* 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
2393
|
*/
|
|
2261
2394
|
interface KinematicBranch {
|
|
2262
|
-
'wrist_branch'
|
|
2263
|
-
'elbow_branch'
|
|
2264
|
-
'shoulder_branch'
|
|
2395
|
+
'wrist_branch': KinematicBranchWrist;
|
|
2396
|
+
'elbow_branch': KinematicBranchElbow;
|
|
2397
|
+
'shoulder_branch': KinematicBranchShoulder;
|
|
2265
2398
|
}
|
|
2266
2399
|
declare const KinematicBranchElbow: {
|
|
2267
2400
|
readonly Up: "UP";
|
|
@@ -2487,6 +2620,34 @@ interface LimitsOverride {
|
|
|
2487
2620
|
*/
|
|
2488
2621
|
'tcp_orientation_jerk_limit'?: number;
|
|
2489
2622
|
}
|
|
2623
|
+
/**
|
|
2624
|
+
* An inline link chain wrapped for discriminator support.
|
|
2625
|
+
*/
|
|
2626
|
+
interface LinkChainValue {
|
|
2627
|
+
/**
|
|
2628
|
+
* Discriminator value indicating an inline value.
|
|
2629
|
+
*/
|
|
2630
|
+
'source': LinkChainValueSourceEnum;
|
|
2631
|
+
/**
|
|
2632
|
+
* 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.
|
|
2633
|
+
*/
|
|
2634
|
+
'link_chain': Array<{
|
|
2635
|
+
[key: string]: Collider;
|
|
2636
|
+
}>;
|
|
2637
|
+
}
|
|
2638
|
+
declare const LinkChainValueSourceEnum: {
|
|
2639
|
+
readonly Value: "value";
|
|
2640
|
+
};
|
|
2641
|
+
type LinkChainValueSourceEnum = typeof LinkChainValueSourceEnum[keyof typeof LinkChainValueSourceEnum];
|
|
2642
|
+
/**
|
|
2643
|
+
* @type LinkChainValueOrKey
|
|
2644
|
+
* Either an inline link chain or a storage key referencing a stored link chain. Discriminated by the \"source\" property.
|
|
2645
|
+
*/
|
|
2646
|
+
type LinkChainValueOrKey = {
|
|
2647
|
+
source: 'key';
|
|
2648
|
+
} & StorageKey | {
|
|
2649
|
+
source: 'value';
|
|
2650
|
+
} & LinkChainValue;
|
|
2490
2651
|
interface ListTrajectoriesResponse {
|
|
2491
2652
|
/**
|
|
2492
2653
|
* 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.
|
|
@@ -3158,7 +3319,7 @@ interface OperationLimits {
|
|
|
3158
3319
|
'manual_t1_limits'?: LimitSet;
|
|
3159
3320
|
'manual_t2_limits'?: LimitSet;
|
|
3160
3321
|
/**
|
|
3161
|
-
* Flag to indicate whether the
|
|
3322
|
+
* Flag to indicate whether the TCP velocity limit is also applied for the elbow and flange in auto mode.
|
|
3162
3323
|
*/
|
|
3163
3324
|
'safety_limit_elbow_flange_velocity_in_auto'?: boolean;
|
|
3164
3325
|
}
|
|
@@ -3385,6 +3546,12 @@ interface PlanCollisionFreeRequest {
|
|
|
3385
3546
|
* The data to assemble the robot setup can be retrieved from the [getMotionGroupDescription](#/operations/getMotionGroupDescription) endpoint.
|
|
3386
3547
|
*/
|
|
3387
3548
|
'motion_group_setup': MotionGroupSetup;
|
|
3549
|
+
/**
|
|
3550
|
+
* 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.
|
|
3551
|
+
*/
|
|
3552
|
+
'collision_setups'?: {
|
|
3553
|
+
[key: string]: CollisionSetupValueOrKey;
|
|
3554
|
+
};
|
|
3388
3555
|
'start_joint_position': Array<number>;
|
|
3389
3556
|
'target': Array<number>;
|
|
3390
3557
|
/**
|
|
@@ -3504,6 +3671,50 @@ interface Pose {
|
|
|
3504
3671
|
*/
|
|
3505
3672
|
'orientation'?: Array<number>;
|
|
3506
3673
|
}
|
|
3674
|
+
/**
|
|
3675
|
+
* A waypoint in Cartesian space for jogging. > **NOTE** > > This type is experimental and its behavior may change in future releases.
|
|
3676
|
+
*/
|
|
3677
|
+
interface PoseWaypoint {
|
|
3678
|
+
/**
|
|
3679
|
+
* Time since session start for when this waypoint should be reached [ms].
|
|
3680
|
+
*/
|
|
3681
|
+
'timestamp': number;
|
|
3682
|
+
/**
|
|
3683
|
+
* Cartesian pose for this waypoint.
|
|
3684
|
+
*/
|
|
3685
|
+
'pose': Pose;
|
|
3686
|
+
}
|
|
3687
|
+
/**
|
|
3688
|
+
* 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.
|
|
3689
|
+
*/
|
|
3690
|
+
interface PoseWaypointsRequest {
|
|
3691
|
+
/**
|
|
3692
|
+
* Type specifier for server, set automatically.
|
|
3693
|
+
*/
|
|
3694
|
+
'message_type': PoseWaypointsRequestMessageTypeEnum;
|
|
3695
|
+
/**
|
|
3696
|
+
* List of pose waypoints.
|
|
3697
|
+
*/
|
|
3698
|
+
'waypoints': Array<PoseWaypoint>;
|
|
3699
|
+
}
|
|
3700
|
+
declare const PoseWaypointsRequestMessageTypeEnum: {
|
|
3701
|
+
readonly PoseWaypointsRequest: "PoseWaypointsRequest";
|
|
3702
|
+
};
|
|
3703
|
+
type PoseWaypointsRequestMessageTypeEnum = typeof PoseWaypointsRequestMessageTypeEnum[keyof typeof PoseWaypointsRequestMessageTypeEnum];
|
|
3704
|
+
/**
|
|
3705
|
+
* Acknowledgment to a PoseWaypointsRequest.
|
|
3706
|
+
*/
|
|
3707
|
+
interface PoseWaypointsResponse {
|
|
3708
|
+
/**
|
|
3709
|
+
* Error message in case of invalid PoseWaypointsRequest.
|
|
3710
|
+
*/
|
|
3711
|
+
'message'?: string;
|
|
3712
|
+
'kind': PoseWaypointsResponseKindEnum;
|
|
3713
|
+
}
|
|
3714
|
+
declare const PoseWaypointsResponseKindEnum: {
|
|
3715
|
+
readonly PoseWaypointsReceived: "POSE_WAYPOINTS_RECEIVED";
|
|
3716
|
+
};
|
|
3717
|
+
type PoseWaypointsResponseKindEnum = typeof PoseWaypointsResponseKindEnum[keyof typeof PoseWaypointsResponseKindEnum];
|
|
3507
3718
|
interface ProfinetDescription {
|
|
3508
3719
|
/**
|
|
3509
3720
|
* The vendor identifier of the PROFINET device, identifying the manufacturer.
|
|
@@ -4428,6 +4639,23 @@ interface StartOnIO {
|
|
|
4428
4639
|
'comparator': Comparator;
|
|
4429
4640
|
'io_origin': IOOrigin;
|
|
4430
4641
|
}
|
|
4642
|
+
/**
|
|
4643
|
+
* 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/).
|
|
4644
|
+
*/
|
|
4645
|
+
interface StorageKey {
|
|
4646
|
+
/**
|
|
4647
|
+
* Discriminator value indicating a storage reference.
|
|
4648
|
+
*/
|
|
4649
|
+
'source': StorageKeySourceEnum;
|
|
4650
|
+
/**
|
|
4651
|
+
* 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}).
|
|
4652
|
+
*/
|
|
4653
|
+
'key': string;
|
|
4654
|
+
}
|
|
4655
|
+
declare const StorageKeySourceEnum: {
|
|
4656
|
+
readonly Key: "key";
|
|
4657
|
+
};
|
|
4658
|
+
type StorageKeySourceEnum = typeof StorageKeySourceEnum[keyof typeof StorageKeySourceEnum];
|
|
4431
4659
|
/**
|
|
4432
4660
|
* Array of input/output values.
|
|
4433
4661
|
*/
|
|
@@ -4499,6 +4727,34 @@ declare const TcpVelocityResponseKindEnum: {
|
|
|
4499
4727
|
readonly TcpVelocityReceived: "TCP_VELOCITY_RECEIVED";
|
|
4500
4728
|
};
|
|
4501
4729
|
type TcpVelocityResponseKindEnum = typeof TcpVelocityResponseKindEnum[keyof typeof TcpVelocityResponseKindEnum];
|
|
4730
|
+
/**
|
|
4731
|
+
* An inline tool collider wrapped for discriminator support.
|
|
4732
|
+
*/
|
|
4733
|
+
interface ToolValue {
|
|
4734
|
+
/**
|
|
4735
|
+
* Discriminator value indicating an inline value.
|
|
4736
|
+
*/
|
|
4737
|
+
'source': ToolValueSourceEnum;
|
|
4738
|
+
/**
|
|
4739
|
+
* 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.
|
|
4740
|
+
*/
|
|
4741
|
+
'tool': {
|
|
4742
|
+
[key: string]: Collider;
|
|
4743
|
+
};
|
|
4744
|
+
}
|
|
4745
|
+
declare const ToolValueSourceEnum: {
|
|
4746
|
+
readonly Value: "value";
|
|
4747
|
+
};
|
|
4748
|
+
type ToolValueSourceEnum = typeof ToolValueSourceEnum[keyof typeof ToolValueSourceEnum];
|
|
4749
|
+
/**
|
|
4750
|
+
* @type ToolValueOrKey
|
|
4751
|
+
* Either an inline tool collider or a storage key referencing a stored tool. Discriminated by the \"source\" property.
|
|
4752
|
+
*/
|
|
4753
|
+
type ToolValueOrKey = {
|
|
4754
|
+
source: 'key';
|
|
4755
|
+
} & StorageKey | {
|
|
4756
|
+
source: 'value';
|
|
4757
|
+
} & ToolValue;
|
|
4502
4758
|
interface TorqueExceededError {
|
|
4503
4759
|
'kind': TorqueExceededErrorKindEnum;
|
|
4504
4760
|
'torque_exceeded'?: TorqueExceededErrorTorqueExceeded;
|
|
@@ -7022,6 +7278,16 @@ declare const JoggingApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
7022
7278
|
* @throws {RequiredError}
|
|
7023
7279
|
*/
|
|
7024
7280
|
executeJogging: (cell: string, controller: string, executeJoggingRequest: ExecuteJoggingRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
7281
|
+
/**
|
|
7282
|
+
* **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.
|
|
7283
|
+
* @summary Execute Waypoint Jogging
|
|
7284
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
7285
|
+
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
7286
|
+
* @param {ExecuteWaypointJoggingRequest} executeWaypointJoggingRequest
|
|
7287
|
+
* @param {*} [options] Override http request option.
|
|
7288
|
+
* @throws {RequiredError}
|
|
7289
|
+
*/
|
|
7290
|
+
executeWaypointJogging: (cell: string, controller: string, executeWaypointJoggingRequest: ExecuteWaypointJoggingRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
7025
7291
|
};
|
|
7026
7292
|
/**
|
|
7027
7293
|
* JoggingApi - functional programming interface
|
|
@@ -7037,6 +7303,16 @@ declare const JoggingApiFp: (configuration?: Configuration) => {
|
|
|
7037
7303
|
* @throws {RequiredError}
|
|
7038
7304
|
*/
|
|
7039
7305
|
executeJogging(cell: string, controller: string, executeJoggingRequest: ExecuteJoggingRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ExecuteJoggingResponse>>;
|
|
7306
|
+
/**
|
|
7307
|
+
* **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.
|
|
7308
|
+
* @summary Execute Waypoint Jogging
|
|
7309
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
7310
|
+
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
7311
|
+
* @param {ExecuteWaypointJoggingRequest} executeWaypointJoggingRequest
|
|
7312
|
+
* @param {*} [options] Override http request option.
|
|
7313
|
+
* @throws {RequiredError}
|
|
7314
|
+
*/
|
|
7315
|
+
executeWaypointJogging(cell: string, controller: string, executeWaypointJoggingRequest: ExecuteWaypointJoggingRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ExecuteWaypointJoggingResponse>>;
|
|
7040
7316
|
};
|
|
7041
7317
|
/**
|
|
7042
7318
|
* JoggingApi - factory interface
|
|
@@ -7052,6 +7328,16 @@ declare const JoggingApiFactory: (configuration?: Configuration, basePath?: stri
|
|
|
7052
7328
|
* @throws {RequiredError}
|
|
7053
7329
|
*/
|
|
7054
7330
|
executeJogging(cell: string, controller: string, executeJoggingRequest: ExecuteJoggingRequest, options?: RawAxiosRequestConfig): AxiosPromise<ExecuteJoggingResponse>;
|
|
7331
|
+
/**
|
|
7332
|
+
* **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.
|
|
7333
|
+
* @summary Execute Waypoint Jogging
|
|
7334
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
7335
|
+
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
7336
|
+
* @param {ExecuteWaypointJoggingRequest} executeWaypointJoggingRequest
|
|
7337
|
+
* @param {*} [options] Override http request option.
|
|
7338
|
+
* @throws {RequiredError}
|
|
7339
|
+
*/
|
|
7340
|
+
executeWaypointJogging(cell: string, controller: string, executeWaypointJoggingRequest: ExecuteWaypointJoggingRequest, options?: RawAxiosRequestConfig): AxiosPromise<ExecuteWaypointJoggingResponse>;
|
|
7055
7341
|
};
|
|
7056
7342
|
/**
|
|
7057
7343
|
* JoggingApi - object-oriented interface
|
|
@@ -7067,6 +7353,16 @@ declare class JoggingApi extends BaseAPI {
|
|
|
7067
7353
|
* @throws {RequiredError}
|
|
7068
7354
|
*/
|
|
7069
7355
|
executeJogging(cell: string, controller: string, executeJoggingRequest: ExecuteJoggingRequest, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<ExecuteJoggingResponse, any, {}>>;
|
|
7356
|
+
/**
|
|
7357
|
+
* **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.
|
|
7358
|
+
* @summary Execute Waypoint Jogging
|
|
7359
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
7360
|
+
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
7361
|
+
* @param {ExecuteWaypointJoggingRequest} executeWaypointJoggingRequest
|
|
7362
|
+
* @param {*} [options] Override http request option.
|
|
7363
|
+
* @throws {RequiredError}
|
|
7364
|
+
*/
|
|
7365
|
+
executeWaypointJogging(cell: string, controller: string, executeWaypointJoggingRequest: ExecuteWaypointJoggingRequest, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<ExecuteWaypointJoggingResponse, any, {}>>;
|
|
7070
7366
|
}
|
|
7071
7367
|
/**
|
|
7072
7368
|
* KinematicsApi - axios parameter creator
|
|
@@ -11383,4 +11679,4 @@ declare class VirtualControllerInputsOutputsApi extends BaseAPI {
|
|
|
11383
11679
|
setIOValues(cell: string, controller: string, iOValue: Array<IOValue>, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<void, any, {}>>;
|
|
11384
11680
|
}
|
|
11385
11681
|
//#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 };
|
|
11682
|
+
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, 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, 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 };
|