@wandelbots/nova-api 26.6.0-dev.8 → 26.6.0-dev.81
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 +526 -263
- package/dist/v2/index.d.cts +450 -38
- package/dist/v2/index.d.ts +450 -38
- package/dist/v2/index.js +251 -15
- package/package.json +1 -6
- package/dist/defineProperty-6Ts4XR6h.js +0 -39
- package/dist/defineProperty-D0JvJyYC.cjs +0 -72
- package/dist/v1/index.cjs +0 -10324
- package/dist/v1/index.d.cts +0 -11386
- package/dist/v1/index.d.ts +0 -11386
- package/dist/v1/index.js +0 -10135
package/dist/v2/index.d.cts
CHANGED
|
@@ -6,7 +6,7 @@ import { AxiosInstance, AxiosPromise, RawAxiosRequestConfig } from "axios";
|
|
|
6
6
|
* Wandelbots NOVA API
|
|
7
7
|
* Interact with robots in an easy and intuitive way.
|
|
8
8
|
*
|
|
9
|
-
* The version of the OpenAPI document: 2.
|
|
9
|
+
* The version of the OpenAPI document: 2.6.0 dev
|
|
10
10
|
*
|
|
11
11
|
*
|
|
12
12
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -252,7 +252,7 @@ interface AddTrajectoryResponse {
|
|
|
252
252
|
}
|
|
253
253
|
/**
|
|
254
254
|
* @type AddVirtualControllerMotionGroupRequest
|
|
255
|
-
* Request body wrapper for `addVirtualControllerMotionGroup`. Allow
|
|
255
|
+
* Request body wrapper for `addVirtualControllerMotionGroup`. Allow either referencing a predefined motion group model or uploading a JSON configuration that the backend converts into a motion group description.
|
|
256
256
|
*/
|
|
257
257
|
type AddVirtualControllerMotionGroupRequest = MotionGroupFromJson | MotionGroupFromType;
|
|
258
258
|
interface ApiVersion {
|
|
@@ -266,7 +266,7 @@ interface ApiVersion {
|
|
|
266
266
|
*/
|
|
267
267
|
interface App {
|
|
268
268
|
/**
|
|
269
|
-
* The name of the provided application. The name must be unique within the cell and is used as
|
|
269
|
+
* The name of the provided application. The name must be unique within the cell and is used as an identifier for addressing the application in all API calls , e.g., when updating the application. It also defines where the application is reachable (/$cell/$name). It must be a valid k8s label name as defined by [RFC 1035](https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#rfc-1035-label-names).
|
|
270
270
|
*/
|
|
271
271
|
'name': string;
|
|
272
272
|
/**
|
|
@@ -374,6 +374,48 @@ declare const BooleanValueValueTypeEnum: {
|
|
|
374
374
|
readonly Boolean: "boolean";
|
|
375
375
|
};
|
|
376
376
|
type BooleanValueValueTypeEnum = typeof BooleanValueValueTypeEnum[keyof typeof BooleanValueValueTypeEnum];
|
|
377
|
+
/**
|
|
378
|
+
* The configuration of a Boston Dynamics robot controller. Requires the hostname or IP address of the robot and authentication credentials.
|
|
379
|
+
*/
|
|
380
|
+
interface BostondynamicsController {
|
|
381
|
+
'kind': BostondynamicsControllerKindEnum;
|
|
382
|
+
/**
|
|
383
|
+
* The hostname or IP address of the robot.
|
|
384
|
+
*/
|
|
385
|
+
'controller_ip': string;
|
|
386
|
+
/**
|
|
387
|
+
* The Boston Dynamics robot model type.
|
|
388
|
+
*/
|
|
389
|
+
'robot_type'?: BostondynamicsControllerRobotTypeEnum;
|
|
390
|
+
/**
|
|
391
|
+
* The authentication password for the robot.
|
|
392
|
+
*/
|
|
393
|
+
'password': string;
|
|
394
|
+
/**
|
|
395
|
+
* The authentication username for the robot.
|
|
396
|
+
*/
|
|
397
|
+
'username'?: string;
|
|
398
|
+
/**
|
|
399
|
+
* The network interface used to communicate with the robot.
|
|
400
|
+
*/
|
|
401
|
+
'network_interface'?: string;
|
|
402
|
+
/**
|
|
403
|
+
* JPEG quality for camera streams (1-100).
|
|
404
|
+
*/
|
|
405
|
+
'stream_quality'?: number;
|
|
406
|
+
/**
|
|
407
|
+
* Frames per second for camera streams.
|
|
408
|
+
*/
|
|
409
|
+
'stream_fps'?: number;
|
|
410
|
+
}
|
|
411
|
+
declare const BostondynamicsControllerKindEnum: {
|
|
412
|
+
readonly BostondynamicsController: "BostondynamicsController";
|
|
413
|
+
};
|
|
414
|
+
type BostondynamicsControllerKindEnum = typeof BostondynamicsControllerKindEnum[keyof typeof BostondynamicsControllerKindEnum];
|
|
415
|
+
declare const BostondynamicsControllerRobotTypeEnum: {
|
|
416
|
+
readonly Spot: "spot";
|
|
417
|
+
};
|
|
418
|
+
type BostondynamicsControllerRobotTypeEnum = typeof BostondynamicsControllerRobotTypeEnum[keyof typeof BostondynamicsControllerRobotTypeEnum];
|
|
377
419
|
/**
|
|
378
420
|
* Defines a cuboid shape centred around an origin. If a margin is applied to the box type full, it is added to all size values. The shape will keep its edges. The hollow box type consists of thin boxes that make up its walls. If a margin is applied to the box type hollow, its size values are reduced by the margin.
|
|
379
421
|
*/
|
|
@@ -683,19 +725,44 @@ declare const CapsuleShapeTypeEnum: {
|
|
|
683
725
|
};
|
|
684
726
|
type CapsuleShapeTypeEnum = typeof CapsuleShapeTypeEnum[keyof typeof CapsuleShapeTypeEnum];
|
|
685
727
|
interface CartesianLimits {
|
|
728
|
+
/**
|
|
729
|
+
* Cartesian velocity limit in mm/s.
|
|
730
|
+
*/
|
|
686
731
|
'velocity'?: number;
|
|
732
|
+
/**
|
|
733
|
+
* Cartesian acceleration limit in mm/s².
|
|
734
|
+
*/
|
|
687
735
|
'acceleration'?: number;
|
|
688
736
|
/**
|
|
689
|
-
* > **NOTE** > > This limit type is experimental and its behavior may change in future releases.
|
|
737
|
+
* Cartesian jerk limit in mm/s³. > **NOTE** > > This limit type is experimental and its behavior may change in future releases.
|
|
690
738
|
*/
|
|
691
739
|
'jerk'?: number;
|
|
740
|
+
/**
|
|
741
|
+
* Orientation velocity limit in rad/s.
|
|
742
|
+
*/
|
|
692
743
|
'orientation_velocity'?: number;
|
|
744
|
+
/**
|
|
745
|
+
* Orientation acceleration limit in rad/s².
|
|
746
|
+
*/
|
|
693
747
|
'orientation_acceleration'?: number;
|
|
694
748
|
/**
|
|
695
|
-
* > **NOTE** > > This limit type is experimental and its behavior may change in future releases.
|
|
749
|
+
* Orientation jerk limit in rad/s³. > **NOTE** > > This limit type is experimental and its behavior may change in future releases.
|
|
696
750
|
*/
|
|
697
751
|
'orientation_jerk'?: number;
|
|
698
752
|
}
|
|
753
|
+
/**
|
|
754
|
+
* Defines a cartesian velocity in 3D space. The unit of the translation velocity is mm/s and the unit of the rotation velocity is rad/s.
|
|
755
|
+
*/
|
|
756
|
+
interface CartesianVelocity {
|
|
757
|
+
/**
|
|
758
|
+
* A three-dimensional vector [x, y, z] with double precision.
|
|
759
|
+
*/
|
|
760
|
+
'translation': Array<number>;
|
|
761
|
+
/**
|
|
762
|
+
* A three-dimensional vector [x, y, z] with double precision.
|
|
763
|
+
*/
|
|
764
|
+
'rotation': Array<number>;
|
|
765
|
+
}
|
|
699
766
|
/**
|
|
700
767
|
* 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
768
|
*/
|
|
@@ -880,6 +947,36 @@ interface CloudRegistrationSuccessResponse {
|
|
|
880
947
|
*/
|
|
881
948
|
'instance': number;
|
|
882
949
|
}
|
|
950
|
+
interface CloudStatus {
|
|
951
|
+
/**
|
|
952
|
+
* Whether NOVA Cloud is fully reachable, i.e. every reachability check passed. `false` when the instance is not configured or any check fails.
|
|
953
|
+
*/
|
|
954
|
+
'ready': boolean;
|
|
955
|
+
'checks': CloudStatusChecks;
|
|
956
|
+
'errors': CloudStatusErrors;
|
|
957
|
+
/**
|
|
958
|
+
* Timestamp at which the reachability checks were performed (RFC 3339).
|
|
959
|
+
*/
|
|
960
|
+
'checked_at': string;
|
|
961
|
+
}
|
|
962
|
+
/**
|
|
963
|
+
* Result of each reachability check. A check is absent when a prerequisite check failed and it was not run.
|
|
964
|
+
*/
|
|
965
|
+
interface CloudStatusChecks {
|
|
966
|
+
'is_configured'?: boolean;
|
|
967
|
+
'can_connect_nats'?: boolean;
|
|
968
|
+
'can_ping_nats'?: boolean;
|
|
969
|
+
'can_reach_openfga'?: boolean;
|
|
970
|
+
}
|
|
971
|
+
/**
|
|
972
|
+
* Failure reason for each failed check, to help diagnose what is wrong.
|
|
973
|
+
*/
|
|
974
|
+
interface CloudStatusErrors {
|
|
975
|
+
'is_configured'?: string;
|
|
976
|
+
'can_connect_nats'?: string;
|
|
977
|
+
'can_ping_nats'?: string;
|
|
978
|
+
'can_reach_openfga'?: string;
|
|
979
|
+
}
|
|
883
980
|
/**
|
|
884
981
|
* Defines a collider with a single shape. A collider is an object that is used for collision detection. It defines the `shape` that is attached with the offset of `pose` to a reference frame. Use colliders to: - Define the shape of a workpiece. The reference frame is the scene origin. - Define the shape of a link in a motion group. The reference frame is the link coordinate system. - Define the shape of a tool. The reference frame is the flange coordinate system.
|
|
885
982
|
*/
|
|
@@ -1240,6 +1337,19 @@ interface ControllerDescription {
|
|
|
1240
1337
|
*/
|
|
1241
1338
|
'supports_safety_zones': boolean;
|
|
1242
1339
|
}
|
|
1340
|
+
/**
|
|
1341
|
+
* Optional dedicated network interface for a physical robot controller. When set, the controller is given its own network interface on the selected physical network port (`pf`) with the given `address`, so it can reach the robot network directly.
|
|
1342
|
+
*/
|
|
1343
|
+
interface ControllerNetworkInterface {
|
|
1344
|
+
/**
|
|
1345
|
+
* IPv4 address in CIDR notation to assign to the controller\'s network interface, for example `192.168.1.10/24`. The value must be a valid IPv4 address followed by a prefix length between 0 and 32.
|
|
1346
|
+
*/
|
|
1347
|
+
'address': string;
|
|
1348
|
+
/**
|
|
1349
|
+
* Name of the node\'s physical network port that connects to the robot network, for example `enp10s0f0`. The controller\'s interface is provided from this port.
|
|
1350
|
+
*/
|
|
1351
|
+
'pf': string;
|
|
1352
|
+
}
|
|
1243
1353
|
interface ConvertVendorConfiguredPose422Response {
|
|
1244
1354
|
'detail'?: Array<ValidationError>;
|
|
1245
1355
|
}
|
|
@@ -1613,6 +1723,7 @@ interface ExternalJointStreamRequest {
|
|
|
1613
1723
|
interface FanucController {
|
|
1614
1724
|
'kind': FanucControllerKindEnum;
|
|
1615
1725
|
'controller_ip': string;
|
|
1726
|
+
'network_interface'?: ControllerNetworkInterface;
|
|
1616
1727
|
}
|
|
1617
1728
|
declare const FanucControllerKindEnum: {
|
|
1618
1729
|
readonly FanucController: "FanucController";
|
|
@@ -1883,6 +1994,39 @@ interface ForwardKinematicsValidationError {
|
|
|
1883
1994
|
};
|
|
1884
1995
|
'data'?: ErrorInvalidJointCount;
|
|
1885
1996
|
}
|
|
1997
|
+
interface GetKinematicConfiguration422Response {
|
|
1998
|
+
'detail'?: Array<GetKinematicConfigurationValidationError>;
|
|
1999
|
+
}
|
|
2000
|
+
interface GetKinematicConfigurationRequest {
|
|
2001
|
+
/**
|
|
2002
|
+
* Identifies a single motion group model. See [getMotionGroupModels](#/operations/getMotionGroupModels) for supported types.
|
|
2003
|
+
*/
|
|
2004
|
+
'motion_group_model': string;
|
|
2005
|
+
/**
|
|
2006
|
+
* List of joint positions for which kinematic configurations are computed. Each joint position must match the DOF of the specified motion group model. Unit: [rad] for joints. Supported motion group models: 6-DOF robots with spherical or offset wrist.
|
|
2007
|
+
*/
|
|
2008
|
+
'joint_positions': Array<Array<number>>;
|
|
2009
|
+
}
|
|
2010
|
+
interface GetKinematicConfigurationResponse {
|
|
2011
|
+
/**
|
|
2012
|
+
* List of kinematic configurations corresponding to the input joint positions.
|
|
2013
|
+
*/
|
|
2014
|
+
'kinematic_configurations': Array<KinematicConfiguration>;
|
|
2015
|
+
}
|
|
2016
|
+
interface GetKinematicConfigurationValidationError {
|
|
2017
|
+
'loc': Array<ValidationErrorLocInner>;
|
|
2018
|
+
'msg': string;
|
|
2019
|
+
'type': string;
|
|
2020
|
+
'input': {
|
|
2021
|
+
[key: string]: any;
|
|
2022
|
+
};
|
|
2023
|
+
'data'?: GetKinematicConfigurationValidationErrorAllOfData;
|
|
2024
|
+
}
|
|
2025
|
+
/**
|
|
2026
|
+
* @type GetKinematicConfigurationValidationErrorAllOfData
|
|
2027
|
+
* Optional data further specifying the validation error.
|
|
2028
|
+
*/
|
|
2029
|
+
type GetKinematicConfigurationValidationErrorAllOfData = ErrorInvalidJointCount | ErrorUnsupportedOperation;
|
|
1886
2030
|
interface GetTrajectoryResponse {
|
|
1887
2031
|
/**
|
|
1888
2032
|
* Unique identifier of the motion group the trajectory is planned for.
|
|
@@ -2335,13 +2479,25 @@ declare const JointLimitExceededErrorKindEnum: {
|
|
|
2335
2479
|
};
|
|
2336
2480
|
type JointLimitExceededErrorKindEnum = typeof JointLimitExceededErrorKindEnum[keyof typeof JointLimitExceededErrorKindEnum];
|
|
2337
2481
|
interface JointLimits {
|
|
2482
|
+
/**
|
|
2483
|
+
* Joint position limits in rad.
|
|
2484
|
+
*/
|
|
2338
2485
|
'position'?: LimitRange;
|
|
2486
|
+
/**
|
|
2487
|
+
* Joint velocity limit in rad/s.
|
|
2488
|
+
*/
|
|
2339
2489
|
'velocity'?: number;
|
|
2490
|
+
/**
|
|
2491
|
+
* Joint acceleration limit in rad/s².
|
|
2492
|
+
*/
|
|
2340
2493
|
'acceleration'?: number;
|
|
2341
2494
|
/**
|
|
2342
|
-
* > **NOTE** > > This limit type is experimental and its behavior may change in future releases.
|
|
2495
|
+
* Joint jerk limit in rad/s³. > **NOTE** > > This limit type is experimental and its behavior may change in future releases.
|
|
2343
2496
|
*/
|
|
2344
2497
|
'jerk'?: number;
|
|
2498
|
+
/**
|
|
2499
|
+
* Joint torque limit in Nm.
|
|
2500
|
+
*/
|
|
2345
2501
|
'torque'?: number;
|
|
2346
2502
|
}
|
|
2347
2503
|
interface JointPTPMotion {
|
|
@@ -2621,7 +2777,13 @@ type LicenseStatusEnum = typeof LicenseStatusEnum[keyof typeof LicenseStatusEnum
|
|
|
2621
2777
|
* The upper_limit must be greater then the lower_limit.
|
|
2622
2778
|
*/
|
|
2623
2779
|
interface LimitRange {
|
|
2780
|
+
/**
|
|
2781
|
+
* Lower position limit in rad.
|
|
2782
|
+
*/
|
|
2624
2783
|
'lower_limit'?: number;
|
|
2784
|
+
/**
|
|
2785
|
+
* Upper position limit in rad.
|
|
2786
|
+
*/
|
|
2625
2787
|
'upper_limit'?: number;
|
|
2626
2788
|
}
|
|
2627
2789
|
interface LimitSet {
|
|
@@ -2708,9 +2870,11 @@ interface ListTrajectoriesResponse {
|
|
|
2708
2870
|
}
|
|
2709
2871
|
declare const Manufacturer: {
|
|
2710
2872
|
readonly Abb: "abb";
|
|
2873
|
+
readonly Bostondynamics: "bostondynamics";
|
|
2711
2874
|
readonly Fanuc: "fanuc";
|
|
2712
2875
|
readonly Kuka: "kuka";
|
|
2713
2876
|
readonly Staubli: "staubli";
|
|
2877
|
+
readonly Unitree: "unitree";
|
|
2714
2878
|
readonly Universalrobots: "universalrobots";
|
|
2715
2879
|
readonly Yaskawa: "yaskawa";
|
|
2716
2880
|
};
|
|
@@ -2759,7 +2923,7 @@ interface MergeTrajectoriesSegment {
|
|
|
2759
2923
|
*/
|
|
2760
2924
|
'trajectory': JointTrajectory;
|
|
2761
2925
|
/**
|
|
2762
|
-
* Limits override
|
|
2926
|
+
* Limits override defines additional limits for the blending at the end of this segment. These limits do not replace the global limits of the motion group. Instead, they are merged with the global limits so that the most restrictive value applies for each limit.
|
|
2763
2927
|
*/
|
|
2764
2928
|
'limits_override'?: LimitsOverride;
|
|
2765
2929
|
/**
|
|
@@ -2880,7 +3044,7 @@ interface ModelError {
|
|
|
2880
3044
|
interface MotionCommand {
|
|
2881
3045
|
'blending'?: MotionCommandBlending;
|
|
2882
3046
|
/**
|
|
2883
|
-
* Limits override
|
|
3047
|
+
* Limits override defines additional limits for this segment of the motion. These limits do not replace the global limits of the motion group. Instead, they are merged with the global limits so that the most restrictive value applies for each limit.
|
|
2884
3048
|
*/
|
|
2885
3049
|
'limits_override'?: LimitsOverride;
|
|
2886
3050
|
'path': MotionCommandPath;
|
|
@@ -2894,6 +3058,27 @@ type MotionCommandBlending = BlendingAuto | BlendingPosition;
|
|
|
2894
3058
|
* @type MotionCommandPath
|
|
2895
3059
|
*/
|
|
2896
3060
|
type MotionCommandPath = PathCartesianPTP | PathCircle | PathCubicSpline | PathDirectionConstrainedCartesianPTP | PathDirectionConstrainedJointPTP | PathJointPTP | PathLine;
|
|
3061
|
+
/**
|
|
3062
|
+
* Response for motion group configuration lookup.
|
|
3063
|
+
*/
|
|
3064
|
+
interface MotionGroupConfiguration {
|
|
3065
|
+
/**
|
|
3066
|
+
* Name of the robot configuration containing this motion group.
|
|
3067
|
+
*/
|
|
3068
|
+
'robot_configuration': string;
|
|
3069
|
+
/**
|
|
3070
|
+
* Identifies a single motion group model. See [getMotionGroupModels](#/operations/getMotionGroupModels) for supported types.
|
|
3071
|
+
*/
|
|
3072
|
+
'motion_group_model': string;
|
|
3073
|
+
/**
|
|
3074
|
+
* Internal UID of the motion group inside the GCI transcript.
|
|
3075
|
+
*/
|
|
3076
|
+
'motion_group_uid': number;
|
|
3077
|
+
/**
|
|
3078
|
+
* Full GCI transcript (JSON) containing the robot configuration and motion group.
|
|
3079
|
+
*/
|
|
3080
|
+
'content': string;
|
|
3081
|
+
}
|
|
2897
3082
|
/**
|
|
2898
3083
|
* The configuration of a motion-group used for motion planning. The parameters `mounting`, `kinematic_chain_offset`, `dh_parameters`, `flange_offset` and `tcp_offset` are used to model the kinematic structure of the motion group. They can be used to compute the coordinate transformations from world to tcp frame: [world frame] -> mounting -> [base frame] -> kinematic chain offset + motion group kinematics (Denavit-Hartenberg parameters) -> [end of kinematic chain frame] -> flange_offset -> [flange frame] -> tcp_offset -> [tcp frame].
|
|
2899
3084
|
*/
|
|
@@ -2970,7 +3155,7 @@ interface MotionGroupFromJson {
|
|
|
2970
3155
|
*/
|
|
2971
3156
|
'motion_group': string;
|
|
2972
3157
|
/**
|
|
2973
|
-
*
|
|
3158
|
+
* JSON configuration of the virtual robot controller, can be obtained from the physical controller\'s configuration via [getVirtualControllerConfiguration](#/operations/getVirtualControllerConfiguration).
|
|
2974
3159
|
*/
|
|
2975
3160
|
'json_data': string;
|
|
2976
3161
|
/**
|
|
@@ -2978,7 +3163,7 @@ interface MotionGroupFromJson {
|
|
|
2978
3163
|
*/
|
|
2979
3164
|
'extracted_motion_group_id': string;
|
|
2980
3165
|
/**
|
|
2981
|
-
* Initial joint position of the added motion group. Provides the joint position as a JSON array of float values in radians
|
|
3166
|
+
* Initial joint position of the added motion group. Provides the joint position as a JSON array of float values in radians. The array length must match the robot\'s degrees of freedom, e.g., `\"[0, 0, 0, 0, 0, 0]\"` for a 6-DOF robot. If the provided array length does not match the robot\'s DOF, the array will be adjusted: if it is longer, extra values will be truncated; if it is shorter, missing values will be filled with zeros.
|
|
2982
3167
|
*/
|
|
2983
3168
|
'initial_joint_position'?: string;
|
|
2984
3169
|
}
|
|
@@ -2992,7 +3177,7 @@ interface MotionGroupFromType {
|
|
|
2992
3177
|
*/
|
|
2993
3178
|
'motion_group_model': string;
|
|
2994
3179
|
/**
|
|
2995
|
-
* Initial joint position of the added motion group. Provides the joint position as a JSON array of float values in radians
|
|
3180
|
+
* Initial joint position of the added motion group. Provides the joint position as a JSON array of float values in radians. The array length must match the robot\'s degrees of freedom, e.g., `\"[0, 0, 0, 0, 0, 0]\"` for a 6-DOF robot. If the provided array length does not match the robot\'s DOF, the array will be adjusted; if it is longer, extra values will be truncated; if it is shorter, missing values will be filled with zeros.
|
|
2996
3181
|
*/
|
|
2997
3182
|
'initial_joint_position'?: string;
|
|
2998
3183
|
}
|
|
@@ -3031,6 +3216,19 @@ interface MotionGroupJoints {
|
|
|
3031
3216
|
*/
|
|
3032
3217
|
'torques'?: Array<number>;
|
|
3033
3218
|
}
|
|
3219
|
+
/**
|
|
3220
|
+
* Entry for a motion group with its name and readable name.
|
|
3221
|
+
*/
|
|
3222
|
+
interface MotionGroupModelCatalog {
|
|
3223
|
+
/**
|
|
3224
|
+
* Name of the motion group.
|
|
3225
|
+
*/
|
|
3226
|
+
'motion_group_name': string;
|
|
3227
|
+
/**
|
|
3228
|
+
* Readable name for the motion group.
|
|
3229
|
+
*/
|
|
3230
|
+
'readable_name': string;
|
|
3231
|
+
}
|
|
3034
3232
|
/**
|
|
3035
3233
|
* Metadata about a motion group model.
|
|
3036
3234
|
*/
|
|
@@ -3109,17 +3307,25 @@ interface MotionGroupState {
|
|
|
3109
3307
|
*/
|
|
3110
3308
|
'joint_current'?: Array<number>;
|
|
3111
3309
|
/**
|
|
3112
|
-
* Pose of the flange. Positions are in [mm]. Orientations are in [rad]. The pose is relative to the
|
|
3310
|
+
* Pose of the flange. Positions are in [mm]. Orientations are in [rad]. The pose is relative to the response coordinate system specified in the request. For robot arms, a flange pose is always returned. For positioners, the flange might not be available, depending on the model.
|
|
3113
3311
|
*/
|
|
3114
3312
|
'flange_pose'?: Pose;
|
|
3313
|
+
/**
|
|
3314
|
+
* Cartesian velocity of the flange. The velocity is relative to the response coordinate system specified in the request.
|
|
3315
|
+
*/
|
|
3316
|
+
'flange_velocity'?: CartesianVelocity;
|
|
3115
3317
|
/**
|
|
3116
3318
|
* Unique identifier addressing the active TCP. Might not be returned for positioners as some do not support TCPs, depending on the model.
|
|
3117
3319
|
*/
|
|
3118
3320
|
'tcp'?: string;
|
|
3119
3321
|
/**
|
|
3120
|
-
* Pose of the TCP selected on the robot control panel. Positions are in [mm]. Orientations are in [rad]. The pose is relative to the
|
|
3322
|
+
* Pose of the TCP selected on the robot control panel. Positions are in [mm]. Orientations are in [rad]. The pose is relative to the response coordinate system specified in the request. Might not be returned for positioners as some do not support TCPs, depending on the model.
|
|
3121
3323
|
*/
|
|
3122
3324
|
'tcp_pose'?: Pose;
|
|
3325
|
+
/**
|
|
3326
|
+
* Cartesian velocity of the TCP selected on the robot control panel. The velocity is relative to the response coordinate system specified in the request.
|
|
3327
|
+
*/
|
|
3328
|
+
'tcp_velocity'?: CartesianVelocity;
|
|
3123
3329
|
/**
|
|
3124
3330
|
* Unique identifier addressing the reference coordinate system of the cartesian data. Might not be returned for positioners as some do not support TCPs, depending on the model. Default: world coordinate system of corresponding controller.
|
|
3125
3331
|
*/
|
|
@@ -3617,6 +3823,10 @@ interface PlanCollisionFreeRequest {
|
|
|
3617
3823
|
*/
|
|
3618
3824
|
interface PlanCollisionFreeResponse {
|
|
3619
3825
|
'response': PlanCollisionFreeResponseResponse;
|
|
3826
|
+
/**
|
|
3827
|
+
* The motion commands that produced the trajectory.
|
|
3828
|
+
*/
|
|
3829
|
+
'motion_commands'?: Array<MotionCommand>;
|
|
3620
3830
|
}
|
|
3621
3831
|
/**
|
|
3622
3832
|
* @type PlanCollisionFreeResponseResponse
|
|
@@ -3647,6 +3857,10 @@ interface PlanTrajectoryRequest {
|
|
|
3647
3857
|
* List of motion commands. A command consists of a path definition (line, circle, joint_ptp, cartesian_ptp, cubic_spline), blending, and limits override.
|
|
3648
3858
|
*/
|
|
3649
3859
|
'motion_commands': Array<MotionCommand>;
|
|
3860
|
+
/**
|
|
3861
|
+
* <!-- theme: danger --> > > **Experimental** Strategy used to deal with wrist singularities along a cartesian path.
|
|
3862
|
+
*/
|
|
3863
|
+
'singularity_handling'?: SingularityHandling;
|
|
3650
3864
|
}
|
|
3651
3865
|
interface PlanTrajectoryResponse {
|
|
3652
3866
|
'response': PlanTrajectoryResponseResponse;
|
|
@@ -3794,7 +4008,7 @@ interface ProfinetIO {
|
|
|
3794
4008
|
*/
|
|
3795
4009
|
'direction': ProfinetIODirection;
|
|
3796
4010
|
/**
|
|
3797
|
-
* The byte address in the PROFINET device\'s process image, with offset 0. The slot is automatically determined based on this address and the configured slot layout. For example, with two slots of 64 bytes each: - Bytes 0-63: Slot 1 - Bytes 64-127: Slot 2 When importing from a tag table, e.g., TIA Portal, use `input_offset`/`output_offset` to convert global PLC addresses to device-local addresses: `device_byte_address` = `plc_byte_address` - offset
|
|
4011
|
+
* The byte address in the PROFINET device\'s process image, with offset 0. The slot is automatically determined based on this address and the configured slot layout. For example, with two slots of 64 bytes each: - Bytes 0-63: Slot 1 - Bytes 64-127: Slot 2 When importing from a tag table, e.g., TIA Portal, use per-slot `offsets` (or the deprecated `input_offset`/`output_offset`) to convert global PLC addresses to device-local addresses: `device_byte_address` = `plc_byte_address` - offset
|
|
3798
4012
|
*/
|
|
3799
4013
|
'byte_address': number;
|
|
3800
4014
|
/**
|
|
@@ -3817,7 +4031,7 @@ interface ProfinetIOData {
|
|
|
3817
4031
|
*/
|
|
3818
4032
|
'direction': ProfinetIODirection;
|
|
3819
4033
|
/**
|
|
3820
|
-
* The byte address in the PROFINET device\'s process image, with offset 0. The slot is automatically determined based on this address and the configured slot layout. For example, with two slots of 64 bytes each: - Bytes 0-63: Slot 1 - Bytes 64-127: Slot 2 When importing from a tag table, e.g., TIA Portal, use `input_offset`/`output_offset` to convert global PLC addresses to device-local addresses: `device_byte_address` = `plc_byte_address` - offset
|
|
4034
|
+
* The byte address in the PROFINET device\'s process image, with offset 0. The slot is automatically determined based on this address and the configured slot layout. For example, with two slots of 64 bytes each: - Bytes 0-63: Slot 1 - Bytes 64-127: Slot 2 When importing from a tag table, e.g., TIA Portal, use per-slot `offsets` (or the deprecated `input_offset`/`output_offset`) to convert global PLC addresses to device-local addresses: `device_byte_address` = `plc_byte_address` - offset
|
|
3821
4035
|
*/
|
|
3822
4036
|
'byte_address': number;
|
|
3823
4037
|
/**
|
|
@@ -3856,13 +4070,19 @@ interface ProfinetInputOutputConfig {
|
|
|
3856
4070
|
*/
|
|
3857
4071
|
'config': string;
|
|
3858
4072
|
/**
|
|
3859
|
-
*
|
|
4073
|
+
* Per-slot offsets for translating controller addresses to PROFINET device-local byte addresses. Use this field for multi-slot devices. If omitted, the deprecated `input_offset` and `output_offset` fields are used for backward compatibility.
|
|
3860
4074
|
*/
|
|
3861
|
-
'
|
|
4075
|
+
'offsets'?: Array<ProfinetSlotOffset>;
|
|
3862
4076
|
/**
|
|
3863
|
-
* Offset in bytes for the
|
|
4077
|
+
* Offset in bytes for the addresses of input variables from the perspective of the controller. This field is deprecated and replaced by `offsets` to support per-slot offsets. The offset is subtracted from the byte addresses of the sent XML content.
|
|
4078
|
+
* @deprecated
|
|
3864
4079
|
*/
|
|
3865
|
-
'
|
|
4080
|
+
'input_offset'?: number;
|
|
4081
|
+
/**
|
|
4082
|
+
* Offset in bytes for the addresses of output variables from the perspective of the controller. This field is deprecated and replaced by `offsets` to support per-slot offsets. The offset is subtracted from the byte addresses of the sent XML content.
|
|
4083
|
+
* @deprecated
|
|
4084
|
+
*/
|
|
4085
|
+
'output_offset'?: number;
|
|
3866
4086
|
}
|
|
3867
4087
|
/**
|
|
3868
4088
|
* An array of PROFINET slots. PROFINET models each device’s input/output hardware as a hierarchy of slots (modules) and subslots (submodules). A slot can represent a physical or virtual input/output card and each subslot one of its individual channels or functions. Every slot and subslot has unique identifiers that the controller uses to map cyclic input/output data and parameter records to its process image. This slot/subslot separation enables e.g., addressing each input/output stream when establishing input/output application relations (I/O-AR).
|
|
@@ -3881,6 +4101,20 @@ interface ProfinetSlotDescription {
|
|
|
3881
4101
|
*/
|
|
3882
4102
|
'subslots': Array<ProfinetSubSlotDescription>;
|
|
3883
4103
|
}
|
|
4104
|
+
interface ProfinetSlotOffset {
|
|
4105
|
+
/**
|
|
4106
|
+
* The number/index of the PROFINET slot these offsets apply to. Per default, slot 0 is reserved for the device access point (DAP). Slots that are part of the cyclic input/output data exchange start at number 1.
|
|
4107
|
+
*/
|
|
4108
|
+
'slot': number;
|
|
4109
|
+
/**
|
|
4110
|
+
* This slot\'s offset in bytes for the addresses of input variables from the perspective of the controller. For imported tag tables, this offset is subtracted from the controller byte addresses.
|
|
4111
|
+
*/
|
|
4112
|
+
'input_offset': number;
|
|
4113
|
+
/**
|
|
4114
|
+
* This slot\'s offset in bytes for the addresses of output variables from the perspective of the controller. For imported tag tables, this offset is subtracted from the controller byte addresses.
|
|
4115
|
+
*/
|
|
4116
|
+
'output_offset': number;
|
|
4117
|
+
}
|
|
3884
4118
|
interface ProfinetSubSlotDescription {
|
|
3885
4119
|
/**
|
|
3886
4120
|
* The number/index of the PROFINET subslot.
|
|
@@ -4134,7 +4368,7 @@ interface RobotController {
|
|
|
4134
4368
|
/**
|
|
4135
4369
|
* @type RobotControllerConfiguration
|
|
4136
4370
|
*/
|
|
4137
|
-
type RobotControllerConfiguration = AbbController | FanucController | KukaController | UniversalrobotsController | VirtualController | YaskawaController;
|
|
4371
|
+
type RobotControllerConfiguration = AbbController | BostondynamicsController | FanucController | KukaController | UnitreeController | UniversalrobotsController | VirtualController | YaskawaController;
|
|
4138
4372
|
/**
|
|
4139
4373
|
* Information to generate all robot controller configurations that match a given ARP scan result.
|
|
4140
4374
|
*/
|
|
@@ -4530,6 +4764,15 @@ declare const SettableRobotSystemMode: {
|
|
|
4530
4764
|
readonly ModeControl: "MODE_CONTROL";
|
|
4531
4765
|
};
|
|
4532
4766
|
type SettableRobotSystemMode = typeof SettableRobotSystemMode[keyof typeof SettableRobotSystemMode];
|
|
4767
|
+
/**
|
|
4768
|
+
* <!-- theme: danger --> > > **Experimental** Strategy used to deal with wrist singularities along a cartesian path. > > - `NONE`: No special handling; a singularity ends the path. > - `PALLETIZING_WRIST`: When performing a palletizing motion, attempt to bridge a wrist singularity by flipping the wrist branch. > A palletizing motion is a motion where the flange axis of rotation is alway parallel to the base axis of rotation. > This flag is supported for all robots except FANUC CRX and ABB GoFa. > - `ADAPTIVE_SAMPLING`: Alternative cartesian solver that re-samples the path in proximity to a singularity.
|
|
4769
|
+
*/
|
|
4770
|
+
declare const SingularityHandling: {
|
|
4771
|
+
readonly None: "NONE";
|
|
4772
|
+
readonly PalletizingWrist: "PALLETIZING_WRIST";
|
|
4773
|
+
readonly AdaptiveSampling: "ADAPTIVE_SAMPLING";
|
|
4774
|
+
};
|
|
4775
|
+
type SingularityHandling = typeof SingularityHandling[keyof typeof SingularityHandling];
|
|
4533
4776
|
declare const SingularityTypeEnum: {
|
|
4534
4777
|
readonly Wrist: "WRIST";
|
|
4535
4778
|
readonly Elbow: "ELBOW";
|
|
@@ -4971,6 +5214,43 @@ declare const UnitType: {
|
|
|
4971
5214
|
readonly UnitMeter: "UNIT_METER";
|
|
4972
5215
|
};
|
|
4973
5216
|
type UnitType = typeof UnitType[keyof typeof UnitType];
|
|
5217
|
+
/**
|
|
5218
|
+
* The configuration of a Unitree robot controller. Supports Go2, G1, B2, and H1 robot models. Requires the IP address of the robot and the robot model type.
|
|
5219
|
+
*/
|
|
5220
|
+
interface UnitreeController {
|
|
5221
|
+
'kind': UnitreeControllerKindEnum;
|
|
5222
|
+
/**
|
|
5223
|
+
* The IP address of the Unitree robot.
|
|
5224
|
+
*/
|
|
5225
|
+
'controller_ip': string;
|
|
5226
|
+
/**
|
|
5227
|
+
* The Unitree robot model type.
|
|
5228
|
+
*/
|
|
5229
|
+
'robot_type': UnitreeControllerRobotTypeEnum;
|
|
5230
|
+
/**
|
|
5231
|
+
* The network interface used for DDS discovery.
|
|
5232
|
+
*/
|
|
5233
|
+
'network_interface'?: string;
|
|
5234
|
+
/**
|
|
5235
|
+
* Enable DDS unicast mode for environments where multicast is unavailable.
|
|
5236
|
+
*/
|
|
5237
|
+
'dds_unicast_mode'?: boolean;
|
|
5238
|
+
/**
|
|
5239
|
+
* Enable exclusive lease-based control of the robot.
|
|
5240
|
+
*/
|
|
5241
|
+
'enable_lease'?: boolean;
|
|
5242
|
+
}
|
|
5243
|
+
declare const UnitreeControllerKindEnum: {
|
|
5244
|
+
readonly UnitreeController: "UnitreeController";
|
|
5245
|
+
};
|
|
5246
|
+
type UnitreeControllerKindEnum = typeof UnitreeControllerKindEnum[keyof typeof UnitreeControllerKindEnum];
|
|
5247
|
+
declare const UnitreeControllerRobotTypeEnum: {
|
|
5248
|
+
readonly Go2: "go2";
|
|
5249
|
+
readonly G1: "g1";
|
|
5250
|
+
readonly B2: "b2";
|
|
5251
|
+
readonly H1: "h1";
|
|
5252
|
+
};
|
|
5253
|
+
type UnitreeControllerRobotTypeEnum = typeof UnitreeControllerRobotTypeEnum[keyof typeof UnitreeControllerRobotTypeEnum];
|
|
4974
5254
|
/**
|
|
4975
5255
|
* The configuration of a physical Universal Robots controller has to contain IP address of the controller.
|
|
4976
5256
|
*/
|
|
@@ -5050,9 +5330,13 @@ interface VirtualController {
|
|
|
5050
5330
|
*/
|
|
5051
5331
|
'json'?: string;
|
|
5052
5332
|
/**
|
|
5053
|
-
* Initial joint position of the first motion group from the virtual robot controller. Provides the joint position as a JSON array of float values in radians
|
|
5333
|
+
* Initial joint position of the first motion group from the virtual robot controller. Provides the joint position as a JSON array of float values in radians. The array length must match the robot\'s degrees of freedom, e.g., `\"[0, 0, 0, 0, 0, 0]\"` for a 6-DOF robot. If the provided array length does not match the robot\'s DOF, the array will be adjusted: if it is longer, extra values will be truncated; if it is shorter, missing values will be filled with zeros.
|
|
5054
5334
|
*/
|
|
5055
5335
|
'initial_joint_position'?: string;
|
|
5336
|
+
/**
|
|
5337
|
+
* Adds a motion group configuration for the virtual robot controller. > **NOTE** > > Set only one of the two options, **motion_group_model**, or **json_data** - **motion_group_model**: Identifies a single motion group. See [getMotionGroupModels](#/operations/getMotionGroupModels) for supported types - **json_data**: JSON configuration of the virtual robot controller, can be obtained from the physical controller\'s configuration via [getVirtualControllerConfiguration](#/operations/getVirtualControllerConfiguration) - **extracted_motion_group_id**: Motion group identifier to extract from the provided JSON configuration, required when using json_data - **motion_group**: Unique identifier for the motion group - **initial_joint_position**: Specifies the initial joint position for the added motion group
|
|
5338
|
+
*/
|
|
5339
|
+
'motion_groups'?: Array<AddVirtualControllerMotionGroupRequest>;
|
|
5056
5340
|
}
|
|
5057
5341
|
declare const VirtualControllerKindEnum: {
|
|
5058
5342
|
readonly VirtualController: "VirtualController";
|
|
@@ -5510,15 +5794,16 @@ declare const BUSInputsOutputsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
5510
5794
|
*/
|
|
5511
5795
|
getProfinetGSDML: (cell: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
5512
5796
|
/**
|
|
5513
|
-
* **Required permissions:** `can_operate_bus_ios` - Read and write BUS IO values ___ Get input/output variable configuration of the PROFINET device, e.g., NOVA\'s PROFINET service as file. You can specify byte offsets for
|
|
5797
|
+
* **Required permissions:** `can_operate_bus_ios` - Read and write BUS IO values ___ Get input/output variable configuration of the PROFINET device, e.g., NOVA\'s PROFINET service as file. You can specify per-slot byte offsets for input and output variable addresses to get an XML tag map that is ready for pasting to third party software, e.g., TIA portal. For backward compatibility, the legacy `input_offset` and `output_offset` query parameters remain available, but deprecated.
|
|
5514
5798
|
* @summary PROFINET Inputs/Outputs to File
|
|
5515
5799
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
5800
|
+
* @param {Array<ProfinetSlotOffset>} [offsets] Per-slot offsets used to convert device-local byte addresses to controller byte addresses for export. If this parameter is provided, it is preferred over the deprecated `input_offset` and `output_offset` query parameters.
|
|
5516
5801
|
* @param {number} [inputOffset]
|
|
5517
5802
|
* @param {number} [outputOffset]
|
|
5518
5803
|
* @param {*} [options] Override http request option.
|
|
5519
5804
|
* @throws {RequiredError}
|
|
5520
5805
|
*/
|
|
5521
|
-
getProfinetIOsFromFile: (cell: string, inputOffset?: number, outputOffset?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
5806
|
+
getProfinetIOsFromFile: (cell: string, offsets?: Array<ProfinetSlotOffset>, inputOffset?: number, outputOffset?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
5522
5807
|
/**
|
|
5523
5808
|
* **Required permissions:** `can_operate_bus_ios` - Read and write BUS IO values ___ List all input/output descriptions for configured BUS services. The input/output descriptions contain information like name, type and unit. The input/output direction is given in perspective of the BUS service.
|
|
5524
5809
|
* @summary List Descriptions
|
|
@@ -5716,15 +6001,16 @@ declare const BUSInputsOutputsApiFp: (configuration?: Configuration) => {
|
|
|
5716
6001
|
*/
|
|
5717
6002
|
getProfinetGSDML(cell: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<string>>;
|
|
5718
6003
|
/**
|
|
5719
|
-
* **Required permissions:** `can_operate_bus_ios` - Read and write BUS IO values ___ Get input/output variable configuration of the PROFINET device, e.g., NOVA\'s PROFINET service as file. You can specify byte offsets for
|
|
6004
|
+
* **Required permissions:** `can_operate_bus_ios` - Read and write BUS IO values ___ Get input/output variable configuration of the PROFINET device, e.g., NOVA\'s PROFINET service as file. You can specify per-slot byte offsets for input and output variable addresses to get an XML tag map that is ready for pasting to third party software, e.g., TIA portal. For backward compatibility, the legacy `input_offset` and `output_offset` query parameters remain available, but deprecated.
|
|
5720
6005
|
* @summary PROFINET Inputs/Outputs to File
|
|
5721
6006
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
6007
|
+
* @param {Array<ProfinetSlotOffset>} [offsets] Per-slot offsets used to convert device-local byte addresses to controller byte addresses for export. If this parameter is provided, it is preferred over the deprecated `input_offset` and `output_offset` query parameters.
|
|
5722
6008
|
* @param {number} [inputOffset]
|
|
5723
6009
|
* @param {number} [outputOffset]
|
|
5724
6010
|
* @param {*} [options] Override http request option.
|
|
5725
6011
|
* @throws {RequiredError}
|
|
5726
6012
|
*/
|
|
5727
|
-
getProfinetIOsFromFile(cell: string, inputOffset?: number, outputOffset?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<string>>;
|
|
6013
|
+
getProfinetIOsFromFile(cell: string, offsets?: Array<ProfinetSlotOffset>, inputOffset?: number, outputOffset?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<string>>;
|
|
5728
6014
|
/**
|
|
5729
6015
|
* **Required permissions:** `can_operate_bus_ios` - Read and write BUS IO values ___ List all input/output descriptions for configured BUS services. The input/output descriptions contain information like name, type and unit. The input/output direction is given in perspective of the BUS service.
|
|
5730
6016
|
* @summary List Descriptions
|
|
@@ -5922,15 +6208,16 @@ declare const BUSInputsOutputsApiFactory: (configuration?: Configuration, basePa
|
|
|
5922
6208
|
*/
|
|
5923
6209
|
getProfinetGSDML(cell: string, options?: RawAxiosRequestConfig): AxiosPromise<string>;
|
|
5924
6210
|
/**
|
|
5925
|
-
* **Required permissions:** `can_operate_bus_ios` - Read and write BUS IO values ___ Get input/output variable configuration of the PROFINET device, e.g., NOVA\'s PROFINET service as file. You can specify byte offsets for
|
|
6211
|
+
* **Required permissions:** `can_operate_bus_ios` - Read and write BUS IO values ___ Get input/output variable configuration of the PROFINET device, e.g., NOVA\'s PROFINET service as file. You can specify per-slot byte offsets for input and output variable addresses to get an XML tag map that is ready for pasting to third party software, e.g., TIA portal. For backward compatibility, the legacy `input_offset` and `output_offset` query parameters remain available, but deprecated.
|
|
5926
6212
|
* @summary PROFINET Inputs/Outputs to File
|
|
5927
6213
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
6214
|
+
* @param {Array<ProfinetSlotOffset>} [offsets] Per-slot offsets used to convert device-local byte addresses to controller byte addresses for export. If this parameter is provided, it is preferred over the deprecated `input_offset` and `output_offset` query parameters.
|
|
5928
6215
|
* @param {number} [inputOffset]
|
|
5929
6216
|
* @param {number} [outputOffset]
|
|
5930
6217
|
* @param {*} [options] Override http request option.
|
|
5931
6218
|
* @throws {RequiredError}
|
|
5932
6219
|
*/
|
|
5933
|
-
getProfinetIOsFromFile(cell: string, inputOffset?: number, outputOffset?: number, options?: RawAxiosRequestConfig): AxiosPromise<string>;
|
|
6220
|
+
getProfinetIOsFromFile(cell: string, offsets?: Array<ProfinetSlotOffset>, inputOffset?: number, outputOffset?: number, options?: RawAxiosRequestConfig): AxiosPromise<string>;
|
|
5934
6221
|
/**
|
|
5935
6222
|
* **Required permissions:** `can_operate_bus_ios` - Read and write BUS IO values ___ List all input/output descriptions for configured BUS services. The input/output descriptions contain information like name, type and unit. The input/output direction is given in perspective of the BUS service.
|
|
5936
6223
|
* @summary List Descriptions
|
|
@@ -6128,15 +6415,16 @@ declare class BUSInputsOutputsApi extends BaseAPI {
|
|
|
6128
6415
|
*/
|
|
6129
6416
|
getProfinetGSDML(cell: string, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<string, any, {}>>;
|
|
6130
6417
|
/**
|
|
6131
|
-
* **Required permissions:** `can_operate_bus_ios` - Read and write BUS IO values ___ Get input/output variable configuration of the PROFINET device, e.g., NOVA\'s PROFINET service as file. You can specify byte offsets for
|
|
6418
|
+
* **Required permissions:** `can_operate_bus_ios` - Read and write BUS IO values ___ Get input/output variable configuration of the PROFINET device, e.g., NOVA\'s PROFINET service as file. You can specify per-slot byte offsets for input and output variable addresses to get an XML tag map that is ready for pasting to third party software, e.g., TIA portal. For backward compatibility, the legacy `input_offset` and `output_offset` query parameters remain available, but deprecated.
|
|
6132
6419
|
* @summary PROFINET Inputs/Outputs to File
|
|
6133
6420
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
6421
|
+
* @param {Array<ProfinetSlotOffset>} [offsets] Per-slot offsets used to convert device-local byte addresses to controller byte addresses for export. If this parameter is provided, it is preferred over the deprecated `input_offset` and `output_offset` query parameters.
|
|
6134
6422
|
* @param {number} [inputOffset]
|
|
6135
6423
|
* @param {number} [outputOffset]
|
|
6136
6424
|
* @param {*} [options] Override http request option.
|
|
6137
6425
|
* @throws {RequiredError}
|
|
6138
6426
|
*/
|
|
6139
|
-
getProfinetIOsFromFile(cell: string, inputOffset?: number, outputOffset?: number, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<string, any, {}>>;
|
|
6427
|
+
getProfinetIOsFromFile(cell: string, offsets?: Array<ProfinetSlotOffset>, inputOffset?: number, outputOffset?: number, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<string, any, {}>>;
|
|
6140
6428
|
/**
|
|
6141
6429
|
* **Required permissions:** `can_operate_bus_ios` - Read and write BUS IO values ___ List all input/output descriptions for configured BUS services. The input/output descriptions contain information like name, type and unit. The input/output direction is given in perspective of the BUS service.
|
|
6142
6430
|
* @summary List Descriptions
|
|
@@ -6220,7 +6508,7 @@ declare const CellApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
6220
6508
|
*/
|
|
6221
6509
|
deployCell: (cell: Cell, completionTimeout?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
6222
6510
|
/**
|
|
6223
|
-
* **Required permissions:** `
|
|
6511
|
+
* **Required permissions:** `can_access_system` - View system status and metadata ___ List all cell resources.
|
|
6224
6512
|
* @summary Configuration
|
|
6225
6513
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
6226
6514
|
* @param {*} [options] Override http request option.
|
|
@@ -6303,7 +6591,7 @@ declare const CellApiFp: (configuration?: Configuration) => {
|
|
|
6303
6591
|
*/
|
|
6304
6592
|
deployCell(cell: Cell, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
6305
6593
|
/**
|
|
6306
|
-
* **Required permissions:** `
|
|
6594
|
+
* **Required permissions:** `can_access_system` - View system status and metadata ___ List all cell resources.
|
|
6307
6595
|
* @summary Configuration
|
|
6308
6596
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
6309
6597
|
* @param {*} [options] Override http request option.
|
|
@@ -6386,7 +6674,7 @@ declare const CellApiFactory: (configuration?: Configuration, basePath?: string,
|
|
|
6386
6674
|
*/
|
|
6387
6675
|
deployCell(cell: Cell, completionTimeout?: number, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
6388
6676
|
/**
|
|
6389
|
-
* **Required permissions:** `
|
|
6677
|
+
* **Required permissions:** `can_access_system` - View system status and metadata ___ List all cell resources.
|
|
6390
6678
|
* @summary Configuration
|
|
6391
6679
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
6392
6680
|
* @param {*} [options] Override http request option.
|
|
@@ -6469,7 +6757,7 @@ declare class CellApi extends BaseAPI {
|
|
|
6469
6757
|
*/
|
|
6470
6758
|
deployCell(cell: Cell, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<void, any, {}>>;
|
|
6471
6759
|
/**
|
|
6472
|
-
* **Required permissions:** `
|
|
6760
|
+
* **Required permissions:** `can_access_system` - View system status and metadata ___ List all cell resources.
|
|
6473
6761
|
* @summary Configuration
|
|
6474
6762
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
6475
6763
|
* @param {*} [options] Override http request option.
|
|
@@ -7447,6 +7735,15 @@ declare const KinematicsApiAxiosParamCreator: (configuration?: Configuration) =>
|
|
|
7447
7735
|
* @throws {RequiredError}
|
|
7448
7736
|
*/
|
|
7449
7737
|
forwardKinematics: (cell: string, forwardKinematicsRequest: ForwardKinematicsRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
7738
|
+
/**
|
|
7739
|
+
* **Required permissions:** `can_plan_motion` - Plan robot motions and trajectories ___ Returns the kinematic configuration for each given joint position including branch and axis ranges. Supported for 6-DOF robots with spherical or offset wrist that implement kinematic branch calculation. Returns 422 with `ErrorUnsupportedOperation` for motion groups that do not support kinematic branch calculation.
|
|
7740
|
+
* @summary Get kinematic configuration
|
|
7741
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
7742
|
+
* @param {GetKinematicConfigurationRequest} getKinematicConfigurationRequest
|
|
7743
|
+
* @param {*} [options] Override http request option.
|
|
7744
|
+
* @throws {RequiredError}
|
|
7745
|
+
*/
|
|
7746
|
+
getKinematicConfiguration: (cell: string, getKinematicConfigurationRequest: GetKinematicConfigurationRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
7450
7747
|
/**
|
|
7451
7748
|
* **Required permissions:** `can_plan_motion` - Plan robot motions and trajectories ___ Returns the reachable joint positions for a list of given poses.
|
|
7452
7749
|
* @summary Inverse kinematics
|
|
@@ -7497,6 +7794,15 @@ declare const KinematicsApiFp: (configuration?: Configuration) => {
|
|
|
7497
7794
|
* @throws {RequiredError}
|
|
7498
7795
|
*/
|
|
7499
7796
|
forwardKinematics(cell: string, forwardKinematicsRequest: ForwardKinematicsRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ForwardKinematicsResponse>>;
|
|
7797
|
+
/**
|
|
7798
|
+
* **Required permissions:** `can_plan_motion` - Plan robot motions and trajectories ___ Returns the kinematic configuration for each given joint position including branch and axis ranges. Supported for 6-DOF robots with spherical or offset wrist that implement kinematic branch calculation. Returns 422 with `ErrorUnsupportedOperation` for motion groups that do not support kinematic branch calculation.
|
|
7799
|
+
* @summary Get kinematic configuration
|
|
7800
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
7801
|
+
* @param {GetKinematicConfigurationRequest} getKinematicConfigurationRequest
|
|
7802
|
+
* @param {*} [options] Override http request option.
|
|
7803
|
+
* @throws {RequiredError}
|
|
7804
|
+
*/
|
|
7805
|
+
getKinematicConfiguration(cell: string, getKinematicConfigurationRequest: GetKinematicConfigurationRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetKinematicConfigurationResponse>>;
|
|
7500
7806
|
/**
|
|
7501
7807
|
* **Required permissions:** `can_plan_motion` - Plan robot motions and trajectories ___ Returns the reachable joint positions for a list of given poses.
|
|
7502
7808
|
* @summary Inverse kinematics
|
|
@@ -7547,6 +7853,15 @@ declare const KinematicsApiFactory: (configuration?: Configuration, basePath?: s
|
|
|
7547
7853
|
* @throws {RequiredError}
|
|
7548
7854
|
*/
|
|
7549
7855
|
forwardKinematics(cell: string, forwardKinematicsRequest: ForwardKinematicsRequest, options?: RawAxiosRequestConfig): AxiosPromise<ForwardKinematicsResponse>;
|
|
7856
|
+
/**
|
|
7857
|
+
* **Required permissions:** `can_plan_motion` - Plan robot motions and trajectories ___ Returns the kinematic configuration for each given joint position including branch and axis ranges. Supported for 6-DOF robots with spherical or offset wrist that implement kinematic branch calculation. Returns 422 with `ErrorUnsupportedOperation` for motion groups that do not support kinematic branch calculation.
|
|
7858
|
+
* @summary Get kinematic configuration
|
|
7859
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
7860
|
+
* @param {GetKinematicConfigurationRequest} getKinematicConfigurationRequest
|
|
7861
|
+
* @param {*} [options] Override http request option.
|
|
7862
|
+
* @throws {RequiredError}
|
|
7863
|
+
*/
|
|
7864
|
+
getKinematicConfiguration(cell: string, getKinematicConfigurationRequest: GetKinematicConfigurationRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetKinematicConfigurationResponse>;
|
|
7550
7865
|
/**
|
|
7551
7866
|
* **Required permissions:** `can_plan_motion` - Plan robot motions and trajectories ___ Returns the reachable joint positions for a list of given poses.
|
|
7552
7867
|
* @summary Inverse kinematics
|
|
@@ -7597,6 +7912,15 @@ declare class KinematicsApi extends BaseAPI {
|
|
|
7597
7912
|
* @throws {RequiredError}
|
|
7598
7913
|
*/
|
|
7599
7914
|
forwardKinematics(cell: string, forwardKinematicsRequest: ForwardKinematicsRequest, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<ForwardKinematicsResponse, any, {}>>;
|
|
7915
|
+
/**
|
|
7916
|
+
* **Required permissions:** `can_plan_motion` - Plan robot motions and trajectories ___ Returns the kinematic configuration for each given joint position including branch and axis ranges. Supported for 6-DOF robots with spherical or offset wrist that implement kinematic branch calculation. Returns 422 with `ErrorUnsupportedOperation` for motion groups that do not support kinematic branch calculation.
|
|
7917
|
+
* @summary Get kinematic configuration
|
|
7918
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
7919
|
+
* @param {GetKinematicConfigurationRequest} getKinematicConfigurationRequest
|
|
7920
|
+
* @param {*} [options] Override http request option.
|
|
7921
|
+
* @throws {RequiredError}
|
|
7922
|
+
*/
|
|
7923
|
+
getKinematicConfiguration(cell: string, getKinematicConfigurationRequest: GetKinematicConfigurationRequest, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<GetKinematicConfigurationResponse, any, {}>>;
|
|
7600
7924
|
/**
|
|
7601
7925
|
* **Required permissions:** `can_plan_motion` - Plan robot motions and trajectories ___ Returns the reachable joint positions for a list of given poses.
|
|
7602
7926
|
* @summary Inverse kinematics
|
|
@@ -7918,7 +8242,7 @@ declare const MotionGroupModelsApiAxiosParamCreator: (configuration?: Configurat
|
|
|
7918
8242
|
*/
|
|
7919
8243
|
copyMotionGroupModel: (motionGroupModel: string, copyMotionGroupModelRequest: CopyMotionGroupModelRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
7920
8244
|
/**
|
|
7921
|
-
* **Required permissions:** `can_access_system` - View system status and metadata ___ Deletes a custom motion group model. Only custom models
|
|
8245
|
+
* **Required permissions:** `can_access_system` - View system status and metadata ___ Deletes a custom motion group model. Only custom models, where `is_custom` is `true`, can be deleted. Built-in base models cannot be removed.
|
|
7922
8246
|
* @summary Delete Motion Group Model
|
|
7923
8247
|
* @param {string} motionGroupModel Unique identifier for the model of a motion group, e.g., `UniversalRobots_UR10e`. Get the `model` of a configured motion group with [getOptimizerConfiguration](#/operations/getOptimizerConfiguration).
|
|
7924
8248
|
* @param {*} [options] Override http request option.
|
|
@@ -7933,6 +8257,14 @@ declare const MotionGroupModelsApiAxiosParamCreator: (configuration?: Configurat
|
|
|
7933
8257
|
* @throws {RequiredError}
|
|
7934
8258
|
*/
|
|
7935
8259
|
exportMotionGroupModel: (motionGroupModel: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
8260
|
+
/**
|
|
8261
|
+
* **Required permissions:** `can_access_system` - View system status and metadata ___ Get a robot configuration containing the specified motion group model. This endpoint is designed for Virtual Robot to dynamically add motion groups by model name without needing to know the robot configuration name. Returns the full GCI transcript along with the motion group UID that corresponds to the requested motion group model.
|
|
8262
|
+
* @summary Get Configuration for Motion Group
|
|
8263
|
+
* @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).
|
|
8264
|
+
* @param {*} [options] Override http request option.
|
|
8265
|
+
* @throws {RequiredError}
|
|
8266
|
+
*/
|
|
8267
|
+
getConfigurationForMotionGroup: (motionGroupModel: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
7936
8268
|
/**
|
|
7937
8269
|
* **Required permissions:** `can_access_system` - View system status and metadata ___ Returns the default collision link chain for a given motion group model. See [getMotionGroupModels](#/operations/getMotionGroupModels) for supported motion group models. The default link chain is derived from 3D models and optimized for collision detection within NOVA. The default link chain includes link shapes only. It does not include any attached components like wire feeders or sensors. Attach additional shapes to the link reference frames by extending the link dictionaries before further use. Additional shapes may overlap each other per link and may also overlap the respective link\'s default shape.
|
|
7938
8270
|
* @summary Get Collision Model
|
|
@@ -7988,6 +8320,13 @@ declare const MotionGroupModelsApiAxiosParamCreator: (configuration?: Configurat
|
|
|
7988
8320
|
* @throws {RequiredError}
|
|
7989
8321
|
*/
|
|
7990
8322
|
getMotionGroupModels: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
8323
|
+
/**
|
|
8324
|
+
* **Required permissions:** `can_access_system` - View system status and metadata ___ Returns the catalog of all motion groups with their motion group names and readable names.
|
|
8325
|
+
* @summary Motion Group Model Catalog
|
|
8326
|
+
* @param {*} [options] Override http request option.
|
|
8327
|
+
* @throws {RequiredError}
|
|
8328
|
+
*/
|
|
8329
|
+
getMotionGroupModelsCatalog: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
7991
8330
|
/**
|
|
7992
8331
|
* **Required permissions:** `can_access_system` - View system status and metadata ___ Returns the USD scene model for the specified motion group model. See [getMotionGroupModels](#/operations/getMotionGroupModels) for supported identifiers.
|
|
7993
8332
|
* @summary Download USD Model
|
|
@@ -8019,7 +8358,7 @@ declare const MotionGroupModelsApiFp: (configuration?: Configuration) => {
|
|
|
8019
8358
|
*/
|
|
8020
8359
|
copyMotionGroupModel(motionGroupModel: string, copyMotionGroupModelRequest: CopyMotionGroupModelRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MotionGroupModelDescription>>;
|
|
8021
8360
|
/**
|
|
8022
|
-
* **Required permissions:** `can_access_system` - View system status and metadata ___ Deletes a custom motion group model. Only custom models
|
|
8361
|
+
* **Required permissions:** `can_access_system` - View system status and metadata ___ Deletes a custom motion group model. Only custom models, where `is_custom` is `true`, can be deleted. Built-in base models cannot be removed.
|
|
8023
8362
|
* @summary Delete Motion Group Model
|
|
8024
8363
|
* @param {string} motionGroupModel Unique identifier for the model of a motion group, e.g., `UniversalRobots_UR10e`. Get the `model` of a configured motion group with [getOptimizerConfiguration](#/operations/getOptimizerConfiguration).
|
|
8025
8364
|
* @param {*} [options] Override http request option.
|
|
@@ -8034,6 +8373,14 @@ declare const MotionGroupModelsApiFp: (configuration?: Configuration) => {
|
|
|
8034
8373
|
* @throws {RequiredError}
|
|
8035
8374
|
*/
|
|
8036
8375
|
exportMotionGroupModel(motionGroupModel: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<File>>;
|
|
8376
|
+
/**
|
|
8377
|
+
* **Required permissions:** `can_access_system` - View system status and metadata ___ Get a robot configuration containing the specified motion group model. This endpoint is designed for Virtual Robot to dynamically add motion groups by model name without needing to know the robot configuration name. Returns the full GCI transcript along with the motion group UID that corresponds to the requested motion group model.
|
|
8378
|
+
* @summary Get Configuration for Motion Group
|
|
8379
|
+
* @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).
|
|
8380
|
+
* @param {*} [options] Override http request option.
|
|
8381
|
+
* @throws {RequiredError}
|
|
8382
|
+
*/
|
|
8383
|
+
getConfigurationForMotionGroup(motionGroupModel: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MotionGroupConfiguration>>;
|
|
8037
8384
|
/**
|
|
8038
8385
|
* **Required permissions:** `can_access_system` - View system status and metadata ___ Returns the default collision link chain for a given motion group model. See [getMotionGroupModels](#/operations/getMotionGroupModels) for supported motion group models. The default link chain is derived from 3D models and optimized for collision detection within NOVA. The default link chain includes link shapes only. It does not include any attached components like wire feeders or sensors. Attach additional shapes to the link reference frames by extending the link dictionaries before further use. Additional shapes may overlap each other per link and may also overlap the respective link\'s default shape.
|
|
8039
8386
|
* @summary Get Collision Model
|
|
@@ -8091,6 +8438,13 @@ declare const MotionGroupModelsApiFp: (configuration?: Configuration) => {
|
|
|
8091
8438
|
* @throws {RequiredError}
|
|
8092
8439
|
*/
|
|
8093
8440
|
getMotionGroupModels(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<string>>>;
|
|
8441
|
+
/**
|
|
8442
|
+
* **Required permissions:** `can_access_system` - View system status and metadata ___ Returns the catalog of all motion groups with their motion group names and readable names.
|
|
8443
|
+
* @summary Motion Group Model Catalog
|
|
8444
|
+
* @param {*} [options] Override http request option.
|
|
8445
|
+
* @throws {RequiredError}
|
|
8446
|
+
*/
|
|
8447
|
+
getMotionGroupModelsCatalog(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<MotionGroupModelCatalog>>>;
|
|
8094
8448
|
/**
|
|
8095
8449
|
* **Required permissions:** `can_access_system` - View system status and metadata ___ Returns the USD scene model for the specified motion group model. See [getMotionGroupModels](#/operations/getMotionGroupModels) for supported identifiers.
|
|
8096
8450
|
* @summary Download USD Model
|
|
@@ -8122,7 +8476,7 @@ declare const MotionGroupModelsApiFactory: (configuration?: Configuration, baseP
|
|
|
8122
8476
|
*/
|
|
8123
8477
|
copyMotionGroupModel(motionGroupModel: string, copyMotionGroupModelRequest: CopyMotionGroupModelRequest, options?: RawAxiosRequestConfig): AxiosPromise<MotionGroupModelDescription>;
|
|
8124
8478
|
/**
|
|
8125
|
-
* **Required permissions:** `can_access_system` - View system status and metadata ___ Deletes a custom motion group model. Only custom models
|
|
8479
|
+
* **Required permissions:** `can_access_system` - View system status and metadata ___ Deletes a custom motion group model. Only custom models, where `is_custom` is `true`, can be deleted. Built-in base models cannot be removed.
|
|
8126
8480
|
* @summary Delete Motion Group Model
|
|
8127
8481
|
* @param {string} motionGroupModel Unique identifier for the model of a motion group, e.g., `UniversalRobots_UR10e`. Get the `model` of a configured motion group with [getOptimizerConfiguration](#/operations/getOptimizerConfiguration).
|
|
8128
8482
|
* @param {*} [options] Override http request option.
|
|
@@ -8137,6 +8491,14 @@ declare const MotionGroupModelsApiFactory: (configuration?: Configuration, baseP
|
|
|
8137
8491
|
* @throws {RequiredError}
|
|
8138
8492
|
*/
|
|
8139
8493
|
exportMotionGroupModel(motionGroupModel: string, options?: RawAxiosRequestConfig): AxiosPromise<File>;
|
|
8494
|
+
/**
|
|
8495
|
+
* **Required permissions:** `can_access_system` - View system status and metadata ___ Get a robot configuration containing the specified motion group model. This endpoint is designed for Virtual Robot to dynamically add motion groups by model name without needing to know the robot configuration name. Returns the full GCI transcript along with the motion group UID that corresponds to the requested motion group model.
|
|
8496
|
+
* @summary Get Configuration for Motion Group
|
|
8497
|
+
* @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).
|
|
8498
|
+
* @param {*} [options] Override http request option.
|
|
8499
|
+
* @throws {RequiredError}
|
|
8500
|
+
*/
|
|
8501
|
+
getConfigurationForMotionGroup(motionGroupModel: string, options?: RawAxiosRequestConfig): AxiosPromise<MotionGroupConfiguration>;
|
|
8140
8502
|
/**
|
|
8141
8503
|
* **Required permissions:** `can_access_system` - View system status and metadata ___ Returns the default collision link chain for a given motion group model. See [getMotionGroupModels](#/operations/getMotionGroupModels) for supported motion group models. The default link chain is derived from 3D models and optimized for collision detection within NOVA. The default link chain includes link shapes only. It does not include any attached components like wire feeders or sensors. Attach additional shapes to the link reference frames by extending the link dictionaries before further use. Additional shapes may overlap each other per link and may also overlap the respective link\'s default shape.
|
|
8142
8504
|
* @summary Get Collision Model
|
|
@@ -8194,6 +8556,13 @@ declare const MotionGroupModelsApiFactory: (configuration?: Configuration, baseP
|
|
|
8194
8556
|
* @throws {RequiredError}
|
|
8195
8557
|
*/
|
|
8196
8558
|
getMotionGroupModels(options?: RawAxiosRequestConfig): AxiosPromise<Array<string>>;
|
|
8559
|
+
/**
|
|
8560
|
+
* **Required permissions:** `can_access_system` - View system status and metadata ___ Returns the catalog of all motion groups with their motion group names and readable names.
|
|
8561
|
+
* @summary Motion Group Model Catalog
|
|
8562
|
+
* @param {*} [options] Override http request option.
|
|
8563
|
+
* @throws {RequiredError}
|
|
8564
|
+
*/
|
|
8565
|
+
getMotionGroupModelsCatalog(options?: RawAxiosRequestConfig): AxiosPromise<Array<MotionGroupModelCatalog>>;
|
|
8197
8566
|
/**
|
|
8198
8567
|
* **Required permissions:** `can_access_system` - View system status and metadata ___ Returns the USD scene model for the specified motion group model. See [getMotionGroupModels](#/operations/getMotionGroupModels) for supported identifiers.
|
|
8199
8568
|
* @summary Download USD Model
|
|
@@ -8225,7 +8594,7 @@ declare class MotionGroupModelsApi extends BaseAPI {
|
|
|
8225
8594
|
*/
|
|
8226
8595
|
copyMotionGroupModel(motionGroupModel: string, copyMotionGroupModelRequest: CopyMotionGroupModelRequest, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<MotionGroupModelDescription, any, {}>>;
|
|
8227
8596
|
/**
|
|
8228
|
-
* **Required permissions:** `can_access_system` - View system status and metadata ___ Deletes a custom motion group model. Only custom models
|
|
8597
|
+
* **Required permissions:** `can_access_system` - View system status and metadata ___ Deletes a custom motion group model. Only custom models, where `is_custom` is `true`, can be deleted. Built-in base models cannot be removed.
|
|
8229
8598
|
* @summary Delete Motion Group Model
|
|
8230
8599
|
* @param {string} motionGroupModel Unique identifier for the model of a motion group, e.g., `UniversalRobots_UR10e`. Get the `model` of a configured motion group with [getOptimizerConfiguration](#/operations/getOptimizerConfiguration).
|
|
8231
8600
|
* @param {*} [options] Override http request option.
|
|
@@ -8240,6 +8609,14 @@ declare class MotionGroupModelsApi extends BaseAPI {
|
|
|
8240
8609
|
* @throws {RequiredError}
|
|
8241
8610
|
*/
|
|
8242
8611
|
exportMotionGroupModel(motionGroupModel: string, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<File, any, {}>>;
|
|
8612
|
+
/**
|
|
8613
|
+
* **Required permissions:** `can_access_system` - View system status and metadata ___ Get a robot configuration containing the specified motion group model. This endpoint is designed for Virtual Robot to dynamically add motion groups by model name without needing to know the robot configuration name. Returns the full GCI transcript along with the motion group UID that corresponds to the requested motion group model.
|
|
8614
|
+
* @summary Get Configuration for Motion Group
|
|
8615
|
+
* @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).
|
|
8616
|
+
* @param {*} [options] Override http request option.
|
|
8617
|
+
* @throws {RequiredError}
|
|
8618
|
+
*/
|
|
8619
|
+
getConfigurationForMotionGroup(motionGroupModel: string, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<MotionGroupConfiguration, any, {}>>;
|
|
8243
8620
|
/**
|
|
8244
8621
|
* **Required permissions:** `can_access_system` - View system status and metadata ___ Returns the default collision link chain for a given motion group model. See [getMotionGroupModels](#/operations/getMotionGroupModels) for supported motion group models. The default link chain is derived from 3D models and optimized for collision detection within NOVA. The default link chain includes link shapes only. It does not include any attached components like wire feeders or sensors. Attach additional shapes to the link reference frames by extending the link dictionaries before further use. Additional shapes may overlap each other per link and may also overlap the respective link\'s default shape.
|
|
8245
8622
|
* @summary Get Collision Model
|
|
@@ -8297,6 +8674,13 @@ declare class MotionGroupModelsApi extends BaseAPI {
|
|
|
8297
8674
|
* @throws {RequiredError}
|
|
8298
8675
|
*/
|
|
8299
8676
|
getMotionGroupModels(options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<string[], any, {}>>;
|
|
8677
|
+
/**
|
|
8678
|
+
* **Required permissions:** `can_access_system` - View system status and metadata ___ Returns the catalog of all motion groups with their motion group names and readable names.
|
|
8679
|
+
* @summary Motion Group Model Catalog
|
|
8680
|
+
* @param {*} [options] Override http request option.
|
|
8681
|
+
* @throws {RequiredError}
|
|
8682
|
+
*/
|
|
8683
|
+
getMotionGroupModelsCatalog(options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<MotionGroupModelCatalog[], any, {}>>;
|
|
8300
8684
|
/**
|
|
8301
8685
|
* **Required permissions:** `can_access_system` - View system status and metadata ___ Returns the USD scene model for the specified motion group model. See [getMotionGroupModels](#/operations/getMotionGroupModels) for supported identifiers.
|
|
8302
8686
|
* @summary Download USD Model
|
|
@@ -8335,6 +8719,13 @@ declare const NOVACloudApiAxiosParamCreator: (configuration?: Configuration) =>
|
|
|
8335
8719
|
* @throws {RequiredError}
|
|
8336
8720
|
*/
|
|
8337
8721
|
disconnectFromNovaCloud: (completionTimeout?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
8722
|
+
/**
|
|
8723
|
+
* **Required permissions:** `can_access_system` - View system status and metadata ___ <!-- theme: danger --> > **Experimental** Get the current NOVA Cloud connection status for this instance, including whether the configured cloud deployment is currently reachable.
|
|
8724
|
+
* @summary Get Connection Status
|
|
8725
|
+
* @param {*} [options] Override http request option.
|
|
8726
|
+
* @throws {RequiredError}
|
|
8727
|
+
*/
|
|
8728
|
+
getCloudStatus: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
8338
8729
|
/**
|
|
8339
8730
|
* **Required permissions:** `can_access_system` - View system status and metadata ___ <!-- theme: danger --> > **Experimental** Get the current NOVA Cloud connection config for this instance.
|
|
8340
8731
|
* @summary Get Connection Config
|
|
@@ -8364,6 +8755,13 @@ declare const NOVACloudApiFp: (configuration?: Configuration) => {
|
|
|
8364
8755
|
* @throws {RequiredError}
|
|
8365
8756
|
*/
|
|
8366
8757
|
disconnectFromNovaCloud(completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CloudDisconnectionStatusDisconnected>>;
|
|
8758
|
+
/**
|
|
8759
|
+
* **Required permissions:** `can_access_system` - View system status and metadata ___ <!-- theme: danger --> > **Experimental** Get the current NOVA Cloud connection status for this instance, including whether the configured cloud deployment is currently reachable.
|
|
8760
|
+
* @summary Get Connection Status
|
|
8761
|
+
* @param {*} [options] Override http request option.
|
|
8762
|
+
* @throws {RequiredError}
|
|
8763
|
+
*/
|
|
8764
|
+
getCloudStatus(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CloudStatus>>;
|
|
8367
8765
|
/**
|
|
8368
8766
|
* **Required permissions:** `can_access_system` - View system status and metadata ___ <!-- theme: danger --> > **Experimental** Get the current NOVA Cloud connection config for this instance.
|
|
8369
8767
|
* @summary Get Connection Config
|
|
@@ -8393,6 +8791,13 @@ declare const NOVACloudApiFactory: (configuration?: Configuration, basePath?: st
|
|
|
8393
8791
|
* @throws {RequiredError}
|
|
8394
8792
|
*/
|
|
8395
8793
|
disconnectFromNovaCloud(completionTimeout?: number, options?: RawAxiosRequestConfig): AxiosPromise<CloudDisconnectionStatusDisconnected>;
|
|
8794
|
+
/**
|
|
8795
|
+
* **Required permissions:** `can_access_system` - View system status and metadata ___ <!-- theme: danger --> > **Experimental** Get the current NOVA Cloud connection status for this instance, including whether the configured cloud deployment is currently reachable.
|
|
8796
|
+
* @summary Get Connection Status
|
|
8797
|
+
* @param {*} [options] Override http request option.
|
|
8798
|
+
* @throws {RequiredError}
|
|
8799
|
+
*/
|
|
8800
|
+
getCloudStatus(options?: RawAxiosRequestConfig): AxiosPromise<CloudStatus>;
|
|
8396
8801
|
/**
|
|
8397
8802
|
* **Required permissions:** `can_access_system` - View system status and metadata ___ <!-- theme: danger --> > **Experimental** Get the current NOVA Cloud connection config for this instance.
|
|
8398
8803
|
* @summary Get Connection Config
|
|
@@ -8422,6 +8827,13 @@ declare class NOVACloudApi extends BaseAPI {
|
|
|
8422
8827
|
* @throws {RequiredError}
|
|
8423
8828
|
*/
|
|
8424
8829
|
disconnectFromNovaCloud(completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<CloudDisconnectionStatusDisconnected, any, {}>>;
|
|
8830
|
+
/**
|
|
8831
|
+
* **Required permissions:** `can_access_system` - View system status and metadata ___ <!-- theme: danger --> > **Experimental** Get the current NOVA Cloud connection status for this instance, including whether the configured cloud deployment is currently reachable.
|
|
8832
|
+
* @summary Get Connection Status
|
|
8833
|
+
* @param {*} [options] Override http request option.
|
|
8834
|
+
* @throws {RequiredError}
|
|
8835
|
+
*/
|
|
8836
|
+
getCloudStatus(options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<CloudStatus, any, {}>>;
|
|
8425
8837
|
/**
|
|
8426
8838
|
* **Required permissions:** `can_access_system` - View system status and metadata ___ <!-- theme: danger --> > **Experimental** Get the current NOVA Cloud connection config for this instance.
|
|
8427
8839
|
* @summary Get Connection Config
|
|
@@ -11827,4 +12239,4 @@ declare class VirtualControllerInputsOutputsApi extends BaseAPI {
|
|
|
11827
12239
|
setIOValues(cell: string, controller: string, iOValue: Array<IOValue>, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<void, any, {}>>;
|
|
11828
12240
|
}
|
|
11829
12241
|
//#endregion
|
|
11830
|
-
export { AbbConfdata, AbbConfiguredPose, AbbController, AbbControllerEgmServer, AbbControllerKindEnum, AbbPose, ActivateLicenseRequest, AddTrajectoryError, AddTrajectoryErrorData, AddTrajectoryRequest, AddTrajectoryResponse, AddVirtualControllerMotionGroupRequest, ApiVersion, App, ApplicationApi, ApplicationApiAxiosParamCreator, ApplicationApiFactory, ApplicationApiFp, AxisRange, BASE_PATH, BUSInputsOutputsApi, BUSInputsOutputsApiAxiosParamCreator, BUSInputsOutputsApiFactory, BUSInputsOutputsApiFp, BaseAPI, Behavior, BlendingAuto, BlendingAutoBlendingNameEnum, BlendingPosition, BlendingPositionBlendingNameEnum, BlendingSpace, BooleanValue, BooleanValueValueTypeEnum, Box, BoxBoxTypeEnum, BoxShapeTypeEnum, BusIODescription, BusIOModbusClient, BusIOModbusClientBusTypeEnum, BusIOModbusServer, BusIOModbusServerBusTypeEnum, BusIOModbusTCPClient, BusIOModbusTCPClientNetworkTypeEnum, BusIOModbusTCPServer, BusIOModbusTCPServerNetworkTypeEnum, BusIOModbusVirtual, BusIOModbusVirtualBusTypeEnum, BusIOProfinet, BusIOProfinetBusTypeEnum, BusIOProfinetDefaultRoute, BusIOProfinetIpConfig, BusIOProfinetNetwork, BusIOProfinetSlot, BusIOProfinetVirtual, BusIOProfinetVirtualBusTypeEnum, BusIOSnap7, BusIOSnap7BusTypeEnum, BusIOType, BusIOsState, BusIOsStateEnum, COLLECTION_FORMATS, CapabilityEntry, Capsule, CapsuleShapeTypeEnum, CartesianLimits, Cell, CellApi, CellApiAxiosParamCreator, CellApiFactory, CellApiFp, CloudConfigStatus, CloudConfigStatusConfigured, CloudConfigStatusConfiguredStatusEnum, CloudConfigStatusNotConfigured, CloudConfigStatusNotConfiguredStatusEnum, CloudConfiguration, CloudConnectionError, CloudConnectionErrorError, CloudConnectionErrorInvalidToken, CloudConnectionErrorInvalidTokenCodeEnum, CloudConnectionErrorInvalidTokenDetails, CloudConnectionErrorInvalidTokenDetailsCloudResponse, CloudConnectionErrorLeafnodeConnectionError, CloudConnectionErrorLeafnodeConnectionErrorCodeEnum, CloudConnectionErrorLeafnodeConnectionErrorDetails, CloudConnectionErrorLeafnodeConnectionTimeout, CloudConnectionErrorLeafnodeConnectionTimeoutCodeEnum, CloudConnectionErrorLeafnodeRestartTimeout, CloudConnectionErrorLeafnodeRestartTimeoutCodeEnum, CloudConnectionErrorNatsFailed, CloudConnectionErrorNatsFailedCodeEnum, CloudConnectionErrorNatsFailedDetails, CloudConnectionErrorUnexpectedResponse, CloudConnectionErrorUnexpectedResponseCodeEnum, CloudConnectionErrorUnexpectedResponseDetails, CloudConnectionErrorUnexpectedResponseDetailsCloudResponse, CloudConnectionRequest, CloudDisconnectionError, CloudDisconnectionStatusDisconnected, CloudDisconnectionStatusDisconnectedStatusEnum, CloudDisconnectionStatusDisconnecting, CloudDisconnectionStatusDisconnectingStatusEnum, CloudRegistrationSuccessResponse, Collider, ColliderShape, ColliderValue, ColliderValueOrKey, ColliderValueSourceEnum, Collision, CollisionContact, CollisionError, CollisionErrorKindEnum, CollisionFreeAlgorithm, CollisionMotionGroup, CollisionSetup, CollisionSetupValue, CollisionSetupValueOrKey, CollisionSetupValueSourceEnum, Comparator, Configuration, ConfigurationArchiveStatus, ConfigurationArchiveStatusCreating, ConfigurationArchiveStatusCreatingStatusEnum, ConfigurationArchiveStatusError, ConfigurationArchiveStatusErrorStatusEnum, ConfigurationArchiveStatusSuccess, ConfigurationArchiveStatusSuccessStatusEnum, ConfigurationParameters, ConfigurationResource, ConfiguredPose, ConfiguredPoseInverse422Response, ConfiguredPoseInverseFailedResponse, ConfiguredPoseInverseRequest, ConfiguredPoseInverseResponse, ConfiguredPoseInverseResponseResponse, ConstrainedPose, ContainerEnvironmentInner, ContainerImage, ContainerImageSecretsInner, ContainerResources, ContainerStorage, ControllerApi, ControllerApiAxiosParamCreator, ControllerApiFactory, ControllerApiFp, ControllerDescription, ControllerInputsOutputsApi, ControllerInputsOutputsApiAxiosParamCreator, ControllerInputsOutputsApiFactory, ControllerInputsOutputsApiFp, ConvertVendorConfiguredPose422Response, ConvertVendorConfiguredPoseRequest, ConvertVendorConfiguredPoseRequestVendorConfiguredPoses, ConvexHull, ConvexHullShapeTypeEnum, CoordinateSystem, CoordinateSystemData, CopyMotionGroupModelRequest, CubicSplineParameter, CycleTime, Cylinder, CylinderShapeTypeEnum, DHParameter, Direction, DirectionConstraint, DirectionConstraintConstraintNameEnum, DynamicModel, ErrorDirectionConstraintNotMet, ErrorDirectionConstraintNotMetErrorFeedbackNameEnum, ErrorDirectionConstraintNotNormalized, ErrorDirectionConstraintNotNormalizedErrorFeedbackNameEnum, ErrorInvalidJointCount, ErrorInvalidJointCountErrorFeedbackNameEnum, ErrorJointLimitExceeded, ErrorJointLimitExceededErrorFeedbackNameEnum, ErrorJointPositionCollision, ErrorJointPositionCollisionErrorFeedbackNameEnum, ErrorMaxIterationsExceeded, ErrorMaxIterationsExceededErrorFeedbackNameEnum, ErrorMotionGroupKeyMismatch, ErrorUnsupportedOperation, ErrorUnsupportedOperationErrorFeedbackNameEnum, Execute, ExecuteDetails, ExecuteJoggingRequest, ExecuteJoggingResponse, ExecuteTrajectoryRequest, ExecuteTrajectoryResponse, ExecuteWaypointJoggingRequest, ExecuteWaypointJoggingResponse, ExternalJointStreamDatapoint, ExternalJointStreamRequest, FanucController, FanucControllerKindEnum, FeedbackAxisRangeExceeded, FeedbackAxisRangeExceededErrorFeedbackNameEnum, FeedbackCollision, FeedbackCollisionErrorFeedbackNameEnum, FeedbackCommandsMissing, FeedbackCommandsMissingErrorFeedbackNameEnum, FeedbackCubicSplineIsNotIncreasing, FeedbackCubicSplineIsNotIncreasingErrorFeedbackNameEnum, FeedbackCubicSplineNotAtStartPose, FeedbackCubicSplineNotAtStartPoseErrorFeedbackNameEnum, FeedbackDirectionConstraintNoSolutionExists, FeedbackDirectionConstraintNoSolutionExistsErrorFeedbackNameEnum, FeedbackDirectionConstraintNotMet, FeedbackDirectionConstraintNotMetErrorFeedbackNameEnum, FeedbackDirectionConstraintNotNormalized, FeedbackDirectionConstraintNotNormalizedErrorFeedbackNameEnum, FeedbackInvalidDof, FeedbackInvalidDofErrorFeedbackNameEnum, FeedbackInvalidNanValue, FeedbackInvalidNanValueErrorFeedbackNameEnum, FeedbackInvalidSamplingTime, FeedbackInvalidSamplingTimeErrorFeedbackNameEnum, FeedbackJointLimitExceeded, FeedbackJointLimitExceededErrorFeedbackNameEnum, FeedbackNoSolutionInCurrentConfiguration, FeedbackNoSolutionInCurrentConfigurationErrorFeedbackNameEnum, FeedbackOutOfWorkspace, FeedbackOutOfWorkspaceErrorFeedbackNameEnum, FeedbackSingularity, FeedbackSingularityErrorFeedbackNameEnum, FeedbackStartJointsMissing, FeedbackStartJointsMissingErrorFeedbackNameEnum, FeedbackTorqueExceeded, FeedbackTorqueExceededErrorFeedbackNameEnum, Flag, FlangePayload, FloatValue, FloatValueValueTypeEnum, ForwardKinematics422Response, ForwardKinematicsRequest, ForwardKinematicsResponse, ForwardKinematicsValidationError, GetTrajectoryResponse, HTTPValidationError, IOBooleanValue, IOBooleanValueValueTypeEnum, IOBoundary, IODescription, IODirection, IOFloatValue, IOFloatValueValueTypeEnum, IOIntegerValue, IOIntegerValueValueTypeEnum, IOOrigin, IOValue, IOValueType, ImageCredentials, InconsistentTrajectorySizeError, InconsistentTrajectorySizeErrorInconsistentTrajectorySize, InconsistentTrajectorySizeErrorKindEnum, InertiaTensor, InitializeJoggingRequest, InitializeJoggingRequestMessageTypeEnum, InitializeJoggingResponse, InitializeJoggingResponseKindEnum, InitializeMovementRequest, InitializeMovementRequestMessageTypeEnum, InitializeMovementRequestTrajectory, InitializeMovementResponse, InitializeMovementResponseKindEnum, IntegerValue, IntegerValueValueTypeEnum, InvalidDofError, InvalidDofErrorInvalidDof, InvalidDofErrorKindEnum, InverseFeedbackAtIndex, InverseFeedbackAtIndexErrorFeedback, InverseKinematics422Response, InverseKinematicsRequest, InverseKinematicsResponse, InverseKinematicsValidationError, InverseKinematicsValidationErrorAllOfData, JoggingApi, JoggingApiAxiosParamCreator, JoggingApiFactory, JoggingApiFp, JoggingDetails, JoggingDetailsKindEnum, JoggingDetailsState, JoggingPausedByUser, JoggingPausedByUserKindEnum, JoggingPausedNearCollision, JoggingPausedNearCollisionKindEnum, JoggingPausedNearJointLimit, JoggingPausedNearJointLimitKindEnum, JoggingPausedNearSingularity, JoggingPausedNearSingularityKindEnum, JoggingPausedOnIO, JoggingPausedOnIOKindEnum, JoggingRunning, JoggingRunningKindEnum, JointLimitExceededError, JointLimitExceededErrorKindEnum, JointLimits, JointPTPMotion, JointTrajectory, JointTypeEnum, JointVelocityRequest, JointVelocityRequestMessageTypeEnum, JointVelocityResponse, JointVelocityResponseKindEnum, JointWaypoint, JointWaypointsRequest, JointWaypointsRequestMessageTypeEnum, JointWaypointsResponse, JointWaypointsResponseKindEnum, KinematicBranch, KinematicBranchElbow, KinematicBranchShoulder, KinematicBranchWrist, KinematicConfiguration, KinematicModel, KinematicsApi, KinematicsApiAxiosParamCreator, KinematicsApiFactory, KinematicsApiFp, KukaConfiguredPose, KukaController, KukaControllerKindEnum, KukaControllerRsiServer, KukaPose, KukaStatusAndTurnBits, License, LicenseApi, LicenseApiAxiosParamCreator, LicenseApiFactory, LicenseApiFp, LicenseStatus, LicenseStatusEnum, LimitRange, LimitSet, LimitsOverride, LinkChainValue, LinkChainValueOrKey, LinkChainValueSourceEnum, ListTrajectoriesResponse, Manufacturer, MergeTrajectories422Response, MergeTrajectoriesError, MergeTrajectoriesErrorErrorFeedback, MergeTrajectoriesRequest, MergeTrajectoriesResponse, MergeTrajectoriesResponseFeedbackInner, MergeTrajectoriesSegment, MergeTrajectoriesValidationError, MidpointInsertionAlgorithm, MidpointInsertionAlgorithmAlgorithmNameEnum, ModbusIO, ModbusIOArea, ModbusIOByteOrder, ModbusIOData, ModbusIOTypeEnum, ModelError, MotionCommand, MotionCommandBlending, MotionCommandPath, MotionGroupApi, MotionGroupApiAxiosParamCreator, MotionGroupApiFactory, MotionGroupApiFp, MotionGroupDescription, MotionGroupFromJson, MotionGroupFromType, MotionGroupInfo, MotionGroupJoints, MotionGroupModelDescription, MotionGroupModelsApi, MotionGroupModelsApiAxiosParamCreator, MotionGroupModelsApiFactory, MotionGroupModelsApiFp, MotionGroupSetup, MotionGroupState, MotionGroupStateJointLimitReached, MovementErrorResponse, MovementErrorResponseKindEnum, MultiCollisionSetup, MultiErrorInvalidJointCount, MultiErrorJointLimitExceeded, MultiErrorJointPositionCollision, MultiJointTrajectory, MultiSearchCollisionFree422Response, MultiSearchCollisionFreeRequest, MultiSearchCollisionFreeResponse, MultiSearchCollisionFreeResponseResponse, MultiSearchCollisionFreeValidationError, MultiSearchCollisionFreeValidationErrorAllOfData, NOVACloudApi, NOVACloudApiAxiosParamCreator, NOVACloudApiFactory, NOVACloudApiFp, NanValueError, NanValueErrorKindEnum, NanValueErrorNanValue, NetworkDevice, NetworkInterface, NetworkState, NetworkStateConnectionTypeEnum, OpMode, OperatingState, OperationLimits, OperationMode, OrientationType, PathCartesianPTP, PathCartesianPTPPathDefinitionNameEnum, PathCircle, PathCirclePathDefinitionNameEnum, PathCubicSpline, PathCubicSplinePathDefinitionNameEnum, PathDirectionConstrainedCartesianPTP, PathDirectionConstrainedCartesianPTPPathDefinitionNameEnum, PathDirectionConstrainedJointPTP, PathDirectionConstrainedJointPTPPathDefinitionNameEnum, PathJointPTP, PathJointPTPPathDefinitionNameEnum, PathLine, PathLinePathDefinitionNameEnum, PauseJoggingRequest, PauseJoggingRequestMessageTypeEnum, PauseJoggingResponse, PauseJoggingResponseKindEnum, PauseMovementRequest, PauseMovementRequestMessageTypeEnum, PauseMovementResponse, PauseMovementResponseKindEnum, PauseOnIO, Payload, Plan422Response, PlanCollisionFreeFailedResponse, PlanCollisionFreeRequest, PlanCollisionFreeResponse, PlanCollisionFreeResponseResponse, PlanTrajectoryFailedResponse, PlanTrajectoryFailedResponseErrorFeedback, PlanTrajectoryRequest, PlanTrajectoryResponse, PlanTrajectoryResponseResponse, PlanValidationError, PlanValidationErrorAllOfData, Plane, PlaneShapeTypeEnum, PlaybackSpeedRequest, PlaybackSpeedRequestMessageTypeEnum, PlaybackSpeedResponse, PlaybackSpeedResponseKindEnum, Pose, PoseWaypoint, PoseWaypointsRequest, PoseWaypointsRequestMessageTypeEnum, PoseWaypointsResponse, PoseWaypointsResponseKindEnum, ProfinetDescription, ProfinetIO, ProfinetIOData, ProfinetIODirection, ProfinetIOTypeEnum, ProfinetInputOutputConfig, ProfinetSlotDescription, ProfinetSubSlotDescription, Program, ProgramApi, ProgramApiAxiosParamCreator, ProgramApiFactory, ProgramApiFp, ProgramRun, ProgramRunState, ProgramStartRequest, ProjectJointPositionDirectionConstraint422Response, ProjectJointPositionDirectionConstraintRequest, ProjectJointPositionDirectionConstraintResponse, ProjectJointPositionDirectionConstraintValidationError, ProjectJointPositionDirectionConstraintValidationErrorAllOfData, RRTConnectAlgorithm, RRTConnectAlgorithmAlgorithmNameEnum, RRTConnectAlgorithmStepSize, Range, Rectangle, RectangleShapeTypeEnum, RectangularCapsule, RectangularCapsuleShapeTypeEnum, ReleaseChannel, RequestArgs, RequiredError, RobotConfigurationsApi, RobotConfigurationsApiAxiosParamCreator, RobotConfigurationsApiFactory, RobotConfigurationsApiFp, RobotController, RobotControllerConfiguration, RobotControllerConfigurationRequest, RobotControllerState, RobotSystemMode, RobotTcp, RobotTcpData, SafetyGeometry, SafetyGeometryBox, SafetyGeometryCapsule, SafetyGeometryLozenge, SafetyGeometryPlane, SafetyGeometryPrism, SafetyGeometrySphere, SafetyStateType, SafetyZone, SafetyZonePose, SafetyZones, ServiceGroup, ServiceStatus, ServiceStatusPhase, ServiceStatusResponse, ServiceStatusSeverity, ServiceStatusStatus, SessionApi, SessionApiAxiosParamCreator, SessionApiFactory, SessionApiFp, SessionResponse, SetIO, SettableRobotSystemMode, SingularityTypeEnum, Snap7IO, Snap7IOArea, Snap7IOData, Snap7IODirection, Snap7IOTypeEnum, Sphere, SphereShapeTypeEnum, StartMovementRequest, StartMovementRequestMessageTypeEnum, StartMovementResponse, StartMovementResponseKindEnum, StartOnIO, StorageKey, StorageKeySourceEnum, StoreCollisionComponentsApi, StoreCollisionComponentsApiAxiosParamCreator, StoreCollisionComponentsApiFactory, StoreCollisionComponentsApiFp, StoreCollisionSetupsApi, StoreCollisionSetupsApiAxiosParamCreator, StoreCollisionSetupsApiFactory, StoreCollisionSetupsApiFp, StoreObjectApi, StoreObjectApiAxiosParamCreator, StoreObjectApiFactory, StoreObjectApiFp, StreamIOValuesResponse, SystemApi, SystemApiAxiosParamCreator, SystemApiFactory, SystemApiFp, TcpOffset, TcpRequiredError, TcpRequiredErrorKindEnum, TcpVelocityRequest, TcpVelocityRequestMessageTypeEnum, TcpVelocityResponse, TcpVelocityResponseKindEnum, ToolValue, ToolValueOrKey, ToolValueSourceEnum, TorqueExceededError, TorqueExceededErrorKindEnum, TorqueExceededErrorTorqueExceeded, TrajectoryCachingApi, TrajectoryCachingApiAxiosParamCreator, TrajectoryCachingApiFactory, TrajectoryCachingApiFp, TrajectoryData, TrajectoryDataMessageTypeEnum, TrajectoryDetails, TrajectoryDetailsKindEnum, TrajectoryDetailsState, TrajectoryEnded, TrajectoryEndedKindEnum, TrajectoryExecutionApi, TrajectoryExecutionApiAxiosParamCreator, TrajectoryExecutionApiFactory, TrajectoryExecutionApiFp, TrajectoryId, TrajectoryIdMessageTypeEnum, TrajectoryPausedByUser, TrajectoryPausedByUserKindEnum, TrajectoryPausedOnIO, TrajectoryPausedOnIOKindEnum, TrajectoryPlanningApi, TrajectoryPlanningApiAxiosParamCreator, TrajectoryPlanningApiFactory, TrajectoryPlanningApiFp, TrajectoryRunning, TrajectoryRunningKindEnum, TrajectorySection, TrajectoryWaitForIO, TrajectoryWaitForIOKindEnum, UnitType, UniversalrobotsController, UniversalrobotsControllerKindEnum, UpdateCellVersionRequest, UpdateNovaVersionRequest, User, ValidationError, ValidationError2, ValidationErrorLocInner, VersionApi, VersionApiAxiosParamCreator, VersionApiFactory, VersionApiFp, VirtualController, VirtualControllerApi, VirtualControllerApiAxiosParamCreator, VirtualControllerApiFactory, VirtualControllerApiFp, VirtualControllerBehaviorApi, VirtualControllerBehaviorApiAxiosParamCreator, VirtualControllerBehaviorApiFactory, VirtualControllerBehaviorApiFp, VirtualControllerInputsOutputsApi, VirtualControllerInputsOutputsApiAxiosParamCreator, VirtualControllerInputsOutputsApiFactory, VirtualControllerInputsOutputsApiFp, VirtualControllerKindEnum, VirtualRobotConfiguration, WaitForIOEventRequest, YaskawaController, YaskawaControllerKindEnum, ZodValidationError, ZodValidationErrorError, ZodValidationErrorErrorCodeEnum, ZodValidationErrorErrorDetailsInner, ZodValidationErrorErrorDetailsInnerPathInner, operationServerMap };
|
|
12242
|
+
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, BostondynamicsController, BostondynamicsControllerKindEnum, BostondynamicsControllerRobotTypeEnum, Box, BoxBoxTypeEnum, BoxShapeTypeEnum, BusIODescription, BusIOModbusClient, BusIOModbusClientBusTypeEnum, BusIOModbusServer, BusIOModbusServerBusTypeEnum, BusIOModbusTCPClient, BusIOModbusTCPClientNetworkTypeEnum, BusIOModbusTCPServer, BusIOModbusTCPServerNetworkTypeEnum, BusIOModbusVirtual, BusIOModbusVirtualBusTypeEnum, BusIOProfinet, BusIOProfinetBusTypeEnum, BusIOProfinetDefaultRoute, BusIOProfinetIpConfig, BusIOProfinetNetwork, BusIOProfinetSlot, BusIOProfinetVirtual, BusIOProfinetVirtualBusTypeEnum, BusIOSnap7, BusIOSnap7BusTypeEnum, BusIOType, BusIOsState, BusIOsStateEnum, COLLECTION_FORMATS, CapabilityEntry, Capsule, CapsuleShapeTypeEnum, CartesianLimits, CartesianVelocity, Cell, CellApi, CellApiAxiosParamCreator, CellApiFactory, CellApiFp, CloudConfigStatus, CloudConfigStatusConfigured, CloudConfigStatusConfiguredStatusEnum, CloudConfigStatusNotConfigured, CloudConfigStatusNotConfiguredStatusEnum, CloudConfiguration, CloudConnectionError, CloudConnectionErrorError, CloudConnectionErrorInvalidToken, CloudConnectionErrorInvalidTokenCodeEnum, CloudConnectionErrorInvalidTokenDetails, CloudConnectionErrorInvalidTokenDetailsCloudResponse, CloudConnectionErrorLeafnodeConnectionError, CloudConnectionErrorLeafnodeConnectionErrorCodeEnum, CloudConnectionErrorLeafnodeConnectionErrorDetails, CloudConnectionErrorLeafnodeConnectionTimeout, CloudConnectionErrorLeafnodeConnectionTimeoutCodeEnum, CloudConnectionErrorLeafnodeRestartTimeout, CloudConnectionErrorLeafnodeRestartTimeoutCodeEnum, CloudConnectionErrorNatsFailed, CloudConnectionErrorNatsFailedCodeEnum, CloudConnectionErrorNatsFailedDetails, CloudConnectionErrorUnexpectedResponse, CloudConnectionErrorUnexpectedResponseCodeEnum, CloudConnectionErrorUnexpectedResponseDetails, CloudConnectionErrorUnexpectedResponseDetailsCloudResponse, CloudConnectionRequest, CloudDisconnectionError, CloudDisconnectionStatusDisconnected, CloudDisconnectionStatusDisconnectedStatusEnum, CloudDisconnectionStatusDisconnecting, CloudDisconnectionStatusDisconnectingStatusEnum, CloudRegistrationSuccessResponse, CloudStatus, CloudStatusChecks, CloudStatusErrors, Collider, ColliderShape, ColliderValue, ColliderValueOrKey, ColliderValueSourceEnum, Collision, CollisionContact, CollisionError, CollisionErrorKindEnum, CollisionFreeAlgorithm, CollisionMotionGroup, CollisionSetup, CollisionSetupValue, CollisionSetupValueOrKey, CollisionSetupValueSourceEnum, Comparator, Configuration, ConfigurationArchiveStatus, ConfigurationArchiveStatusCreating, ConfigurationArchiveStatusCreatingStatusEnum, ConfigurationArchiveStatusError, ConfigurationArchiveStatusErrorStatusEnum, ConfigurationArchiveStatusSuccess, ConfigurationArchiveStatusSuccessStatusEnum, ConfigurationParameters, ConfigurationResource, ConfiguredPose, ConfiguredPoseInverse422Response, ConfiguredPoseInverseFailedResponse, ConfiguredPoseInverseRequest, ConfiguredPoseInverseResponse, ConfiguredPoseInverseResponseResponse, ConstrainedPose, ContainerEnvironmentInner, ContainerImage, ContainerImageSecretsInner, ContainerResources, ContainerStorage, ControllerApi, ControllerApiAxiosParamCreator, ControllerApiFactory, ControllerApiFp, ControllerDescription, ControllerInputsOutputsApi, ControllerInputsOutputsApiAxiosParamCreator, ControllerInputsOutputsApiFactory, ControllerInputsOutputsApiFp, ControllerNetworkInterface, ConvertVendorConfiguredPose422Response, ConvertVendorConfiguredPoseRequest, ConvertVendorConfiguredPoseRequestVendorConfiguredPoses, ConvexHull, ConvexHullShapeTypeEnum, CoordinateSystem, CoordinateSystemData, CopyMotionGroupModelRequest, CubicSplineParameter, CycleTime, Cylinder, CylinderShapeTypeEnum, DHParameter, Direction, DirectionConstraint, DirectionConstraintConstraintNameEnum, DynamicModel, ErrorDirectionConstraintNotMet, ErrorDirectionConstraintNotMetErrorFeedbackNameEnum, ErrorDirectionConstraintNotNormalized, ErrorDirectionConstraintNotNormalizedErrorFeedbackNameEnum, ErrorInvalidJointCount, ErrorInvalidJointCountErrorFeedbackNameEnum, ErrorJointLimitExceeded, ErrorJointLimitExceededErrorFeedbackNameEnum, ErrorJointPositionCollision, ErrorJointPositionCollisionErrorFeedbackNameEnum, ErrorMaxIterationsExceeded, ErrorMaxIterationsExceededErrorFeedbackNameEnum, ErrorMotionGroupKeyMismatch, ErrorUnsupportedOperation, ErrorUnsupportedOperationErrorFeedbackNameEnum, Execute, 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, GetKinematicConfiguration422Response, GetKinematicConfigurationRequest, GetKinematicConfigurationResponse, GetKinematicConfigurationValidationError, GetKinematicConfigurationValidationErrorAllOfData, 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, MotionGroupConfiguration, MotionGroupDescription, MotionGroupFromJson, MotionGroupFromType, MotionGroupInfo, MotionGroupJoints, MotionGroupModelCatalog, MotionGroupModelDescription, MotionGroupModelsApi, MotionGroupModelsApiAxiosParamCreator, MotionGroupModelsApiFactory, MotionGroupModelsApiFp, MotionGroupSetup, MotionGroupState, MotionGroupStateJointLimitReached, MovementErrorResponse, MovementErrorResponseKindEnum, MultiCollisionSetup, MultiErrorInvalidJointCount, MultiErrorJointLimitExceeded, MultiErrorJointPositionCollision, MultiJointTrajectory, MultiSearchCollisionFree422Response, MultiSearchCollisionFreeRequest, MultiSearchCollisionFreeResponse, MultiSearchCollisionFreeResponseResponse, MultiSearchCollisionFreeValidationError, MultiSearchCollisionFreeValidationErrorAllOfData, NOVACloudApi, NOVACloudApiAxiosParamCreator, NOVACloudApiFactory, NOVACloudApiFp, NanValueError, NanValueErrorKindEnum, NanValueErrorNanValue, NetworkDevice, NetworkInterface, NetworkState, NetworkStateConnectionTypeEnum, OpMode, OperatingState, OperationLimits, OperationMode, OrientationType, PathCartesianPTP, PathCartesianPTPPathDefinitionNameEnum, PathCircle, PathCirclePathDefinitionNameEnum, PathCubicSpline, PathCubicSplinePathDefinitionNameEnum, PathDirectionConstrainedCartesianPTP, PathDirectionConstrainedCartesianPTPPathDefinitionNameEnum, PathDirectionConstrainedJointPTP, PathDirectionConstrainedJointPTPPathDefinitionNameEnum, PathJointPTP, PathJointPTPPathDefinitionNameEnum, PathLine, PathLinePathDefinitionNameEnum, 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, ProfinetSlotOffset, ProfinetSubSlotDescription, Program, ProgramApi, ProgramApiAxiosParamCreator, ProgramApiFactory, ProgramApiFp, ProgramRun, ProgramRunState, ProgramStartRequest, ProjectJointPositionDirectionConstraint422Response, ProjectJointPositionDirectionConstraintRequest, ProjectJointPositionDirectionConstraintResponse, ProjectJointPositionDirectionConstraintValidationError, ProjectJointPositionDirectionConstraintValidationErrorAllOfData, RRTConnectAlgorithm, RRTConnectAlgorithmAlgorithmNameEnum, RRTConnectAlgorithmStepSize, Range, Rectangle, RectangleShapeTypeEnum, RectangularCapsule, RectangularCapsuleShapeTypeEnum, ReleaseChannel, RequestArgs, RequiredError, RobotConfigurationsApi, RobotConfigurationsApiAxiosParamCreator, RobotConfigurationsApiFactory, RobotConfigurationsApiFp, RobotController, RobotControllerConfiguration, RobotControllerConfigurationRequest, RobotControllerState, RobotSystemMode, RobotTcp, RobotTcpData, SafetyGeometry, SafetyGeometryBox, SafetyGeometryCapsule, SafetyGeometryLozenge, SafetyGeometryPlane, SafetyGeometryPrism, SafetyGeometrySphere, SafetyStateType, SafetyZone, SafetyZonePose, SafetyZones, ServiceGroup, ServiceStatus, ServiceStatusPhase, ServiceStatusResponse, ServiceStatusSeverity, ServiceStatusStatus, SessionApi, SessionApiAxiosParamCreator, SessionApiFactory, SessionApiFp, SessionResponse, SetIO, SettableRobotSystemMode, SingularityHandling, SingularityTypeEnum, Snap7IO, Snap7IOArea, Snap7IOData, Snap7IODirection, Snap7IOTypeEnum, Sphere, SphereShapeTypeEnum, StartMovementRequest, StartMovementRequestMessageTypeEnum, StartMovementResponse, StartMovementResponseKindEnum, StartOnIO, StorageKey, StorageKeySourceEnum, StoreCollisionComponentsApi, StoreCollisionComponentsApiAxiosParamCreator, StoreCollisionComponentsApiFactory, StoreCollisionComponentsApiFp, StoreCollisionSetupsApi, StoreCollisionSetupsApiAxiosParamCreator, StoreCollisionSetupsApiFactory, StoreCollisionSetupsApiFp, StoreObjectApi, StoreObjectApiAxiosParamCreator, StoreObjectApiFactory, StoreObjectApiFp, StreamIOValuesResponse, SystemApi, SystemApiAxiosParamCreator, SystemApiFactory, SystemApiFp, TcpOffset, TcpRequiredError, TcpRequiredErrorKindEnum, TcpVelocityRequest, TcpVelocityRequestMessageTypeEnum, TcpVelocityResponse, TcpVelocityResponseKindEnum, ToolValue, ToolValueOrKey, ToolValueSourceEnum, TorqueExceededError, TorqueExceededErrorKindEnum, TorqueExceededErrorTorqueExceeded, TrajectoryCachingApi, TrajectoryCachingApiAxiosParamCreator, TrajectoryCachingApiFactory, TrajectoryCachingApiFp, TrajectoryData, TrajectoryDataMessageTypeEnum, TrajectoryDetails, TrajectoryDetailsKindEnum, TrajectoryDetailsState, TrajectoryEnded, TrajectoryEndedKindEnum, TrajectoryExecutionApi, TrajectoryExecutionApiAxiosParamCreator, TrajectoryExecutionApiFactory, TrajectoryExecutionApiFp, TrajectoryId, TrajectoryIdMessageTypeEnum, TrajectoryPausedByUser, TrajectoryPausedByUserKindEnum, TrajectoryPausedOnIO, TrajectoryPausedOnIOKindEnum, TrajectoryPlanningApi, TrajectoryPlanningApiAxiosParamCreator, TrajectoryPlanningApiFactory, TrajectoryPlanningApiFp, TrajectoryRunning, TrajectoryRunningKindEnum, TrajectorySection, TrajectoryWaitForIO, TrajectoryWaitForIOKindEnum, UnitType, UnitreeController, UnitreeControllerKindEnum, UnitreeControllerRobotTypeEnum, UniversalrobotsController, UniversalrobotsControllerKindEnum, 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 };
|