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

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,7 @@ interface ExternalJointStreamRequest {
1613
1730
  interface FanucController {
1614
1731
  'kind': FanucControllerKindEnum;
1615
1732
  'controller_ip': string;
1733
+ 'network_interface'?: ControllerNetworkInterface;
1616
1734
  }
1617
1735
  declare const FanucControllerKindEnum: {
1618
1736
  readonly FanucController: "FanucController";
@@ -1883,6 +2001,39 @@ interface ForwardKinematicsValidationError {
1883
2001
  };
1884
2002
  'data'?: ErrorInvalidJointCount;
1885
2003
  }
2004
+ interface GetKinematicConfiguration422Response {
2005
+ 'detail'?: Array<GetKinematicConfigurationValidationError>;
2006
+ }
2007
+ interface GetKinematicConfigurationRequest {
2008
+ /**
2009
+ * Identifies a single motion group model. See [getMotionGroupModels](#/operations/getMotionGroupModels) for supported types.
2010
+ */
2011
+ 'motion_group_model': string;
2012
+ /**
2013
+ * 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.
2014
+ */
2015
+ 'joint_positions': Array<Array<number>>;
2016
+ }
2017
+ interface GetKinematicConfigurationResponse {
2018
+ /**
2019
+ * List of kinematic configurations corresponding to the input joint positions.
2020
+ */
2021
+ 'kinematic_configurations': Array<KinematicConfiguration>;
2022
+ }
2023
+ interface GetKinematicConfigurationValidationError {
2024
+ 'loc': Array<ValidationErrorLocInner>;
2025
+ 'msg': string;
2026
+ 'type': string;
2027
+ 'input': {
2028
+ [key: string]: any;
2029
+ };
2030
+ 'data'?: GetKinematicConfigurationValidationErrorAllOfData;
2031
+ }
2032
+ /**
2033
+ * @type GetKinematicConfigurationValidationErrorAllOfData
2034
+ * Optional data further specifying the validation error.
2035
+ */
2036
+ type GetKinematicConfigurationValidationErrorAllOfData = ErrorInvalidJointCount | ErrorUnsupportedOperation;
1886
2037
  interface GetTrajectoryResponse {
1887
2038
  /**
1888
2039
  * Unique identifier of the motion group the trajectory is planned for.
@@ -2335,13 +2486,25 @@ declare const JointLimitExceededErrorKindEnum: {
2335
2486
  };
2336
2487
  type JointLimitExceededErrorKindEnum = typeof JointLimitExceededErrorKindEnum[keyof typeof JointLimitExceededErrorKindEnum];
2337
2488
  interface JointLimits {
2489
+ /**
2490
+ * Joint position limits in rad.
2491
+ */
2338
2492
  'position'?: LimitRange;
2493
+ /**
2494
+ * Joint velocity limit in rad/s.
2495
+ */
2339
2496
  'velocity'?: number;
2497
+ /**
2498
+ * Joint acceleration limit in rad/s².
2499
+ */
2340
2500
  'acceleration'?: number;
2341
2501
  /**
2342
- * > **NOTE** > > This limit type is experimental and its behavior may change in future releases.
2502
+ * Joint jerk limit in rad/s³. > **NOTE** > > This limit type is experimental and its behavior may change in future releases.
2343
2503
  */
2344
2504
  'jerk'?: number;
2505
+ /**
2506
+ * Joint torque limit in Nm.
2507
+ */
2345
2508
  'torque'?: number;
2346
2509
  }
2347
2510
  interface JointPTPMotion {
@@ -2621,7 +2784,13 @@ type LicenseStatusEnum = typeof LicenseStatusEnum[keyof typeof LicenseStatusEnum
2621
2784
  * The upper_limit must be greater then the lower_limit.
2622
2785
  */
2623
2786
  interface LimitRange {
2787
+ /**
2788
+ * Lower position limit in rad.
2789
+ */
2624
2790
  'lower_limit'?: number;
2791
+ /**
2792
+ * Upper position limit in rad.
2793
+ */
2625
2794
  'upper_limit'?: number;
2626
2795
  }
2627
2796
  interface LimitSet {
@@ -2708,9 +2877,11 @@ interface ListTrajectoriesResponse {
2708
2877
  }
2709
2878
  declare const Manufacturer: {
2710
2879
  readonly Abb: "abb";
2880
+ readonly Bostondynamics: "bostondynamics";
2711
2881
  readonly Fanuc: "fanuc";
2712
2882
  readonly Kuka: "kuka";
2713
2883
  readonly Staubli: "staubli";
2884
+ readonly Unitree: "unitree";
2714
2885
  readonly Universalrobots: "universalrobots";
2715
2886
  readonly Yaskawa: "yaskawa";
2716
2887
  };
@@ -2759,7 +2930,7 @@ interface MergeTrajectoriesSegment {
2759
2930
  */
2760
2931
  'trajectory': JointTrajectory;
2761
2932
  /**
2762
- * Limits override is used to override the global limits of the motion group for the blending at the end of this segment.
2933
+ * 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
2934
  */
2764
2935
  'limits_override'?: LimitsOverride;
2765
2936
  /**
@@ -2880,7 +3051,7 @@ interface ModelError {
2880
3051
  interface MotionCommand {
2881
3052
  'blending'?: MotionCommandBlending;
2882
3053
  /**
2883
- * Limits override is used to override the global limits of the motion group for this segment of the motion.
3054
+ * 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
3055
  */
2885
3056
  'limits_override'?: LimitsOverride;
2886
3057
  'path': MotionCommandPath;
@@ -2894,6 +3065,27 @@ type MotionCommandBlending = BlendingAuto | BlendingPosition;
2894
3065
  * @type MotionCommandPath
2895
3066
  */
2896
3067
  type MotionCommandPath = PathCartesianPTP | PathCircle | PathCubicSpline | PathDirectionConstrainedCartesianPTP | PathDirectionConstrainedJointPTP | PathJointPTP | PathLine;
3068
+ /**
3069
+ * Response for motion group configuration lookup.
3070
+ */
3071
+ interface MotionGroupConfiguration {
3072
+ /**
3073
+ * Name of the robot configuration containing this motion group.
3074
+ */
3075
+ 'robot_configuration': string;
3076
+ /**
3077
+ * Identifies a single motion group model. See [getMotionGroupModels](#/operations/getMotionGroupModels) for supported types.
3078
+ */
3079
+ 'motion_group_model': string;
3080
+ /**
3081
+ * Internal UID of the motion group inside the GCI transcript.
3082
+ */
3083
+ 'motion_group_uid': number;
3084
+ /**
3085
+ * Full GCI transcript (JSON) containing the robot configuration and motion group.
3086
+ */
3087
+ 'content': string;
3088
+ }
2897
3089
  /**
2898
3090
  * 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
3091
  */
@@ -2970,7 +3162,7 @@ interface MotionGroupFromJson {
2970
3162
  */
2971
3163
  'motion_group': string;
2972
3164
  /**
2973
- * Full JSON configuration of the virtual robot controller. This can be obtained from the physical controller\'s configuration via [getVirtualControllerConfiguration](#/operations/getVirtualControllerConfiguration).
3165
+ * JSON configuration of the virtual robot controller, can be obtained from the physical controller\'s configuration via [getVirtualControllerConfiguration](#/operations/getVirtualControllerConfiguration).
2974
3166
  */
2975
3167
  'json_data': string;
2976
3168
  /**
@@ -2978,7 +3170,7 @@ interface MotionGroupFromJson {
2978
3170
  */
2979
3171
  'extracted_motion_group_id': string;
2980
3172
  /**
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.
3173
+ * 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
3174
  */
2983
3175
  'initial_joint_position'?: string;
2984
3176
  }
@@ -2992,7 +3184,7 @@ interface MotionGroupFromType {
2992
3184
  */
2993
3185
  'motion_group_model': string;
2994
3186
  /**
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.
3187
+ * 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
3188
  */
2997
3189
  'initial_joint_position'?: string;
2998
3190
  }
@@ -3031,6 +3223,19 @@ interface MotionGroupJoints {
3031
3223
  */
3032
3224
  'torques'?: Array<number>;
3033
3225
  }
3226
+ /**
3227
+ * Entry for a motion group with its name and readable name.
3228
+ */
3229
+ interface MotionGroupModelCatalog {
3230
+ /**
3231
+ * Name of the motion group.
3232
+ */
3233
+ 'motion_group_name': string;
3234
+ /**
3235
+ * Readable name for the motion group.
3236
+ */
3237
+ 'readable_name': string;
3238
+ }
3034
3239
  /**
3035
3240
  * Metadata about a motion group model.
3036
3241
  */
@@ -3109,17 +3314,25 @@ interface MotionGroupState {
3109
3314
  */
3110
3315
  'joint_current'?: Array<number>;
3111
3316
  /**
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.
3317
+ * 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
3318
  */
3114
3319
  'flange_pose'?: Pose;
3320
+ /**
3321
+ * Cartesian velocity of the flange. The velocity is relative to the response coordinate system specified in the request.
3322
+ */
3323
+ 'flange_velocity'?: CartesianVelocity;
3115
3324
  /**
3116
3325
  * Unique identifier addressing the active TCP. Might not be returned for positioners as some do not support TCPs, depending on the model.
3117
3326
  */
3118
3327
  'tcp'?: string;
3119
3328
  /**
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.
3329
+ * 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
3330
  */
3122
3331
  'tcp_pose'?: Pose;
3332
+ /**
3333
+ * Cartesian velocity of the TCP selected on the robot control panel. The velocity is relative to the response coordinate system specified in the request.
3334
+ */
3335
+ 'tcp_velocity'?: CartesianVelocity;
3123
3336
  /**
3124
3337
  * 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
3338
  */
@@ -3617,6 +3830,10 @@ interface PlanCollisionFreeRequest {
3617
3830
  */
3618
3831
  interface PlanCollisionFreeResponse {
3619
3832
  'response': PlanCollisionFreeResponseResponse;
3833
+ /**
3834
+ * The motion commands that produced the trajectory.
3835
+ */
3836
+ 'motion_commands'?: Array<MotionCommand>;
3620
3837
  }
3621
3838
  /**
3622
3839
  * @type PlanCollisionFreeResponseResponse
@@ -3647,6 +3864,10 @@ interface PlanTrajectoryRequest {
3647
3864
  * List of motion commands. A command consists of a path definition (line, circle, joint_ptp, cartesian_ptp, cubic_spline), blending, and limits override.
3648
3865
  */
3649
3866
  'motion_commands': Array<MotionCommand>;
3867
+ /**
3868
+ * <!-- theme: danger --> > > **Experimental** Strategy used to deal with wrist singularities along a cartesian path.
3869
+ */
3870
+ 'singularity_handling'?: SingularityHandling;
3650
3871
  }
3651
3872
  interface PlanTrajectoryResponse {
3652
3873
  'response': PlanTrajectoryResponseResponse;
@@ -3794,7 +4015,7 @@ interface ProfinetIO {
3794
4015
  */
3795
4016
  'direction': ProfinetIODirection;
3796
4017
  /**
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
4018
+ * 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
4019
  */
3799
4020
  'byte_address': number;
3800
4021
  /**
@@ -3817,7 +4038,7 @@ interface ProfinetIOData {
3817
4038
  */
3818
4039
  'direction': ProfinetIODirection;
3819
4040
  /**
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
4041
+ * 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
4042
  */
3822
4043
  'byte_address': number;
3823
4044
  /**
@@ -3856,13 +4077,19 @@ interface ProfinetInputOutputConfig {
3856
4077
  */
3857
4078
  'config': string;
3858
4079
  /**
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.
4080
+ * 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
4081
  */
3861
- 'input_offset': number;
4082
+ 'offsets'?: Array<ProfinetSlotOffset>;
3862
4083
  /**
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.
4084
+ * 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.
4085
+ * @deprecated
3864
4086
  */
3865
- 'output_offset': number;
4087
+ 'input_offset'?: number;
4088
+ /**
4089
+ * 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.
4090
+ * @deprecated
4091
+ */
4092
+ 'output_offset'?: number;
3866
4093
  }
3867
4094
  /**
3868
4095
  * 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 +4108,20 @@ interface ProfinetSlotDescription {
3881
4108
  */
3882
4109
  'subslots': Array<ProfinetSubSlotDescription>;
3883
4110
  }
4111
+ interface ProfinetSlotOffset {
4112
+ /**
4113
+ * 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.
4114
+ */
4115
+ 'slot': number;
4116
+ /**
4117
+ * 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.
4118
+ */
4119
+ 'input_offset': number;
4120
+ /**
4121
+ * 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.
4122
+ */
4123
+ 'output_offset': number;
4124
+ }
3884
4125
  interface ProfinetSubSlotDescription {
3885
4126
  /**
3886
4127
  * The number/index of the PROFINET subslot.
@@ -4134,7 +4375,7 @@ interface RobotController {
4134
4375
  /**
4135
4376
  * @type RobotControllerConfiguration
4136
4377
  */
4137
- type RobotControllerConfiguration = AbbController | FanucController | KukaController | UniversalrobotsController | VirtualController | YaskawaController;
4378
+ type RobotControllerConfiguration = AbbController | BostondynamicsController | FanucController | KukaController | UnitreeController | UniversalrobotsController | VirtualController | YaskawaController;
4138
4379
  /**
4139
4380
  * Information to generate all robot controller configurations that match a given ARP scan result.
4140
4381
  */
@@ -4530,6 +4771,15 @@ declare const SettableRobotSystemMode: {
4530
4771
  readonly ModeControl: "MODE_CONTROL";
4531
4772
  };
4532
4773
  type SettableRobotSystemMode = typeof SettableRobotSystemMode[keyof typeof SettableRobotSystemMode];
4774
+ /**
4775
+ * <!-- 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.
4776
+ */
4777
+ declare const SingularityHandling: {
4778
+ readonly None: "NONE";
4779
+ readonly PalletizingWrist: "PALLETIZING_WRIST";
4780
+ readonly AdaptiveSampling: "ADAPTIVE_SAMPLING";
4781
+ };
4782
+ type SingularityHandling = typeof SingularityHandling[keyof typeof SingularityHandling];
4533
4783
  declare const SingularityTypeEnum: {
4534
4784
  readonly Wrist: "WRIST";
4535
4785
  readonly Elbow: "ELBOW";
@@ -4971,6 +5221,43 @@ declare const UnitType: {
4971
5221
  readonly UnitMeter: "UNIT_METER";
4972
5222
  };
4973
5223
  type UnitType = typeof UnitType[keyof typeof UnitType];
5224
+ /**
5225
+ * 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.
5226
+ */
5227
+ interface UnitreeController {
5228
+ 'kind': UnitreeControllerKindEnum;
5229
+ /**
5230
+ * The IP address of the Unitree robot.
5231
+ */
5232
+ 'controller_ip': string;
5233
+ /**
5234
+ * The Unitree robot model type.
5235
+ */
5236
+ 'robot_type': UnitreeControllerRobotTypeEnum;
5237
+ /**
5238
+ * The network interface used for DDS discovery.
5239
+ */
5240
+ 'network_interface'?: string;
5241
+ /**
5242
+ * Enable DDS unicast mode for environments where multicast is unavailable.
5243
+ */
5244
+ 'dds_unicast_mode'?: boolean;
5245
+ /**
5246
+ * Enable exclusive lease-based control of the robot.
5247
+ */
5248
+ 'enable_lease'?: boolean;
5249
+ }
5250
+ declare const UnitreeControllerKindEnum: {
5251
+ readonly UnitreeController: "UnitreeController";
5252
+ };
5253
+ type UnitreeControllerKindEnum = typeof UnitreeControllerKindEnum[keyof typeof UnitreeControllerKindEnum];
5254
+ declare const UnitreeControllerRobotTypeEnum: {
5255
+ readonly Go2: "go2";
5256
+ readonly G1: "g1";
5257
+ readonly B2: "b2";
5258
+ readonly H1: "h1";
5259
+ };
5260
+ type UnitreeControllerRobotTypeEnum = typeof UnitreeControllerRobotTypeEnum[keyof typeof UnitreeControllerRobotTypeEnum];
4974
5261
  /**
4975
5262
  * The configuration of a physical Universal Robots controller has to contain IP address of the controller.
4976
5263
  */
@@ -5050,9 +5337,13 @@ interface VirtualController {
5050
5337
  */
5051
5338
  'json'?: string;
5052
5339
  /**
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.
5340
+ * 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
5341
  */
5055
5342
  'initial_joint_position'?: string;
5343
+ /**
5344
+ * 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
5345
+ */
5346
+ 'motion_groups'?: Array<AddVirtualControllerMotionGroupRequest>;
5056
5347
  }
5057
5348
  declare const VirtualControllerKindEnum: {
5058
5349
  readonly VirtualController: "VirtualController";
@@ -5510,15 +5801,16 @@ declare const BUSInputsOutputsApiAxiosParamCreator: (configuration?: Configurati
5510
5801
  */
5511
5802
  getProfinetGSDML: (cell: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
5512
5803
  /**
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.
5804
+ * **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
5805
  * @summary PROFINET Inputs/Outputs to File
5515
5806
  * @param {string} cell Unique identifier addressing a cell in all API calls.
5807
+ * @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
5808
  * @param {number} [inputOffset]
5517
5809
  * @param {number} [outputOffset]
5518
5810
  * @param {*} [options] Override http request option.
5519
5811
  * @throws {RequiredError}
5520
5812
  */
5521
- getProfinetIOsFromFile: (cell: string, inputOffset?: number, outputOffset?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
5813
+ getProfinetIOsFromFile: (cell: string, offsets?: Array<ProfinetSlotOffset>, inputOffset?: number, outputOffset?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
5522
5814
  /**
5523
5815
  * **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
5816
  * @summary List Descriptions
@@ -5716,15 +6008,16 @@ declare const BUSInputsOutputsApiFp: (configuration?: Configuration) => {
5716
6008
  */
5717
6009
  getProfinetGSDML(cell: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<string>>;
5718
6010
  /**
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.
6011
+ * **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
6012
  * @summary PROFINET Inputs/Outputs to File
5721
6013
  * @param {string} cell Unique identifier addressing a cell in all API calls.
6014
+ * @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
6015
  * @param {number} [inputOffset]
5723
6016
  * @param {number} [outputOffset]
5724
6017
  * @param {*} [options] Override http request option.
5725
6018
  * @throws {RequiredError}
5726
6019
  */
5727
- getProfinetIOsFromFile(cell: string, inputOffset?: number, outputOffset?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<string>>;
6020
+ getProfinetIOsFromFile(cell: string, offsets?: Array<ProfinetSlotOffset>, inputOffset?: number, outputOffset?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<string>>;
5728
6021
  /**
5729
6022
  * **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
6023
  * @summary List Descriptions
@@ -5922,15 +6215,16 @@ declare const BUSInputsOutputsApiFactory: (configuration?: Configuration, basePa
5922
6215
  */
5923
6216
  getProfinetGSDML(cell: string, options?: RawAxiosRequestConfig): AxiosPromise<string>;
5924
6217
  /**
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.
6218
+ * **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
6219
  * @summary PROFINET Inputs/Outputs to File
5927
6220
  * @param {string} cell Unique identifier addressing a cell in all API calls.
6221
+ * @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
6222
  * @param {number} [inputOffset]
5929
6223
  * @param {number} [outputOffset]
5930
6224
  * @param {*} [options] Override http request option.
5931
6225
  * @throws {RequiredError}
5932
6226
  */
5933
- getProfinetIOsFromFile(cell: string, inputOffset?: number, outputOffset?: number, options?: RawAxiosRequestConfig): AxiosPromise<string>;
6227
+ getProfinetIOsFromFile(cell: string, offsets?: Array<ProfinetSlotOffset>, inputOffset?: number, outputOffset?: number, options?: RawAxiosRequestConfig): AxiosPromise<string>;
5934
6228
  /**
5935
6229
  * **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
6230
  * @summary List Descriptions
@@ -6128,15 +6422,16 @@ declare class BUSInputsOutputsApi extends BaseAPI {
6128
6422
  */
6129
6423
  getProfinetGSDML(cell: string, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<string, any, {}>>;
6130
6424
  /**
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.
6425
+ * **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
6426
  * @summary PROFINET Inputs/Outputs to File
6133
6427
  * @param {string} cell Unique identifier addressing a cell in all API calls.
6428
+ * @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
6429
  * @param {number} [inputOffset]
6135
6430
  * @param {number} [outputOffset]
6136
6431
  * @param {*} [options] Override http request option.
6137
6432
  * @throws {RequiredError}
6138
6433
  */
6139
- getProfinetIOsFromFile(cell: string, inputOffset?: number, outputOffset?: number, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<string, any, {}>>;
6434
+ getProfinetIOsFromFile(cell: string, offsets?: Array<ProfinetSlotOffset>, inputOffset?: number, outputOffset?: number, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<string, any, {}>>;
6140
6435
  /**
6141
6436
  * **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
6437
  * @summary List Descriptions
@@ -6220,7 +6515,7 @@ declare const CellApiAxiosParamCreator: (configuration?: Configuration) => {
6220
6515
  */
6221
6516
  deployCell: (cell: Cell, completionTimeout?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
6222
6517
  /**
6223
- * **Required permissions:** `can_access_cells` - View cell configurations and resources ___ List all cell resources.
6518
+ * **Required permissions:** `can_access_system` - View system status and metadata ___ List all cell resources.
6224
6519
  * @summary Configuration
6225
6520
  * @param {string} cell Unique identifier addressing a cell in all API calls.
6226
6521
  * @param {*} [options] Override http request option.
@@ -6303,7 +6598,7 @@ declare const CellApiFp: (configuration?: Configuration) => {
6303
6598
  */
6304
6599
  deployCell(cell: Cell, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
6305
6600
  /**
6306
- * **Required permissions:** `can_access_cells` - View cell configurations and resources ___ List all cell resources.
6601
+ * **Required permissions:** `can_access_system` - View system status and metadata ___ List all cell resources.
6307
6602
  * @summary Configuration
6308
6603
  * @param {string} cell Unique identifier addressing a cell in all API calls.
6309
6604
  * @param {*} [options] Override http request option.
@@ -6386,7 +6681,7 @@ declare const CellApiFactory: (configuration?: Configuration, basePath?: string,
6386
6681
  */
6387
6682
  deployCell(cell: Cell, completionTimeout?: number, options?: RawAxiosRequestConfig): AxiosPromise<void>;
6388
6683
  /**
6389
- * **Required permissions:** `can_access_cells` - View cell configurations and resources ___ List all cell resources.
6684
+ * **Required permissions:** `can_access_system` - View system status and metadata ___ List all cell resources.
6390
6685
  * @summary Configuration
6391
6686
  * @param {string} cell Unique identifier addressing a cell in all API calls.
6392
6687
  * @param {*} [options] Override http request option.
@@ -6469,7 +6764,7 @@ declare class CellApi extends BaseAPI {
6469
6764
  */
6470
6765
  deployCell(cell: Cell, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<void, any, {}>>;
6471
6766
  /**
6472
- * **Required permissions:** `can_access_cells` - View cell configurations and resources ___ List all cell resources.
6767
+ * **Required permissions:** `can_access_system` - View system status and metadata ___ List all cell resources.
6473
6768
  * @summary Configuration
6474
6769
  * @param {string} cell Unique identifier addressing a cell in all API calls.
6475
6770
  * @param {*} [options] Override http request option.
@@ -7447,6 +7742,15 @@ declare const KinematicsApiAxiosParamCreator: (configuration?: Configuration) =>
7447
7742
  * @throws {RequiredError}
7448
7743
  */
7449
7744
  forwardKinematics: (cell: string, forwardKinematicsRequest: ForwardKinematicsRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7745
+ /**
7746
+ * **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.
7747
+ * @summary Get kinematic configuration
7748
+ * @param {string} cell Unique identifier addressing a cell in all API calls.
7749
+ * @param {GetKinematicConfigurationRequest} getKinematicConfigurationRequest
7750
+ * @param {*} [options] Override http request option.
7751
+ * @throws {RequiredError}
7752
+ */
7753
+ getKinematicConfiguration: (cell: string, getKinematicConfigurationRequest: GetKinematicConfigurationRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7450
7754
  /**
7451
7755
  * **Required permissions:** `can_plan_motion` - Plan robot motions and trajectories ___ Returns the reachable joint positions for a list of given poses.
7452
7756
  * @summary Inverse kinematics
@@ -7497,6 +7801,15 @@ declare const KinematicsApiFp: (configuration?: Configuration) => {
7497
7801
  * @throws {RequiredError}
7498
7802
  */
7499
7803
  forwardKinematics(cell: string, forwardKinematicsRequest: ForwardKinematicsRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ForwardKinematicsResponse>>;
7804
+ /**
7805
+ * **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.
7806
+ * @summary Get kinematic configuration
7807
+ * @param {string} cell Unique identifier addressing a cell in all API calls.
7808
+ * @param {GetKinematicConfigurationRequest} getKinematicConfigurationRequest
7809
+ * @param {*} [options] Override http request option.
7810
+ * @throws {RequiredError}
7811
+ */
7812
+ getKinematicConfiguration(cell: string, getKinematicConfigurationRequest: GetKinematicConfigurationRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetKinematicConfigurationResponse>>;
7500
7813
  /**
7501
7814
  * **Required permissions:** `can_plan_motion` - Plan robot motions and trajectories ___ Returns the reachable joint positions for a list of given poses.
7502
7815
  * @summary Inverse kinematics
@@ -7547,6 +7860,15 @@ declare const KinematicsApiFactory: (configuration?: Configuration, basePath?: s
7547
7860
  * @throws {RequiredError}
7548
7861
  */
7549
7862
  forwardKinematics(cell: string, forwardKinematicsRequest: ForwardKinematicsRequest, options?: RawAxiosRequestConfig): AxiosPromise<ForwardKinematicsResponse>;
7863
+ /**
7864
+ * **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.
7865
+ * @summary Get kinematic configuration
7866
+ * @param {string} cell Unique identifier addressing a cell in all API calls.
7867
+ * @param {GetKinematicConfigurationRequest} getKinematicConfigurationRequest
7868
+ * @param {*} [options] Override http request option.
7869
+ * @throws {RequiredError}
7870
+ */
7871
+ getKinematicConfiguration(cell: string, getKinematicConfigurationRequest: GetKinematicConfigurationRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetKinematicConfigurationResponse>;
7550
7872
  /**
7551
7873
  * **Required permissions:** `can_plan_motion` - Plan robot motions and trajectories ___ Returns the reachable joint positions for a list of given poses.
7552
7874
  * @summary Inverse kinematics
@@ -7597,6 +7919,15 @@ declare class KinematicsApi extends BaseAPI {
7597
7919
  * @throws {RequiredError}
7598
7920
  */
7599
7921
  forwardKinematics(cell: string, forwardKinematicsRequest: ForwardKinematicsRequest, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<ForwardKinematicsResponse, any, {}>>;
7922
+ /**
7923
+ * **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.
7924
+ * @summary Get kinematic configuration
7925
+ * @param {string} cell Unique identifier addressing a cell in all API calls.
7926
+ * @param {GetKinematicConfigurationRequest} getKinematicConfigurationRequest
7927
+ * @param {*} [options] Override http request option.
7928
+ * @throws {RequiredError}
7929
+ */
7930
+ getKinematicConfiguration(cell: string, getKinematicConfigurationRequest: GetKinematicConfigurationRequest, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<GetKinematicConfigurationResponse, any, {}>>;
7600
7931
  /**
7601
7932
  * **Required permissions:** `can_plan_motion` - Plan robot motions and trajectories ___ Returns the reachable joint positions for a list of given poses.
7602
7933
  * @summary Inverse kinematics
@@ -7918,7 +8249,7 @@ declare const MotionGroupModelsApiAxiosParamCreator: (configuration?: Configurat
7918
8249
  */
7919
8250
  copyMotionGroupModel: (motionGroupModel: string, copyMotionGroupModelRequest: CopyMotionGroupModelRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7920
8251
  /**
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.
8252
+ * **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
8253
  * @summary Delete Motion Group Model
7923
8254
  * @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
8255
  * @param {*} [options] Override http request option.
@@ -7933,6 +8264,14 @@ declare const MotionGroupModelsApiAxiosParamCreator: (configuration?: Configurat
7933
8264
  * @throws {RequiredError}
7934
8265
  */
7935
8266
  exportMotionGroupModel: (motionGroupModel: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
8267
+ /**
8268
+ * **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.
8269
+ * @summary Get Configuration for Motion Group
8270
+ * @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).
8271
+ * @param {*} [options] Override http request option.
8272
+ * @throws {RequiredError}
8273
+ */
8274
+ getConfigurationForMotionGroup: (motionGroupModel: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7936
8275
  /**
7937
8276
  * **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
8277
  * @summary Get Collision Model
@@ -7988,6 +8327,13 @@ declare const MotionGroupModelsApiAxiosParamCreator: (configuration?: Configurat
7988
8327
  * @throws {RequiredError}
7989
8328
  */
7990
8329
  getMotionGroupModels: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
8330
+ /**
8331
+ * **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.
8332
+ * @summary Motion Group Model Catalog
8333
+ * @param {*} [options] Override http request option.
8334
+ * @throws {RequiredError}
8335
+ */
8336
+ getMotionGroupModelsCatalog: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7991
8337
  /**
7992
8338
  * **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
8339
  * @summary Download USD Model
@@ -8019,7 +8365,7 @@ declare const MotionGroupModelsApiFp: (configuration?: Configuration) => {
8019
8365
  */
8020
8366
  copyMotionGroupModel(motionGroupModel: string, copyMotionGroupModelRequest: CopyMotionGroupModelRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MotionGroupModelDescription>>;
8021
8367
  /**
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.
8368
+ * **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
8369
  * @summary Delete Motion Group Model
8024
8370
  * @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
8371
  * @param {*} [options] Override http request option.
@@ -8034,6 +8380,14 @@ declare const MotionGroupModelsApiFp: (configuration?: Configuration) => {
8034
8380
  * @throws {RequiredError}
8035
8381
  */
8036
8382
  exportMotionGroupModel(motionGroupModel: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<File>>;
8383
+ /**
8384
+ * **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.
8385
+ * @summary Get Configuration for Motion Group
8386
+ * @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).
8387
+ * @param {*} [options] Override http request option.
8388
+ * @throws {RequiredError}
8389
+ */
8390
+ getConfigurationForMotionGroup(motionGroupModel: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MotionGroupConfiguration>>;
8037
8391
  /**
8038
8392
  * **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
8393
  * @summary Get Collision Model
@@ -8091,6 +8445,13 @@ declare const MotionGroupModelsApiFp: (configuration?: Configuration) => {
8091
8445
  * @throws {RequiredError}
8092
8446
  */
8093
8447
  getMotionGroupModels(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<string>>>;
8448
+ /**
8449
+ * **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.
8450
+ * @summary Motion Group Model Catalog
8451
+ * @param {*} [options] Override http request option.
8452
+ * @throws {RequiredError}
8453
+ */
8454
+ getMotionGroupModelsCatalog(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<MotionGroupModelCatalog>>>;
8094
8455
  /**
8095
8456
  * **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
8457
  * @summary Download USD Model
@@ -8122,7 +8483,7 @@ declare const MotionGroupModelsApiFactory: (configuration?: Configuration, baseP
8122
8483
  */
8123
8484
  copyMotionGroupModel(motionGroupModel: string, copyMotionGroupModelRequest: CopyMotionGroupModelRequest, options?: RawAxiosRequestConfig): AxiosPromise<MotionGroupModelDescription>;
8124
8485
  /**
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.
8486
+ * **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
8487
  * @summary Delete Motion Group Model
8127
8488
  * @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
8489
  * @param {*} [options] Override http request option.
@@ -8137,6 +8498,14 @@ declare const MotionGroupModelsApiFactory: (configuration?: Configuration, baseP
8137
8498
  * @throws {RequiredError}
8138
8499
  */
8139
8500
  exportMotionGroupModel(motionGroupModel: string, options?: RawAxiosRequestConfig): AxiosPromise<File>;
8501
+ /**
8502
+ * **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.
8503
+ * @summary Get Configuration for Motion Group
8504
+ * @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).
8505
+ * @param {*} [options] Override http request option.
8506
+ * @throws {RequiredError}
8507
+ */
8508
+ getConfigurationForMotionGroup(motionGroupModel: string, options?: RawAxiosRequestConfig): AxiosPromise<MotionGroupConfiguration>;
8140
8509
  /**
8141
8510
  * **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
8511
  * @summary Get Collision Model
@@ -8194,6 +8563,13 @@ declare const MotionGroupModelsApiFactory: (configuration?: Configuration, baseP
8194
8563
  * @throws {RequiredError}
8195
8564
  */
8196
8565
  getMotionGroupModels(options?: RawAxiosRequestConfig): AxiosPromise<Array<string>>;
8566
+ /**
8567
+ * **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.
8568
+ * @summary Motion Group Model Catalog
8569
+ * @param {*} [options] Override http request option.
8570
+ * @throws {RequiredError}
8571
+ */
8572
+ getMotionGroupModelsCatalog(options?: RawAxiosRequestConfig): AxiosPromise<Array<MotionGroupModelCatalog>>;
8197
8573
  /**
8198
8574
  * **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
8575
  * @summary Download USD Model
@@ -8225,7 +8601,7 @@ declare class MotionGroupModelsApi extends BaseAPI {
8225
8601
  */
8226
8602
  copyMotionGroupModel(motionGroupModel: string, copyMotionGroupModelRequest: CopyMotionGroupModelRequest, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<MotionGroupModelDescription, any, {}>>;
8227
8603
  /**
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.
8604
+ * **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
8605
  * @summary Delete Motion Group Model
8230
8606
  * @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
8607
  * @param {*} [options] Override http request option.
@@ -8240,6 +8616,14 @@ declare class MotionGroupModelsApi extends BaseAPI {
8240
8616
  * @throws {RequiredError}
8241
8617
  */
8242
8618
  exportMotionGroupModel(motionGroupModel: string, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<File, any, {}>>;
8619
+ /**
8620
+ * **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.
8621
+ * @summary Get Configuration for Motion Group
8622
+ * @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).
8623
+ * @param {*} [options] Override http request option.
8624
+ * @throws {RequiredError}
8625
+ */
8626
+ getConfigurationForMotionGroup(motionGroupModel: string, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<MotionGroupConfiguration, any, {}>>;
8243
8627
  /**
8244
8628
  * **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
8629
  * @summary Get Collision Model
@@ -8297,6 +8681,13 @@ declare class MotionGroupModelsApi extends BaseAPI {
8297
8681
  * @throws {RequiredError}
8298
8682
  */
8299
8683
  getMotionGroupModels(options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<string[], any, {}>>;
8684
+ /**
8685
+ * **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.
8686
+ * @summary Motion Group Model Catalog
8687
+ * @param {*} [options] Override http request option.
8688
+ * @throws {RequiredError}
8689
+ */
8690
+ getMotionGroupModelsCatalog(options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<MotionGroupModelCatalog[], any, {}>>;
8300
8691
  /**
8301
8692
  * **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
8693
  * @summary Download USD Model
@@ -8335,6 +8726,13 @@ declare const NOVACloudApiAxiosParamCreator: (configuration?: Configuration) =>
8335
8726
  * @throws {RequiredError}
8336
8727
  */
8337
8728
  disconnectFromNovaCloud: (completionTimeout?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
8729
+ /**
8730
+ * **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.
8731
+ * @summary Get Connection Status
8732
+ * @param {*} [options] Override http request option.
8733
+ * @throws {RequiredError}
8734
+ */
8735
+ getCloudStatus: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
8338
8736
  /**
8339
8737
  * **Required permissions:** `can_access_system` - View system status and metadata ___ <!-- theme: danger --> > **Experimental** Get the current NOVA Cloud connection config for this instance.
8340
8738
  * @summary Get Connection Config
@@ -8364,6 +8762,13 @@ declare const NOVACloudApiFp: (configuration?: Configuration) => {
8364
8762
  * @throws {RequiredError}
8365
8763
  */
8366
8764
  disconnectFromNovaCloud(completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CloudDisconnectionStatusDisconnected>>;
8765
+ /**
8766
+ * **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.
8767
+ * @summary Get Connection Status
8768
+ * @param {*} [options] Override http request option.
8769
+ * @throws {RequiredError}
8770
+ */
8771
+ getCloudStatus(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CloudStatus>>;
8367
8772
  /**
8368
8773
  * **Required permissions:** `can_access_system` - View system status and metadata ___ <!-- theme: danger --> > **Experimental** Get the current NOVA Cloud connection config for this instance.
8369
8774
  * @summary Get Connection Config
@@ -8393,6 +8798,13 @@ declare const NOVACloudApiFactory: (configuration?: Configuration, basePath?: st
8393
8798
  * @throws {RequiredError}
8394
8799
  */
8395
8800
  disconnectFromNovaCloud(completionTimeout?: number, options?: RawAxiosRequestConfig): AxiosPromise<CloudDisconnectionStatusDisconnected>;
8801
+ /**
8802
+ * **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.
8803
+ * @summary Get Connection Status
8804
+ * @param {*} [options] Override http request option.
8805
+ * @throws {RequiredError}
8806
+ */
8807
+ getCloudStatus(options?: RawAxiosRequestConfig): AxiosPromise<CloudStatus>;
8396
8808
  /**
8397
8809
  * **Required permissions:** `can_access_system` - View system status and metadata ___ <!-- theme: danger --> > **Experimental** Get the current NOVA Cloud connection config for this instance.
8398
8810
  * @summary Get Connection Config
@@ -8422,6 +8834,13 @@ declare class NOVACloudApi extends BaseAPI {
8422
8834
  * @throws {RequiredError}
8423
8835
  */
8424
8836
  disconnectFromNovaCloud(completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<CloudDisconnectionStatusDisconnected, any, {}>>;
8837
+ /**
8838
+ * **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.
8839
+ * @summary Get Connection Status
8840
+ * @param {*} [options] Override http request option.
8841
+ * @throws {RequiredError}
8842
+ */
8843
+ getCloudStatus(options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<CloudStatus, any, {}>>;
8425
8844
  /**
8426
8845
  * **Required permissions:** `can_access_system` - View system status and metadata ___ <!-- theme: danger --> > **Experimental** Get the current NOVA Cloud connection config for this instance.
8427
8846
  * @summary Get Connection Config
@@ -11827,4 +12246,4 @@ declare class VirtualControllerInputsOutputsApi extends BaseAPI {
11827
12246
  setIOValues(cell: string, controller: string, iOValue: Array<IOValue>, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<void, any, {}>>;
11828
12247
  }
11829
12248
  //#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 };
12249
+ export { AbbConfdata, AbbConfiguredPose, AbbController, AbbControllerEgmServer, AbbControllerKindEnum, AbbPose, ActivateLicenseRequest, AddTrajectoryError, AddTrajectoryErrorData, AddTrajectoryRequest, AddTrajectoryResponse, AddVirtualControllerMotionGroupRequest, ApiVersion, App, ApplicationApi, ApplicationApiAxiosParamCreator, ApplicationApiFactory, ApplicationApiFp, AxisRange, BASE_PATH, BUSInputsOutputsApi, BUSInputsOutputsApiAxiosParamCreator, BUSInputsOutputsApiFactory, BUSInputsOutputsApiFp, BaseAPI, Behavior, BlendingAuto, BlendingAutoBlendingNameEnum, BlendingPosition, BlendingPositionBlendingNameEnum, BlendingSpace, BooleanValue, BooleanValueValueTypeEnum, BostondynamicsController, BostondynamicsControllerKindEnum, BostondynamicsControllerRobotTypeEnum, Box, BoxBoxTypeEnum, BoxShapeTypeEnum, BusIODescription, BusIOModbusClient, BusIOModbusClientBusTypeEnum, BusIOModbusServer, BusIOModbusServerBusTypeEnum, BusIOModbusTCPClient, BusIOModbusTCPClientNetworkTypeEnum, BusIOModbusTCPServer, BusIOModbusTCPServerNetworkTypeEnum, BusIOModbusVirtual, BusIOModbusVirtualBusTypeEnum, BusIOProfinet, BusIOProfinetBusTypeEnum, BusIOProfinetDefaultRoute, BusIOProfinetIpConfig, BusIOProfinetNetwork, BusIOProfinetSlot, BusIOProfinetVirtual, BusIOProfinetVirtualBusTypeEnum, BusIOSnap7, BusIOSnap7BusTypeEnum, BusIOType, BusIOsState, BusIOsStateEnum, COLLECTION_FORMATS, CapabilityEntry, Capsule, CapsuleShapeTypeEnum, CartesianLimits, CartesianVelocity, Cell, CellApi, CellApiAxiosParamCreator, CellApiFactory, CellApiFp, CloudConfigStatus, CloudConfigStatusConfigured, CloudConfigStatusConfiguredStatusEnum, CloudConfigStatusNotConfigured, CloudConfigStatusNotConfiguredStatusEnum, CloudConfiguration, CloudConnectionError, CloudConnectionErrorError, CloudConnectionErrorInvalidToken, CloudConnectionErrorInvalidTokenCodeEnum, CloudConnectionErrorInvalidTokenDetails, CloudConnectionErrorInvalidTokenDetailsCloudResponse, CloudConnectionErrorLeafnodeConnectionError, CloudConnectionErrorLeafnodeConnectionErrorCodeEnum, CloudConnectionErrorLeafnodeConnectionErrorDetails, CloudConnectionErrorLeafnodeConnectionTimeout, CloudConnectionErrorLeafnodeConnectionTimeoutCodeEnum, CloudConnectionErrorLeafnodeRestartTimeout, CloudConnectionErrorLeafnodeRestartTimeoutCodeEnum, CloudConnectionErrorNatsFailed, CloudConnectionErrorNatsFailedCodeEnum, CloudConnectionErrorNatsFailedDetails, CloudConnectionErrorUnexpectedResponse, CloudConnectionErrorUnexpectedResponseCodeEnum, CloudConnectionErrorUnexpectedResponseDetails, CloudConnectionErrorUnexpectedResponseDetailsCloudResponse, CloudConnectionRequest, CloudDisconnectionError, CloudDisconnectionStatusDisconnected, CloudDisconnectionStatusDisconnectedStatusEnum, CloudDisconnectionStatusDisconnecting, CloudDisconnectionStatusDisconnectingStatusEnum, CloudRegistrationSuccessResponse, CloudStatus, CloudStatusChecks, CloudStatusErrors, Collider, ColliderShape, ColliderValue, ColliderValueOrKey, ColliderValueSourceEnum, Collision, CollisionContact, CollisionError, CollisionErrorKindEnum, CollisionFreeAlgorithm, CollisionMotionGroup, CollisionSetup, CollisionSetupValue, CollisionSetupValueOrKey, CollisionSetupValueSourceEnum, Comparator, Configuration, ConfigurationArchiveStatus, ConfigurationArchiveStatusCreating, ConfigurationArchiveStatusCreatingStatusEnum, ConfigurationArchiveStatusError, ConfigurationArchiveStatusErrorStatusEnum, ConfigurationArchiveStatusSuccess, ConfigurationArchiveStatusSuccessStatusEnum, ConfigurationParameters, ConfigurationResource, ConfiguredPose, ConfiguredPoseInverse422Response, ConfiguredPoseInverseFailedResponse, ConfiguredPoseInverseRequest, ConfiguredPoseInverseResponse, ConfiguredPoseInverseResponseResponse, ConstrainedPose, ContainerEnvironmentInner, ContainerImage, ContainerImageSecretsInner, ContainerResources, ContainerStorage, ControllerApi, ControllerApiAxiosParamCreator, ControllerApiFactory, ControllerApiFp, ControllerDescription, ControllerInputsOutputsApi, ControllerInputsOutputsApiAxiosParamCreator, ControllerInputsOutputsApiFactory, ControllerInputsOutputsApiFp, ControllerNetworkInterface, ConvertVendorConfiguredPose422Response, ConvertVendorConfiguredPoseRequest, ConvertVendorConfiguredPoseRequestVendorConfiguredPoses, ConvexHull, ConvexHullShapeTypeEnum, CoordinateSystem, CoordinateSystemData, CopyMotionGroupModelRequest, CubicSplineParameter, CycleTime, Cylinder, CylinderShapeTypeEnum, DHParameter, Direction, DirectionConstraint, DirectionConstraintConstraintNameEnum, DynamicModel, ErrorDirectionConstraintNotMet, ErrorDirectionConstraintNotMetErrorFeedbackNameEnum, ErrorDirectionConstraintNotNormalized, ErrorDirectionConstraintNotNormalizedErrorFeedbackNameEnum, ErrorInvalidJointCount, ErrorInvalidJointCountErrorFeedbackNameEnum, ErrorJointLimitExceeded, ErrorJointLimitExceededErrorFeedbackNameEnum, ErrorJointPositionCollision, ErrorJointPositionCollisionErrorFeedbackNameEnum, ErrorMaxIterationsExceeded, ErrorMaxIterationsExceededErrorFeedbackNameEnum, ErrorMotionGroupKeyMismatch, ErrorUnsupportedOperation, ErrorUnsupportedOperationErrorFeedbackNameEnum, Execute, ExecuteDetails, ExecuteJoggingRequest, ExecuteJoggingResponse, ExecuteTrajectoryRequest, ExecuteTrajectoryResponse, ExecuteWaypointJoggingRequest, ExecuteWaypointJoggingResponse, ExternalJointStreamDatapoint, ExternalJointStreamRequest, FanucController, FanucControllerKindEnum, FeedbackAxisRangeExceeded, FeedbackAxisRangeExceededErrorFeedbackNameEnum, FeedbackCollision, FeedbackCollisionErrorFeedbackNameEnum, FeedbackCommandsMissing, FeedbackCommandsMissingErrorFeedbackNameEnum, FeedbackCubicSplineIsNotIncreasing, FeedbackCubicSplineIsNotIncreasingErrorFeedbackNameEnum, FeedbackCubicSplineNotAtStartPose, FeedbackCubicSplineNotAtStartPoseErrorFeedbackNameEnum, FeedbackDirectionConstraintNoSolutionExists, FeedbackDirectionConstraintNoSolutionExistsErrorFeedbackNameEnum, FeedbackDirectionConstraintNotMet, FeedbackDirectionConstraintNotMetErrorFeedbackNameEnum, FeedbackDirectionConstraintNotNormalized, FeedbackDirectionConstraintNotNormalizedErrorFeedbackNameEnum, FeedbackInvalidDof, FeedbackInvalidDofErrorFeedbackNameEnum, FeedbackInvalidNanValue, FeedbackInvalidNanValueErrorFeedbackNameEnum, FeedbackInvalidSamplingTime, FeedbackInvalidSamplingTimeErrorFeedbackNameEnum, FeedbackJointLimitExceeded, FeedbackJointLimitExceededErrorFeedbackNameEnum, FeedbackNoSolutionInCurrentConfiguration, FeedbackNoSolutionInCurrentConfigurationErrorFeedbackNameEnum, FeedbackOutOfWorkspace, FeedbackOutOfWorkspaceErrorFeedbackNameEnum, FeedbackSingularity, FeedbackSingularityErrorFeedbackNameEnum, FeedbackStartJointsMissing, FeedbackStartJointsMissingErrorFeedbackNameEnum, FeedbackTorqueExceeded, FeedbackTorqueExceededErrorFeedbackNameEnum, Flag, FlangePayload, FloatValue, FloatValueValueTypeEnum, ForwardKinematics422Response, ForwardKinematicsRequest, ForwardKinematicsResponse, ForwardKinematicsValidationError, GetKinematicConfiguration422Response, GetKinematicConfigurationRequest, GetKinematicConfigurationResponse, GetKinematicConfigurationValidationError, GetKinematicConfigurationValidationErrorAllOfData, GetTrajectoryResponse, HTTPValidationError, IOBooleanValue, IOBooleanValueValueTypeEnum, IOBoundary, IODescription, IODirection, IOFloatValue, IOFloatValueValueTypeEnum, IOIntegerValue, IOIntegerValueValueTypeEnum, IOOrigin, IOValue, IOValueType, ImageCredentials, InconsistentTrajectorySizeError, InconsistentTrajectorySizeErrorInconsistentTrajectorySize, InconsistentTrajectorySizeErrorKindEnum, InertiaTensor, InitializeJoggingRequest, InitializeJoggingRequestMessageTypeEnum, InitializeJoggingResponse, InitializeJoggingResponseKindEnum, InitializeMovementRequest, InitializeMovementRequestMessageTypeEnum, InitializeMovementRequestTrajectory, InitializeMovementResponse, InitializeMovementResponseKindEnum, IntegerValue, IntegerValueValueTypeEnum, InvalidDofError, InvalidDofErrorInvalidDof, InvalidDofErrorKindEnum, InverseFeedbackAtIndex, InverseFeedbackAtIndexErrorFeedback, InverseKinematics422Response, InverseKinematicsRequest, InverseKinematicsResponse, InverseKinematicsValidationError, InverseKinematicsValidationErrorAllOfData, JoggingApi, JoggingApiAxiosParamCreator, JoggingApiFactory, JoggingApiFp, JoggingDetails, JoggingDetailsKindEnum, JoggingDetailsState, JoggingPausedByUser, JoggingPausedByUserKindEnum, JoggingPausedNearCollision, JoggingPausedNearCollisionKindEnum, JoggingPausedNearJointLimit, JoggingPausedNearJointLimitKindEnum, JoggingPausedNearSingularity, JoggingPausedNearSingularityKindEnum, JoggingPausedOnIO, JoggingPausedOnIOKindEnum, JoggingRunning, JoggingRunningKindEnum, JointLimitExceededError, JointLimitExceededErrorKindEnum, JointLimits, JointPTPMotion, JointTrajectory, JointTypeEnum, JointVelocityRequest, JointVelocityRequestMessageTypeEnum, JointVelocityResponse, JointVelocityResponseKindEnum, JointWaypoint, JointWaypointsRequest, JointWaypointsRequestMessageTypeEnum, JointWaypointsResponse, JointWaypointsResponseKindEnum, KinematicBranch, KinematicBranchElbow, KinematicBranchShoulder, KinematicBranchWrist, KinematicConfiguration, KinematicModel, KinematicsApi, KinematicsApiAxiosParamCreator, KinematicsApiFactory, KinematicsApiFp, KukaConfiguredPose, KukaController, KukaControllerKindEnum, KukaControllerRsiServer, KukaPose, KukaStatusAndTurnBits, License, LicenseApi, LicenseApiAxiosParamCreator, LicenseApiFactory, LicenseApiFp, LicenseStatus, LicenseStatusEnum, LimitRange, LimitSet, LimitsOverride, LinkChainValue, LinkChainValueOrKey, LinkChainValueSourceEnum, ListTrajectoriesResponse, Manufacturer, MergeTrajectories422Response, MergeTrajectoriesError, MergeTrajectoriesErrorErrorFeedback, MergeTrajectoriesRequest, MergeTrajectoriesResponse, MergeTrajectoriesResponseFeedbackInner, MergeTrajectoriesSegment, MergeTrajectoriesValidationError, MidpointInsertionAlgorithm, MidpointInsertionAlgorithmAlgorithmNameEnum, ModbusIO, ModbusIOArea, ModbusIOByteOrder, ModbusIOData, ModbusIOTypeEnum, ModelError, MotionCommand, MotionCommandBlending, MotionCommandPath, MotionGroupApi, MotionGroupApiAxiosParamCreator, MotionGroupApiFactory, MotionGroupApiFp, MotionGroupConfiguration, MotionGroupDescription, MotionGroupFromJson, MotionGroupFromType, MotionGroupInfo, MotionGroupJoints, MotionGroupModelCatalog, MotionGroupModelDescription, MotionGroupModelsApi, MotionGroupModelsApiAxiosParamCreator, MotionGroupModelsApiFactory, MotionGroupModelsApiFp, MotionGroupSetup, MotionGroupState, MotionGroupStateJointLimitReached, MovementErrorResponse, MovementErrorResponseKindEnum, MultiCollisionSetup, MultiErrorInvalidJointCount, MultiErrorJointLimitExceeded, MultiErrorJointPositionCollision, MultiJointTrajectory, MultiSearchCollisionFree422Response, MultiSearchCollisionFreeRequest, MultiSearchCollisionFreeResponse, MultiSearchCollisionFreeResponseResponse, MultiSearchCollisionFreeValidationError, MultiSearchCollisionFreeValidationErrorAllOfData, NOVACloudApi, NOVACloudApiAxiosParamCreator, NOVACloudApiFactory, NOVACloudApiFp, NanValueError, NanValueErrorKindEnum, NanValueErrorNanValue, NetworkDevice, NetworkInterface, NetworkState, NetworkStateConnectionTypeEnum, OpMode, OperatingState, OperationLimits, OperationMode, OrientationType, PathCartesianPTP, PathCartesianPTPPathDefinitionNameEnum, PathCircle, PathCirclePathDefinitionNameEnum, PathCubicSpline, PathCubicSplinePathDefinitionNameEnum, PathDirectionConstrainedCartesianPTP, PathDirectionConstrainedCartesianPTPPathDefinitionNameEnum, PathDirectionConstrainedJointPTP, PathDirectionConstrainedJointPTPPathDefinitionNameEnum, PathJointPTP, PathJointPTPPathDefinitionNameEnum, PathLine, PathLinePathDefinitionNameEnum, PauseJoggingRequest, PauseJoggingRequestMessageTypeEnum, PauseJoggingResponse, PauseJoggingResponseKindEnum, PauseMovementRequest, PauseMovementRequestMessageTypeEnum, PauseMovementResponse, PauseMovementResponseKindEnum, PauseOnIO, Payload, Plan422Response, PlanCollisionFreeFailedResponse, PlanCollisionFreeRequest, PlanCollisionFreeResponse, PlanCollisionFreeResponseResponse, PlanTrajectoryFailedResponse, PlanTrajectoryFailedResponseErrorFeedback, PlanTrajectoryRequest, PlanTrajectoryResponse, PlanTrajectoryResponseResponse, PlanValidationError, PlanValidationErrorAllOfData, Plane, PlaneShapeTypeEnum, PlaybackSpeedRequest, PlaybackSpeedRequestMessageTypeEnum, PlaybackSpeedResponse, PlaybackSpeedResponseKindEnum, Pose, PoseWaypoint, PoseWaypointsRequest, PoseWaypointsRequestMessageTypeEnum, PoseWaypointsResponse, PoseWaypointsResponseKindEnum, ProfinetDescription, ProfinetIO, ProfinetIOData, ProfinetIODirection, ProfinetIOTypeEnum, ProfinetInputOutputConfig, ProfinetSlotDescription, ProfinetSlotOffset, ProfinetSubSlotDescription, Program, ProgramApi, ProgramApiAxiosParamCreator, ProgramApiFactory, ProgramApiFp, ProgramRun, ProgramRunState, ProgramStartRequest, ProjectJointPositionDirectionConstraint422Response, ProjectJointPositionDirectionConstraintRequest, ProjectJointPositionDirectionConstraintResponse, ProjectJointPositionDirectionConstraintValidationError, ProjectJointPositionDirectionConstraintValidationErrorAllOfData, RRTConnectAlgorithm, RRTConnectAlgorithmAlgorithmNameEnum, RRTConnectAlgorithmStepSize, Range, Rectangle, RectangleShapeTypeEnum, RectangularCapsule, RectangularCapsuleShapeTypeEnum, ReleaseChannel, RequestArgs, RequiredError, RobotConfigurationsApi, RobotConfigurationsApiAxiosParamCreator, RobotConfigurationsApiFactory, RobotConfigurationsApiFp, RobotController, RobotControllerConfiguration, RobotControllerConfigurationRequest, RobotControllerState, RobotSystemMode, RobotTcp, RobotTcpData, SafetyGeometry, SafetyGeometryBox, SafetyGeometryCapsule, SafetyGeometryLozenge, SafetyGeometryPlane, SafetyGeometryPrism, SafetyGeometrySphere, SafetyStateType, SafetyZone, SafetyZonePose, SafetyZones, ServiceGroup, ServiceStatus, ServiceStatusPhase, ServiceStatusResponse, ServiceStatusSeverity, ServiceStatusStatus, SessionApi, SessionApiAxiosParamCreator, SessionApiFactory, SessionApiFp, SessionResponse, SetIO, SettableRobotSystemMode, SingularityHandling, SingularityTypeEnum, Snap7IO, Snap7IOArea, Snap7IOData, Snap7IODirection, Snap7IOTypeEnum, Sphere, SphereShapeTypeEnum, StartMovementRequest, StartMovementRequestMessageTypeEnum, StartMovementResponse, StartMovementResponseKindEnum, StartOnIO, StorageKey, StorageKeySourceEnum, StoreCollisionComponentsApi, StoreCollisionComponentsApiAxiosParamCreator, StoreCollisionComponentsApiFactory, StoreCollisionComponentsApiFp, StoreCollisionSetupsApi, StoreCollisionSetupsApiAxiosParamCreator, StoreCollisionSetupsApiFactory, StoreCollisionSetupsApiFp, StoreObjectApi, StoreObjectApiAxiosParamCreator, StoreObjectApiFactory, StoreObjectApiFp, StreamIOValuesResponse, SystemApi, SystemApiAxiosParamCreator, SystemApiFactory, SystemApiFp, TcpOffset, TcpRequiredError, TcpRequiredErrorKindEnum, TcpVelocityRequest, TcpVelocityRequestMessageTypeEnum, TcpVelocityResponse, TcpVelocityResponseKindEnum, ToolValue, ToolValueOrKey, ToolValueSourceEnum, TorqueExceededError, TorqueExceededErrorKindEnum, TorqueExceededErrorTorqueExceeded, TrajectoryCachingApi, TrajectoryCachingApiAxiosParamCreator, TrajectoryCachingApiFactory, TrajectoryCachingApiFp, TrajectoryData, TrajectoryDataMessageTypeEnum, TrajectoryDetails, TrajectoryDetailsKindEnum, TrajectoryDetailsState, TrajectoryEnded, TrajectoryEndedKindEnum, TrajectoryExecutionApi, TrajectoryExecutionApiAxiosParamCreator, TrajectoryExecutionApiFactory, TrajectoryExecutionApiFp, TrajectoryId, TrajectoryIdMessageTypeEnum, TrajectoryPausedByUser, TrajectoryPausedByUserKindEnum, TrajectoryPausedOnIO, TrajectoryPausedOnIOKindEnum, TrajectoryPlanningApi, TrajectoryPlanningApiAxiosParamCreator, TrajectoryPlanningApiFactory, TrajectoryPlanningApiFp, TrajectoryRunning, TrajectoryRunningKindEnum, TrajectorySection, TrajectoryWaitForIO, TrajectoryWaitForIOKindEnum, UnitType, UnitreeController, UnitreeControllerKindEnum, UnitreeControllerRobotTypeEnum, UniversalrobotsController, UniversalrobotsControllerKindEnum, UpdateCellVersionRequest, UpdateNovaVersionRequest, User, ValidationError, ValidationError2, ValidationErrorLocInner, VersionApi, VersionApiAxiosParamCreator, VersionApiFactory, VersionApiFp, VirtualController, VirtualControllerApi, VirtualControllerApiAxiosParamCreator, VirtualControllerApiFactory, VirtualControllerApiFp, VirtualControllerBehaviorApi, VirtualControllerBehaviorApiAxiosParamCreator, VirtualControllerBehaviorApiFactory, VirtualControllerBehaviorApiFp, VirtualControllerInputsOutputsApi, VirtualControllerInputsOutputsApiAxiosParamCreator, VirtualControllerInputsOutputsApiFactory, VirtualControllerInputsOutputsApiFp, VirtualControllerKindEnum, VirtualRobotConfiguration, WaitForIOEventRequest, YaskawaController, YaskawaControllerKindEnum, ZodValidationError, ZodValidationErrorError, ZodValidationErrorErrorCodeEnum, ZodValidationErrorErrorDetailsInner, ZodValidationErrorErrorDetailsInnerPathInner, operationServerMap };