@wandelbots/nova-api 26.6.0-dev.9 → 26.6.0-dev.91

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.
@@ -6,7 +6,7 @@ import { AxiosInstance, AxiosPromise, RawAxiosRequestConfig } from "axios";
6
6
  * Wandelbots NOVA API
7
7
  * Interact with robots in an easy and intuitive way.
8
8
  *
9
- * The version of the OpenAPI document: 2.5.0
9
+ * The version of the OpenAPI document: 2.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 callers to either reference a predefined motion group model or upload a full JSON configuration that the backend extracts into a motion group description.
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 a 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).
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
  */
@@ -1128,9 +1225,16 @@ interface ConfigurationResource {
1128
1225
  */
1129
1226
  'children'?: Array<ConfigurationResource>;
1130
1227
  }
1228
+ /**
1229
+ * A pose together with an optional kinematic configuration that resolves it to a unique robot posture. Optionally, the pose can be expressed relative to a coordinate system. The kinematic configuration is optional because it is currently not supported for all robot types, e.g., cuspidal robots.
1230
+ */
1131
1231
  interface ConfiguredPose {
1132
1232
  'pose': Pose;
1133
- 'kinematic_configuration': KinematicConfiguration;
1233
+ 'kinematic_configuration'?: KinematicConfiguration;
1234
+ /**
1235
+ * Optional identifier of the coordinate system the pose is expressed in. If this is null or omitted, the pose is referenced in `world`.
1236
+ */
1237
+ 'coordinate_system_id'?: string;
1134
1238
  }
1135
1239
  interface ConfiguredPoseInverse422Response {
1136
1240
  'detail'?: Array<ValidationError>;
@@ -1240,6 +1344,19 @@ interface ControllerDescription {
1240
1344
  */
1241
1345
  'supports_safety_zones': boolean;
1242
1346
  }
1347
+ /**
1348
+ * 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.
1349
+ */
1350
+ interface ControllerNetworkInterface {
1351
+ /**
1352
+ * 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.
1353
+ */
1354
+ 'address': string;
1355
+ /**
1356
+ * 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. The physical port of an existing controller cannot be changed by an in-place update. To move a controller to a different port, delete the controller and re-add it with the new `pf`.
1357
+ */
1358
+ 'pf': string;
1359
+ }
1243
1360
  interface ConvertVendorConfiguredPose422Response {
1244
1361
  'detail'?: Array<ValidationError>;
1245
1362
  }
@@ -1613,6 +1730,11 @@ interface ExternalJointStreamRequest {
1613
1730
  interface FanucController {
1614
1731
  'kind': FanucControllerKindEnum;
1615
1732
  'controller_ip': string;
1733
+ 'network_interface'?: ControllerNetworkInterface;
1734
+ /**
1735
+ * Enable the FANUC Stream Motion interface. When enabled, the GCI server communicates with the controller via the Stream Motion interface.
1736
+ */
1737
+ 'stream_motion'?: boolean;
1616
1738
  }
1617
1739
  declare const FanucControllerKindEnum: {
1618
1740
  readonly FanucController: "FanucController";
@@ -1883,6 +2005,39 @@ interface ForwardKinematicsValidationError {
1883
2005
  };
1884
2006
  'data'?: ErrorInvalidJointCount;
1885
2007
  }
2008
+ interface GetKinematicConfiguration422Response {
2009
+ 'detail'?: Array<GetKinematicConfigurationValidationError>;
2010
+ }
2011
+ interface GetKinematicConfigurationRequest {
2012
+ /**
2013
+ * Identifies a single motion group model. See [getMotionGroupModels](#/operations/getMotionGroupModels) for supported types.
2014
+ */
2015
+ 'motion_group_model': string;
2016
+ /**
2017
+ * 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.
2018
+ */
2019
+ 'joint_positions': Array<Array<number>>;
2020
+ }
2021
+ interface GetKinematicConfigurationResponse {
2022
+ /**
2023
+ * List of kinematic configurations corresponding to the input joint positions.
2024
+ */
2025
+ 'kinematic_configurations': Array<KinematicConfiguration>;
2026
+ }
2027
+ interface GetKinematicConfigurationValidationError {
2028
+ 'loc': Array<ValidationErrorLocInner>;
2029
+ 'msg': string;
2030
+ 'type': string;
2031
+ 'input': {
2032
+ [key: string]: any;
2033
+ };
2034
+ 'data'?: GetKinematicConfigurationValidationErrorAllOfData;
2035
+ }
2036
+ /**
2037
+ * @type GetKinematicConfigurationValidationErrorAllOfData
2038
+ * Optional data further specifying the validation error.
2039
+ */
2040
+ type GetKinematicConfigurationValidationErrorAllOfData = ErrorInvalidJointCount | ErrorUnsupportedOperation;
1886
2041
  interface GetTrajectoryResponse {
1887
2042
  /**
1888
2043
  * Unique identifier of the motion group the trajectory is planned for.
@@ -2335,13 +2490,25 @@ declare const JointLimitExceededErrorKindEnum: {
2335
2490
  };
2336
2491
  type JointLimitExceededErrorKindEnum = typeof JointLimitExceededErrorKindEnum[keyof typeof JointLimitExceededErrorKindEnum];
2337
2492
  interface JointLimits {
2493
+ /**
2494
+ * Joint position limits in rad.
2495
+ */
2338
2496
  'position'?: LimitRange;
2497
+ /**
2498
+ * Joint velocity limit in rad/s.
2499
+ */
2339
2500
  'velocity'?: number;
2501
+ /**
2502
+ * Joint acceleration limit in rad/s².
2503
+ */
2340
2504
  'acceleration'?: number;
2341
2505
  /**
2342
- * > **NOTE** > > This limit type is experimental and its behavior may change in future releases.
2506
+ * Joint jerk limit in rad/s³. > **NOTE** > > This limit type is experimental and its behavior may change in future releases.
2343
2507
  */
2344
2508
  'jerk'?: number;
2509
+ /**
2510
+ * Joint torque limit in Nm.
2511
+ */
2345
2512
  'torque'?: number;
2346
2513
  }
2347
2514
  interface JointPTPMotion {
@@ -2621,7 +2788,13 @@ type LicenseStatusEnum = typeof LicenseStatusEnum[keyof typeof LicenseStatusEnum
2621
2788
  * The upper_limit must be greater then the lower_limit.
2622
2789
  */
2623
2790
  interface LimitRange {
2791
+ /**
2792
+ * Lower position limit in rad.
2793
+ */
2624
2794
  'lower_limit'?: number;
2795
+ /**
2796
+ * Upper position limit in rad.
2797
+ */
2625
2798
  'upper_limit'?: number;
2626
2799
  }
2627
2800
  interface LimitSet {
@@ -2708,9 +2881,11 @@ interface ListTrajectoriesResponse {
2708
2881
  }
2709
2882
  declare const Manufacturer: {
2710
2883
  readonly Abb: "abb";
2884
+ readonly Bostondynamics: "bostondynamics";
2711
2885
  readonly Fanuc: "fanuc";
2712
2886
  readonly Kuka: "kuka";
2713
2887
  readonly Staubli: "staubli";
2888
+ readonly Unitree: "unitree";
2714
2889
  readonly Universalrobots: "universalrobots";
2715
2890
  readonly Yaskawa: "yaskawa";
2716
2891
  };
@@ -2759,7 +2934,7 @@ interface MergeTrajectoriesSegment {
2759
2934
  */
2760
2935
  'trajectory': JointTrajectory;
2761
2936
  /**
2762
- * Limits override is used to override the global limits of the motion group for the blending at the end of this segment.
2937
+ * 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
2938
  */
2764
2939
  'limits_override'?: LimitsOverride;
2765
2940
  /**
@@ -2880,7 +3055,7 @@ interface ModelError {
2880
3055
  interface MotionCommand {
2881
3056
  'blending'?: MotionCommandBlending;
2882
3057
  /**
2883
- * Limits override is used to override the global limits of the motion group for this segment of the motion.
3058
+ * 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
3059
  */
2885
3060
  'limits_override'?: LimitsOverride;
2886
3061
  'path': MotionCommandPath;
@@ -2894,6 +3069,27 @@ type MotionCommandBlending = BlendingAuto | BlendingPosition;
2894
3069
  * @type MotionCommandPath
2895
3070
  */
2896
3071
  type MotionCommandPath = PathCartesianPTP | PathCircle | PathCubicSpline | PathDirectionConstrainedCartesianPTP | PathDirectionConstrainedJointPTP | PathJointPTP | PathLine;
3072
+ /**
3073
+ * Response for motion group configuration lookup.
3074
+ */
3075
+ interface MotionGroupConfiguration {
3076
+ /**
3077
+ * Name of the robot configuration containing this motion group.
3078
+ */
3079
+ 'robot_configuration': string;
3080
+ /**
3081
+ * Identifies a single motion group model. See [getMotionGroupModels](#/operations/getMotionGroupModels) for supported types.
3082
+ */
3083
+ 'motion_group_model': string;
3084
+ /**
3085
+ * Internal UID of the motion group inside the GCI transcript.
3086
+ */
3087
+ 'motion_group_uid': number;
3088
+ /**
3089
+ * Full GCI transcript (JSON) containing the robot configuration and motion group.
3090
+ */
3091
+ 'content': string;
3092
+ }
2897
3093
  /**
2898
3094
  * 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
3095
  */
@@ -2970,7 +3166,7 @@ interface MotionGroupFromJson {
2970
3166
  */
2971
3167
  'motion_group': string;
2972
3168
  /**
2973
- * Full JSON configuration of the virtual robot controller. This can be obtained from the physical controller\'s configuration via [getVirtualControllerConfiguration](#/operations/getVirtualControllerConfiguration).
3169
+ * JSON configuration of the virtual robot controller, can be obtained from the physical controller\'s configuration via [getVirtualControllerConfiguration](#/operations/getVirtualControllerConfiguration).
2974
3170
  */
2975
3171
  'json_data': string;
2976
3172
  /**
@@ -2978,7 +3174,7 @@ interface MotionGroupFromJson {
2978
3174
  */
2979
3175
  'extracted_motion_group_id': string;
2980
3176
  /**
2981
- * Initial joint position of the added motion group. Provides the joint position as a JSON array of float values in radians, where the array length must match the robot\'s degrees of freedom (DOF), 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.
3177
+ * 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
3178
  */
2983
3179
  'initial_joint_position'?: string;
2984
3180
  }
@@ -2992,7 +3188,7 @@ interface MotionGroupFromType {
2992
3188
  */
2993
3189
  'motion_group_model': string;
2994
3190
  /**
2995
- * Initial joint position of the added motion group. Provides the joint position as a JSON array of float values in radians, where the array length must match the robot\'s degrees of freedom (DOF), 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.
3191
+ * 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
3192
  */
2997
3193
  'initial_joint_position'?: string;
2998
3194
  }
@@ -3031,6 +3227,19 @@ interface MotionGroupJoints {
3031
3227
  */
3032
3228
  'torques'?: Array<number>;
3033
3229
  }
3230
+ /**
3231
+ * Entry for a motion group with its name and readable name.
3232
+ */
3233
+ interface MotionGroupModelCatalog {
3234
+ /**
3235
+ * Name of the motion group.
3236
+ */
3237
+ 'motion_group_name': string;
3238
+ /**
3239
+ * Readable name for the motion group.
3240
+ */
3241
+ 'readable_name': string;
3242
+ }
3034
3243
  /**
3035
3244
  * Metadata about a motion group model.
3036
3245
  */
@@ -3109,17 +3318,25 @@ interface MotionGroupState {
3109
3318
  */
3110
3319
  'joint_current'?: Array<number>;
3111
3320
  /**
3112
- * 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.
3321
+ * 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
3322
  */
3114
3323
  'flange_pose'?: Pose;
3324
+ /**
3325
+ * Cartesian velocity of the flange. The velocity is relative to the response coordinate system specified in the request.
3326
+ */
3327
+ 'flange_velocity'?: CartesianVelocity;
3115
3328
  /**
3116
3329
  * Unique identifier addressing the active TCP. Might not be returned for positioners as some do not support TCPs, depending on the model.
3117
3330
  */
3118
3331
  'tcp'?: string;
3119
3332
  /**
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 response_coordinate_system specified in the request. Might not be returned for positioners as some do not support TCPs, depending on the model.
3333
+ * 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
3334
  */
3122
3335
  'tcp_pose'?: Pose;
3336
+ /**
3337
+ * Cartesian velocity of the TCP selected on the robot control panel. The velocity is relative to the response coordinate system specified in the request.
3338
+ */
3339
+ 'tcp_velocity'?: CartesianVelocity;
3123
3340
  /**
3124
3341
  * 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
3342
  */
@@ -3617,6 +3834,10 @@ interface PlanCollisionFreeRequest {
3617
3834
  */
3618
3835
  interface PlanCollisionFreeResponse {
3619
3836
  'response': PlanCollisionFreeResponseResponse;
3837
+ /**
3838
+ * The motion commands that produced the trajectory.
3839
+ */
3840
+ 'motion_commands'?: Array<MotionCommand>;
3620
3841
  }
3621
3842
  /**
3622
3843
  * @type PlanCollisionFreeResponseResponse
@@ -3647,6 +3868,10 @@ interface PlanTrajectoryRequest {
3647
3868
  * List of motion commands. A command consists of a path definition (line, circle, joint_ptp, cartesian_ptp, cubic_spline), blending, and limits override.
3648
3869
  */
3649
3870
  'motion_commands': Array<MotionCommand>;
3871
+ /**
3872
+ * <!-- theme: danger --> > > **Experimental** Strategy used to deal with wrist singularities along a cartesian path.
3873
+ */
3874
+ 'singularity_handling'?: SingularityHandling;
3650
3875
  }
3651
3876
  interface PlanTrajectoryResponse {
3652
3877
  'response': PlanTrajectoryResponseResponse;
@@ -3794,7 +4019,7 @@ interface ProfinetIO {
3794
4019
  */
3795
4020
  'direction': ProfinetIODirection;
3796
4021
  /**
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
4022
+ * 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
4023
  */
3799
4024
  'byte_address': number;
3800
4025
  /**
@@ -3817,7 +4042,7 @@ interface ProfinetIOData {
3817
4042
  */
3818
4043
  'direction': ProfinetIODirection;
3819
4044
  /**
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
4045
+ * 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
4046
  */
3822
4047
  'byte_address': number;
3823
4048
  /**
@@ -3856,13 +4081,19 @@ interface ProfinetInputOutputConfig {
3856
4081
  */
3857
4082
  'config': string;
3858
4083
  /**
3859
- * Offset in bytes for the address of the input (perspective of the controller) variables. The offset will be subtracted from to the byte addresses of the sent XML content.
4084
+ * 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
4085
  */
3861
- 'input_offset': number;
4086
+ 'offsets'?: Array<ProfinetSlotOffset>;
3862
4087
  /**
3863
- * Offset in bytes for the address of the output (perspective of the controller) variables. The offset will be subtracted from to the byte addresses of the sent XML content.
4088
+ * 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.
4089
+ * @deprecated
3864
4090
  */
3865
- 'output_offset': number;
4091
+ 'input_offset'?: number;
4092
+ /**
4093
+ * 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.
4094
+ * @deprecated
4095
+ */
4096
+ 'output_offset'?: number;
3866
4097
  }
3867
4098
  /**
3868
4099
  * 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 +4112,20 @@ interface ProfinetSlotDescription {
3881
4112
  */
3882
4113
  'subslots': Array<ProfinetSubSlotDescription>;
3883
4114
  }
4115
+ interface ProfinetSlotOffset {
4116
+ /**
4117
+ * 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.
4118
+ */
4119
+ 'slot': number;
4120
+ /**
4121
+ * 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.
4122
+ */
4123
+ 'input_offset': number;
4124
+ /**
4125
+ * 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.
4126
+ */
4127
+ 'output_offset': number;
4128
+ }
3884
4129
  interface ProfinetSubSlotDescription {
3885
4130
  /**
3886
4131
  * The number/index of the PROFINET subslot.
@@ -4134,7 +4379,7 @@ interface RobotController {
4134
4379
  /**
4135
4380
  * @type RobotControllerConfiguration
4136
4381
  */
4137
- type RobotControllerConfiguration = AbbController | FanucController | KukaController | UniversalrobotsController | VirtualController | YaskawaController;
4382
+ type RobotControllerConfiguration = AbbController | BostondynamicsController | FanucController | KukaController | StaubliController | UnitreeController | UniversalrobotsController | VirtualController | YaskawaController;
4138
4383
  /**
4139
4384
  * Information to generate all robot controller configurations that match a given ARP scan result.
4140
4385
  */
@@ -4530,6 +4775,15 @@ declare const SettableRobotSystemMode: {
4530
4775
  readonly ModeControl: "MODE_CONTROL";
4531
4776
  };
4532
4777
  type SettableRobotSystemMode = typeof SettableRobotSystemMode[keyof typeof SettableRobotSystemMode];
4778
+ /**
4779
+ * <!-- 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.
4780
+ */
4781
+ declare const SingularityHandling: {
4782
+ readonly None: "NONE";
4783
+ readonly PalletizingWrist: "PALLETIZING_WRIST";
4784
+ readonly AdaptiveSampling: "ADAPTIVE_SAMPLING";
4785
+ };
4786
+ type SingularityHandling = typeof SingularityHandling[keyof typeof SingularityHandling];
4533
4787
  declare const SingularityTypeEnum: {
4534
4788
  readonly Wrist: "WRIST";
4535
4789
  readonly Elbow: "ELBOW";
@@ -4691,6 +4945,27 @@ interface StartOnIO {
4691
4945
  'comparator': Comparator;
4692
4946
  'io_origin': IOOrigin;
4693
4947
  }
4948
+ /**
4949
+ * The configuration of a physical STÄUBLI robot controller has to contain an IP address. Additionally, an RTI server configuration has to be specified in order to control the robot. Deploying the server is a functionality of this API.
4950
+ */
4951
+ interface StaubliController {
4952
+ 'kind': StaubliControllerKindEnum;
4953
+ 'controller_ip': string;
4954
+ 'controller_port': number;
4955
+ 'command_port': number;
4956
+ 'rti_server': StaubliControllerRtiServer;
4957
+ }
4958
+ declare const StaubliControllerKindEnum: {
4959
+ readonly StaubliController: "StaubliController";
4960
+ };
4961
+ type StaubliControllerKindEnum = typeof StaubliControllerKindEnum[keyof typeof StaubliControllerKindEnum];
4962
+ /**
4963
+ * The RTI server runs inside of the cell.
4964
+ */
4965
+ interface StaubliControllerRtiServer {
4966
+ 'ip': string;
4967
+ 'port': number;
4968
+ }
4694
4969
  /**
4695
4970
  * A reference to an object stored in the storage service. The key is resolved against the appropriate S3 path prefix depending on context (e.g. collision/setups/, collision/colliders/).
4696
4971
  */
@@ -4971,6 +5246,43 @@ declare const UnitType: {
4971
5246
  readonly UnitMeter: "UNIT_METER";
4972
5247
  };
4973
5248
  type UnitType = typeof UnitType[keyof typeof UnitType];
5249
+ /**
5250
+ * 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.
5251
+ */
5252
+ interface UnitreeController {
5253
+ 'kind': UnitreeControllerKindEnum;
5254
+ /**
5255
+ * The IP address of the Unitree robot.
5256
+ */
5257
+ 'controller_ip': string;
5258
+ /**
5259
+ * The Unitree robot model type.
5260
+ */
5261
+ 'robot_type': UnitreeControllerRobotTypeEnum;
5262
+ /**
5263
+ * The network interface used for DDS discovery.
5264
+ */
5265
+ 'network_interface'?: string;
5266
+ /**
5267
+ * Enable DDS unicast mode for environments where multicast is unavailable.
5268
+ */
5269
+ 'dds_unicast_mode'?: boolean;
5270
+ /**
5271
+ * Enable exclusive lease-based control of the robot.
5272
+ */
5273
+ 'enable_lease'?: boolean;
5274
+ }
5275
+ declare const UnitreeControllerKindEnum: {
5276
+ readonly UnitreeController: "UnitreeController";
5277
+ };
5278
+ type UnitreeControllerKindEnum = typeof UnitreeControllerKindEnum[keyof typeof UnitreeControllerKindEnum];
5279
+ declare const UnitreeControllerRobotTypeEnum: {
5280
+ readonly Go2: "go2";
5281
+ readonly G1: "g1";
5282
+ readonly B2: "b2";
5283
+ readonly H1: "h1";
5284
+ };
5285
+ type UnitreeControllerRobotTypeEnum = typeof UnitreeControllerRobotTypeEnum[keyof typeof UnitreeControllerRobotTypeEnum];
4974
5286
  /**
4975
5287
  * The configuration of a physical Universal Robots controller has to contain IP address of the controller.
4976
5288
  */
@@ -5050,9 +5362,13 @@ interface VirtualController {
5050
5362
  */
5051
5363
  'json'?: string;
5052
5364
  /**
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, where the array length must match the robot\'s degrees of freedom (DOF), 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.
5365
+ * 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
5366
  */
5055
5367
  'initial_joint_position'?: string;
5368
+ /**
5369
+ * 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
5370
+ */
5371
+ 'motion_groups'?: Array<AddVirtualControllerMotionGroupRequest>;
5056
5372
  }
5057
5373
  declare const VirtualControllerKindEnum: {
5058
5374
  readonly VirtualController: "VirtualController";
@@ -5510,15 +5826,16 @@ declare const BUSInputsOutputsApiAxiosParamCreator: (configuration?: Configurati
5510
5826
  */
5511
5827
  getProfinetGSDML: (cell: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
5512
5828
  /**
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 the input and output variable addresses to get an XML tagmap that is ready to paste to the third party software, e.g., TIA portal.
5829
+ * **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
5830
  * @summary PROFINET Inputs/Outputs to File
5515
5831
  * @param {string} cell Unique identifier addressing a cell in all API calls.
5832
+ * @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 &#x60;input_offset&#x60; and &#x60;output_offset&#x60; query parameters.
5516
5833
  * @param {number} [inputOffset]
5517
5834
  * @param {number} [outputOffset]
5518
5835
  * @param {*} [options] Override http request option.
5519
5836
  * @throws {RequiredError}
5520
5837
  */
5521
- getProfinetIOsFromFile: (cell: string, inputOffset?: number, outputOffset?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
5838
+ getProfinetIOsFromFile: (cell: string, offsets?: Array<ProfinetSlotOffset>, inputOffset?: number, outputOffset?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
5522
5839
  /**
5523
5840
  * **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
5841
  * @summary List Descriptions
@@ -5716,15 +6033,16 @@ declare const BUSInputsOutputsApiFp: (configuration?: Configuration) => {
5716
6033
  */
5717
6034
  getProfinetGSDML(cell: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<string>>;
5718
6035
  /**
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 the input and output variable addresses to get an XML tagmap that is ready to paste to the third party software, e.g., TIA portal.
6036
+ * **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
6037
  * @summary PROFINET Inputs/Outputs to File
5721
6038
  * @param {string} cell Unique identifier addressing a cell in all API calls.
6039
+ * @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 &#x60;input_offset&#x60; and &#x60;output_offset&#x60; query parameters.
5722
6040
  * @param {number} [inputOffset]
5723
6041
  * @param {number} [outputOffset]
5724
6042
  * @param {*} [options] Override http request option.
5725
6043
  * @throws {RequiredError}
5726
6044
  */
5727
- getProfinetIOsFromFile(cell: string, inputOffset?: number, outputOffset?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<string>>;
6045
+ getProfinetIOsFromFile(cell: string, offsets?: Array<ProfinetSlotOffset>, inputOffset?: number, outputOffset?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<string>>;
5728
6046
  /**
5729
6047
  * **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
6048
  * @summary List Descriptions
@@ -5922,15 +6240,16 @@ declare const BUSInputsOutputsApiFactory: (configuration?: Configuration, basePa
5922
6240
  */
5923
6241
  getProfinetGSDML(cell: string, options?: RawAxiosRequestConfig): AxiosPromise<string>;
5924
6242
  /**
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 the input and output variable addresses to get an XML tagmap that is ready to paste to the third party software, e.g., TIA portal.
6243
+ * **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
6244
  * @summary PROFINET Inputs/Outputs to File
5927
6245
  * @param {string} cell Unique identifier addressing a cell in all API calls.
6246
+ * @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 &#x60;input_offset&#x60; and &#x60;output_offset&#x60; query parameters.
5928
6247
  * @param {number} [inputOffset]
5929
6248
  * @param {number} [outputOffset]
5930
6249
  * @param {*} [options] Override http request option.
5931
6250
  * @throws {RequiredError}
5932
6251
  */
5933
- getProfinetIOsFromFile(cell: string, inputOffset?: number, outputOffset?: number, options?: RawAxiosRequestConfig): AxiosPromise<string>;
6252
+ getProfinetIOsFromFile(cell: string, offsets?: Array<ProfinetSlotOffset>, inputOffset?: number, outputOffset?: number, options?: RawAxiosRequestConfig): AxiosPromise<string>;
5934
6253
  /**
5935
6254
  * **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
6255
  * @summary List Descriptions
@@ -6128,15 +6447,16 @@ declare class BUSInputsOutputsApi extends BaseAPI {
6128
6447
  */
6129
6448
  getProfinetGSDML(cell: string, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<string, any, {}>>;
6130
6449
  /**
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 the input and output variable addresses to get an XML tagmap that is ready to paste to the third party software, e.g., TIA portal.
6450
+ * **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
6451
  * @summary PROFINET Inputs/Outputs to File
6133
6452
  * @param {string} cell Unique identifier addressing a cell in all API calls.
6453
+ * @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 &#x60;input_offset&#x60; and &#x60;output_offset&#x60; query parameters.
6134
6454
  * @param {number} [inputOffset]
6135
6455
  * @param {number} [outputOffset]
6136
6456
  * @param {*} [options] Override http request option.
6137
6457
  * @throws {RequiredError}
6138
6458
  */
6139
- getProfinetIOsFromFile(cell: string, inputOffset?: number, outputOffset?: number, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<string, any, {}>>;
6459
+ getProfinetIOsFromFile(cell: string, offsets?: Array<ProfinetSlotOffset>, inputOffset?: number, outputOffset?: number, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<string, any, {}>>;
6140
6460
  /**
6141
6461
  * **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
6462
  * @summary List Descriptions
@@ -6220,7 +6540,7 @@ declare const CellApiAxiosParamCreator: (configuration?: Configuration) => {
6220
6540
  */
6221
6541
  deployCell: (cell: Cell, completionTimeout?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
6222
6542
  /**
6223
- * **Required permissions:** `can_access_cells` - View cell configurations and resources ___ List all cell resources.
6543
+ * **Required permissions:** `can_access_system` - View system status and metadata ___ List all cell resources.
6224
6544
  * @summary Configuration
6225
6545
  * @param {string} cell Unique identifier addressing a cell in all API calls.
6226
6546
  * @param {*} [options] Override http request option.
@@ -6303,7 +6623,7 @@ declare const CellApiFp: (configuration?: Configuration) => {
6303
6623
  */
6304
6624
  deployCell(cell: Cell, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
6305
6625
  /**
6306
- * **Required permissions:** `can_access_cells` - View cell configurations and resources ___ List all cell resources.
6626
+ * **Required permissions:** `can_access_system` - View system status and metadata ___ List all cell resources.
6307
6627
  * @summary Configuration
6308
6628
  * @param {string} cell Unique identifier addressing a cell in all API calls.
6309
6629
  * @param {*} [options] Override http request option.
@@ -6386,7 +6706,7 @@ declare const CellApiFactory: (configuration?: Configuration, basePath?: string,
6386
6706
  */
6387
6707
  deployCell(cell: Cell, completionTimeout?: number, options?: RawAxiosRequestConfig): AxiosPromise<void>;
6388
6708
  /**
6389
- * **Required permissions:** `can_access_cells` - View cell configurations and resources ___ List all cell resources.
6709
+ * **Required permissions:** `can_access_system` - View system status and metadata ___ List all cell resources.
6390
6710
  * @summary Configuration
6391
6711
  * @param {string} cell Unique identifier addressing a cell in all API calls.
6392
6712
  * @param {*} [options] Override http request option.
@@ -6469,7 +6789,7 @@ declare class CellApi extends BaseAPI {
6469
6789
  */
6470
6790
  deployCell(cell: Cell, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<void, any, {}>>;
6471
6791
  /**
6472
- * **Required permissions:** `can_access_cells` - View cell configurations and resources ___ List all cell resources.
6792
+ * **Required permissions:** `can_access_system` - View system status and metadata ___ List all cell resources.
6473
6793
  * @summary Configuration
6474
6794
  * @param {string} cell Unique identifier addressing a cell in all API calls.
6475
6795
  * @param {*} [options] Override http request option.
@@ -7447,6 +7767,15 @@ declare const KinematicsApiAxiosParamCreator: (configuration?: Configuration) =>
7447
7767
  * @throws {RequiredError}
7448
7768
  */
7449
7769
  forwardKinematics: (cell: string, forwardKinematicsRequest: ForwardKinematicsRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7770
+ /**
7771
+ * **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.
7772
+ * @summary Get kinematic configuration
7773
+ * @param {string} cell Unique identifier addressing a cell in all API calls.
7774
+ * @param {GetKinematicConfigurationRequest} getKinematicConfigurationRequest
7775
+ * @param {*} [options] Override http request option.
7776
+ * @throws {RequiredError}
7777
+ */
7778
+ getKinematicConfiguration: (cell: string, getKinematicConfigurationRequest: GetKinematicConfigurationRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7450
7779
  /**
7451
7780
  * **Required permissions:** `can_plan_motion` - Plan robot motions and trajectories ___ Returns the reachable joint positions for a list of given poses.
7452
7781
  * @summary Inverse kinematics
@@ -7497,6 +7826,15 @@ declare const KinematicsApiFp: (configuration?: Configuration) => {
7497
7826
  * @throws {RequiredError}
7498
7827
  */
7499
7828
  forwardKinematics(cell: string, forwardKinematicsRequest: ForwardKinematicsRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ForwardKinematicsResponse>>;
7829
+ /**
7830
+ * **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.
7831
+ * @summary Get kinematic configuration
7832
+ * @param {string} cell Unique identifier addressing a cell in all API calls.
7833
+ * @param {GetKinematicConfigurationRequest} getKinematicConfigurationRequest
7834
+ * @param {*} [options] Override http request option.
7835
+ * @throws {RequiredError}
7836
+ */
7837
+ getKinematicConfiguration(cell: string, getKinematicConfigurationRequest: GetKinematicConfigurationRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetKinematicConfigurationResponse>>;
7500
7838
  /**
7501
7839
  * **Required permissions:** `can_plan_motion` - Plan robot motions and trajectories ___ Returns the reachable joint positions for a list of given poses.
7502
7840
  * @summary Inverse kinematics
@@ -7547,6 +7885,15 @@ declare const KinematicsApiFactory: (configuration?: Configuration, basePath?: s
7547
7885
  * @throws {RequiredError}
7548
7886
  */
7549
7887
  forwardKinematics(cell: string, forwardKinematicsRequest: ForwardKinematicsRequest, options?: RawAxiosRequestConfig): AxiosPromise<ForwardKinematicsResponse>;
7888
+ /**
7889
+ * **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.
7890
+ * @summary Get kinematic configuration
7891
+ * @param {string} cell Unique identifier addressing a cell in all API calls.
7892
+ * @param {GetKinematicConfigurationRequest} getKinematicConfigurationRequest
7893
+ * @param {*} [options] Override http request option.
7894
+ * @throws {RequiredError}
7895
+ */
7896
+ getKinematicConfiguration(cell: string, getKinematicConfigurationRequest: GetKinematicConfigurationRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetKinematicConfigurationResponse>;
7550
7897
  /**
7551
7898
  * **Required permissions:** `can_plan_motion` - Plan robot motions and trajectories ___ Returns the reachable joint positions for a list of given poses.
7552
7899
  * @summary Inverse kinematics
@@ -7597,6 +7944,15 @@ declare class KinematicsApi extends BaseAPI {
7597
7944
  * @throws {RequiredError}
7598
7945
  */
7599
7946
  forwardKinematics(cell: string, forwardKinematicsRequest: ForwardKinematicsRequest, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<ForwardKinematicsResponse, any, {}>>;
7947
+ /**
7948
+ * **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.
7949
+ * @summary Get kinematic configuration
7950
+ * @param {string} cell Unique identifier addressing a cell in all API calls.
7951
+ * @param {GetKinematicConfigurationRequest} getKinematicConfigurationRequest
7952
+ * @param {*} [options] Override http request option.
7953
+ * @throws {RequiredError}
7954
+ */
7955
+ getKinematicConfiguration(cell: string, getKinematicConfigurationRequest: GetKinematicConfigurationRequest, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<GetKinematicConfigurationResponse, any, {}>>;
7600
7956
  /**
7601
7957
  * **Required permissions:** `can_plan_motion` - Plan robot motions and trajectories ___ Returns the reachable joint positions for a list of given poses.
7602
7958
  * @summary Inverse kinematics
@@ -7918,7 +8274,7 @@ declare const MotionGroupModelsApiAxiosParamCreator: (configuration?: Configurat
7918
8274
  */
7919
8275
  copyMotionGroupModel: (motionGroupModel: string, copyMotionGroupModelRequest: CopyMotionGroupModelRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7920
8276
  /**
7921
- * **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.
8277
+ * **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
8278
  * @summary Delete Motion Group Model
7923
8279
  * @param {string} motionGroupModel Unique identifier for the model of a motion group, e.g., &#x60;UniversalRobots_UR10e&#x60;. Get the &#x60;model&#x60; of a configured motion group with [getOptimizerConfiguration](#/operations/getOptimizerConfiguration).
7924
8280
  * @param {*} [options] Override http request option.
@@ -7933,6 +8289,14 @@ declare const MotionGroupModelsApiAxiosParamCreator: (configuration?: Configurat
7933
8289
  * @throws {RequiredError}
7934
8290
  */
7935
8291
  exportMotionGroupModel: (motionGroupModel: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
8292
+ /**
8293
+ * **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.
8294
+ * @summary Get Configuration for Motion Group
8295
+ * @param {string} motionGroupModel Unique identifier for the model of a motion group, e.g., &#x60;UniversalRobots_UR10e&#x60;. Get the &#x60;model&#x60; of a configured motion group with [getOptimizerConfiguration](#/operations/getOptimizerConfiguration).
8296
+ * @param {*} [options] Override http request option.
8297
+ * @throws {RequiredError}
8298
+ */
8299
+ getConfigurationForMotionGroup: (motionGroupModel: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7936
8300
  /**
7937
8301
  * **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
8302
  * @summary Get Collision Model
@@ -7988,6 +8352,13 @@ declare const MotionGroupModelsApiAxiosParamCreator: (configuration?: Configurat
7988
8352
  * @throws {RequiredError}
7989
8353
  */
7990
8354
  getMotionGroupModels: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
8355
+ /**
8356
+ * **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.
8357
+ * @summary Motion Group Model Catalog
8358
+ * @param {*} [options] Override http request option.
8359
+ * @throws {RequiredError}
8360
+ */
8361
+ getMotionGroupModelsCatalog: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7991
8362
  /**
7992
8363
  * **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
8364
  * @summary Download USD Model
@@ -8019,7 +8390,7 @@ declare const MotionGroupModelsApiFp: (configuration?: Configuration) => {
8019
8390
  */
8020
8391
  copyMotionGroupModel(motionGroupModel: string, copyMotionGroupModelRequest: CopyMotionGroupModelRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MotionGroupModelDescription>>;
8021
8392
  /**
8022
- * **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.
8393
+ * **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
8394
  * @summary Delete Motion Group Model
8024
8395
  * @param {string} motionGroupModel Unique identifier for the model of a motion group, e.g., &#x60;UniversalRobots_UR10e&#x60;. Get the &#x60;model&#x60; of a configured motion group with [getOptimizerConfiguration](#/operations/getOptimizerConfiguration).
8025
8396
  * @param {*} [options] Override http request option.
@@ -8034,6 +8405,14 @@ declare const MotionGroupModelsApiFp: (configuration?: Configuration) => {
8034
8405
  * @throws {RequiredError}
8035
8406
  */
8036
8407
  exportMotionGroupModel(motionGroupModel: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<File>>;
8408
+ /**
8409
+ * **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.
8410
+ * @summary Get Configuration for Motion Group
8411
+ * @param {string} motionGroupModel Unique identifier for the model of a motion group, e.g., &#x60;UniversalRobots_UR10e&#x60;. Get the &#x60;model&#x60; of a configured motion group with [getOptimizerConfiguration](#/operations/getOptimizerConfiguration).
8412
+ * @param {*} [options] Override http request option.
8413
+ * @throws {RequiredError}
8414
+ */
8415
+ getConfigurationForMotionGroup(motionGroupModel: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MotionGroupConfiguration>>;
8037
8416
  /**
8038
8417
  * **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
8418
  * @summary Get Collision Model
@@ -8091,6 +8470,13 @@ declare const MotionGroupModelsApiFp: (configuration?: Configuration) => {
8091
8470
  * @throws {RequiredError}
8092
8471
  */
8093
8472
  getMotionGroupModels(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<string>>>;
8473
+ /**
8474
+ * **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.
8475
+ * @summary Motion Group Model Catalog
8476
+ * @param {*} [options] Override http request option.
8477
+ * @throws {RequiredError}
8478
+ */
8479
+ getMotionGroupModelsCatalog(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<MotionGroupModelCatalog>>>;
8094
8480
  /**
8095
8481
  * **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
8482
  * @summary Download USD Model
@@ -8122,7 +8508,7 @@ declare const MotionGroupModelsApiFactory: (configuration?: Configuration, baseP
8122
8508
  */
8123
8509
  copyMotionGroupModel(motionGroupModel: string, copyMotionGroupModelRequest: CopyMotionGroupModelRequest, options?: RawAxiosRequestConfig): AxiosPromise<MotionGroupModelDescription>;
8124
8510
  /**
8125
- * **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.
8511
+ * **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
8512
  * @summary Delete Motion Group Model
8127
8513
  * @param {string} motionGroupModel Unique identifier for the model of a motion group, e.g., &#x60;UniversalRobots_UR10e&#x60;. Get the &#x60;model&#x60; of a configured motion group with [getOptimizerConfiguration](#/operations/getOptimizerConfiguration).
8128
8514
  * @param {*} [options] Override http request option.
@@ -8137,6 +8523,14 @@ declare const MotionGroupModelsApiFactory: (configuration?: Configuration, baseP
8137
8523
  * @throws {RequiredError}
8138
8524
  */
8139
8525
  exportMotionGroupModel(motionGroupModel: string, options?: RawAxiosRequestConfig): AxiosPromise<File>;
8526
+ /**
8527
+ * **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.
8528
+ * @summary Get Configuration for Motion Group
8529
+ * @param {string} motionGroupModel Unique identifier for the model of a motion group, e.g., &#x60;UniversalRobots_UR10e&#x60;. Get the &#x60;model&#x60; of a configured motion group with [getOptimizerConfiguration](#/operations/getOptimizerConfiguration).
8530
+ * @param {*} [options] Override http request option.
8531
+ * @throws {RequiredError}
8532
+ */
8533
+ getConfigurationForMotionGroup(motionGroupModel: string, options?: RawAxiosRequestConfig): AxiosPromise<MotionGroupConfiguration>;
8140
8534
  /**
8141
8535
  * **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
8536
  * @summary Get Collision Model
@@ -8194,6 +8588,13 @@ declare const MotionGroupModelsApiFactory: (configuration?: Configuration, baseP
8194
8588
  * @throws {RequiredError}
8195
8589
  */
8196
8590
  getMotionGroupModels(options?: RawAxiosRequestConfig): AxiosPromise<Array<string>>;
8591
+ /**
8592
+ * **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.
8593
+ * @summary Motion Group Model Catalog
8594
+ * @param {*} [options] Override http request option.
8595
+ * @throws {RequiredError}
8596
+ */
8597
+ getMotionGroupModelsCatalog(options?: RawAxiosRequestConfig): AxiosPromise<Array<MotionGroupModelCatalog>>;
8197
8598
  /**
8198
8599
  * **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
8600
  * @summary Download USD Model
@@ -8225,7 +8626,7 @@ declare class MotionGroupModelsApi extends BaseAPI {
8225
8626
  */
8226
8627
  copyMotionGroupModel(motionGroupModel: string, copyMotionGroupModelRequest: CopyMotionGroupModelRequest, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<MotionGroupModelDescription, any, {}>>;
8227
8628
  /**
8228
- * **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.
8629
+ * **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
8630
  * @summary Delete Motion Group Model
8230
8631
  * @param {string} motionGroupModel Unique identifier for the model of a motion group, e.g., &#x60;UniversalRobots_UR10e&#x60;. Get the &#x60;model&#x60; of a configured motion group with [getOptimizerConfiguration](#/operations/getOptimizerConfiguration).
8231
8632
  * @param {*} [options] Override http request option.
@@ -8240,6 +8641,14 @@ declare class MotionGroupModelsApi extends BaseAPI {
8240
8641
  * @throws {RequiredError}
8241
8642
  */
8242
8643
  exportMotionGroupModel(motionGroupModel: string, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<File, any, {}>>;
8644
+ /**
8645
+ * **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.
8646
+ * @summary Get Configuration for Motion Group
8647
+ * @param {string} motionGroupModel Unique identifier for the model of a motion group, e.g., &#x60;UniversalRobots_UR10e&#x60;. Get the &#x60;model&#x60; of a configured motion group with [getOptimizerConfiguration](#/operations/getOptimizerConfiguration).
8648
+ * @param {*} [options] Override http request option.
8649
+ * @throws {RequiredError}
8650
+ */
8651
+ getConfigurationForMotionGroup(motionGroupModel: string, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<MotionGroupConfiguration, any, {}>>;
8243
8652
  /**
8244
8653
  * **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
8654
  * @summary Get Collision Model
@@ -8297,6 +8706,13 @@ declare class MotionGroupModelsApi extends BaseAPI {
8297
8706
  * @throws {RequiredError}
8298
8707
  */
8299
8708
  getMotionGroupModels(options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<string[], any, {}>>;
8709
+ /**
8710
+ * **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.
8711
+ * @summary Motion Group Model Catalog
8712
+ * @param {*} [options] Override http request option.
8713
+ * @throws {RequiredError}
8714
+ */
8715
+ getMotionGroupModelsCatalog(options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<MotionGroupModelCatalog[], any, {}>>;
8300
8716
  /**
8301
8717
  * **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
8718
  * @summary Download USD Model
@@ -8335,6 +8751,13 @@ declare const NOVACloudApiAxiosParamCreator: (configuration?: Configuration) =>
8335
8751
  * @throws {RequiredError}
8336
8752
  */
8337
8753
  disconnectFromNovaCloud: (completionTimeout?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
8754
+ /**
8755
+ * **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.
8756
+ * @summary Get Connection Status
8757
+ * @param {*} [options] Override http request option.
8758
+ * @throws {RequiredError}
8759
+ */
8760
+ getCloudStatus: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
8338
8761
  /**
8339
8762
  * **Required permissions:** `can_access_system` - View system status and metadata ___ <!-- theme: danger --> > **Experimental** Get the current NOVA Cloud connection config for this instance.
8340
8763
  * @summary Get Connection Config
@@ -8364,6 +8787,13 @@ declare const NOVACloudApiFp: (configuration?: Configuration) => {
8364
8787
  * @throws {RequiredError}
8365
8788
  */
8366
8789
  disconnectFromNovaCloud(completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CloudDisconnectionStatusDisconnected>>;
8790
+ /**
8791
+ * **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.
8792
+ * @summary Get Connection Status
8793
+ * @param {*} [options] Override http request option.
8794
+ * @throws {RequiredError}
8795
+ */
8796
+ getCloudStatus(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CloudStatus>>;
8367
8797
  /**
8368
8798
  * **Required permissions:** `can_access_system` - View system status and metadata ___ <!-- theme: danger --> > **Experimental** Get the current NOVA Cloud connection config for this instance.
8369
8799
  * @summary Get Connection Config
@@ -8393,6 +8823,13 @@ declare const NOVACloudApiFactory: (configuration?: Configuration, basePath?: st
8393
8823
  * @throws {RequiredError}
8394
8824
  */
8395
8825
  disconnectFromNovaCloud(completionTimeout?: number, options?: RawAxiosRequestConfig): AxiosPromise<CloudDisconnectionStatusDisconnected>;
8826
+ /**
8827
+ * **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.
8828
+ * @summary Get Connection Status
8829
+ * @param {*} [options] Override http request option.
8830
+ * @throws {RequiredError}
8831
+ */
8832
+ getCloudStatus(options?: RawAxiosRequestConfig): AxiosPromise<CloudStatus>;
8396
8833
  /**
8397
8834
  * **Required permissions:** `can_access_system` - View system status and metadata ___ <!-- theme: danger --> > **Experimental** Get the current NOVA Cloud connection config for this instance.
8398
8835
  * @summary Get Connection Config
@@ -8422,6 +8859,13 @@ declare class NOVACloudApi extends BaseAPI {
8422
8859
  * @throws {RequiredError}
8423
8860
  */
8424
8861
  disconnectFromNovaCloud(completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<CloudDisconnectionStatusDisconnected, any, {}>>;
8862
+ /**
8863
+ * **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.
8864
+ * @summary Get Connection Status
8865
+ * @param {*} [options] Override http request option.
8866
+ * @throws {RequiredError}
8867
+ */
8868
+ getCloudStatus(options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<CloudStatus, any, {}>>;
8425
8869
  /**
8426
8870
  * **Required permissions:** `can_access_system` - View system status and metadata ___ <!-- theme: danger --> > **Experimental** Get the current NOVA Cloud connection config for this instance.
8427
8871
  * @summary Get Connection Config
@@ -11827,4 +12271,4 @@ declare class VirtualControllerInputsOutputsApi extends BaseAPI {
11827
12271
  setIOValues(cell: string, controller: string, iOValue: Array<IOValue>, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<void, any, {}>>;
11828
12272
  }
11829
12273
  //#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 };
12274
+ 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, StaubliController, StaubliControllerKindEnum, StaubliControllerRtiServer, 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 };