@wandelbots/nova-js 4.2.0-pr.317.aff3ddd → 4.3.0-nova-api-dev.26-6-0-dev-136
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/{Nova-DdbUm145.d.mts → Nova-Dkb6yPVr.d.mts} +799 -212
- package/dist/Nova-Dkb6yPVr.d.mts.map +1 -0
- package/dist/experimental/math/index.d.mts +140 -0
- package/dist/experimental/math/index.d.mts.map +1 -0
- package/dist/experimental/math/index.mjs +290 -0
- package/dist/experimental/math/index.mjs.map +1 -0
- package/dist/experimental/nats/index.d.mts +1 -1
- package/dist/v2/index.d.mts +2 -2
- package/dist/v2/index.mjs +359 -128
- package/dist/v2/index.mjs.map +1 -1
- package/package.json +6 -2
- package/src/experimental/math/index.ts +18 -0
- package/src/lib/experimental/math/Pose.ts +162 -0
- package/src/lib/experimental/math/Quaternion.ts +147 -0
- package/src/lib/experimental/math/withMath.ts +175 -0
- package/dist/Nova-DdbUm145.d.mts.map +0 -1
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
import { n as MockNovaInstance, t as AutoReconnectingWebsocket } from "./AutoReconnectingWebsocket-NVyczzLi.mjs";
|
|
2
2
|
import * as _$axios from "axios";
|
|
3
3
|
import { AxiosInstance, AxiosPromise, RawAxiosRequestConfig } from "axios";
|
|
4
|
-
//#region node_modules/.pnpm/@wandelbots+nova-api@26.
|
|
4
|
+
//#region node_modules/.pnpm/@wandelbots+nova-api@26.6.0-dev.136/node_modules/@wandelbots/nova-api/dist/v2/index.d.ts
|
|
5
5
|
//#region v2/configuration.d.ts
|
|
6
6
|
/**
|
|
7
7
|
* Wandelbots NOVA API
|
|
8
8
|
* Interact with robots in an easy and intuitive way.
|
|
9
9
|
*
|
|
10
|
-
* The version of the OpenAPI document: 2.
|
|
10
|
+
* The version of the OpenAPI document: 2.6.0 dev
|
|
11
11
|
*
|
|
12
12
|
*
|
|
13
13
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -163,6 +163,7 @@ interface AbbConfiguredPose {
|
|
|
163
163
|
interface AbbController {
|
|
164
164
|
'kind': AbbControllerKindEnum;
|
|
165
165
|
'controller_ip': string;
|
|
166
|
+
'network_interface'?: ControllerNetworkInterface;
|
|
166
167
|
/**
|
|
167
168
|
* Default values: 80, 443. If custom value is set, field is required.
|
|
168
169
|
*/
|
|
@@ -192,6 +193,37 @@ interface AbbPose {
|
|
|
192
193
|
'q3': number;
|
|
193
194
|
'q4': number;
|
|
194
195
|
}
|
|
196
|
+
/**
|
|
197
|
+
* Adds waypoints to the action chunk queue. The robot will try to move through each waypoint by best effort. Existing waypoints in the queue that are older than the first new timestamp will be removed. The first message of this kind starts an internal clock. The current session timestamp is reported in `execute.details.jogger_session_timestamp_ms` of the [streamRobotControllerState](#/operations/streamRobotControllerState) endpoint. This can be used for realtime action chunk streaming, e.g., from a Vision-Language-Action (VLA) model. > **NOTE** > > Action chunk streaming is experimental and its behavior may change in future releases.
|
|
198
|
+
*/
|
|
199
|
+
interface ActionChunkRequest {
|
|
200
|
+
/**
|
|
201
|
+
* Type specifier for server, set automatically.
|
|
202
|
+
*/
|
|
203
|
+
'message_type': ActionChunkRequestMessageTypeEnum;
|
|
204
|
+
/**
|
|
205
|
+
* List of waypoints.
|
|
206
|
+
*/
|
|
207
|
+
'waypoints': Array<Waypoint>;
|
|
208
|
+
}
|
|
209
|
+
declare const ActionChunkRequestMessageTypeEnum: {
|
|
210
|
+
readonly ActionChunkRequest: "ActionChunkRequest";
|
|
211
|
+
};
|
|
212
|
+
type ActionChunkRequestMessageTypeEnum = typeof ActionChunkRequestMessageTypeEnum[keyof typeof ActionChunkRequestMessageTypeEnum];
|
|
213
|
+
/**
|
|
214
|
+
* Acknowledgment to an ActionChunkRequest.
|
|
215
|
+
*/
|
|
216
|
+
interface ActionChunkResponse {
|
|
217
|
+
/**
|
|
218
|
+
* Error message in case of invalid ActionChunkRequest.
|
|
219
|
+
*/
|
|
220
|
+
'message'?: string;
|
|
221
|
+
'kind': ActionChunkResponseKindEnum;
|
|
222
|
+
}
|
|
223
|
+
declare const ActionChunkResponseKindEnum: {
|
|
224
|
+
readonly ActionChunkReceived: "ACTION_CHUNK_RECEIVED";
|
|
225
|
+
};
|
|
226
|
+
type ActionChunkResponseKindEnum = typeof ActionChunkResponseKindEnum[keyof typeof ActionChunkResponseKindEnum];
|
|
195
227
|
/**
|
|
196
228
|
* The authentication token to fetch the license from the license server.
|
|
197
229
|
*/
|
|
@@ -253,7 +285,7 @@ interface AddTrajectoryResponse {
|
|
|
253
285
|
}
|
|
254
286
|
/**
|
|
255
287
|
* @type AddVirtualControllerMotionGroupRequest
|
|
256
|
-
* Request body wrapper for `addVirtualControllerMotionGroup`. Allow
|
|
288
|
+
* 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.
|
|
257
289
|
*/
|
|
258
290
|
type AddVirtualControllerMotionGroupRequest = MotionGroupFromJson | MotionGroupFromType;
|
|
259
291
|
interface ApiVersion {
|
|
@@ -267,7 +299,7 @@ interface ApiVersion {
|
|
|
267
299
|
*/
|
|
268
300
|
interface App {
|
|
269
301
|
/**
|
|
270
|
-
* The name of the provided application. The name must be unique within the cell and is used as
|
|
302
|
+
* 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).
|
|
271
303
|
*/
|
|
272
304
|
'name': string;
|
|
273
305
|
/**
|
|
@@ -375,6 +407,48 @@ declare const BooleanValueValueTypeEnum: {
|
|
|
375
407
|
readonly Boolean: "boolean";
|
|
376
408
|
};
|
|
377
409
|
type BooleanValueValueTypeEnum = typeof BooleanValueValueTypeEnum[keyof typeof BooleanValueValueTypeEnum];
|
|
410
|
+
/**
|
|
411
|
+
* The configuration of a Boston Dynamics robot controller. Requires the hostname or IP address of the robot and authentication credentials.
|
|
412
|
+
*/
|
|
413
|
+
interface BostondynamicsController {
|
|
414
|
+
'kind': BostondynamicsControllerKindEnum;
|
|
415
|
+
/**
|
|
416
|
+
* The hostname or IP address of the robot.
|
|
417
|
+
*/
|
|
418
|
+
'controller_ip': string;
|
|
419
|
+
/**
|
|
420
|
+
* The Boston Dynamics robot model type.
|
|
421
|
+
*/
|
|
422
|
+
'robot_type'?: BostondynamicsControllerRobotTypeEnum;
|
|
423
|
+
/**
|
|
424
|
+
* The authentication password for the robot.
|
|
425
|
+
*/
|
|
426
|
+
'password': string;
|
|
427
|
+
/**
|
|
428
|
+
* The authentication username for the robot.
|
|
429
|
+
*/
|
|
430
|
+
'username'?: string;
|
|
431
|
+
/**
|
|
432
|
+
* The network interface used to communicate with the robot.
|
|
433
|
+
*/
|
|
434
|
+
'network_interface'?: string;
|
|
435
|
+
/**
|
|
436
|
+
* JPEG quality for camera streams (1-100).
|
|
437
|
+
*/
|
|
438
|
+
'stream_quality'?: number;
|
|
439
|
+
/**
|
|
440
|
+
* Frames per second for camera streams.
|
|
441
|
+
*/
|
|
442
|
+
'stream_fps'?: number;
|
|
443
|
+
}
|
|
444
|
+
declare const BostondynamicsControllerKindEnum: {
|
|
445
|
+
readonly BostondynamicsController: "BostondynamicsController";
|
|
446
|
+
};
|
|
447
|
+
type BostondynamicsControllerKindEnum = typeof BostondynamicsControllerKindEnum[keyof typeof BostondynamicsControllerKindEnum];
|
|
448
|
+
declare const BostondynamicsControllerRobotTypeEnum: {
|
|
449
|
+
readonly Spot: "spot";
|
|
450
|
+
};
|
|
451
|
+
type BostondynamicsControllerRobotTypeEnum = typeof BostondynamicsControllerRobotTypeEnum[keyof typeof BostondynamicsControllerRobotTypeEnum];
|
|
378
452
|
/**
|
|
379
453
|
* 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.
|
|
380
454
|
*/
|
|
@@ -684,19 +758,44 @@ declare const CapsuleShapeTypeEnum: {
|
|
|
684
758
|
};
|
|
685
759
|
type CapsuleShapeTypeEnum = typeof CapsuleShapeTypeEnum[keyof typeof CapsuleShapeTypeEnum];
|
|
686
760
|
interface CartesianLimits {
|
|
761
|
+
/**
|
|
762
|
+
* Cartesian velocity limit in mm/s.
|
|
763
|
+
*/
|
|
687
764
|
'velocity'?: number;
|
|
765
|
+
/**
|
|
766
|
+
* Cartesian acceleration limit in mm/s².
|
|
767
|
+
*/
|
|
688
768
|
'acceleration'?: number;
|
|
689
769
|
/**
|
|
690
|
-
* > **NOTE** > > This limit type is experimental and its behavior may change in future releases.
|
|
770
|
+
* Cartesian jerk limit in mm/s³. > **NOTE** > > This limit type is experimental and its behavior may change in future releases.
|
|
691
771
|
*/
|
|
692
772
|
'jerk'?: number;
|
|
773
|
+
/**
|
|
774
|
+
* Orientation velocity limit in rad/s.
|
|
775
|
+
*/
|
|
693
776
|
'orientation_velocity'?: number;
|
|
777
|
+
/**
|
|
778
|
+
* Orientation acceleration limit in rad/s².
|
|
779
|
+
*/
|
|
694
780
|
'orientation_acceleration'?: number;
|
|
695
781
|
/**
|
|
696
|
-
* > **NOTE** > > This limit type is experimental and its behavior may change in future releases.
|
|
782
|
+
* Orientation jerk limit in rad/s³. > **NOTE** > > This limit type is experimental and its behavior may change in future releases.
|
|
697
783
|
*/
|
|
698
784
|
'orientation_jerk'?: number;
|
|
699
785
|
}
|
|
786
|
+
/**
|
|
787
|
+
* 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.
|
|
788
|
+
*/
|
|
789
|
+
interface CartesianVelocity {
|
|
790
|
+
/**
|
|
791
|
+
* A three-dimensional vector [x, y, z] with double precision.
|
|
792
|
+
*/
|
|
793
|
+
'translation': Array<number>;
|
|
794
|
+
/**
|
|
795
|
+
* A three-dimensional vector [x, y, z] with double precision.
|
|
796
|
+
*/
|
|
797
|
+
'rotation': Array<number>;
|
|
798
|
+
}
|
|
700
799
|
/**
|
|
701
800
|
* 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.
|
|
702
801
|
*/
|
|
@@ -881,6 +980,36 @@ interface CloudRegistrationSuccessResponse {
|
|
|
881
980
|
*/
|
|
882
981
|
'instance': number;
|
|
883
982
|
}
|
|
983
|
+
interface CloudStatus {
|
|
984
|
+
/**
|
|
985
|
+
* Whether NOVA Cloud is fully reachable, i.e. every reachability check passed. `false` when the instance is not configured or any check fails.
|
|
986
|
+
*/
|
|
987
|
+
'ready': boolean;
|
|
988
|
+
'checks': CloudStatusChecks;
|
|
989
|
+
'errors': CloudStatusErrors;
|
|
990
|
+
/**
|
|
991
|
+
* Timestamp at which the reachability checks were performed (RFC 3339).
|
|
992
|
+
*/
|
|
993
|
+
'checked_at': string;
|
|
994
|
+
}
|
|
995
|
+
/**
|
|
996
|
+
* Result of each reachability check. A check is absent when a prerequisite check failed and it was not run.
|
|
997
|
+
*/
|
|
998
|
+
interface CloudStatusChecks {
|
|
999
|
+
'is_configured'?: boolean;
|
|
1000
|
+
'can_connect_nats'?: boolean;
|
|
1001
|
+
'can_ping_nats'?: boolean;
|
|
1002
|
+
'can_reach_openfga'?: boolean;
|
|
1003
|
+
}
|
|
1004
|
+
/**
|
|
1005
|
+
* Failure reason for each failed check, to help diagnose what is wrong.
|
|
1006
|
+
*/
|
|
1007
|
+
interface CloudStatusErrors {
|
|
1008
|
+
'is_configured'?: string;
|
|
1009
|
+
'can_connect_nats'?: string;
|
|
1010
|
+
'can_ping_nats'?: string;
|
|
1011
|
+
'can_reach_openfga'?: string;
|
|
1012
|
+
}
|
|
884
1013
|
/**
|
|
885
1014
|
* 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.
|
|
886
1015
|
*/
|
|
@@ -1129,9 +1258,16 @@ interface ConfigurationResource {
|
|
|
1129
1258
|
*/
|
|
1130
1259
|
'children'?: Array<ConfigurationResource>;
|
|
1131
1260
|
}
|
|
1261
|
+
/**
|
|
1262
|
+
* 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.
|
|
1263
|
+
*/
|
|
1132
1264
|
interface ConfiguredPose {
|
|
1133
1265
|
'pose': Pose;
|
|
1134
|
-
'kinematic_configuration'
|
|
1266
|
+
'kinematic_configuration'?: KinematicConfiguration;
|
|
1267
|
+
/**
|
|
1268
|
+
* Optional identifier of the coordinate system the pose is expressed in. If this is null or omitted, the pose is referenced in `world`.
|
|
1269
|
+
*/
|
|
1270
|
+
'coordinate_system_id'?: string;
|
|
1135
1271
|
}
|
|
1136
1272
|
interface ConfiguredPoseInverse422Response {
|
|
1137
1273
|
'detail'?: Array<ValidationError>;
|
|
@@ -1241,6 +1377,19 @@ interface ControllerDescription {
|
|
|
1241
1377
|
*/
|
|
1242
1378
|
'supports_safety_zones': boolean;
|
|
1243
1379
|
}
|
|
1380
|
+
/**
|
|
1381
|
+
* Direct network interface for the robot controller. When set, the controller gets its own interface on the specified port with the given addresses to reach the controller\'s network.
|
|
1382
|
+
*/
|
|
1383
|
+
interface ControllerNetworkInterface {
|
|
1384
|
+
/**
|
|
1385
|
+
* Network port identifier. Either a bare port name, e.g., `enp3s0` or a node-qualified identifier, e.g., `wandelbox-abc123-enp3s0`. Use the node-qualified form on multi-node clusters to pin the interface to a specific node. Cannot be changed in-place. Delete and add the controller again to another port.
|
|
1386
|
+
*/
|
|
1387
|
+
'interface': string;
|
|
1388
|
+
/**
|
|
1389
|
+
* IPv4 addresses to assign to the interface, in address/prefix format, e.g., `192.168.1.10/24`.
|
|
1390
|
+
*/
|
|
1391
|
+
'addresses': Array<string>;
|
|
1392
|
+
}
|
|
1244
1393
|
interface ConvertVendorConfiguredPose422Response {
|
|
1245
1394
|
'detail'?: Array<ValidationError>;
|
|
1246
1395
|
}
|
|
@@ -1524,7 +1673,7 @@ declare const ErrorUnsupportedOperationErrorFeedbackNameEnum: {
|
|
|
1524
1673
|
};
|
|
1525
1674
|
type ErrorUnsupportedOperationErrorFeedbackNameEnum = typeof ErrorUnsupportedOperationErrorFeedbackNameEnum[keyof typeof ErrorUnsupportedOperationErrorFeedbackNameEnum];
|
|
1526
1675
|
/**
|
|
1527
|
-
* Details about the state of the motion execution. The details are either for a jogging or
|
|
1676
|
+
* Details about the state of the motion execution. The details are either for a jogging, a trajectory, or an action chunk. If NOVA is not controlling this motion group at the moment, this field is omitted.
|
|
1528
1677
|
*/
|
|
1529
1678
|
interface Execute {
|
|
1530
1679
|
/**
|
|
@@ -1533,6 +1682,26 @@ interface Execute {
|
|
|
1533
1682
|
'joint_position': Array<number>;
|
|
1534
1683
|
'details'?: ExecuteDetails;
|
|
1535
1684
|
}
|
|
1685
|
+
/**
|
|
1686
|
+
* @type ExecuteActionChunksRequest
|
|
1687
|
+
*/
|
|
1688
|
+
type ExecuteActionChunksRequest = ActionChunkRequest | InitializeActionChunksRequest | PauseActionChunksRequest | StopActionChunksRequest | UnpauseActionChunksRequest;
|
|
1689
|
+
/**
|
|
1690
|
+
* @type ExecuteActionChunksResponse
|
|
1691
|
+
*/
|
|
1692
|
+
type ExecuteActionChunksResponse = {
|
|
1693
|
+
kind: 'ACTION_CHUNK_RECEIVED';
|
|
1694
|
+
} & ActionChunkResponse | {
|
|
1695
|
+
kind: 'INITIALIZE_RECEIVED';
|
|
1696
|
+
} & InitializeActionChunksResponse | {
|
|
1697
|
+
kind: 'MOTION_ERROR';
|
|
1698
|
+
} & MovementErrorResponse | {
|
|
1699
|
+
kind: 'PAUSE_RECEIVED';
|
|
1700
|
+
} & PauseActionChunksResponse | {
|
|
1701
|
+
kind: 'STOP_RECEIVED';
|
|
1702
|
+
} & StopActionChunksResponse | {
|
|
1703
|
+
kind: 'UNPAUSE_RECEIVED';
|
|
1704
|
+
} & UnpauseActionChunksResponse;
|
|
1536
1705
|
/**
|
|
1537
1706
|
* @type ExecuteDetails
|
|
1538
1707
|
*/
|
|
@@ -1577,24 +1746,6 @@ type ExecuteTrajectoryResponse = {
|
|
|
1577
1746
|
} & PlaybackSpeedResponse | {
|
|
1578
1747
|
kind: 'START_RECEIVED';
|
|
1579
1748
|
} & StartMovementResponse;
|
|
1580
|
-
/**
|
|
1581
|
-
* @type ExecuteWaypointJoggingRequest
|
|
1582
|
-
*/
|
|
1583
|
-
type ExecuteWaypointJoggingRequest = InitializeJoggingRequest | JointWaypointsRequest | PauseJoggingRequest | PoseWaypointsRequest;
|
|
1584
|
-
/**
|
|
1585
|
-
* @type ExecuteWaypointJoggingResponse
|
|
1586
|
-
*/
|
|
1587
|
-
type ExecuteWaypointJoggingResponse = {
|
|
1588
|
-
kind: 'INITIALIZE_RECEIVED';
|
|
1589
|
-
} & InitializeJoggingResponse | {
|
|
1590
|
-
kind: 'JOINT_WAYPOINTS_RECEIVED';
|
|
1591
|
-
} & JointWaypointsResponse | {
|
|
1592
|
-
kind: 'MOTION_ERROR';
|
|
1593
|
-
} & MovementErrorResponse | {
|
|
1594
|
-
kind: 'PAUSE_RECEIVED';
|
|
1595
|
-
} & PauseJoggingResponse | {
|
|
1596
|
-
kind: 'POSE_WAYPOINTS_RECEIVED';
|
|
1597
|
-
} & PoseWaypointsResponse;
|
|
1598
1749
|
/**
|
|
1599
1750
|
* A datapoint inside external joint stream.
|
|
1600
1751
|
*/
|
|
@@ -1614,6 +1765,11 @@ interface ExternalJointStreamRequest {
|
|
|
1614
1765
|
interface FanucController {
|
|
1615
1766
|
'kind': FanucControllerKindEnum;
|
|
1616
1767
|
'controller_ip': string;
|
|
1768
|
+
'network_interface'?: ControllerNetworkInterface;
|
|
1769
|
+
/**
|
|
1770
|
+
* Enable the FANUC Stream Motion interface. When enabled, the GCI server communicates with the controller via the Stream Motion interface.
|
|
1771
|
+
*/
|
|
1772
|
+
'stream_motion'?: boolean;
|
|
1617
1773
|
}
|
|
1618
1774
|
declare const FanucControllerKindEnum: {
|
|
1619
1775
|
readonly FanucController: "FanucController";
|
|
@@ -1884,6 +2040,39 @@ interface ForwardKinematicsValidationError {
|
|
|
1884
2040
|
};
|
|
1885
2041
|
'data'?: ErrorInvalidJointCount;
|
|
1886
2042
|
}
|
|
2043
|
+
interface GetKinematicConfiguration422Response {
|
|
2044
|
+
'detail'?: Array<GetKinematicConfigurationValidationError>;
|
|
2045
|
+
}
|
|
2046
|
+
interface GetKinematicConfigurationRequest {
|
|
2047
|
+
/**
|
|
2048
|
+
* Identifies a single motion group model. See [getMotionGroupModels](#/operations/getMotionGroupModels) for supported types.
|
|
2049
|
+
*/
|
|
2050
|
+
'motion_group_model': string;
|
|
2051
|
+
/**
|
|
2052
|
+
* 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.
|
|
2053
|
+
*/
|
|
2054
|
+
'joint_positions': Array<Array<number>>;
|
|
2055
|
+
}
|
|
2056
|
+
interface GetKinematicConfigurationResponse {
|
|
2057
|
+
/**
|
|
2058
|
+
* List of kinematic configurations corresponding to the input joint positions.
|
|
2059
|
+
*/
|
|
2060
|
+
'kinematic_configurations': Array<KinematicConfiguration>;
|
|
2061
|
+
}
|
|
2062
|
+
interface GetKinematicConfigurationValidationError {
|
|
2063
|
+
'loc': Array<ValidationErrorLocInner>;
|
|
2064
|
+
'msg': string;
|
|
2065
|
+
'type': string;
|
|
2066
|
+
'input': {
|
|
2067
|
+
[key: string]: any;
|
|
2068
|
+
};
|
|
2069
|
+
'data'?: GetKinematicConfigurationValidationErrorAllOfData;
|
|
2070
|
+
}
|
|
2071
|
+
/**
|
|
2072
|
+
* @type GetKinematicConfigurationValidationErrorAllOfData
|
|
2073
|
+
* Optional data further specifying the validation error.
|
|
2074
|
+
*/
|
|
2075
|
+
type GetKinematicConfigurationValidationErrorAllOfData = ErrorInvalidJointCount | ErrorUnsupportedOperation;
|
|
1887
2076
|
interface GetTrajectoryResponse {
|
|
1888
2077
|
/**
|
|
1889
2078
|
* Unique identifier of the motion group the trajectory is planned for.
|
|
@@ -2066,6 +2255,41 @@ interface InertiaTensor {
|
|
|
2066
2255
|
*/
|
|
2067
2256
|
'yz': number;
|
|
2068
2257
|
}
|
|
2258
|
+
/**
|
|
2259
|
+
* Send this message to start executing action chunks on a motion group.
|
|
2260
|
+
*/
|
|
2261
|
+
interface InitializeActionChunksRequest {
|
|
2262
|
+
/**
|
|
2263
|
+
* Type specifier for server, set automatically.
|
|
2264
|
+
*/
|
|
2265
|
+
'message_type': InitializeActionChunksRequestMessageTypeEnum;
|
|
2266
|
+
/**
|
|
2267
|
+
* Identifier of the motion group.
|
|
2268
|
+
*/
|
|
2269
|
+
'motion_group': string;
|
|
2270
|
+
/**
|
|
2271
|
+
* Identifier of the tool. Required for robots (all limits, including TCP limits, are respected at all times regardless of the motion). Not required for external axes.
|
|
2272
|
+
*/
|
|
2273
|
+
'tcp'?: string;
|
|
2274
|
+
}
|
|
2275
|
+
declare const InitializeActionChunksRequestMessageTypeEnum: {
|
|
2276
|
+
readonly InitializeActionChunksRequest: "InitializeActionChunksRequest";
|
|
2277
|
+
};
|
|
2278
|
+
type InitializeActionChunksRequestMessageTypeEnum = typeof InitializeActionChunksRequestMessageTypeEnum[keyof typeof InitializeActionChunksRequestMessageTypeEnum];
|
|
2279
|
+
/**
|
|
2280
|
+
* Acknowledgment to an InitializeActionChunksRequest.
|
|
2281
|
+
*/
|
|
2282
|
+
interface InitializeActionChunksResponse {
|
|
2283
|
+
/**
|
|
2284
|
+
* Error message in case of invalid InitializeActionChunksRequest.
|
|
2285
|
+
*/
|
|
2286
|
+
'message'?: string;
|
|
2287
|
+
'kind': InitializeActionChunksResponseKindEnum;
|
|
2288
|
+
}
|
|
2289
|
+
declare const InitializeActionChunksResponseKindEnum: {
|
|
2290
|
+
readonly InitializeReceived: "INITIALIZE_RECEIVED";
|
|
2291
|
+
};
|
|
2292
|
+
type InitializeActionChunksResponseKindEnum = typeof InitializeActionChunksResponseKindEnum[keyof typeof InitializeActionChunksResponseKindEnum];
|
|
2069
2293
|
/**
|
|
2070
2294
|
* Send this message to start jogging a motion group.
|
|
2071
2295
|
*/
|
|
@@ -2336,13 +2560,25 @@ declare const JointLimitExceededErrorKindEnum: {
|
|
|
2336
2560
|
};
|
|
2337
2561
|
type JointLimitExceededErrorKindEnum = typeof JointLimitExceededErrorKindEnum[keyof typeof JointLimitExceededErrorKindEnum];
|
|
2338
2562
|
interface JointLimits {
|
|
2563
|
+
/**
|
|
2564
|
+
* Joint position limits in rad.
|
|
2565
|
+
*/
|
|
2339
2566
|
'position'?: LimitRange;
|
|
2567
|
+
/**
|
|
2568
|
+
* Joint velocity limit in rad/s.
|
|
2569
|
+
*/
|
|
2340
2570
|
'velocity'?: number;
|
|
2571
|
+
/**
|
|
2572
|
+
* Joint acceleration limit in rad/s².
|
|
2573
|
+
*/
|
|
2341
2574
|
'acceleration'?: number;
|
|
2342
2575
|
/**
|
|
2343
|
-
* > **NOTE** > > This limit type is experimental and its behavior may change in future releases.
|
|
2576
|
+
* Joint jerk limit in rad/s³. > **NOTE** > > This limit type is experimental and its behavior may change in future releases.
|
|
2344
2577
|
*/
|
|
2345
2578
|
'jerk'?: number;
|
|
2579
|
+
/**
|
|
2580
|
+
* Joint torque limit in Nm.
|
|
2581
|
+
*/
|
|
2346
2582
|
'torque'?: number;
|
|
2347
2583
|
}
|
|
2348
2584
|
interface JointPTPMotion {
|
|
@@ -2398,49 +2634,22 @@ declare const JointVelocityResponseKindEnum: {
|
|
|
2398
2634
|
};
|
|
2399
2635
|
type JointVelocityResponseKindEnum = typeof JointVelocityResponseKindEnum[keyof typeof JointVelocityResponseKindEnum];
|
|
2400
2636
|
/**
|
|
2401
|
-
* A waypoint
|
|
2637
|
+
* A joint waypoint for action chunk streaming. > **NOTE** > > This type is experimental and its behavior may change in future releases.
|
|
2402
2638
|
*/
|
|
2403
2639
|
interface JointWaypoint {
|
|
2404
2640
|
/**
|
|
2405
|
-
*
|
|
2641
|
+
* Type specifier for server, set automatically.
|
|
2406
2642
|
*/
|
|
2407
|
-
'
|
|
2643
|
+
'kind': JointWaypointKindEnum;
|
|
2408
2644
|
/**
|
|
2409
2645
|
* This structure describes a set of joint values, e.g., positions, currents, torques, of a motion group. Float precision is the default.
|
|
2410
2646
|
*/
|
|
2411
2647
|
'joints': Array<number>;
|
|
2412
2648
|
}
|
|
2413
|
-
|
|
2414
|
-
|
|
2415
|
-
*/
|
|
2416
|
-
interface JointWaypointsRequest {
|
|
2417
|
-
/**
|
|
2418
|
-
* Type specifier for server, set automatically.
|
|
2419
|
-
*/
|
|
2420
|
-
'message_type': JointWaypointsRequestMessageTypeEnum;
|
|
2421
|
-
/**
|
|
2422
|
-
* List of joint waypoints.
|
|
2423
|
-
*/
|
|
2424
|
-
'waypoints': Array<JointWaypoint>;
|
|
2425
|
-
}
|
|
2426
|
-
declare const JointWaypointsRequestMessageTypeEnum: {
|
|
2427
|
-
readonly JointWaypointsRequest: "JointWaypointsRequest";
|
|
2649
|
+
declare const JointWaypointKindEnum: {
|
|
2650
|
+
readonly Joints: "JOINTS";
|
|
2428
2651
|
};
|
|
2429
|
-
type
|
|
2430
|
-
/**
|
|
2431
|
-
* Acknowledgment to a JointWaypointsRequest.
|
|
2432
|
-
*/
|
|
2433
|
-
interface JointWaypointsResponse {
|
|
2434
|
-
/**
|
|
2435
|
-
* Error message in case of invalid JointWaypointsRequest.
|
|
2436
|
-
*/
|
|
2437
|
-
'message'?: string;
|
|
2438
|
-
'kind': JointWaypointsResponseKindEnum;
|
|
2439
|
-
}
|
|
2440
|
-
declare const JointWaypointsResponseKindEnum: {
|
|
2441
|
-
readonly JointWaypointsReceived: "JOINT_WAYPOINTS_RECEIVED";
|
|
2442
|
-
};
|
|
2443
|
-
type JointWaypointsResponseKindEnum = typeof JointWaypointsResponseKindEnum[keyof typeof JointWaypointsResponseKindEnum];
|
|
2652
|
+
type JointWaypointKindEnum = typeof JointWaypointKindEnum[keyof typeof JointWaypointKindEnum];
|
|
2444
2653
|
/**
|
|
2445
2654
|
* A 6-DOF robot with spherical wrist has up to 8 inverse kinematics solutions for a given TCP pose (2^3 branches). Each branch represents one side of a kinematic singularity boundary. The three binary choices are shoulder, elbow, and wrist. > **NOTE** > > `FRONT`/`BACK`, `UP`/`DOWN`, `NO_FLIP`/`FLIP` are conventional > labels for the two sides of each branch. The labels describe the > typical geometric interpretation for common poses, but are not absolute spatial > directions. The labels are consistent within a given solver: The same physical > arm shape maps to the same branch value. The branch values are purely > geometric and describe the same physical configuration regardless of > vendor convention.
|
|
2446
2655
|
*/
|
|
@@ -2502,6 +2711,10 @@ interface KukaConfiguredPose {
|
|
|
2502
2711
|
interface KukaController {
|
|
2503
2712
|
'kind': KukaControllerKindEnum;
|
|
2504
2713
|
'controller_ip': string;
|
|
2714
|
+
/**
|
|
2715
|
+
* The addresses must be ordered as KLI first and RSI second.
|
|
2716
|
+
*/
|
|
2717
|
+
'network_interface'?: ControllerNetworkInterface;
|
|
2505
2718
|
'controller_port': number;
|
|
2506
2719
|
'rsi_server': KukaControllerRsiServer;
|
|
2507
2720
|
/**
|
|
@@ -2622,7 +2835,13 @@ type LicenseStatusEnum = typeof LicenseStatusEnum[keyof typeof LicenseStatusEnum
|
|
|
2622
2835
|
* The upper_limit must be greater then the lower_limit.
|
|
2623
2836
|
*/
|
|
2624
2837
|
interface LimitRange {
|
|
2838
|
+
/**
|
|
2839
|
+
* Lower position limit in rad.
|
|
2840
|
+
*/
|
|
2625
2841
|
'lower_limit'?: number;
|
|
2842
|
+
/**
|
|
2843
|
+
* Upper position limit in rad.
|
|
2844
|
+
*/
|
|
2626
2845
|
'upper_limit'?: number;
|
|
2627
2846
|
}
|
|
2628
2847
|
interface LimitSet {
|
|
@@ -2709,9 +2928,11 @@ interface ListTrajectoriesResponse {
|
|
|
2709
2928
|
}
|
|
2710
2929
|
declare const Manufacturer: {
|
|
2711
2930
|
readonly Abb: "abb";
|
|
2931
|
+
readonly Bostondynamics: "bostondynamics";
|
|
2712
2932
|
readonly Fanuc: "fanuc";
|
|
2713
2933
|
readonly Kuka: "kuka";
|
|
2714
2934
|
readonly Staubli: "staubli";
|
|
2935
|
+
readonly Unitree: "unitree";
|
|
2715
2936
|
readonly Universalrobots: "universalrobots";
|
|
2716
2937
|
readonly Yaskawa: "yaskawa";
|
|
2717
2938
|
};
|
|
@@ -2760,7 +2981,7 @@ interface MergeTrajectoriesSegment {
|
|
|
2760
2981
|
*/
|
|
2761
2982
|
'trajectory': JointTrajectory;
|
|
2762
2983
|
/**
|
|
2763
|
-
* Limits override
|
|
2984
|
+
* 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.
|
|
2764
2985
|
*/
|
|
2765
2986
|
'limits_override'?: LimitsOverride;
|
|
2766
2987
|
/**
|
|
@@ -2881,7 +3102,7 @@ interface ModelError {
|
|
|
2881
3102
|
interface MotionCommand {
|
|
2882
3103
|
'blending'?: MotionCommandBlending;
|
|
2883
3104
|
/**
|
|
2884
|
-
* Limits override
|
|
3105
|
+
* 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.
|
|
2885
3106
|
*/
|
|
2886
3107
|
'limits_override'?: LimitsOverride;
|
|
2887
3108
|
'path': MotionCommandPath;
|
|
@@ -2895,6 +3116,27 @@ type MotionCommandBlending = BlendingAuto | BlendingPosition;
|
|
|
2895
3116
|
* @type MotionCommandPath
|
|
2896
3117
|
*/
|
|
2897
3118
|
type MotionCommandPath = PathCartesianPTP | PathCircle | PathCubicSpline | PathDirectionConstrainedCartesianPTP | PathDirectionConstrainedJointPTP | PathJointPTP | PathLine;
|
|
3119
|
+
/**
|
|
3120
|
+
* Response for motion group configuration lookup.
|
|
3121
|
+
*/
|
|
3122
|
+
interface MotionGroupConfiguration {
|
|
3123
|
+
/**
|
|
3124
|
+
* Name of the robot configuration containing this motion group.
|
|
3125
|
+
*/
|
|
3126
|
+
'robot_configuration': string;
|
|
3127
|
+
/**
|
|
3128
|
+
* Identifies a single motion group model. See [getMotionGroupModels](#/operations/getMotionGroupModels) for supported types.
|
|
3129
|
+
*/
|
|
3130
|
+
'motion_group_model': string;
|
|
3131
|
+
/**
|
|
3132
|
+
* Internal UID of the motion group inside the GCI transcript.
|
|
3133
|
+
*/
|
|
3134
|
+
'motion_group_uid': number;
|
|
3135
|
+
/**
|
|
3136
|
+
* Full GCI transcript (JSON) containing the robot configuration and motion group.
|
|
3137
|
+
*/
|
|
3138
|
+
'content': string;
|
|
3139
|
+
}
|
|
2898
3140
|
/**
|
|
2899
3141
|
* 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].
|
|
2900
3142
|
*/
|
|
@@ -2971,7 +3213,7 @@ interface MotionGroupFromJson {
|
|
|
2971
3213
|
*/
|
|
2972
3214
|
'motion_group': string;
|
|
2973
3215
|
/**
|
|
2974
|
-
*
|
|
3216
|
+
* JSON configuration of the virtual robot controller, can be obtained from the physical controller\'s configuration via [getVirtualControllerConfiguration](#/operations/getVirtualControllerConfiguration).
|
|
2975
3217
|
*/
|
|
2976
3218
|
'json_data': string;
|
|
2977
3219
|
/**
|
|
@@ -2979,7 +3221,7 @@ interface MotionGroupFromJson {
|
|
|
2979
3221
|
*/
|
|
2980
3222
|
'extracted_motion_group_id': string;
|
|
2981
3223
|
/**
|
|
2982
|
-
* Initial joint position of the added motion group. Provides the joint position as a JSON array of float values in radians
|
|
3224
|
+
* 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.
|
|
2983
3225
|
*/
|
|
2984
3226
|
'initial_joint_position'?: string;
|
|
2985
3227
|
}
|
|
@@ -2993,7 +3235,7 @@ interface MotionGroupFromType {
|
|
|
2993
3235
|
*/
|
|
2994
3236
|
'motion_group_model': string;
|
|
2995
3237
|
/**
|
|
2996
|
-
* Initial joint position of the added motion group. Provides the joint position as a JSON array of float values in radians
|
|
3238
|
+
* 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.
|
|
2997
3239
|
*/
|
|
2998
3240
|
'initial_joint_position'?: string;
|
|
2999
3241
|
}
|
|
@@ -3032,6 +3274,19 @@ interface MotionGroupJoints {
|
|
|
3032
3274
|
*/
|
|
3033
3275
|
'torques'?: Array<number>;
|
|
3034
3276
|
}
|
|
3277
|
+
/**
|
|
3278
|
+
* Entry for a motion group with its name and readable name.
|
|
3279
|
+
*/
|
|
3280
|
+
interface MotionGroupModelCatalog {
|
|
3281
|
+
/**
|
|
3282
|
+
* Name of the motion group.
|
|
3283
|
+
*/
|
|
3284
|
+
'motion_group_name': string;
|
|
3285
|
+
/**
|
|
3286
|
+
* Readable name for the motion group.
|
|
3287
|
+
*/
|
|
3288
|
+
'readable_name': string;
|
|
3289
|
+
}
|
|
3035
3290
|
/**
|
|
3036
3291
|
* Metadata about a motion group model.
|
|
3037
3292
|
*/
|
|
@@ -3110,17 +3365,25 @@ interface MotionGroupState {
|
|
|
3110
3365
|
*/
|
|
3111
3366
|
'joint_current'?: Array<number>;
|
|
3112
3367
|
/**
|
|
3113
|
-
* Pose of the flange. Positions are in [mm]. Orientations are in [rad]. The pose is relative to the
|
|
3368
|
+
* 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.
|
|
3114
3369
|
*/
|
|
3115
3370
|
'flange_pose'?: Pose;
|
|
3371
|
+
/**
|
|
3372
|
+
* Cartesian velocity of the flange. The velocity is relative to the response coordinate system specified in the request.
|
|
3373
|
+
*/
|
|
3374
|
+
'flange_velocity'?: CartesianVelocity;
|
|
3116
3375
|
/**
|
|
3117
3376
|
* Unique identifier addressing the active TCP. Might not be returned for positioners as some do not support TCPs, depending on the model.
|
|
3118
3377
|
*/
|
|
3119
3378
|
'tcp'?: string;
|
|
3120
3379
|
/**
|
|
3121
|
-
* Pose of the TCP selected on the robot control panel. Positions are in [mm]. Orientations are in [rad]. The pose is relative to the
|
|
3380
|
+
* 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.
|
|
3122
3381
|
*/
|
|
3123
3382
|
'tcp_pose'?: Pose;
|
|
3383
|
+
/**
|
|
3384
|
+
* Cartesian velocity of the TCP selected on the robot control panel. The velocity is relative to the response coordinate system specified in the request.
|
|
3385
|
+
*/
|
|
3386
|
+
'tcp_velocity'?: CartesianVelocity;
|
|
3124
3387
|
/**
|
|
3125
3388
|
* 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.
|
|
3126
3389
|
*/
|
|
@@ -3286,55 +3549,61 @@ interface NanValueErrorNanValue {
|
|
|
3286
3549
|
*/
|
|
3287
3550
|
'joint_position'?: Array<number>;
|
|
3288
3551
|
}
|
|
3552
|
+
/**
|
|
3553
|
+
* Network attachment method used to expose the interface to workloads.
|
|
3554
|
+
*/
|
|
3555
|
+
declare const NetworkBackend: {
|
|
3556
|
+
readonly Macvlan: "macvlan";
|
|
3557
|
+
readonly Sriov: "sriov";
|
|
3558
|
+
};
|
|
3559
|
+
type NetworkBackend = typeof NetworkBackend[keyof typeof NetworkBackend];
|
|
3289
3560
|
interface NetworkDevice {
|
|
3290
3561
|
/**
|
|
3291
|
-
*
|
|
3562
|
+
* IPv4 address of the discovered device.
|
|
3292
3563
|
*/
|
|
3293
3564
|
'ip': string;
|
|
3294
3565
|
/**
|
|
3295
|
-
*
|
|
3566
|
+
* MAC address of the discovered device.
|
|
3296
3567
|
*/
|
|
3297
3568
|
'mac': string;
|
|
3298
3569
|
/**
|
|
3299
|
-
*
|
|
3570
|
+
* Hardware manufacturer name derived from the MAC address, omitted when unknown.
|
|
3300
3571
|
*/
|
|
3301
3572
|
'vendor'?: string;
|
|
3302
3573
|
}
|
|
3303
3574
|
interface NetworkInterface {
|
|
3304
3575
|
/**
|
|
3305
|
-
*
|
|
3576
|
+
* Host network interface name, e.g., enp0s31f6.
|
|
3306
3577
|
*/
|
|
3307
3578
|
'name': string;
|
|
3308
3579
|
/**
|
|
3309
|
-
*
|
|
3580
|
+
* Stable identifier for this interface. Pass it as the `interface` field in ARP scan request, e.g., wandelbox-abc123-enp3s0.
|
|
3310
3581
|
*/
|
|
3311
|
-
'
|
|
3582
|
+
'interface': string;
|
|
3312
3583
|
/**
|
|
3313
|
-
*
|
|
3584
|
+
* Hostname that exposes this interface.
|
|
3314
3585
|
*/
|
|
3315
|
-
'
|
|
3586
|
+
'node': string;
|
|
3587
|
+
'backend': NetworkBackend;
|
|
3588
|
+
'link': NetworkLinkState;
|
|
3316
3589
|
/**
|
|
3317
|
-
*
|
|
3590
|
+
* IP/CIDR addresses currently assigned to the interface. Omitted when not available.
|
|
3318
3591
|
*/
|
|
3319
|
-
'
|
|
3592
|
+
'addresses'?: Array<string>;
|
|
3320
3593
|
}
|
|
3594
|
+
/**
|
|
3595
|
+
* Link state of the physical interface.
|
|
3596
|
+
*/
|
|
3597
|
+
declare const NetworkLinkState: {
|
|
3598
|
+
readonly Up: "up";
|
|
3599
|
+
readonly Down: "down";
|
|
3600
|
+
};
|
|
3601
|
+
type NetworkLinkState = typeof NetworkLinkState[keyof typeof NetworkLinkState];
|
|
3321
3602
|
interface NetworkState {
|
|
3322
3603
|
/**
|
|
3323
3604
|
* Indicates whether the system is connected to the internet.
|
|
3324
3605
|
*/
|
|
3325
3606
|
'internet_connected': boolean;
|
|
3326
|
-
/**
|
|
3327
|
-
* Type of the active network link (e.g., ethernet, wifi, cellular, vpn, unknown).
|
|
3328
|
-
*/
|
|
3329
|
-
'connection_type'?: NetworkStateConnectionTypeEnum;
|
|
3330
|
-
/**
|
|
3331
|
-
* Received signal strength in dBm for wireless interfaces; negative values indicate weaker signals.
|
|
3332
|
-
*/
|
|
3333
|
-
'signal_strength'?: number;
|
|
3334
|
-
/**
|
|
3335
|
-
* Normalized link quality metric from 0 (poor) to 1 (excellent) when provided by the interface.
|
|
3336
|
-
*/
|
|
3337
|
-
'link_quality'?: number;
|
|
3338
3607
|
/**
|
|
3339
3608
|
* Round-trip latency to the probe endpoint measured in milliseconds.
|
|
3340
3609
|
*/
|
|
@@ -3344,14 +3613,6 @@ interface NetworkState {
|
|
|
3344
3613
|
*/
|
|
3345
3614
|
'bandwidth_mbps'?: number;
|
|
3346
3615
|
}
|
|
3347
|
-
declare const NetworkStateConnectionTypeEnum: {
|
|
3348
|
-
readonly Ethernet: "ethernet";
|
|
3349
|
-
readonly Wifi: "wifi";
|
|
3350
|
-
readonly Cellular: "cellular";
|
|
3351
|
-
readonly Vpn: "vpn";
|
|
3352
|
-
readonly Unknown: "unknown";
|
|
3353
|
-
};
|
|
3354
|
-
type NetworkStateConnectionTypeEnum = typeof NetworkStateConnectionTypeEnum[keyof typeof NetworkStateConnectionTypeEnum];
|
|
3355
3616
|
/**
|
|
3356
3617
|
* Controllers have two operating modes: AUTOMATIC and MANUAL. MANUAL mode is mainly used for teaching a robot application. To ensure safe operation the velocity of the robot is limited to 250 mm/s. Running the finished application is done in AUTOMATIC operating mode without the limited velocity of the MANUAL mode.
|
|
3357
3618
|
*/
|
|
@@ -3505,6 +3766,33 @@ declare const PathLinePathDefinitionNameEnum: {
|
|
|
3505
3766
|
readonly PathLine: "PathLine";
|
|
3506
3767
|
};
|
|
3507
3768
|
type PathLinePathDefinitionNameEnum = typeof PathLinePathDefinitionNameEnum[keyof typeof PathLinePathDefinitionNameEnum];
|
|
3769
|
+
/**
|
|
3770
|
+
* Request to pause executing action chunks. If successful, `execute` jogging state in [MotionGroupState](MotionGroupState.yaml) is set to `PAUSED_BY_USER`.
|
|
3771
|
+
*/
|
|
3772
|
+
interface PauseActionChunksRequest {
|
|
3773
|
+
/**
|
|
3774
|
+
* Type specifier for server, set automatically.
|
|
3775
|
+
*/
|
|
3776
|
+
'message_type': PauseActionChunksRequestMessageTypeEnum;
|
|
3777
|
+
}
|
|
3778
|
+
declare const PauseActionChunksRequestMessageTypeEnum: {
|
|
3779
|
+
readonly PauseActionChunksRequest: "PauseActionChunksRequest";
|
|
3780
|
+
};
|
|
3781
|
+
type PauseActionChunksRequestMessageTypeEnum = typeof PauseActionChunksRequestMessageTypeEnum[keyof typeof PauseActionChunksRequestMessageTypeEnum];
|
|
3782
|
+
/**
|
|
3783
|
+
* Acknowledgment to a PauseActionChunksRequest.
|
|
3784
|
+
*/
|
|
3785
|
+
interface PauseActionChunksResponse {
|
|
3786
|
+
/**
|
|
3787
|
+
* Error message in case of invalid PauseActionChunksRequest.
|
|
3788
|
+
*/
|
|
3789
|
+
'message'?: string;
|
|
3790
|
+
'kind': PauseActionChunksResponseKindEnum;
|
|
3791
|
+
}
|
|
3792
|
+
declare const PauseActionChunksResponseKindEnum: {
|
|
3793
|
+
readonly PauseReceived: "PAUSE_RECEIVED";
|
|
3794
|
+
};
|
|
3795
|
+
type PauseActionChunksResponseKindEnum = typeof PauseActionChunksResponseKindEnum[keyof typeof PauseActionChunksResponseKindEnum];
|
|
3508
3796
|
/**
|
|
3509
3797
|
* Request to pause jogging. If successful, `execute` jogging state in [MotionGroupState](MotionGroupState.yaml) is set to `PAUSED_BY_USER`.
|
|
3510
3798
|
*/
|
|
@@ -3618,6 +3906,10 @@ interface PlanCollisionFreeRequest {
|
|
|
3618
3906
|
*/
|
|
3619
3907
|
interface PlanCollisionFreeResponse {
|
|
3620
3908
|
'response': PlanCollisionFreeResponseResponse;
|
|
3909
|
+
/**
|
|
3910
|
+
* The motion commands that produced the trajectory.
|
|
3911
|
+
*/
|
|
3912
|
+
'motion_commands'?: Array<MotionCommand>;
|
|
3621
3913
|
}
|
|
3622
3914
|
/**
|
|
3623
3915
|
* @type PlanCollisionFreeResponseResponse
|
|
@@ -3648,6 +3940,10 @@ interface PlanTrajectoryRequest {
|
|
|
3648
3940
|
* List of motion commands. A command consists of a path definition (line, circle, joint_ptp, cartesian_ptp, cubic_spline), blending, and limits override.
|
|
3649
3941
|
*/
|
|
3650
3942
|
'motion_commands': Array<MotionCommand>;
|
|
3943
|
+
/**
|
|
3944
|
+
* <!-- theme: danger --> > > **Experimental** Strategy used to deal with wrist singularities along a cartesian path.
|
|
3945
|
+
*/
|
|
3946
|
+
'singularity_handling'?: SingularityHandling;
|
|
3651
3947
|
}
|
|
3652
3948
|
interface PlanTrajectoryResponse {
|
|
3653
3949
|
'response': PlanTrajectoryResponseResponse;
|
|
@@ -3725,49 +4021,22 @@ interface Pose {
|
|
|
3725
4021
|
'orientation'?: Array<number>;
|
|
3726
4022
|
}
|
|
3727
4023
|
/**
|
|
3728
|
-
* A waypoint
|
|
4024
|
+
* A pose waypoint for action chunk streaming. > **NOTE** > > This type is experimental and its behavior may change in future releases.
|
|
3729
4025
|
*/
|
|
3730
4026
|
interface PoseWaypoint {
|
|
3731
4027
|
/**
|
|
3732
|
-
*
|
|
4028
|
+
* Type specifier for server, set automatically.
|
|
3733
4029
|
*/
|
|
3734
|
-
'
|
|
4030
|
+
'kind': PoseWaypointKindEnum;
|
|
3735
4031
|
/**
|
|
3736
4032
|
* Cartesian pose for this waypoint.
|
|
3737
4033
|
*/
|
|
3738
4034
|
'pose': Pose;
|
|
3739
4035
|
}
|
|
3740
|
-
|
|
3741
|
-
|
|
3742
|
-
*/
|
|
3743
|
-
interface PoseWaypointsRequest {
|
|
3744
|
-
/**
|
|
3745
|
-
* Type specifier for server, set automatically.
|
|
3746
|
-
*/
|
|
3747
|
-
'message_type': PoseWaypointsRequestMessageTypeEnum;
|
|
3748
|
-
/**
|
|
3749
|
-
* List of pose waypoints.
|
|
3750
|
-
*/
|
|
3751
|
-
'waypoints': Array<PoseWaypoint>;
|
|
3752
|
-
}
|
|
3753
|
-
declare const PoseWaypointsRequestMessageTypeEnum: {
|
|
3754
|
-
readonly PoseWaypointsRequest: "PoseWaypointsRequest";
|
|
3755
|
-
};
|
|
3756
|
-
type PoseWaypointsRequestMessageTypeEnum = typeof PoseWaypointsRequestMessageTypeEnum[keyof typeof PoseWaypointsRequestMessageTypeEnum];
|
|
3757
|
-
/**
|
|
3758
|
-
* Acknowledgment to a PoseWaypointsRequest.
|
|
3759
|
-
*/
|
|
3760
|
-
interface PoseWaypointsResponse {
|
|
3761
|
-
/**
|
|
3762
|
-
* Error message in case of invalid PoseWaypointsRequest.
|
|
3763
|
-
*/
|
|
3764
|
-
'message'?: string;
|
|
3765
|
-
'kind': PoseWaypointsResponseKindEnum;
|
|
3766
|
-
}
|
|
3767
|
-
declare const PoseWaypointsResponseKindEnum: {
|
|
3768
|
-
readonly PoseWaypointsReceived: "POSE_WAYPOINTS_RECEIVED";
|
|
4036
|
+
declare const PoseWaypointKindEnum: {
|
|
4037
|
+
readonly Pose: "POSE";
|
|
3769
4038
|
};
|
|
3770
|
-
type
|
|
4039
|
+
type PoseWaypointKindEnum = typeof PoseWaypointKindEnum[keyof typeof PoseWaypointKindEnum];
|
|
3771
4040
|
interface ProfinetDescription {
|
|
3772
4041
|
/**
|
|
3773
4042
|
* The vendor identifier of the PROFINET device, identifying the manufacturer.
|
|
@@ -3795,7 +4064,7 @@ interface ProfinetIO {
|
|
|
3795
4064
|
*/
|
|
3796
4065
|
'direction': ProfinetIODirection;
|
|
3797
4066
|
/**
|
|
3798
|
-
* 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
|
|
4067
|
+
* 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
|
|
3799
4068
|
*/
|
|
3800
4069
|
'byte_address': number;
|
|
3801
4070
|
/**
|
|
@@ -3818,7 +4087,7 @@ interface ProfinetIOData {
|
|
|
3818
4087
|
*/
|
|
3819
4088
|
'direction': ProfinetIODirection;
|
|
3820
4089
|
/**
|
|
3821
|
-
* 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
|
|
4090
|
+
* 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
|
|
3822
4091
|
*/
|
|
3823
4092
|
'byte_address': number;
|
|
3824
4093
|
/**
|
|
@@ -3857,13 +4126,19 @@ interface ProfinetInputOutputConfig {
|
|
|
3857
4126
|
*/
|
|
3858
4127
|
'config': string;
|
|
3859
4128
|
/**
|
|
3860
|
-
*
|
|
4129
|
+
* 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.
|
|
3861
4130
|
*/
|
|
3862
|
-
'
|
|
4131
|
+
'offsets'?: Array<ProfinetSlotOffset>;
|
|
4132
|
+
/**
|
|
4133
|
+
* 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.
|
|
4134
|
+
* @deprecated
|
|
4135
|
+
*/
|
|
4136
|
+
'input_offset'?: number;
|
|
3863
4137
|
/**
|
|
3864
|
-
* Offset in bytes for the
|
|
4138
|
+
* 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.
|
|
4139
|
+
* @deprecated
|
|
3865
4140
|
*/
|
|
3866
|
-
'output_offset'
|
|
4141
|
+
'output_offset'?: number;
|
|
3867
4142
|
}
|
|
3868
4143
|
/**
|
|
3869
4144
|
* 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).
|
|
@@ -3882,6 +4157,20 @@ interface ProfinetSlotDescription {
|
|
|
3882
4157
|
*/
|
|
3883
4158
|
'subslots': Array<ProfinetSubSlotDescription>;
|
|
3884
4159
|
}
|
|
4160
|
+
interface ProfinetSlotOffset {
|
|
4161
|
+
/**
|
|
4162
|
+
* 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.
|
|
4163
|
+
*/
|
|
4164
|
+
'slot': number;
|
|
4165
|
+
/**
|
|
4166
|
+
* 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.
|
|
4167
|
+
*/
|
|
4168
|
+
'input_offset': number;
|
|
4169
|
+
/**
|
|
4170
|
+
* 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.
|
|
4171
|
+
*/
|
|
4172
|
+
'output_offset': number;
|
|
4173
|
+
}
|
|
3885
4174
|
interface ProfinetSubSlotDescription {
|
|
3886
4175
|
/**
|
|
3887
4176
|
* The number/index of the PROFINET subslot.
|
|
@@ -4135,7 +4424,7 @@ interface RobotController {
|
|
|
4135
4424
|
/**
|
|
4136
4425
|
* @type RobotControllerConfiguration
|
|
4137
4426
|
*/
|
|
4138
|
-
type RobotControllerConfiguration = AbbController | FanucController | KukaController | UniversalrobotsController | VirtualController | YaskawaController;
|
|
4427
|
+
type RobotControllerConfiguration = AbbController | BostondynamicsController | FanucController | KukaController | StaubliController | UnitreeController | UniversalrobotsController | VirtualController | YaskawaController;
|
|
4139
4428
|
/**
|
|
4140
4429
|
* Information to generate all robot controller configurations that match a given ARP scan result.
|
|
4141
4430
|
*/
|
|
@@ -4531,6 +4820,15 @@ declare const SettableRobotSystemMode: {
|
|
|
4531
4820
|
readonly ModeControl: "MODE_CONTROL";
|
|
4532
4821
|
};
|
|
4533
4822
|
type SettableRobotSystemMode = typeof SettableRobotSystemMode[keyof typeof SettableRobotSystemMode];
|
|
4823
|
+
/**
|
|
4824
|
+
* <!-- 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.
|
|
4825
|
+
*/
|
|
4826
|
+
declare const SingularityHandling: {
|
|
4827
|
+
readonly None: "NONE";
|
|
4828
|
+
readonly PalletizingWrist: "PALLETIZING_WRIST";
|
|
4829
|
+
readonly AdaptiveSampling: "ADAPTIVE_SAMPLING";
|
|
4830
|
+
};
|
|
4831
|
+
type SingularityHandling = typeof SingularityHandling[keyof typeof SingularityHandling];
|
|
4534
4832
|
declare const SingularityTypeEnum: {
|
|
4535
4833
|
readonly Wrist: "WRIST";
|
|
4536
4834
|
readonly Elbow: "ELBOW";
|
|
@@ -4692,6 +4990,55 @@ interface StartOnIO {
|
|
|
4692
4990
|
'comparator': Comparator;
|
|
4693
4991
|
'io_origin': IOOrigin;
|
|
4694
4992
|
}
|
|
4993
|
+
/**
|
|
4994
|
+
* The configuration of a physical STÄUBLI robot controller has to contain an IP address. Additionally, an RTI server configuration has to be specified in order to control the robot. Deploying the server is a functionality of this API.
|
|
4995
|
+
*/
|
|
4996
|
+
interface StaubliController {
|
|
4997
|
+
'kind': StaubliControllerKindEnum;
|
|
4998
|
+
'controller_ip': string;
|
|
4999
|
+
'network_interface'?: ControllerNetworkInterface;
|
|
5000
|
+
'controller_port': number;
|
|
5001
|
+
'command_port': number;
|
|
5002
|
+
'rti_server': StaubliControllerRtiServer;
|
|
5003
|
+
}
|
|
5004
|
+
declare const StaubliControllerKindEnum: {
|
|
5005
|
+
readonly StaubliController: "StaubliController";
|
|
5006
|
+
};
|
|
5007
|
+
type StaubliControllerKindEnum = typeof StaubliControllerKindEnum[keyof typeof StaubliControllerKindEnum];
|
|
5008
|
+
/**
|
|
5009
|
+
* The RTI server runs inside of the cell.
|
|
5010
|
+
*/
|
|
5011
|
+
interface StaubliControllerRtiServer {
|
|
5012
|
+
'ip': string;
|
|
5013
|
+
'port': number;
|
|
5014
|
+
}
|
|
5015
|
+
/**
|
|
5016
|
+
* Request to stop executing action chunks. If successful, `execute` jogging state in [MotionGroupState](MotionGroupState.yaml) is set to `PAUSED_BY_USER`.
|
|
5017
|
+
*/
|
|
5018
|
+
interface StopActionChunksRequest {
|
|
5019
|
+
/**
|
|
5020
|
+
* Type specifier for server, set automatically.
|
|
5021
|
+
*/
|
|
5022
|
+
'message_type': StopActionChunksRequestMessageTypeEnum;
|
|
5023
|
+
}
|
|
5024
|
+
declare const StopActionChunksRequestMessageTypeEnum: {
|
|
5025
|
+
readonly StopActionChunksRequest: "StopActionChunksRequest";
|
|
5026
|
+
};
|
|
5027
|
+
type StopActionChunksRequestMessageTypeEnum = typeof StopActionChunksRequestMessageTypeEnum[keyof typeof StopActionChunksRequestMessageTypeEnum];
|
|
5028
|
+
/**
|
|
5029
|
+
* Acknowledgment to a StopActionChunksRequest.
|
|
5030
|
+
*/
|
|
5031
|
+
interface StopActionChunksResponse {
|
|
5032
|
+
/**
|
|
5033
|
+
* Error message in case of invalid StopActionChunksRequest.
|
|
5034
|
+
*/
|
|
5035
|
+
'message'?: string;
|
|
5036
|
+
'kind': StopActionChunksResponseKindEnum;
|
|
5037
|
+
}
|
|
5038
|
+
declare const StopActionChunksResponseKindEnum: {
|
|
5039
|
+
readonly StopReceived: "STOP_RECEIVED";
|
|
5040
|
+
};
|
|
5041
|
+
type StopActionChunksResponseKindEnum = typeof StopActionChunksResponseKindEnum[keyof typeof StopActionChunksResponseKindEnum];
|
|
4695
5042
|
/**
|
|
4696
5043
|
* A reference to an object stored in the storage service. The key is resolved against the appropriate S3 path prefix depending on context (e.g. collision/setups/, collision/colliders/).
|
|
4697
5044
|
*/
|
|
@@ -4972,17 +5319,82 @@ declare const UnitType: {
|
|
|
4972
5319
|
readonly UnitMeter: "UNIT_METER";
|
|
4973
5320
|
};
|
|
4974
5321
|
type UnitType = typeof UnitType[keyof typeof UnitType];
|
|
5322
|
+
/**
|
|
5323
|
+
* 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.
|
|
5324
|
+
*/
|
|
5325
|
+
interface UnitreeController {
|
|
5326
|
+
'kind': UnitreeControllerKindEnum;
|
|
5327
|
+
/**
|
|
5328
|
+
* The IP address of the Unitree robot.
|
|
5329
|
+
*/
|
|
5330
|
+
'controller_ip': string;
|
|
5331
|
+
/**
|
|
5332
|
+
* The Unitree robot model type.
|
|
5333
|
+
*/
|
|
5334
|
+
'robot_type': UnitreeControllerRobotTypeEnum;
|
|
5335
|
+
/**
|
|
5336
|
+
* The network interface used for DDS discovery.
|
|
5337
|
+
*/
|
|
5338
|
+
'network_interface'?: string;
|
|
5339
|
+
/**
|
|
5340
|
+
* Enable DDS unicast mode for environments where multicast is unavailable.
|
|
5341
|
+
*/
|
|
5342
|
+
'dds_unicast_mode'?: boolean;
|
|
5343
|
+
/**
|
|
5344
|
+
* Enable exclusive lease-based control of the robot.
|
|
5345
|
+
*/
|
|
5346
|
+
'enable_lease'?: boolean;
|
|
5347
|
+
}
|
|
5348
|
+
declare const UnitreeControllerKindEnum: {
|
|
5349
|
+
readonly UnitreeController: "UnitreeController";
|
|
5350
|
+
};
|
|
5351
|
+
type UnitreeControllerKindEnum = typeof UnitreeControllerKindEnum[keyof typeof UnitreeControllerKindEnum];
|
|
5352
|
+
declare const UnitreeControllerRobotTypeEnum: {
|
|
5353
|
+
readonly Go2: "go2";
|
|
5354
|
+
readonly G1: "g1";
|
|
5355
|
+
readonly B2: "b2";
|
|
5356
|
+
readonly H1: "h1";
|
|
5357
|
+
};
|
|
5358
|
+
type UnitreeControllerRobotTypeEnum = typeof UnitreeControllerRobotTypeEnum[keyof typeof UnitreeControllerRobotTypeEnum];
|
|
4975
5359
|
/**
|
|
4976
5360
|
* The configuration of a physical Universal Robots controller has to contain IP address of the controller.
|
|
4977
5361
|
*/
|
|
4978
5362
|
interface UniversalrobotsController {
|
|
4979
5363
|
'kind': UniversalrobotsControllerKindEnum;
|
|
4980
5364
|
'controller_ip': string;
|
|
5365
|
+
'network_interface'?: ControllerNetworkInterface;
|
|
4981
5366
|
}
|
|
4982
5367
|
declare const UniversalrobotsControllerKindEnum: {
|
|
4983
5368
|
readonly UniversalrobotsController: "UniversalrobotsController";
|
|
4984
5369
|
};
|
|
4985
5370
|
type UniversalrobotsControllerKindEnum = typeof UniversalrobotsControllerKindEnum[keyof typeof UniversalrobotsControllerKindEnum];
|
|
5371
|
+
/**
|
|
5372
|
+
* Request to unpause executing action chunks. If successful, `execute` jogging state in [MotionGroupState](MotionGroupState.yaml) is set to `RUNNING`.
|
|
5373
|
+
*/
|
|
5374
|
+
interface UnpauseActionChunksRequest {
|
|
5375
|
+
/**
|
|
5376
|
+
* Type specifier for server, set automatically.
|
|
5377
|
+
*/
|
|
5378
|
+
'message_type': UnpauseActionChunksRequestMessageTypeEnum;
|
|
5379
|
+
}
|
|
5380
|
+
declare const UnpauseActionChunksRequestMessageTypeEnum: {
|
|
5381
|
+
readonly UnpauseActionChunksRequest: "UnpauseActionChunksRequest";
|
|
5382
|
+
};
|
|
5383
|
+
type UnpauseActionChunksRequestMessageTypeEnum = typeof UnpauseActionChunksRequestMessageTypeEnum[keyof typeof UnpauseActionChunksRequestMessageTypeEnum];
|
|
5384
|
+
/**
|
|
5385
|
+
* Acknowledgment to an UnpauseActionChunksRequest.
|
|
5386
|
+
*/
|
|
5387
|
+
interface UnpauseActionChunksResponse {
|
|
5388
|
+
/**
|
|
5389
|
+
* Error message in case of invalid UnpauseActionChunksRequest.
|
|
5390
|
+
*/
|
|
5391
|
+
'message'?: string;
|
|
5392
|
+
'kind': UnpauseActionChunksResponseKindEnum;
|
|
5393
|
+
}
|
|
5394
|
+
declare const UnpauseActionChunksResponseKindEnum: {
|
|
5395
|
+
readonly UnpauseReceived: "UNPAUSE_RECEIVED";
|
|
5396
|
+
};
|
|
5397
|
+
type UnpauseActionChunksResponseKindEnum = typeof UnpauseActionChunksResponseKindEnum[keyof typeof UnpauseActionChunksResponseKindEnum];
|
|
4986
5398
|
/**
|
|
4987
5399
|
* Update a single cell\'s Foundation chart version based on the indicated release channel.
|
|
4988
5400
|
*/
|
|
@@ -5051,9 +5463,13 @@ interface VirtualController {
|
|
|
5051
5463
|
*/
|
|
5052
5464
|
'json'?: string;
|
|
5053
5465
|
/**
|
|
5054
|
-
* 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
|
|
5466
|
+
* 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.
|
|
5055
5467
|
*/
|
|
5056
5468
|
'initial_joint_position'?: string;
|
|
5469
|
+
/**
|
|
5470
|
+
* 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
|
|
5471
|
+
*/
|
|
5472
|
+
'motion_groups'?: Array<AddVirtualControllerMotionGroupRequest>;
|
|
5057
5473
|
}
|
|
5058
5474
|
declare const VirtualControllerKindEnum: {
|
|
5059
5475
|
readonly VirtualController: "VirtualController";
|
|
@@ -5079,12 +5495,35 @@ interface WaitForIOEventRequest {
|
|
|
5079
5495
|
*/
|
|
5080
5496
|
'comparator': Comparator;
|
|
5081
5497
|
}
|
|
5498
|
+
/**
|
|
5499
|
+
* A waypoint for action chunk streaming. > **NOTE** > > This type is experimental and its behavior may change in future releases.
|
|
5500
|
+
*/
|
|
5501
|
+
interface Waypoint {
|
|
5502
|
+
/**
|
|
5503
|
+
* Exact timestamp [ms] at which the waypoint should be reached, relative to the start of the session.
|
|
5504
|
+
*/
|
|
5505
|
+
'timestamp': number;
|
|
5506
|
+
/**
|
|
5507
|
+
* Coordinates for this waypoint.
|
|
5508
|
+
*/
|
|
5509
|
+
'waypoint': WaypointCoordinates;
|
|
5510
|
+
}
|
|
5511
|
+
/**
|
|
5512
|
+
* @type WaypointCoordinates
|
|
5513
|
+
* Coordinates for an action chunk streaming waypoint. > **NOTE** > > This type is experimental and its behavior may change in future releases.
|
|
5514
|
+
*/
|
|
5515
|
+
type WaypointCoordinates = {
|
|
5516
|
+
kind: 'JOINTS';
|
|
5517
|
+
} & JointWaypoint | {
|
|
5518
|
+
kind: 'POSE';
|
|
5519
|
+
} & PoseWaypoint;
|
|
5082
5520
|
/**
|
|
5083
5521
|
* The configuration of a physical Yaskawa robot controller has to contain IP address of the controller.
|
|
5084
5522
|
*/
|
|
5085
5523
|
interface YaskawaController {
|
|
5086
5524
|
'kind': YaskawaControllerKindEnum;
|
|
5087
5525
|
'controller_ip': string;
|
|
5526
|
+
'network_interface'?: ControllerNetworkInterface;
|
|
5088
5527
|
}
|
|
5089
5528
|
declare const YaskawaControllerKindEnum: {
|
|
5090
5529
|
readonly YaskawaController: "YaskawaController";
|
|
@@ -5117,6 +5556,66 @@ interface ZodValidationErrorErrorDetailsInner {
|
|
|
5117
5556
|
* @type ZodValidationErrorErrorDetailsInnerPathInner
|
|
5118
5557
|
*/
|
|
5119
5558
|
type ZodValidationErrorErrorDetailsInnerPathInner = number | string;
|
|
5559
|
+
/**
|
|
5560
|
+
* ActionChunkStreamingApi - axios parameter creator
|
|
5561
|
+
*/
|
|
5562
|
+
declare const ActionChunkStreamingApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
5563
|
+
/**
|
|
5564
|
+
* **Required permissions:** `can_operate_controllers` - Operate and monitor robot controllers ___ <!-- theme: danger --> > **Experimental** > > This endpoint is experimental and its behavior may change in future releases. > Websocket endpoint Provides action chunk control for a motion group. An action chunk is a queue of timed waypoints that the robot moves through by best effort. This can be used for realtime action chunk streaming, e.g., from a Vision-Language-Action (VLA) model. ### Preconditions The motion group is not moved by any other endpoint. ### Requests #### 1. Send `InitializeActionChunksRequest` to configure the action chunk. - Sets the robot controller mode to control mode. - Claims the motion group. For robotic arms, TCP is required to ensure that limits, including TCP limits, are respected. #### 2. Send `ActionChunk`s to stream waypoints. - The first message starts an internal clock. - Each waypoint carries a timestamp relative to that clock for when it should be reached. - Existing waypoints in the queue that are older than the first new timestamp are removed. - The current session timestamp is reported in `execute.details.jogger_session_timestamp_ms` of the [streamRobotControllerState](#/operations/streamRobotControllerState) endpoint. #### 3. Stop the motion - Send `PauseActionChunksRequest` to stop the motion. ### Responses - Each request is acknowledged with a corresponding response: - `InitializeActionChunksResponse` after `InitializeActionChunksRequest` - `ActionChunkResponse` after `ActionChunkRequest` - `PauseActionChunksResponse` after `PauseActionChunksRequest` The responses confirm that the requests were received. They do not signal that the operation was successful; check the [motion group state](#/operations/streamMotionGroupState) for that. - `MovementErrorResponse` with error details is sent in case of an unexpected error, e.g., controller disconnects during moving. ### Tips and Tricks - Ensure that the websocket connection remains open until the action chunk motion is stopped to avoid unexpected stops. ### Robot States - The robot controller state is reported in the [streamRobotControllerState](#/operations/streamRobotControllerState) as JOGGING. - The meaning of the states is: - `RUNNING`: The robot is moving through the waypoints. The clock (`execute.details.jogger_session_timestamp_ms`) is running. - `PAUSED_BY_USER`: The robot is braking or in standstill due to a user request. The clock IS paused. - `PAUSED_NEAR_JOINT_LIMIT`: The robot is braking due to a joint limit. The clock is NOT paused. - `PAUSED_NEAR_COLLISION`: The robot is braking due to a collision. The clock is NOT paused. - `PAUSED_NEAR_SINGULARITY`: The robot is braking due to a singularity. The clock is NOT paused. - `PAUSED_NEAR_WORKSPACE_BOUNDARY`: The robot is braking due to a workspace boundary. The clock is NOT paused.
|
|
5565
|
+
* @summary Execute Action Chunks
|
|
5566
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
5567
|
+
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
5568
|
+
* @param {ExecuteActionChunksRequest} executeActionChunksRequest
|
|
5569
|
+
* @param {*} [options] Override http request option.
|
|
5570
|
+
* @throws {RequiredError}
|
|
5571
|
+
*/
|
|
5572
|
+
executeActionChunks: (cell: string, controller: string, executeActionChunksRequest: ExecuteActionChunksRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
5573
|
+
};
|
|
5574
|
+
/**
|
|
5575
|
+
* ActionChunkStreamingApi - functional programming interface
|
|
5576
|
+
*/
|
|
5577
|
+
declare const ActionChunkStreamingApiFp: (configuration?: Configuration) => {
|
|
5578
|
+
/**
|
|
5579
|
+
* **Required permissions:** `can_operate_controllers` - Operate and monitor robot controllers ___ <!-- theme: danger --> > **Experimental** > > This endpoint is experimental and its behavior may change in future releases. > Websocket endpoint Provides action chunk control for a motion group. An action chunk is a queue of timed waypoints that the robot moves through by best effort. This can be used for realtime action chunk streaming, e.g., from a Vision-Language-Action (VLA) model. ### Preconditions The motion group is not moved by any other endpoint. ### Requests #### 1. Send `InitializeActionChunksRequest` to configure the action chunk. - Sets the robot controller mode to control mode. - Claims the motion group. For robotic arms, TCP is required to ensure that limits, including TCP limits, are respected. #### 2. Send `ActionChunk`s to stream waypoints. - The first message starts an internal clock. - Each waypoint carries a timestamp relative to that clock for when it should be reached. - Existing waypoints in the queue that are older than the first new timestamp are removed. - The current session timestamp is reported in `execute.details.jogger_session_timestamp_ms` of the [streamRobotControllerState](#/operations/streamRobotControllerState) endpoint. #### 3. Stop the motion - Send `PauseActionChunksRequest` to stop the motion. ### Responses - Each request is acknowledged with a corresponding response: - `InitializeActionChunksResponse` after `InitializeActionChunksRequest` - `ActionChunkResponse` after `ActionChunkRequest` - `PauseActionChunksResponse` after `PauseActionChunksRequest` The responses confirm that the requests were received. They do not signal that the operation was successful; check the [motion group state](#/operations/streamMotionGroupState) for that. - `MovementErrorResponse` with error details is sent in case of an unexpected error, e.g., controller disconnects during moving. ### Tips and Tricks - Ensure that the websocket connection remains open until the action chunk motion is stopped to avoid unexpected stops. ### Robot States - The robot controller state is reported in the [streamRobotControllerState](#/operations/streamRobotControllerState) as JOGGING. - The meaning of the states is: - `RUNNING`: The robot is moving through the waypoints. The clock (`execute.details.jogger_session_timestamp_ms`) is running. - `PAUSED_BY_USER`: The robot is braking or in standstill due to a user request. The clock IS paused. - `PAUSED_NEAR_JOINT_LIMIT`: The robot is braking due to a joint limit. The clock is NOT paused. - `PAUSED_NEAR_COLLISION`: The robot is braking due to a collision. The clock is NOT paused. - `PAUSED_NEAR_SINGULARITY`: The robot is braking due to a singularity. The clock is NOT paused. - `PAUSED_NEAR_WORKSPACE_BOUNDARY`: The robot is braking due to a workspace boundary. The clock is NOT paused.
|
|
5580
|
+
* @summary Execute Action Chunks
|
|
5581
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
5582
|
+
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
5583
|
+
* @param {ExecuteActionChunksRequest} executeActionChunksRequest
|
|
5584
|
+
* @param {*} [options] Override http request option.
|
|
5585
|
+
* @throws {RequiredError}
|
|
5586
|
+
*/
|
|
5587
|
+
executeActionChunks(cell: string, controller: string, executeActionChunksRequest: ExecuteActionChunksRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ExecuteActionChunksResponse>>;
|
|
5588
|
+
};
|
|
5589
|
+
/**
|
|
5590
|
+
* ActionChunkStreamingApi - factory interface
|
|
5591
|
+
*/
|
|
5592
|
+
declare const ActionChunkStreamingApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
5593
|
+
/**
|
|
5594
|
+
* **Required permissions:** `can_operate_controllers` - Operate and monitor robot controllers ___ <!-- theme: danger --> > **Experimental** > > This endpoint is experimental and its behavior may change in future releases. > Websocket endpoint Provides action chunk control for a motion group. An action chunk is a queue of timed waypoints that the robot moves through by best effort. This can be used for realtime action chunk streaming, e.g., from a Vision-Language-Action (VLA) model. ### Preconditions The motion group is not moved by any other endpoint. ### Requests #### 1. Send `InitializeActionChunksRequest` to configure the action chunk. - Sets the robot controller mode to control mode. - Claims the motion group. For robotic arms, TCP is required to ensure that limits, including TCP limits, are respected. #### 2. Send `ActionChunk`s to stream waypoints. - The first message starts an internal clock. - Each waypoint carries a timestamp relative to that clock for when it should be reached. - Existing waypoints in the queue that are older than the first new timestamp are removed. - The current session timestamp is reported in `execute.details.jogger_session_timestamp_ms` of the [streamRobotControllerState](#/operations/streamRobotControllerState) endpoint. #### 3. Stop the motion - Send `PauseActionChunksRequest` to stop the motion. ### Responses - Each request is acknowledged with a corresponding response: - `InitializeActionChunksResponse` after `InitializeActionChunksRequest` - `ActionChunkResponse` after `ActionChunkRequest` - `PauseActionChunksResponse` after `PauseActionChunksRequest` The responses confirm that the requests were received. They do not signal that the operation was successful; check the [motion group state](#/operations/streamMotionGroupState) for that. - `MovementErrorResponse` with error details is sent in case of an unexpected error, e.g., controller disconnects during moving. ### Tips and Tricks - Ensure that the websocket connection remains open until the action chunk motion is stopped to avoid unexpected stops. ### Robot States - The robot controller state is reported in the [streamRobotControllerState](#/operations/streamRobotControllerState) as JOGGING. - The meaning of the states is: - `RUNNING`: The robot is moving through the waypoints. The clock (`execute.details.jogger_session_timestamp_ms`) is running. - `PAUSED_BY_USER`: The robot is braking or in standstill due to a user request. The clock IS paused. - `PAUSED_NEAR_JOINT_LIMIT`: The robot is braking due to a joint limit. The clock is NOT paused. - `PAUSED_NEAR_COLLISION`: The robot is braking due to a collision. The clock is NOT paused. - `PAUSED_NEAR_SINGULARITY`: The robot is braking due to a singularity. The clock is NOT paused. - `PAUSED_NEAR_WORKSPACE_BOUNDARY`: The robot is braking due to a workspace boundary. The clock is NOT paused.
|
|
5595
|
+
* @summary Execute Action Chunks
|
|
5596
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
5597
|
+
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
5598
|
+
* @param {ExecuteActionChunksRequest} executeActionChunksRequest
|
|
5599
|
+
* @param {*} [options] Override http request option.
|
|
5600
|
+
* @throws {RequiredError}
|
|
5601
|
+
*/
|
|
5602
|
+
executeActionChunks(cell: string, controller: string, executeActionChunksRequest: ExecuteActionChunksRequest, options?: RawAxiosRequestConfig): AxiosPromise<ExecuteActionChunksResponse>;
|
|
5603
|
+
};
|
|
5604
|
+
/**
|
|
5605
|
+
* ActionChunkStreamingApi - object-oriented interface
|
|
5606
|
+
*/
|
|
5607
|
+
declare class ActionChunkStreamingApi extends BaseAPI {
|
|
5608
|
+
/**
|
|
5609
|
+
* **Required permissions:** `can_operate_controllers` - Operate and monitor robot controllers ___ <!-- theme: danger --> > **Experimental** > > This endpoint is experimental and its behavior may change in future releases. > Websocket endpoint Provides action chunk control for a motion group. An action chunk is a queue of timed waypoints that the robot moves through by best effort. This can be used for realtime action chunk streaming, e.g., from a Vision-Language-Action (VLA) model. ### Preconditions The motion group is not moved by any other endpoint. ### Requests #### 1. Send `InitializeActionChunksRequest` to configure the action chunk. - Sets the robot controller mode to control mode. - Claims the motion group. For robotic arms, TCP is required to ensure that limits, including TCP limits, are respected. #### 2. Send `ActionChunk`s to stream waypoints. - The first message starts an internal clock. - Each waypoint carries a timestamp relative to that clock for when it should be reached. - Existing waypoints in the queue that are older than the first new timestamp are removed. - The current session timestamp is reported in `execute.details.jogger_session_timestamp_ms` of the [streamRobotControllerState](#/operations/streamRobotControllerState) endpoint. #### 3. Stop the motion - Send `PauseActionChunksRequest` to stop the motion. ### Responses - Each request is acknowledged with a corresponding response: - `InitializeActionChunksResponse` after `InitializeActionChunksRequest` - `ActionChunkResponse` after `ActionChunkRequest` - `PauseActionChunksResponse` after `PauseActionChunksRequest` The responses confirm that the requests were received. They do not signal that the operation was successful; check the [motion group state](#/operations/streamMotionGroupState) for that. - `MovementErrorResponse` with error details is sent in case of an unexpected error, e.g., controller disconnects during moving. ### Tips and Tricks - Ensure that the websocket connection remains open until the action chunk motion is stopped to avoid unexpected stops. ### Robot States - The robot controller state is reported in the [streamRobotControllerState](#/operations/streamRobotControllerState) as JOGGING. - The meaning of the states is: - `RUNNING`: The robot is moving through the waypoints. The clock (`execute.details.jogger_session_timestamp_ms`) is running. - `PAUSED_BY_USER`: The robot is braking or in standstill due to a user request. The clock IS paused. - `PAUSED_NEAR_JOINT_LIMIT`: The robot is braking due to a joint limit. The clock is NOT paused. - `PAUSED_NEAR_COLLISION`: The robot is braking due to a collision. The clock is NOT paused. - `PAUSED_NEAR_SINGULARITY`: The robot is braking due to a singularity. The clock is NOT paused. - `PAUSED_NEAR_WORKSPACE_BOUNDARY`: The robot is braking due to a workspace boundary. The clock is NOT paused.
|
|
5610
|
+
* @summary Execute Action Chunks
|
|
5611
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
5612
|
+
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
5613
|
+
* @param {ExecuteActionChunksRequest} executeActionChunksRequest
|
|
5614
|
+
* @param {*} [options] Override http request option.
|
|
5615
|
+
* @throws {RequiredError}
|
|
5616
|
+
*/
|
|
5617
|
+
executeActionChunks(cell: string, controller: string, executeActionChunksRequest: ExecuteActionChunksRequest, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<ExecuteActionChunksResponse, any, {}>>;
|
|
5618
|
+
}
|
|
5120
5619
|
/**
|
|
5121
5620
|
* ApplicationApi - axios parameter creator
|
|
5122
5621
|
*/
|
|
@@ -5511,15 +6010,16 @@ declare const BUSInputsOutputsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
5511
6010
|
*/
|
|
5512
6011
|
getProfinetGSDML: (cell: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
5513
6012
|
/**
|
|
5514
|
-
* **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
|
|
6013
|
+
* **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.
|
|
5515
6014
|
* @summary PROFINET Inputs/Outputs to File
|
|
5516
6015
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
6016
|
+
* @param {Array<ProfinetSlotOffset>} [offsets] Per-slot offsets used to convert device-local byte addresses to controller byte addresses for export. If this parameter is provided, it is preferred over the deprecated `input_offset` and `output_offset` query parameters.
|
|
5517
6017
|
* @param {number} [inputOffset]
|
|
5518
6018
|
* @param {number} [outputOffset]
|
|
5519
6019
|
* @param {*} [options] Override http request option.
|
|
5520
6020
|
* @throws {RequiredError}
|
|
5521
6021
|
*/
|
|
5522
|
-
getProfinetIOsFromFile: (cell: string, inputOffset?: number, outputOffset?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
6022
|
+
getProfinetIOsFromFile: (cell: string, offsets?: Array<ProfinetSlotOffset>, inputOffset?: number, outputOffset?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
5523
6023
|
/**
|
|
5524
6024
|
* **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.
|
|
5525
6025
|
* @summary List Descriptions
|
|
@@ -5717,15 +6217,16 @@ declare const BUSInputsOutputsApiFp: (configuration?: Configuration) => {
|
|
|
5717
6217
|
*/
|
|
5718
6218
|
getProfinetGSDML(cell: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<string>>;
|
|
5719
6219
|
/**
|
|
5720
|
-
* **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
|
|
6220
|
+
* **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.
|
|
5721
6221
|
* @summary PROFINET Inputs/Outputs to File
|
|
5722
6222
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
6223
|
+
* @param {Array<ProfinetSlotOffset>} [offsets] Per-slot offsets used to convert device-local byte addresses to controller byte addresses for export. If this parameter is provided, it is preferred over the deprecated `input_offset` and `output_offset` query parameters.
|
|
5723
6224
|
* @param {number} [inputOffset]
|
|
5724
6225
|
* @param {number} [outputOffset]
|
|
5725
6226
|
* @param {*} [options] Override http request option.
|
|
5726
6227
|
* @throws {RequiredError}
|
|
5727
6228
|
*/
|
|
5728
|
-
getProfinetIOsFromFile(cell: string, inputOffset?: number, outputOffset?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<string>>;
|
|
6229
|
+
getProfinetIOsFromFile(cell: string, offsets?: Array<ProfinetSlotOffset>, inputOffset?: number, outputOffset?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<string>>;
|
|
5729
6230
|
/**
|
|
5730
6231
|
* **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.
|
|
5731
6232
|
* @summary List Descriptions
|
|
@@ -5923,15 +6424,16 @@ declare const BUSInputsOutputsApiFactory: (configuration?: Configuration, basePa
|
|
|
5923
6424
|
*/
|
|
5924
6425
|
getProfinetGSDML(cell: string, options?: RawAxiosRequestConfig): AxiosPromise<string>;
|
|
5925
6426
|
/**
|
|
5926
|
-
* **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
|
|
6427
|
+
* **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.
|
|
5927
6428
|
* @summary PROFINET Inputs/Outputs to File
|
|
5928
6429
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
6430
|
+
* @param {Array<ProfinetSlotOffset>} [offsets] Per-slot offsets used to convert device-local byte addresses to controller byte addresses for export. If this parameter is provided, it is preferred over the deprecated `input_offset` and `output_offset` query parameters.
|
|
5929
6431
|
* @param {number} [inputOffset]
|
|
5930
6432
|
* @param {number} [outputOffset]
|
|
5931
6433
|
* @param {*} [options] Override http request option.
|
|
5932
6434
|
* @throws {RequiredError}
|
|
5933
6435
|
*/
|
|
5934
|
-
getProfinetIOsFromFile(cell: string, inputOffset?: number, outputOffset?: number, options?: RawAxiosRequestConfig): AxiosPromise<string>;
|
|
6436
|
+
getProfinetIOsFromFile(cell: string, offsets?: Array<ProfinetSlotOffset>, inputOffset?: number, outputOffset?: number, options?: RawAxiosRequestConfig): AxiosPromise<string>;
|
|
5935
6437
|
/**
|
|
5936
6438
|
* **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.
|
|
5937
6439
|
* @summary List Descriptions
|
|
@@ -6129,15 +6631,16 @@ declare class BUSInputsOutputsApi extends BaseAPI {
|
|
|
6129
6631
|
*/
|
|
6130
6632
|
getProfinetGSDML(cell: string, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<string, any, {}>>;
|
|
6131
6633
|
/**
|
|
6132
|
-
* **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
|
|
6634
|
+
* **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.
|
|
6133
6635
|
* @summary PROFINET Inputs/Outputs to File
|
|
6134
6636
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
6637
|
+
* @param {Array<ProfinetSlotOffset>} [offsets] Per-slot offsets used to convert device-local byte addresses to controller byte addresses for export. If this parameter is provided, it is preferred over the deprecated `input_offset` and `output_offset` query parameters.
|
|
6135
6638
|
* @param {number} [inputOffset]
|
|
6136
6639
|
* @param {number} [outputOffset]
|
|
6137
6640
|
* @param {*} [options] Override http request option.
|
|
6138
6641
|
* @throws {RequiredError}
|
|
6139
6642
|
*/
|
|
6140
|
-
getProfinetIOsFromFile(cell: string, inputOffset?: number, outputOffset?: number, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<string, any, {}>>;
|
|
6643
|
+
getProfinetIOsFromFile(cell: string, offsets?: Array<ProfinetSlotOffset>, inputOffset?: number, outputOffset?: number, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<string, any, {}>>;
|
|
6141
6644
|
/**
|
|
6142
6645
|
* **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.
|
|
6143
6646
|
* @summary List Descriptions
|
|
@@ -7331,16 +7834,6 @@ declare const JoggingApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
7331
7834
|
* @throws {RequiredError}
|
|
7332
7835
|
*/
|
|
7333
7836
|
executeJogging: (cell: string, controller: string, executeJoggingRequest: ExecuteJoggingRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
7334
|
-
/**
|
|
7335
|
-
* **Required permissions:** `can_operate_controllers` - Operate and monitor robot controllers ___ <!-- theme: danger --> > **Experimental** > > This endpoint is experimental and its behavior may change in future releases. > Websocket endpoint Provides waypoint-based jogging control for a motion group. Instead of commanding target velocities (see [executeJogging](#/operations/executeJogging)), waypoint jogging streams a queue of timed waypoints that the robot moves through by best effort. This can be used for realtime action chunk streaming, e.g., from a Vision-Language-Action (VLA) model. ### Preconditions The motion group is not moved by any other endpoint. ### Requests #### 1. Send `InitializeJoggingRequest` to configure the jogging. - Sets the robot controller mode to control mode. - Claims the motion group for jogging. For robotic arms, TCP is required to ensure that limits, including TCP limits, are respected. #### 2. Send `JointWaypointsRequest` or `PoseWaypointsRequest` to stream waypoints. - The first waypoints message starts an internal clock. - Each waypoint carries a timestamp relative to that clock for when it should be reached. - Existing waypoints in the queue that are older than the first new timestamp are removed. - The current session timestamp is reported in `execute.details.jogger_session_timestamp_ms` of the [streamRobotControllerState](#/operations/streamRobotControllerState) endpoint. #### 3. Stop the jogging motion - Send `PauseJoggingRequest` to stop the motion. ### Responses - Each request is acknowledged with a corresponding response: - `InitializeJoggingResponse` after `InitializeJoggingRequest` - `JointWaypointsResponse` after `JointWaypointsRequest` - `PoseWaypointsResponse` after `PoseWaypointsRequest` - `PauseJoggingResponse` after `PauseJoggingRequest` The responses confirm that the requests were received. They do not signal that the operation was successful; check the [motion group state](#/operations/streamMotionGroupState) for that. - `MovementErrorResponse` with error details is sent in case of an unexpected error, e.g., controller disconnects during jogging. ### Tips and Tricks - Ensure that the websocket connection remains open until the jogging motion is stopped to avoid unexpected stops.
|
|
7336
|
-
* @summary Execute Waypoint Jogging
|
|
7337
|
-
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
7338
|
-
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
7339
|
-
* @param {ExecuteWaypointJoggingRequest} executeWaypointJoggingRequest
|
|
7340
|
-
* @param {*} [options] Override http request option.
|
|
7341
|
-
* @throws {RequiredError}
|
|
7342
|
-
*/
|
|
7343
|
-
executeWaypointJogging: (cell: string, controller: string, executeWaypointJoggingRequest: ExecuteWaypointJoggingRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
7344
7837
|
};
|
|
7345
7838
|
/**
|
|
7346
7839
|
* JoggingApi - functional programming interface
|
|
@@ -7356,16 +7849,6 @@ declare const JoggingApiFp: (configuration?: Configuration) => {
|
|
|
7356
7849
|
* @throws {RequiredError}
|
|
7357
7850
|
*/
|
|
7358
7851
|
executeJogging(cell: string, controller: string, executeJoggingRequest: ExecuteJoggingRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ExecuteJoggingResponse>>;
|
|
7359
|
-
/**
|
|
7360
|
-
* **Required permissions:** `can_operate_controllers` - Operate and monitor robot controllers ___ <!-- theme: danger --> > **Experimental** > > This endpoint is experimental and its behavior may change in future releases. > Websocket endpoint Provides waypoint-based jogging control for a motion group. Instead of commanding target velocities (see [executeJogging](#/operations/executeJogging)), waypoint jogging streams a queue of timed waypoints that the robot moves through by best effort. This can be used for realtime action chunk streaming, e.g., from a Vision-Language-Action (VLA) model. ### Preconditions The motion group is not moved by any other endpoint. ### Requests #### 1. Send `InitializeJoggingRequest` to configure the jogging. - Sets the robot controller mode to control mode. - Claims the motion group for jogging. For robotic arms, TCP is required to ensure that limits, including TCP limits, are respected. #### 2. Send `JointWaypointsRequest` or `PoseWaypointsRequest` to stream waypoints. - The first waypoints message starts an internal clock. - Each waypoint carries a timestamp relative to that clock for when it should be reached. - Existing waypoints in the queue that are older than the first new timestamp are removed. - The current session timestamp is reported in `execute.details.jogger_session_timestamp_ms` of the [streamRobotControllerState](#/operations/streamRobotControllerState) endpoint. #### 3. Stop the jogging motion - Send `PauseJoggingRequest` to stop the motion. ### Responses - Each request is acknowledged with a corresponding response: - `InitializeJoggingResponse` after `InitializeJoggingRequest` - `JointWaypointsResponse` after `JointWaypointsRequest` - `PoseWaypointsResponse` after `PoseWaypointsRequest` - `PauseJoggingResponse` after `PauseJoggingRequest` The responses confirm that the requests were received. They do not signal that the operation was successful; check the [motion group state](#/operations/streamMotionGroupState) for that. - `MovementErrorResponse` with error details is sent in case of an unexpected error, e.g., controller disconnects during jogging. ### Tips and Tricks - Ensure that the websocket connection remains open until the jogging motion is stopped to avoid unexpected stops.
|
|
7361
|
-
* @summary Execute Waypoint Jogging
|
|
7362
|
-
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
7363
|
-
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
7364
|
-
* @param {ExecuteWaypointJoggingRequest} executeWaypointJoggingRequest
|
|
7365
|
-
* @param {*} [options] Override http request option.
|
|
7366
|
-
* @throws {RequiredError}
|
|
7367
|
-
*/
|
|
7368
|
-
executeWaypointJogging(cell: string, controller: string, executeWaypointJoggingRequest: ExecuteWaypointJoggingRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ExecuteWaypointJoggingResponse>>;
|
|
7369
7852
|
};
|
|
7370
7853
|
/**
|
|
7371
7854
|
* JoggingApi - factory interface
|
|
@@ -7381,16 +7864,6 @@ declare const JoggingApiFactory: (configuration?: Configuration, basePath?: stri
|
|
|
7381
7864
|
* @throws {RequiredError}
|
|
7382
7865
|
*/
|
|
7383
7866
|
executeJogging(cell: string, controller: string, executeJoggingRequest: ExecuteJoggingRequest, options?: RawAxiosRequestConfig): AxiosPromise<ExecuteJoggingResponse>;
|
|
7384
|
-
/**
|
|
7385
|
-
* **Required permissions:** `can_operate_controllers` - Operate and monitor robot controllers ___ <!-- theme: danger --> > **Experimental** > > This endpoint is experimental and its behavior may change in future releases. > Websocket endpoint Provides waypoint-based jogging control for a motion group. Instead of commanding target velocities (see [executeJogging](#/operations/executeJogging)), waypoint jogging streams a queue of timed waypoints that the robot moves through by best effort. This can be used for realtime action chunk streaming, e.g., from a Vision-Language-Action (VLA) model. ### Preconditions The motion group is not moved by any other endpoint. ### Requests #### 1. Send `InitializeJoggingRequest` to configure the jogging. - Sets the robot controller mode to control mode. - Claims the motion group for jogging. For robotic arms, TCP is required to ensure that limits, including TCP limits, are respected. #### 2. Send `JointWaypointsRequest` or `PoseWaypointsRequest` to stream waypoints. - The first waypoints message starts an internal clock. - Each waypoint carries a timestamp relative to that clock for when it should be reached. - Existing waypoints in the queue that are older than the first new timestamp are removed. - The current session timestamp is reported in `execute.details.jogger_session_timestamp_ms` of the [streamRobotControllerState](#/operations/streamRobotControllerState) endpoint. #### 3. Stop the jogging motion - Send `PauseJoggingRequest` to stop the motion. ### Responses - Each request is acknowledged with a corresponding response: - `InitializeJoggingResponse` after `InitializeJoggingRequest` - `JointWaypointsResponse` after `JointWaypointsRequest` - `PoseWaypointsResponse` after `PoseWaypointsRequest` - `PauseJoggingResponse` after `PauseJoggingRequest` The responses confirm that the requests were received. They do not signal that the operation was successful; check the [motion group state](#/operations/streamMotionGroupState) for that. - `MovementErrorResponse` with error details is sent in case of an unexpected error, e.g., controller disconnects during jogging. ### Tips and Tricks - Ensure that the websocket connection remains open until the jogging motion is stopped to avoid unexpected stops.
|
|
7386
|
-
* @summary Execute Waypoint Jogging
|
|
7387
|
-
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
7388
|
-
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
7389
|
-
* @param {ExecuteWaypointJoggingRequest} executeWaypointJoggingRequest
|
|
7390
|
-
* @param {*} [options] Override http request option.
|
|
7391
|
-
* @throws {RequiredError}
|
|
7392
|
-
*/
|
|
7393
|
-
executeWaypointJogging(cell: string, controller: string, executeWaypointJoggingRequest: ExecuteWaypointJoggingRequest, options?: RawAxiosRequestConfig): AxiosPromise<ExecuteWaypointJoggingResponse>;
|
|
7394
7867
|
};
|
|
7395
7868
|
/**
|
|
7396
7869
|
* JoggingApi - object-oriented interface
|
|
@@ -7406,16 +7879,6 @@ declare class JoggingApi extends BaseAPI {
|
|
|
7406
7879
|
* @throws {RequiredError}
|
|
7407
7880
|
*/
|
|
7408
7881
|
executeJogging(cell: string, controller: string, executeJoggingRequest: ExecuteJoggingRequest, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<ExecuteJoggingResponse, any, {}>>;
|
|
7409
|
-
/**
|
|
7410
|
-
* **Required permissions:** `can_operate_controllers` - Operate and monitor robot controllers ___ <!-- theme: danger --> > **Experimental** > > This endpoint is experimental and its behavior may change in future releases. > Websocket endpoint Provides waypoint-based jogging control for a motion group. Instead of commanding target velocities (see [executeJogging](#/operations/executeJogging)), waypoint jogging streams a queue of timed waypoints that the robot moves through by best effort. This can be used for realtime action chunk streaming, e.g., from a Vision-Language-Action (VLA) model. ### Preconditions The motion group is not moved by any other endpoint. ### Requests #### 1. Send `InitializeJoggingRequest` to configure the jogging. - Sets the robot controller mode to control mode. - Claims the motion group for jogging. For robotic arms, TCP is required to ensure that limits, including TCP limits, are respected. #### 2. Send `JointWaypointsRequest` or `PoseWaypointsRequest` to stream waypoints. - The first waypoints message starts an internal clock. - Each waypoint carries a timestamp relative to that clock for when it should be reached. - Existing waypoints in the queue that are older than the first new timestamp are removed. - The current session timestamp is reported in `execute.details.jogger_session_timestamp_ms` of the [streamRobotControllerState](#/operations/streamRobotControllerState) endpoint. #### 3. Stop the jogging motion - Send `PauseJoggingRequest` to stop the motion. ### Responses - Each request is acknowledged with a corresponding response: - `InitializeJoggingResponse` after `InitializeJoggingRequest` - `JointWaypointsResponse` after `JointWaypointsRequest` - `PoseWaypointsResponse` after `PoseWaypointsRequest` - `PauseJoggingResponse` after `PauseJoggingRequest` The responses confirm that the requests were received. They do not signal that the operation was successful; check the [motion group state](#/operations/streamMotionGroupState) for that. - `MovementErrorResponse` with error details is sent in case of an unexpected error, e.g., controller disconnects during jogging. ### Tips and Tricks - Ensure that the websocket connection remains open until the jogging motion is stopped to avoid unexpected stops.
|
|
7411
|
-
* @summary Execute Waypoint Jogging
|
|
7412
|
-
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
7413
|
-
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
7414
|
-
* @param {ExecuteWaypointJoggingRequest} executeWaypointJoggingRequest
|
|
7415
|
-
* @param {*} [options] Override http request option.
|
|
7416
|
-
* @throws {RequiredError}
|
|
7417
|
-
*/
|
|
7418
|
-
executeWaypointJogging(cell: string, controller: string, executeWaypointJoggingRequest: ExecuteWaypointJoggingRequest, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<ExecuteWaypointJoggingResponse, any, {}>>;
|
|
7419
7882
|
}
|
|
7420
7883
|
/**
|
|
7421
7884
|
* KinematicsApi - axios parameter creator
|
|
@@ -7448,6 +7911,15 @@ declare const KinematicsApiAxiosParamCreator: (configuration?: Configuration) =>
|
|
|
7448
7911
|
* @throws {RequiredError}
|
|
7449
7912
|
*/
|
|
7450
7913
|
forwardKinematics: (cell: string, forwardKinematicsRequest: ForwardKinematicsRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
7914
|
+
/**
|
|
7915
|
+
* **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.
|
|
7916
|
+
* @summary Get kinematic configuration
|
|
7917
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
7918
|
+
* @param {GetKinematicConfigurationRequest} getKinematicConfigurationRequest
|
|
7919
|
+
* @param {*} [options] Override http request option.
|
|
7920
|
+
* @throws {RequiredError}
|
|
7921
|
+
*/
|
|
7922
|
+
getKinematicConfiguration: (cell: string, getKinematicConfigurationRequest: GetKinematicConfigurationRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
7451
7923
|
/**
|
|
7452
7924
|
* **Required permissions:** `can_plan_motion` - Plan robot motions and trajectories ___ Returns the reachable joint positions for a list of given poses.
|
|
7453
7925
|
* @summary Inverse kinematics
|
|
@@ -7498,6 +7970,15 @@ declare const KinematicsApiFp: (configuration?: Configuration) => {
|
|
|
7498
7970
|
* @throws {RequiredError}
|
|
7499
7971
|
*/
|
|
7500
7972
|
forwardKinematics(cell: string, forwardKinematicsRequest: ForwardKinematicsRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ForwardKinematicsResponse>>;
|
|
7973
|
+
/**
|
|
7974
|
+
* **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.
|
|
7975
|
+
* @summary Get kinematic configuration
|
|
7976
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
7977
|
+
* @param {GetKinematicConfigurationRequest} getKinematicConfigurationRequest
|
|
7978
|
+
* @param {*} [options] Override http request option.
|
|
7979
|
+
* @throws {RequiredError}
|
|
7980
|
+
*/
|
|
7981
|
+
getKinematicConfiguration(cell: string, getKinematicConfigurationRequest: GetKinematicConfigurationRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetKinematicConfigurationResponse>>;
|
|
7501
7982
|
/**
|
|
7502
7983
|
* **Required permissions:** `can_plan_motion` - Plan robot motions and trajectories ___ Returns the reachable joint positions for a list of given poses.
|
|
7503
7984
|
* @summary Inverse kinematics
|
|
@@ -7548,6 +8029,15 @@ declare const KinematicsApiFactory: (configuration?: Configuration, basePath?: s
|
|
|
7548
8029
|
* @throws {RequiredError}
|
|
7549
8030
|
*/
|
|
7550
8031
|
forwardKinematics(cell: string, forwardKinematicsRequest: ForwardKinematicsRequest, options?: RawAxiosRequestConfig): AxiosPromise<ForwardKinematicsResponse>;
|
|
8032
|
+
/**
|
|
8033
|
+
* **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.
|
|
8034
|
+
* @summary Get kinematic configuration
|
|
8035
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
8036
|
+
* @param {GetKinematicConfigurationRequest} getKinematicConfigurationRequest
|
|
8037
|
+
* @param {*} [options] Override http request option.
|
|
8038
|
+
* @throws {RequiredError}
|
|
8039
|
+
*/
|
|
8040
|
+
getKinematicConfiguration(cell: string, getKinematicConfigurationRequest: GetKinematicConfigurationRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetKinematicConfigurationResponse>;
|
|
7551
8041
|
/**
|
|
7552
8042
|
* **Required permissions:** `can_plan_motion` - Plan robot motions and trajectories ___ Returns the reachable joint positions for a list of given poses.
|
|
7553
8043
|
* @summary Inverse kinematics
|
|
@@ -7598,6 +8088,15 @@ declare class KinematicsApi extends BaseAPI {
|
|
|
7598
8088
|
* @throws {RequiredError}
|
|
7599
8089
|
*/
|
|
7600
8090
|
forwardKinematics(cell: string, forwardKinematicsRequest: ForwardKinematicsRequest, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<ForwardKinematicsResponse, any, {}>>;
|
|
8091
|
+
/**
|
|
8092
|
+
* **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.
|
|
8093
|
+
* @summary Get kinematic configuration
|
|
8094
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
8095
|
+
* @param {GetKinematicConfigurationRequest} getKinematicConfigurationRequest
|
|
8096
|
+
* @param {*} [options] Override http request option.
|
|
8097
|
+
* @throws {RequiredError}
|
|
8098
|
+
*/
|
|
8099
|
+
getKinematicConfiguration(cell: string, getKinematicConfigurationRequest: GetKinematicConfigurationRequest, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<GetKinematicConfigurationResponse, any, {}>>;
|
|
7601
8100
|
/**
|
|
7602
8101
|
* **Required permissions:** `can_plan_motion` - Plan robot motions and trajectories ___ Returns the reachable joint positions for a list of given poses.
|
|
7603
8102
|
* @summary Inverse kinematics
|
|
@@ -7919,7 +8418,7 @@ declare const MotionGroupModelsApiAxiosParamCreator: (configuration?: Configurat
|
|
|
7919
8418
|
*/
|
|
7920
8419
|
copyMotionGroupModel: (motionGroupModel: string, copyMotionGroupModelRequest: CopyMotionGroupModelRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
7921
8420
|
/**
|
|
7922
|
-
* **Required permissions:** `can_access_system` - View system status and metadata ___ Deletes a custom motion group model. Only custom models
|
|
8421
|
+
* **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.
|
|
7923
8422
|
* @summary Delete Motion Group Model
|
|
7924
8423
|
* @param {string} motionGroupModel Unique identifier for the model of a motion group, e.g., `UniversalRobots_UR10e`. Get the `model` of a configured motion group with [getOptimizerConfiguration](#/operations/getOptimizerConfiguration).
|
|
7925
8424
|
* @param {*} [options] Override http request option.
|
|
@@ -7934,6 +8433,14 @@ declare const MotionGroupModelsApiAxiosParamCreator: (configuration?: Configurat
|
|
|
7934
8433
|
* @throws {RequiredError}
|
|
7935
8434
|
*/
|
|
7936
8435
|
exportMotionGroupModel: (motionGroupModel: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
8436
|
+
/**
|
|
8437
|
+
* **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.
|
|
8438
|
+
* @summary Get Configuration for Motion Group
|
|
8439
|
+
* @param {string} motionGroupModel Unique identifier for the model of a motion group, e.g., `UniversalRobots_UR10e`. Get the `model` of a configured motion group with [getOptimizerConfiguration](#/operations/getOptimizerConfiguration).
|
|
8440
|
+
* @param {*} [options] Override http request option.
|
|
8441
|
+
* @throws {RequiredError}
|
|
8442
|
+
*/
|
|
8443
|
+
getConfigurationForMotionGroup: (motionGroupModel: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
7937
8444
|
/**
|
|
7938
8445
|
* **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.
|
|
7939
8446
|
* @summary Get Collision Model
|
|
@@ -7989,6 +8496,13 @@ declare const MotionGroupModelsApiAxiosParamCreator: (configuration?: Configurat
|
|
|
7989
8496
|
* @throws {RequiredError}
|
|
7990
8497
|
*/
|
|
7991
8498
|
getMotionGroupModels: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
8499
|
+
/**
|
|
8500
|
+
* **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.
|
|
8501
|
+
* @summary Motion Group Model Catalog
|
|
8502
|
+
* @param {*} [options] Override http request option.
|
|
8503
|
+
* @throws {RequiredError}
|
|
8504
|
+
*/
|
|
8505
|
+
getMotionGroupModelsCatalog: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
7992
8506
|
/**
|
|
7993
8507
|
* **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.
|
|
7994
8508
|
* @summary Download USD Model
|
|
@@ -8020,7 +8534,7 @@ declare const MotionGroupModelsApiFp: (configuration?: Configuration) => {
|
|
|
8020
8534
|
*/
|
|
8021
8535
|
copyMotionGroupModel(motionGroupModel: string, copyMotionGroupModelRequest: CopyMotionGroupModelRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MotionGroupModelDescription>>;
|
|
8022
8536
|
/**
|
|
8023
|
-
* **Required permissions:** `can_access_system` - View system status and metadata ___ Deletes a custom motion group model. Only custom models
|
|
8537
|
+
* **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.
|
|
8024
8538
|
* @summary Delete Motion Group Model
|
|
8025
8539
|
* @param {string} motionGroupModel Unique identifier for the model of a motion group, e.g., `UniversalRobots_UR10e`. Get the `model` of a configured motion group with [getOptimizerConfiguration](#/operations/getOptimizerConfiguration).
|
|
8026
8540
|
* @param {*} [options] Override http request option.
|
|
@@ -8035,6 +8549,14 @@ declare const MotionGroupModelsApiFp: (configuration?: Configuration) => {
|
|
|
8035
8549
|
* @throws {RequiredError}
|
|
8036
8550
|
*/
|
|
8037
8551
|
exportMotionGroupModel(motionGroupModel: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<File>>;
|
|
8552
|
+
/**
|
|
8553
|
+
* **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.
|
|
8554
|
+
* @summary Get Configuration for Motion Group
|
|
8555
|
+
* @param {string} motionGroupModel Unique identifier for the model of a motion group, e.g., `UniversalRobots_UR10e`. Get the `model` of a configured motion group with [getOptimizerConfiguration](#/operations/getOptimizerConfiguration).
|
|
8556
|
+
* @param {*} [options] Override http request option.
|
|
8557
|
+
* @throws {RequiredError}
|
|
8558
|
+
*/
|
|
8559
|
+
getConfigurationForMotionGroup(motionGroupModel: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MotionGroupConfiguration>>;
|
|
8038
8560
|
/**
|
|
8039
8561
|
* **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.
|
|
8040
8562
|
* @summary Get Collision Model
|
|
@@ -8092,6 +8614,13 @@ declare const MotionGroupModelsApiFp: (configuration?: Configuration) => {
|
|
|
8092
8614
|
* @throws {RequiredError}
|
|
8093
8615
|
*/
|
|
8094
8616
|
getMotionGroupModels(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<string>>>;
|
|
8617
|
+
/**
|
|
8618
|
+
* **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.
|
|
8619
|
+
* @summary Motion Group Model Catalog
|
|
8620
|
+
* @param {*} [options] Override http request option.
|
|
8621
|
+
* @throws {RequiredError}
|
|
8622
|
+
*/
|
|
8623
|
+
getMotionGroupModelsCatalog(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<MotionGroupModelCatalog>>>;
|
|
8095
8624
|
/**
|
|
8096
8625
|
* **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.
|
|
8097
8626
|
* @summary Download USD Model
|
|
@@ -8123,7 +8652,7 @@ declare const MotionGroupModelsApiFactory: (configuration?: Configuration, baseP
|
|
|
8123
8652
|
*/
|
|
8124
8653
|
copyMotionGroupModel(motionGroupModel: string, copyMotionGroupModelRequest: CopyMotionGroupModelRequest, options?: RawAxiosRequestConfig): AxiosPromise<MotionGroupModelDescription>;
|
|
8125
8654
|
/**
|
|
8126
|
-
* **Required permissions:** `can_access_system` - View system status and metadata ___ Deletes a custom motion group model. Only custom models
|
|
8655
|
+
* **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.
|
|
8127
8656
|
* @summary Delete Motion Group Model
|
|
8128
8657
|
* @param {string} motionGroupModel Unique identifier for the model of a motion group, e.g., `UniversalRobots_UR10e`. Get the `model` of a configured motion group with [getOptimizerConfiguration](#/operations/getOptimizerConfiguration).
|
|
8129
8658
|
* @param {*} [options] Override http request option.
|
|
@@ -8138,6 +8667,14 @@ declare const MotionGroupModelsApiFactory: (configuration?: Configuration, baseP
|
|
|
8138
8667
|
* @throws {RequiredError}
|
|
8139
8668
|
*/
|
|
8140
8669
|
exportMotionGroupModel(motionGroupModel: string, options?: RawAxiosRequestConfig): AxiosPromise<File>;
|
|
8670
|
+
/**
|
|
8671
|
+
* **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.
|
|
8672
|
+
* @summary Get Configuration for Motion Group
|
|
8673
|
+
* @param {string} motionGroupModel Unique identifier for the model of a motion group, e.g., `UniversalRobots_UR10e`. Get the `model` of a configured motion group with [getOptimizerConfiguration](#/operations/getOptimizerConfiguration).
|
|
8674
|
+
* @param {*} [options] Override http request option.
|
|
8675
|
+
* @throws {RequiredError}
|
|
8676
|
+
*/
|
|
8677
|
+
getConfigurationForMotionGroup(motionGroupModel: string, options?: RawAxiosRequestConfig): AxiosPromise<MotionGroupConfiguration>;
|
|
8141
8678
|
/**
|
|
8142
8679
|
* **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.
|
|
8143
8680
|
* @summary Get Collision Model
|
|
@@ -8195,6 +8732,13 @@ declare const MotionGroupModelsApiFactory: (configuration?: Configuration, baseP
|
|
|
8195
8732
|
* @throws {RequiredError}
|
|
8196
8733
|
*/
|
|
8197
8734
|
getMotionGroupModels(options?: RawAxiosRequestConfig): AxiosPromise<Array<string>>;
|
|
8735
|
+
/**
|
|
8736
|
+
* **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.
|
|
8737
|
+
* @summary Motion Group Model Catalog
|
|
8738
|
+
* @param {*} [options] Override http request option.
|
|
8739
|
+
* @throws {RequiredError}
|
|
8740
|
+
*/
|
|
8741
|
+
getMotionGroupModelsCatalog(options?: RawAxiosRequestConfig): AxiosPromise<Array<MotionGroupModelCatalog>>;
|
|
8198
8742
|
/**
|
|
8199
8743
|
* **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.
|
|
8200
8744
|
* @summary Download USD Model
|
|
@@ -8226,7 +8770,7 @@ declare class MotionGroupModelsApi extends BaseAPI {
|
|
|
8226
8770
|
*/
|
|
8227
8771
|
copyMotionGroupModel(motionGroupModel: string, copyMotionGroupModelRequest: CopyMotionGroupModelRequest, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<MotionGroupModelDescription, any, {}>>;
|
|
8228
8772
|
/**
|
|
8229
|
-
* **Required permissions:** `can_access_system` - View system status and metadata ___ Deletes a custom motion group model. Only custom models
|
|
8773
|
+
* **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.
|
|
8230
8774
|
* @summary Delete Motion Group Model
|
|
8231
8775
|
* @param {string} motionGroupModel Unique identifier for the model of a motion group, e.g., `UniversalRobots_UR10e`. Get the `model` of a configured motion group with [getOptimizerConfiguration](#/operations/getOptimizerConfiguration).
|
|
8232
8776
|
* @param {*} [options] Override http request option.
|
|
@@ -8241,6 +8785,14 @@ declare class MotionGroupModelsApi extends BaseAPI {
|
|
|
8241
8785
|
* @throws {RequiredError}
|
|
8242
8786
|
*/
|
|
8243
8787
|
exportMotionGroupModel(motionGroupModel: string, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<File, any, {}>>;
|
|
8788
|
+
/**
|
|
8789
|
+
* **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.
|
|
8790
|
+
* @summary Get Configuration for Motion Group
|
|
8791
|
+
* @param {string} motionGroupModel Unique identifier for the model of a motion group, e.g., `UniversalRobots_UR10e`. Get the `model` of a configured motion group with [getOptimizerConfiguration](#/operations/getOptimizerConfiguration).
|
|
8792
|
+
* @param {*} [options] Override http request option.
|
|
8793
|
+
* @throws {RequiredError}
|
|
8794
|
+
*/
|
|
8795
|
+
getConfigurationForMotionGroup(motionGroupModel: string, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<MotionGroupConfiguration, any, {}>>;
|
|
8244
8796
|
/**
|
|
8245
8797
|
* **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.
|
|
8246
8798
|
* @summary Get Collision Model
|
|
@@ -8298,6 +8850,13 @@ declare class MotionGroupModelsApi extends BaseAPI {
|
|
|
8298
8850
|
* @throws {RequiredError}
|
|
8299
8851
|
*/
|
|
8300
8852
|
getMotionGroupModels(options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<string[], any, {}>>;
|
|
8853
|
+
/**
|
|
8854
|
+
* **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.
|
|
8855
|
+
* @summary Motion Group Model Catalog
|
|
8856
|
+
* @param {*} [options] Override http request option.
|
|
8857
|
+
* @throws {RequiredError}
|
|
8858
|
+
*/
|
|
8859
|
+
getMotionGroupModelsCatalog(options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<MotionGroupModelCatalog[], any, {}>>;
|
|
8301
8860
|
/**
|
|
8302
8861
|
* **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.
|
|
8303
8862
|
* @summary Download USD Model
|
|
@@ -8336,6 +8895,13 @@ declare const NOVACloudApiAxiosParamCreator: (configuration?: Configuration) =>
|
|
|
8336
8895
|
* @throws {RequiredError}
|
|
8337
8896
|
*/
|
|
8338
8897
|
disconnectFromNovaCloud: (completionTimeout?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
8898
|
+
/**
|
|
8899
|
+
* **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.
|
|
8900
|
+
* @summary Get Connection Status
|
|
8901
|
+
* @param {*} [options] Override http request option.
|
|
8902
|
+
* @throws {RequiredError}
|
|
8903
|
+
*/
|
|
8904
|
+
getCloudStatus: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
8339
8905
|
/**
|
|
8340
8906
|
* **Required permissions:** `can_access_system` - View system status and metadata ___ <!-- theme: danger --> > **Experimental** Get the current NOVA Cloud connection config for this instance.
|
|
8341
8907
|
* @summary Get Connection Config
|
|
@@ -8365,6 +8931,13 @@ declare const NOVACloudApiFp: (configuration?: Configuration) => {
|
|
|
8365
8931
|
* @throws {RequiredError}
|
|
8366
8932
|
*/
|
|
8367
8933
|
disconnectFromNovaCloud(completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CloudDisconnectionStatusDisconnected>>;
|
|
8934
|
+
/**
|
|
8935
|
+
* **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.
|
|
8936
|
+
* @summary Get Connection Status
|
|
8937
|
+
* @param {*} [options] Override http request option.
|
|
8938
|
+
* @throws {RequiredError}
|
|
8939
|
+
*/
|
|
8940
|
+
getCloudStatus(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CloudStatus>>;
|
|
8368
8941
|
/**
|
|
8369
8942
|
* **Required permissions:** `can_access_system` - View system status and metadata ___ <!-- theme: danger --> > **Experimental** Get the current NOVA Cloud connection config for this instance.
|
|
8370
8943
|
* @summary Get Connection Config
|
|
@@ -8394,6 +8967,13 @@ declare const NOVACloudApiFactory: (configuration?: Configuration, basePath?: st
|
|
|
8394
8967
|
* @throws {RequiredError}
|
|
8395
8968
|
*/
|
|
8396
8969
|
disconnectFromNovaCloud(completionTimeout?: number, options?: RawAxiosRequestConfig): AxiosPromise<CloudDisconnectionStatusDisconnected>;
|
|
8970
|
+
/**
|
|
8971
|
+
* **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.
|
|
8972
|
+
* @summary Get Connection Status
|
|
8973
|
+
* @param {*} [options] Override http request option.
|
|
8974
|
+
* @throws {RequiredError}
|
|
8975
|
+
*/
|
|
8976
|
+
getCloudStatus(options?: RawAxiosRequestConfig): AxiosPromise<CloudStatus>;
|
|
8397
8977
|
/**
|
|
8398
8978
|
* **Required permissions:** `can_access_system` - View system status and metadata ___ <!-- theme: danger --> > **Experimental** Get the current NOVA Cloud connection config for this instance.
|
|
8399
8979
|
* @summary Get Connection Config
|
|
@@ -8423,6 +9003,13 @@ declare class NOVACloudApi extends BaseAPI {
|
|
|
8423
9003
|
* @throws {RequiredError}
|
|
8424
9004
|
*/
|
|
8425
9005
|
disconnectFromNovaCloud(completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<CloudDisconnectionStatusDisconnected, any, {}>>;
|
|
9006
|
+
/**
|
|
9007
|
+
* **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.
|
|
9008
|
+
* @summary Get Connection Status
|
|
9009
|
+
* @param {*} [options] Override http request option.
|
|
9010
|
+
* @throws {RequiredError}
|
|
9011
|
+
*/
|
|
9012
|
+
getCloudStatus(options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<CloudStatus, any, {}>>;
|
|
8426
9013
|
/**
|
|
8427
9014
|
* **Required permissions:** `can_access_system` - View system status and metadata ___ <!-- theme: danger --> > **Experimental** Get the current NOVA Cloud connection config for this instance.
|
|
8428
9015
|
* @summary Get Connection Config
|
|
@@ -9811,15 +10398,15 @@ declare const SystemApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
9811
10398
|
*/
|
|
9812
10399
|
checkNovaVersionUpdate: (channel: ReleaseChannel, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
9813
10400
|
/**
|
|
9814
|
-
* **Required permissions:** `can_access_system` - View system status and metadata ___
|
|
10401
|
+
* **Required permissions:** `can_access_system` - View system status and metadata ___ Runs an ARP scan on the target interface and returns all discovered devices.
|
|
9815
10402
|
* @summary Get ARP-Scan
|
|
9816
|
-
* @param {string}
|
|
9817
|
-
* @param {string}
|
|
10403
|
+
* @param {string} _interface
|
|
10404
|
+
* @param {string} cidr
|
|
9818
10405
|
* @param {number} [timeout]
|
|
9819
10406
|
* @param {*} [options] Override http request option.
|
|
9820
10407
|
* @throws {RequiredError}
|
|
9821
10408
|
*/
|
|
9822
|
-
getArpScan: (_interface
|
|
10409
|
+
getArpScan: (_interface: string, cidr: string, timeout?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
9823
10410
|
/**
|
|
9824
10411
|
* **Required permissions:** `can_backup_system` - Create system backups ___ Retrieves the status of a configuration backup. The status can only be requested for 5 minutes after backup creation. After 5 minutes, 404 is returned.
|
|
9825
10412
|
* @summary Retrieve Backup Status
|
|
@@ -9836,7 +10423,7 @@ declare const SystemApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
9836
10423
|
*/
|
|
9837
10424
|
getDiagnosePackage: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
9838
10425
|
/**
|
|
9839
|
-
* **Required permissions:** `can_access_system` - View system status and metadata ___
|
|
10426
|
+
* **Required permissions:** `can_access_system` - View system status and metadata ___ Lists all managed network interfaces available for controller connections and ARP scanning.
|
|
9840
10427
|
* @summary Network Interfaces
|
|
9841
10428
|
* @param {*} [options] Override http request option.
|
|
9842
10429
|
* @throws {RequiredError}
|
|
@@ -9912,15 +10499,15 @@ declare const SystemApiFp: (configuration?: Configuration) => {
|
|
|
9912
10499
|
*/
|
|
9913
10500
|
checkNovaVersionUpdate(channel: ReleaseChannel, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<string>>;
|
|
9914
10501
|
/**
|
|
9915
|
-
* **Required permissions:** `can_access_system` - View system status and metadata ___
|
|
10502
|
+
* **Required permissions:** `can_access_system` - View system status and metadata ___ Runs an ARP scan on the target interface and returns all discovered devices.
|
|
9916
10503
|
* @summary Get ARP-Scan
|
|
9917
|
-
* @param {string}
|
|
9918
|
-
* @param {string}
|
|
10504
|
+
* @param {string} _interface
|
|
10505
|
+
* @param {string} cidr
|
|
9919
10506
|
* @param {number} [timeout]
|
|
9920
10507
|
* @param {*} [options] Override http request option.
|
|
9921
10508
|
* @throws {RequiredError}
|
|
9922
10509
|
*/
|
|
9923
|
-
getArpScan(_interface
|
|
10510
|
+
getArpScan(_interface: string, cidr: string, timeout?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<NetworkDevice>>>;
|
|
9924
10511
|
/**
|
|
9925
10512
|
* **Required permissions:** `can_backup_system` - Create system backups ___ Retrieves the status of a configuration backup. The status can only be requested for 5 minutes after backup creation. After 5 minutes, 404 is returned.
|
|
9926
10513
|
* @summary Retrieve Backup Status
|
|
@@ -9937,7 +10524,7 @@ declare const SystemApiFp: (configuration?: Configuration) => {
|
|
|
9937
10524
|
*/
|
|
9938
10525
|
getDiagnosePackage(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<File>>;
|
|
9939
10526
|
/**
|
|
9940
|
-
* **Required permissions:** `can_access_system` - View system status and metadata ___
|
|
10527
|
+
* **Required permissions:** `can_access_system` - View system status and metadata ___ Lists all managed network interfaces available for controller connections and ARP scanning.
|
|
9941
10528
|
* @summary Network Interfaces
|
|
9942
10529
|
* @param {*} [options] Override http request option.
|
|
9943
10530
|
* @throws {RequiredError}
|
|
@@ -10013,15 +10600,15 @@ declare const SystemApiFactory: (configuration?: Configuration, basePath?: strin
|
|
|
10013
10600
|
*/
|
|
10014
10601
|
checkNovaVersionUpdate(channel: ReleaseChannel, options?: RawAxiosRequestConfig): AxiosPromise<string>;
|
|
10015
10602
|
/**
|
|
10016
|
-
* **Required permissions:** `can_access_system` - View system status and metadata ___
|
|
10603
|
+
* **Required permissions:** `can_access_system` - View system status and metadata ___ Runs an ARP scan on the target interface and returns all discovered devices.
|
|
10017
10604
|
* @summary Get ARP-Scan
|
|
10018
|
-
* @param {string}
|
|
10019
|
-
* @param {string}
|
|
10605
|
+
* @param {string} _interface
|
|
10606
|
+
* @param {string} cidr
|
|
10020
10607
|
* @param {number} [timeout]
|
|
10021
10608
|
* @param {*} [options] Override http request option.
|
|
10022
10609
|
* @throws {RequiredError}
|
|
10023
10610
|
*/
|
|
10024
|
-
getArpScan(_interface
|
|
10611
|
+
getArpScan(_interface: string, cidr: string, timeout?: number, options?: RawAxiosRequestConfig): AxiosPromise<Array<NetworkDevice>>;
|
|
10025
10612
|
/**
|
|
10026
10613
|
* **Required permissions:** `can_backup_system` - Create system backups ___ Retrieves the status of a configuration backup. The status can only be requested for 5 minutes after backup creation. After 5 minutes, 404 is returned.
|
|
10027
10614
|
* @summary Retrieve Backup Status
|
|
@@ -10038,7 +10625,7 @@ declare const SystemApiFactory: (configuration?: Configuration, basePath?: strin
|
|
|
10038
10625
|
*/
|
|
10039
10626
|
getDiagnosePackage(options?: RawAxiosRequestConfig): AxiosPromise<File>;
|
|
10040
10627
|
/**
|
|
10041
|
-
* **Required permissions:** `can_access_system` - View system status and metadata ___
|
|
10628
|
+
* **Required permissions:** `can_access_system` - View system status and metadata ___ Lists all managed network interfaces available for controller connections and ARP scanning.
|
|
10042
10629
|
* @summary Network Interfaces
|
|
10043
10630
|
* @param {*} [options] Override http request option.
|
|
10044
10631
|
* @throws {RequiredError}
|
|
@@ -10114,15 +10701,15 @@ declare class SystemApi extends BaseAPI {
|
|
|
10114
10701
|
*/
|
|
10115
10702
|
checkNovaVersionUpdate(channel: ReleaseChannel, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<string, any, {}>>;
|
|
10116
10703
|
/**
|
|
10117
|
-
* **Required permissions:** `can_access_system` - View system status and metadata ___
|
|
10704
|
+
* **Required permissions:** `can_access_system` - View system status and metadata ___ Runs an ARP scan on the target interface and returns all discovered devices.
|
|
10118
10705
|
* @summary Get ARP-Scan
|
|
10119
|
-
* @param {string}
|
|
10120
|
-
* @param {string}
|
|
10706
|
+
* @param {string} _interface
|
|
10707
|
+
* @param {string} cidr
|
|
10121
10708
|
* @param {number} [timeout]
|
|
10122
10709
|
* @param {*} [options] Override http request option.
|
|
10123
10710
|
* @throws {RequiredError}
|
|
10124
10711
|
*/
|
|
10125
|
-
getArpScan(_interface
|
|
10712
|
+
getArpScan(_interface: string, cidr: string, timeout?: number, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<NetworkDevice[], any, {}>>;
|
|
10126
10713
|
/**
|
|
10127
10714
|
* **Required permissions:** `can_backup_system` - Create system backups ___ Retrieves the status of a configuration backup. The status can only be requested for 5 minutes after backup creation. After 5 minutes, 404 is returned.
|
|
10128
10715
|
* @summary Retrieve Backup Status
|
|
@@ -10139,7 +10726,7 @@ declare class SystemApi extends BaseAPI {
|
|
|
10139
10726
|
*/
|
|
10140
10727
|
getDiagnosePackage(options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<File, any, {}>>;
|
|
10141
10728
|
/**
|
|
10142
|
-
* **Required permissions:** `can_access_system` - View system status and metadata ___
|
|
10729
|
+
* **Required permissions:** `can_access_system` - View system status and metadata ___ Lists all managed network interfaces available for controller connections and ARP scanning.
|
|
10143
10730
|
* @summary Network Interfaces
|
|
10144
10731
|
* @param {*} [options] Override http request option.
|
|
10145
10732
|
* @throws {RequiredError}
|
|
@@ -11907,5 +12494,5 @@ declare class Nova {
|
|
|
11907
12494
|
openReconnectingWebsocket(path: string): AutoReconnectingWebsocket;
|
|
11908
12495
|
}
|
|
11909
12496
|
//#endregion
|
|
11910
|
-
export { BusIOProfinetDefaultRoute as $, KinematicsApiFp as $a, RectangularCapsule as $c, IntegerValueValueTypeEnum as $i, StorageKeySourceEnum as $l, CopyMotionGroupModelRequest as $n, MotionGroupModelsApiFp as $o, FeedbackInvalidDofErrorFeedbackNameEnum as $r, PauseMovementResponseKindEnum as $s, Collider as $t, TrajectoryPlanningApiFactory as $u, BlendingAuto as A, JointLimitExceededErrorKindEnum as Aa, ProfinetIOTypeEnum as Ac, VirtualControllerInputsOutputsApiFactory as Ad, IODirection as Ai, ServiceStatusSeverity as Al, ConfiguredPoseInverseResponseResponse as An, MidpointInsertionAlgorithmAlgorithmNameEnum as Ao, ExecuteWaypointJoggingRequest as Ar, OperationMode as As, CloudConnectionErrorInvalidTokenDetails as At, TrajectoryCachingApi as Au, BusIODescription as B, JointWaypointsRequest as Ba, ProgramRunState as Bc, ZodValidationErrorErrorDetailsInner as Bd, InconsistentTrajectorySizeErrorInconsistentTrajectorySize as Bi, Snap7IO as Bl, ControllerApiFp as Bn, MotionGroupApi as Bo, FeedbackCommandsMissing as Br, PathDirectionConstrainedJointPTP as Bs, CloudConnectionErrorNatsFailedCodeEnum as Bt, TrajectoryEndedKindEnum as Bu, BASE_PATH as C, JoggingPausedNearSingularity as Ca, PoseWaypointsRequestMessageTypeEnum as Cc, VirtualControllerApiFp as Cd, ForwardKinematicsValidationError as Ci, SafetyZone as Cl, ConfigurationParameters as Cn, MergeTrajectoriesErrorErrorFeedback as Co, ErrorUnsupportedOperationErrorFeedbackNameEnum as Cr, NetworkDevice as Cs, CloudConfigStatusNotConfigured as Ct, TcpVelocityResponseKindEnum as Cu, BUSInputsOutputsApiFp as D, JoggingRunning as Da, ProfinetIO as Dc, VirtualControllerBehaviorApiFp as Dd, IOBooleanValueValueTypeEnum as Di, ServiceStatus as Dl, ConfiguredPoseInverseFailedResponse as Dn, MergeTrajectoriesSegment as Do, ExecuteJoggingResponse as Dr, OpMode as Ds, CloudConnectionErrorError as Dt, TorqueExceededError as Du, BUSInputsOutputsApiFactory as E, JoggingPausedOnIOKindEnum as Ea, ProfinetDescription as Ec, VirtualControllerBehaviorApiFactory as Ed, IOBooleanValue as Ei, ServiceGroup as El, ConfiguredPoseInverse422Response as En, MergeTrajectoriesResponseFeedbackInner as Eo, ExecuteJoggingRequest as Er, NetworkStateConnectionTypeEnum as Es, CloudConnectionError as Et, ToolValueSourceEnum as Eu, BooleanValue as F, JointVelocityRequest as Fa, ProgramApi as Fc, YaskawaController as Fd, IOOrigin as Fi, SessionApiFp as Fl, ContainerResources as Fn, ModbusIOTypeEnum as Fo, FanucControllerKindEnum as Fr, PathCirclePathDefinitionNameEnum as Fs, CloudConnectionErrorLeafnodeConnectionTimeout as Ft, TrajectoryDataMessageTypeEnum as Fu, BusIOModbusTCPClient as G, KinematicBranchElbow as Ga, ProjectJointPositionDirectionConstraintValidationError as Gc, InitializeJoggingResponse as Gi, Sphere as Gl, ControllerInputsOutputsApiFp as Gn, MotionGroupFromJson as Go, FeedbackCubicSplineNotAtStartPoseErrorFeedbackNameEnum as Gr, PathLinePathDefinitionNameEnum as Gs, CloudConnectionErrorUnexpectedResponseDetailsCloudResponse as Gt, TrajectoryId as Gu, BusIOModbusClientBusTypeEnum as H, JointWaypointsResponse as Ha, ProjectJointPositionDirectionConstraint422Response as Hc, operationServerMap as Hd, InertiaTensor as Hi, Snap7IOData as Hl, ControllerInputsOutputsApi as Hn, MotionGroupApiFactory as Ho, FeedbackCubicSplineIsNotIncreasing as Hr, PathJointPTP as Hs, CloudConnectionErrorUnexpectedResponse as Ht, TrajectoryExecutionApiAxiosParamCreator as Hu, BooleanValueValueTypeEnum as I, JointVelocityRequestMessageTypeEnum as Ia, ProgramApiAxiosParamCreator as Ic, YaskawaControllerKindEnum as Id, IOValue as Ii, SessionResponse as Il, ContainerStorage as In, ModelError as Io, FeedbackAxisRangeExceeded as Ir, PathCubicSpline as Is, CloudConnectionErrorLeafnodeConnectionTimeoutCodeEnum as It, TrajectoryDetails as Iu, BusIOModbusTCPServerNetworkTypeEnum as J, KinematicConfiguration as Ja, RRTConnectAlgorithmAlgorithmNameEnum as Jc, InitializeMovementRequestMessageTypeEnum as Ji, StartMovementRequestMessageTypeEnum as Jl, ConvertVendorConfiguredPoseRequestVendorConfiguredPoses as Jn, MotionGroupJoints as Jo, FeedbackDirectionConstraintNotMet as Jr, PauseJoggingResponse as Js, CloudDisconnectionStatusDisconnected as Jt, TrajectoryPausedByUserKindEnum as Ju, BusIOModbusTCPClientNetworkTypeEnum as K, KinematicBranchShoulder as Ka, ProjectJointPositionDirectionConstraintValidationErrorAllOfData as Kc, InitializeJoggingResponseKindEnum as Ki, SphereShapeTypeEnum as Kl, ConvertVendorConfiguredPose422Response as Kn, MotionGroupFromType as Ko, FeedbackDirectionConstraintNoSolutionExists as Kr, PauseJoggingRequest as Ks, CloudConnectionRequest as Kt, TrajectoryIdMessageTypeEnum as Ku, Box as L, JointVelocityResponse as La, ProgramApiFactory as Lc, ZodValidationError as Ld, IOValueType as Li, SetIO as Ll, ControllerApi as Ln, MotionCommand as Lo, FeedbackAxisRangeExceededErrorFeedbackNameEnum as Lr, PathCubicSplinePathDefinitionNameEnum as Ls, CloudConnectionErrorLeafnodeRestartTimeout as Lt, TrajectoryDetailsKindEnum as Lu, BlendingPosition as M, JointPTPMotion as Ma, ProfinetSlotDescription as Mc, VirtualControllerKindEnum as Md, IOFloatValueValueTypeEnum as Mi, SessionApi as Ml, ContainerEnvironmentInner as Mn, ModbusIOArea as Mo, ExternalJointStreamDatapoint as Mr, PathCartesianPTP as Ms, CloudConnectionErrorLeafnodeConnectionError as Mt, TrajectoryCachingApiFactory as Mu, BlendingPositionBlendingNameEnum as N, JointTrajectory as Na, ProfinetSubSlotDescription as Nc, VirtualRobotConfiguration as Nd, IOIntegerValue as Ni, SessionApiAxiosParamCreator as Nl, ContainerImage as Nn, ModbusIOByteOrder as No, ExternalJointStreamRequest as Nr, PathCartesianPTPPathDefinitionNameEnum as Ns, CloudConnectionErrorLeafnodeConnectionErrorCodeEnum as Nt, TrajectoryCachingApiFp as Nu, BaseAPI as O, JoggingRunningKindEnum as Oa, ProfinetIOData as Oc, VirtualControllerInputsOutputsApi as Od, IOBoundary as Oi, ServiceStatusPhase as Ol, ConfiguredPoseInverseRequest as On, MergeTrajectoriesValidationError as Oo, ExecuteTrajectoryRequest as Or, OperatingState as Os, CloudConnectionErrorInvalidToken as Ot, TorqueExceededErrorKindEnum as Ou, BlendingSpace as P, JointTypeEnum as Pa, Program as Pc, WaitForIOEventRequest as Pd, IOIntegerValueValueTypeEnum as Pi, SessionApiFactory as Pl, ContainerImageSecretsInner as Pn, ModbusIOData as Po, FanucController as Pr, PathCircle as Ps, CloudConnectionErrorLeafnodeConnectionErrorDetails as Pt, TrajectoryData as Pu, BusIOProfinetBusTypeEnum as Q, KinematicsApiFactory as Qa, RectangleShapeTypeEnum as Qc, IntegerValue as Qi, StorageKey as Ql, CoordinateSystemData as Qn, MotionGroupModelsApiFactory as Qo, FeedbackInvalidDof as Qr, PauseMovementResponse as Qs, CloudRegistrationSuccessResponse as Qt, TrajectoryPlanningApiAxiosParamCreator as Qu, BoxBoxTypeEnum as R, JointVelocityResponseKindEnum as Ra, ProgramApiFp as Rc, ZodValidationErrorError as Rd, ImageCredentials as Ri, SettableRobotSystemMode as Rl, ControllerApiAxiosParamCreator as Rn, MotionCommandBlending as Ro, FeedbackCollision as Rr, PathDirectionConstrainedCartesianPTP as Rs, CloudConnectionErrorLeafnodeRestartTimeoutCodeEnum as Rt, TrajectoryDetailsState as Ru, AxisRange as S, JoggingPausedNearJointLimitKindEnum as Sa, PoseWaypointsRequest as Sc, VirtualControllerApiFactory as Sd, ForwardKinematicsResponse as Si, SafetyStateType as Sl, ConfigurationArchiveStatusSuccessStatusEnum as Sn, MergeTrajectoriesError as So, ErrorUnsupportedOperation as Sr, NanValueErrorNanValue as Ss, CloudConfigStatusConfiguredStatusEnum as St, TcpVelocityResponse as Su, BUSInputsOutputsApiAxiosParamCreator as T, JoggingPausedOnIO as Ta, PoseWaypointsResponseKindEnum as Tc, VirtualControllerBehaviorApiAxiosParamCreator as Td, HTTPValidationError as Ti, SafetyZones as Tl, ConfiguredPose as Tn, MergeTrajectoriesResponse as To, ExecuteDetails as Tr, NetworkState as Ts, CloudConfiguration as Tt, ToolValueOrKey as Tu, BusIOModbusServer as U, JointWaypointsResponseKindEnum as Ua, ProjectJointPositionDirectionConstraintRequest as Uc, InitializeJoggingRequest as Ui, Snap7IODirection as Ul, ControllerInputsOutputsApiAxiosParamCreator as Un, MotionGroupApiFp as Uo, FeedbackCubicSplineIsNotIncreasingErrorFeedbackNameEnum as Ur, PathJointPTPPathDefinitionNameEnum as Us, CloudConnectionErrorUnexpectedResponseCodeEnum as Ut, TrajectoryExecutionApiFactory as Uu, BusIOModbusClient as V, JointWaypointsRequestMessageTypeEnum as Va, ProgramStartRequest as Vc, ZodValidationErrorErrorDetailsInnerPathInner as Vd, InconsistentTrajectorySizeErrorKindEnum as Vi, Snap7IOArea as Vl, ControllerDescription as Vn, MotionGroupApiAxiosParamCreator as Vo, FeedbackCommandsMissingErrorFeedbackNameEnum as Vr, PathDirectionConstrainedJointPTPPathDefinitionNameEnum as Vs, CloudConnectionErrorNatsFailedDetails as Vt, TrajectoryExecutionApi as Vu, BusIOModbusServerBusTypeEnum as W, KinematicBranch as Wa, ProjectJointPositionDirectionConstraintResponse as Wc, InitializeJoggingRequestMessageTypeEnum as Wi, Snap7IOTypeEnum as Wl, ControllerInputsOutputsApiFactory as Wn, MotionGroupDescription as Wo, FeedbackCubicSplineNotAtStartPose as Wr, PathLine as Ws, CloudConnectionErrorUnexpectedResponseDetails as Wt, TrajectoryExecutionApiFp as Wu, BusIOModbusVirtualBusTypeEnum as X, KinematicsApi as Xa, Range as Xc, InitializeMovementResponse as Xi, StartMovementResponseKindEnum as Xl, ConvexHullShapeTypeEnum as Xn, MotionGroupModelsApi as Xo, FeedbackDirectionConstraintNotNormalized as Xr, PauseMovementRequest as Xs, CloudDisconnectionStatusDisconnecting as Xt, TrajectoryPausedOnIOKindEnum as Xu, BusIOModbusVirtual as Y, KinematicModel as Ya, RRTConnectAlgorithmStepSize as Yc, InitializeMovementRequestTrajectory as Yi, StartMovementResponse as Yl, ConvexHull as Yn, MotionGroupModelDescription as Yo, FeedbackDirectionConstraintNotMetErrorFeedbackNameEnum as Yr, PauseJoggingResponseKindEnum as Ys, CloudDisconnectionStatusDisconnectedStatusEnum as Yt, TrajectoryPausedOnIO as Yu, BusIOProfinet as Z, KinematicsApiAxiosParamCreator as Za, Rectangle as Zc, InitializeMovementResponseKindEnum as Zi, StartOnIO as Zl, CoordinateSystem as Zn, MotionGroupModelsApiAxiosParamCreator as Zo, FeedbackDirectionConstraintNotNormalizedErrorFeedbackNameEnum as Zr, PauseMovementRequestMessageTypeEnum as Zs, CloudDisconnectionStatusDisconnectingStatusEnum as Zt, TrajectoryPlanningApi as Zu, App as _, JoggingPausedByUser as _a, PlaybackSpeedRequestMessageTypeEnum as _c, VersionApiFactory as _d, FlangePayload as _i, SafetyGeometryCapsule as _l, ConfigurationArchiveStatusCreating as _n, LinkChainValueOrKey as _o, ErrorJointPositionCollision as _r, NOVACloudApiAxiosParamCreator as _s, CellApiAxiosParamCreator as _t, TcpOffset as _u, AbbConfiguredPose as a, InverseKinematics422Response as aa, PlanCollisionFreeResponse as ac, TrajectoryWaitForIOKindEnum as ad, FeedbackJointLimitExceededErrorFeedbackNameEnum as ai, RobotConfigurationsApiAxiosParamCreator as al, CollisionContact as an, KukaStatusAndTurnBits as ao, Direction as ar, MultiCollisionSetup as as, BusIOSnap7 as at, StoreCollisionSetupsApiAxiosParamCreator as au, ApplicationApiFactory as b, JoggingPausedNearCollisionKindEnum as ba, Pose as bc, VirtualControllerApi as bd, ForwardKinematics422Response as bi, SafetyGeometryPrism as bl, ConfigurationArchiveStatusErrorStatusEnum as bn, Manufacturer as bo, ErrorMaxIterationsExceededErrorFeedbackNameEnum as br, NanValueError as bs, CloudConfigStatus as bt, TcpVelocityRequest as bu, AbbControllerKindEnum as c, InverseKinematicsValidationError as ca, PlanTrajectoryFailedResponseErrorFeedback as cc, UniversalrobotsControllerKindEnum as cd, FeedbackOutOfWorkspace as ci, RobotController as cl, CollisionFreeAlgorithm as cn, LicenseApiAxiosParamCreator as co, DynamicModel as cr, MultiErrorJointPositionCollision as cs, BusIOsState as ct, StoreObjectApi as cu, AddTrajectoryError as d, JoggingApiAxiosParamCreator as da, PlanTrajectoryResponseResponse as dc, User as dd, FeedbackSingularityErrorFeedbackNameEnum as di, RobotControllerState as dl, CollisionSetupValue as dn, LicenseStatus as do, ErrorDirectionConstraintNotNormalized as dr, MultiSearchCollisionFreeRequest as ds, CapabilityEntry as dt, StoreObjectApiFp as du, InvalidDofError as ea, PauseOnIO as ec, TrajectoryPlanningApiFp as ed, FeedbackInvalidNanValue as ei, RectangularCapsuleShapeTypeEnum as el, ColliderShape as en, KukaConfiguredPose as eo, CubicSplineParameter as er, MotionGroupSetup as es, BusIOProfinetIpConfig as et, StoreCollisionComponentsApi as eu, AddTrajectoryErrorData as f, JoggingApiFactory as fa, PlanValidationError as fc, ValidationError as fd, FeedbackStartJointsMissing as fi, RobotSystemMode as fl, CollisionSetupValueOrKey as fn, LicenseStatusEnum as fo, ErrorDirectionConstraintNotNormalizedErrorFeedbackNameEnum as fr, MultiSearchCollisionFreeResponse as fs, Capsule as ft, StreamIOValuesResponse as fu, ApiVersion as g, JoggingDetailsState as ga, PlaybackSpeedRequest as gc, VersionApiAxiosParamCreator as gd, Flag as gi, SafetyGeometryBox as gl, ConfigurationArchiveStatus as gn, LinkChainValue as go, ErrorJointLimitExceededErrorFeedbackNameEnum as gr, NOVACloudApi as gs, CellApi as gt, SystemApiFp as gu, AddVirtualControllerMotionGroupRequest as h, JoggingDetailsKindEnum as ha, PlaneShapeTypeEnum as hc, VersionApi as hd, FeedbackTorqueExceededErrorFeedbackNameEnum as hi, SafetyGeometry as hl, Configuration as hn, LimitsOverride as ho, ErrorJointLimitExceeded as hr, MultiSearchCollisionFreeValidationErrorAllOfData as hs, Cell as ht, SystemApiFactory as hu, AbbConfdata as i, InverseFeedbackAtIndexErrorFeedback as ia, PlanCollisionFreeRequest as ic, TrajectoryWaitForIO as id, FeedbackJointLimitExceeded as ii, RobotConfigurationsApi as il, Collision as in, KukaPose as io, DHParameter as ir, MovementErrorResponseKindEnum as is, BusIOProfinetVirtualBusTypeEnum as it, StoreCollisionSetupsApi as iu, BlendingAutoBlendingNameEnum as j, JointLimits as ja, ProfinetInputOutputConfig as jc, VirtualControllerInputsOutputsApiFp as jd, IOFloatValue as ji, ServiceStatusStatus as jl, ConstrainedPose as jn, ModbusIO as jo, ExecuteWaypointJoggingResponse as jr, OrientationType as js, CloudConnectionErrorInvalidTokenDetailsCloudResponse as jt, TrajectoryCachingApiAxiosParamCreator as ju, Behavior as k, JointLimitExceededError as ka, ProfinetIODirection as kc, VirtualControllerInputsOutputsApiAxiosParamCreator as kd, IODescription as ki, ServiceStatusResponse as kl, ConfiguredPoseInverseResponse as kn, MidpointInsertionAlgorithm as ko, ExecuteTrajectoryResponse as kr, OperationLimits as ks, CloudConnectionErrorInvalidTokenCodeEnum as kt, TorqueExceededErrorTorqueExceeded as ku, AbbPose as l, InverseKinematicsValidationErrorAllOfData as la, PlanTrajectoryRequest as lc, UpdateCellVersionRequest as ld, FeedbackOutOfWorkspaceErrorFeedbackNameEnum as li, RobotControllerConfiguration as ll, CollisionMotionGroup as ln, LicenseApiFactory as lo, ErrorDirectionConstraintNotMet as lr, MultiJointTrajectory as ls, BusIOsStateEnum as lt, StoreObjectApiAxiosParamCreator as lu, AddTrajectoryResponse as m, JoggingDetails as ma, Plane as mc, ValidationErrorLocInner as md, FeedbackTorqueExceeded as mi, RobotTcpData as ml, Comparator as mn, LimitSet as mo, ErrorInvalidJointCountErrorFeedbackNameEnum as mr, MultiSearchCollisionFreeValidationError as ms, CartesianLimits as mt, SystemApiAxiosParamCreator as mu, NovaConfig as n, InvalidDofErrorKindEnum as na, Plan422Response as nc, TrajectoryRunningKindEnum as nd, FeedbackInvalidSamplingTime as ni, RequestArgs as nl, ColliderValueOrKey as nn, KukaControllerKindEnum as no, Cylinder as nr, MotionGroupStateJointLimitReached as ns, BusIOProfinetSlot as nt, StoreCollisionComponentsApiFactory as nu, AbbController as o, InverseKinematicsRequest as oa, PlanCollisionFreeResponseResponse as oc, UnitType as od, FeedbackNoSolutionInCurrentConfiguration as oi, RobotConfigurationsApiFactory as ol, CollisionError as on, License as oo, DirectionConstraint as or, MultiErrorInvalidJointCount as os, BusIOSnap7BusTypeEnum as ot, StoreCollisionSetupsApiFactory as ou, AddTrajectoryRequest as p, JoggingApiFp as pa, PlanValidationErrorAllOfData as pc, ValidationError2 as pd, FeedbackStartJointsMissingErrorFeedbackNameEnum as pi, RobotTcp as pl, CollisionSetupValueSourceEnum as pn, LimitRange as po, ErrorInvalidJointCount as pr, MultiSearchCollisionFreeResponseResponse as ps, CapsuleShapeTypeEnum as pt, SystemApi as pu, BusIOModbusTCPServer as q, KinematicBranchWrist as qa, RRTConnectAlgorithm as qc, InitializeMovementRequest as qi, StartMovementRequest as ql, ConvertVendorConfiguredPoseRequest as qn, MotionGroupInfo as qo, FeedbackDirectionConstraintNoSolutionExistsErrorFeedbackNameEnum as qr, PauseJoggingRequestMessageTypeEnum as qs, CloudDisconnectionError as qt, TrajectoryPausedByUser as qu, NovaAPIClient as r, InverseFeedbackAtIndex as ra, PlanCollisionFreeFailedResponse as rc, TrajectorySection as rd, FeedbackInvalidSamplingTimeErrorFeedbackNameEnum as ri, RequiredError as rl, ColliderValueSourceEnum as rn, KukaControllerRsiServer as ro, CylinderShapeTypeEnum as rr, MovementErrorResponse as rs, BusIOProfinetVirtual as rt, StoreCollisionComponentsApiFp as ru, AbbControllerEgmServer as s, InverseKinematicsResponse as sa, PlanTrajectoryFailedResponse as sc, UniversalrobotsController as sd, FeedbackNoSolutionInCurrentConfigurationErrorFeedbackNameEnum as si, RobotConfigurationsApiFp as sl, CollisionErrorKindEnum as sn, LicenseApi as so, DirectionConstraintConstraintNameEnum as sr, MultiErrorJointLimitExceeded as ss, BusIOType as st, StoreCollisionSetupsApiFp as su, Nova as t, InvalidDofErrorInvalidDof as ta, Payload as tc, TrajectoryRunning as td, FeedbackInvalidNanValueErrorFeedbackNameEnum as ti, ReleaseChannel as tl, ColliderValue as tn, KukaController as to, CycleTime as tr, MotionGroupState as ts, BusIOProfinetNetwork as tt, StoreCollisionComponentsApiAxiosParamCreator as tu, ActivateLicenseRequest as u, JoggingApi as ua, PlanTrajectoryResponse as uc, UpdateNovaVersionRequest as ud, FeedbackSingularity as ui, RobotControllerConfigurationRequest as ul, CollisionSetup as un, LicenseApiFp as uo, ErrorDirectionConstraintNotMetErrorFeedbackNameEnum as ur, MultiSearchCollisionFree422Response as us, COLLECTION_FORMATS as ut, StoreObjectApiFactory as uu, ApplicationApi as v, JoggingPausedByUserKindEnum as va, PlaybackSpeedResponse as vc, VersionApiFp as vd, FloatValue as vi, SafetyGeometryLozenge as vl, ConfigurationArchiveStatusCreatingStatusEnum as vn, LinkChainValueSourceEnum as vo, ErrorJointPositionCollisionErrorFeedbackNameEnum as vr, NOVACloudApiFactory as vs, CellApiFactory as vt, TcpRequiredError as vu, BUSInputsOutputsApi as w, JoggingPausedNearSingularityKindEnum as wa, PoseWaypointsResponse as wc, VirtualControllerBehaviorApi as wd, GetTrajectoryResponse as wi, SafetyZonePose as wl, ConfigurationResource as wn, MergeTrajectoriesRequest as wo, Execute as wr, NetworkInterface as ws, CloudConfigStatusNotConfiguredStatusEnum as wt, ToolValue as wu, ApplicationApiFp as x, JoggingPausedNearJointLimit as xa, PoseWaypoint as xc, VirtualControllerApiAxiosParamCreator as xd, ForwardKinematicsRequest as xi, SafetyGeometrySphere as xl, ConfigurationArchiveStatusSuccess as xn, MergeTrajectories422Response as xo, ErrorMotionGroupKeyMismatch as xr, NanValueErrorKindEnum as xs, CloudConfigStatusConfigured as xt, TcpVelocityRequestMessageTypeEnum as xu, ApplicationApiAxiosParamCreator as y, JoggingPausedNearCollision as ya, PlaybackSpeedResponseKindEnum as yc, VirtualController as yd, FloatValueValueTypeEnum as yi, SafetyGeometryPlane as yl, ConfigurationArchiveStatusError as yn, ListTrajectoriesResponse as yo, ErrorMaxIterationsExceeded as yr, NOVACloudApiFp as ys, CellApiFp as yt, TcpRequiredErrorKindEnum as yu, BoxShapeTypeEnum as z, JointWaypoint as za, ProgramRun as zc, ZodValidationErrorErrorCodeEnum as zd, InconsistentTrajectorySizeError as zi, SingularityTypeEnum as zl, ControllerApiFactory as zn, MotionCommandPath as zo, FeedbackCollisionErrorFeedbackNameEnum as zr, PathDirectionConstrainedCartesianPTPPathDefinitionNameEnum as zs, CloudConnectionErrorNatsFailed as zt, TrajectoryEnded as zu };
|
|
11911
|
-
//# sourceMappingURL=Nova-
|
|
12497
|
+
export { BusIOModbusClientBusTypeEnum as $, JoggingRunningKindEnum as $a, ProfinetIO as $c, User as $d, IOFloatValueValueTypeEnum as $i, ServiceGroup as $l, ControllerApiAxiosParamCreator as $n, ModbusIO as $o, FeedbackAxisRangeExceededErrorFeedbackNameEnum as $r, OperatingState as $s, CloudConnectionErrorNatsFailedDetails as $t, TcpRequiredError as $u, AxisRange as A, InverseKinematics422Response as Aa, Payload as Ac, TrajectoryPausedOnIO as Ad, ZodValidationErrorErrorDetailsInner as Af, FeedbackTorqueExceeded as Ai, RequiredError as Al, Configuration as An, LicenseApiAxiosParamCreator as Ao, ErrorInvalidJointCountErrorFeedbackNameEnum as Ar, MultiErrorInvalidJointCount as As, CellApiFactory as At, StopActionChunksRequestMessageTypeEnum as Au, BlendingPosition as B, JoggingDetailsKindEnum as Ba, PlanTrajectoryResponseResponse as Bc, TrajectoryWaitForIOKindEnum as Bd, GetKinematicConfiguration422Response as Bi, RobotTcp as Bl, ConfiguredPose as Bn, LinkChainValueSourceEnum as Bo, Execute as Br, NOVACloudApi as Bs, CloudConnectionErrorInvalidToken as Bt, StoreCollisionSetupsApiAxiosParamCreator as Bu, AddVirtualControllerMotionGroupRequest as C, IntegerValue as Ca, PauseJoggingResponse as Cc, TrajectoryExecutionApiAxiosParamCreator as Cd, Waypoint as Cf, FeedbackNoSolutionInCurrentConfigurationErrorFeedbackNameEnum as Ci, Range as Cl, CollisionFreeAlgorithm as Cn, KukaController as Co, DirectionConstraintConstraintNameEnum as Cr, MotionGroupModelsApiFp as Cs, Capsule as Ct, StartMovementResponse as Cu, ApplicationApiAxiosParamCreator as D, InvalidDofErrorKindEnum as Da, PauseMovementResponse as Dc, TrajectoryIdMessageTypeEnum as Dd, ZodValidationError as Df, FeedbackSingularityErrorFeedbackNameEnum as Di, RectangularCapsuleShapeTypeEnum as Dl, CollisionSetupValueOrKey as Dn, KukaStatusAndTurnBits as Do, ErrorDirectionConstraintNotNormalized as Dr, MovementErrorResponse as Ds, Cell as Dt, StaubliControllerKindEnum as Du, ApplicationApi as E, InvalidDofErrorInvalidDof as Ea, PauseMovementRequestMessageTypeEnum as Ec, TrajectoryId as Ed, YaskawaControllerKindEnum as Ef, FeedbackSingularity as Ei, RectangularCapsule as El, CollisionSetupValue as En, KukaPose as Eo, ErrorDirectionConstraintNotMetErrorFeedbackNameEnum as Er, MotionGroupStateJointLimitReached as Es, CartesianVelocity as Et, StaubliController as Eu, BUSInputsOutputsApiFp as F, JoggingApi as Fa, PlanCollisionFreeResponseResponse as Fc, TrajectoryPlanningApiFp as Fd, FloatValueValueTypeEnum as Fi, RobotController as Fl, ConfigurationArchiveStatusErrorStatusEnum as Fn, LimitRange as Fo, ErrorMaxIterationsExceeded as Fr, MultiSearchCollisionFreeRequest as Fs, CloudConfigStatusNotConfigured as Ft, StoreCollisionComponentsApi as Fu, BostondynamicsController as G, JoggingPausedNearCollisionKindEnum as Ga, PlaybackSpeedRequest as Gc, UniversalrobotsController as Gd, GetTrajectoryResponse as Gi, SafetyGeometryLozenge as Gl, ConfiguredPoseInverseResponseResponse as Gn, MergeTrajectoriesErrorErrorFeedback as Go, ExecuteJoggingResponse as Gr, NanValueErrorKindEnum as Gs, CloudConnectionErrorLeafnodeConnectionErrorCodeEnum as Gt, StoreObjectApiFactory as Gu, BlendingSpace as H, JoggingPausedByUser as Ha, PlanValidationErrorAllOfData as Hc, UnitreeController as Hd, GetKinematicConfigurationResponse as Hi, SafetyGeometry as Hl, ConfiguredPoseInverseFailedResponse as Hn, Manufacturer as Ho, ExecuteActionChunksResponse as Hr, NOVACloudApiFactory as Hs, CloudConnectionErrorInvalidTokenDetails as Ht, StoreCollisionSetupsApiFp as Hu, BaseAPI as I, JoggingApiAxiosParamCreator as Ia, PlanTrajectoryFailedResponse as Ic, TrajectoryRunning as Id, ForwardKinematics422Response as Ii, RobotControllerConfiguration as Il, ConfigurationArchiveStatusSuccess as In, LimitSet as Io, ErrorMaxIterationsExceededErrorFeedbackNameEnum as Ir, MultiSearchCollisionFreeResponse as Is, CloudConfigStatusNotConfiguredStatusEnum as It, StoreCollisionComponentsApiAxiosParamCreator as Iu, Box as J, JoggingPausedNearSingularity as Ja, PlaybackSpeedResponseKindEnum as Jc, UnpauseActionChunksRequestMessageTypeEnum as Jd, IOBooleanValueValueTypeEnum as Ji, SafetyGeometrySphere as Jl, ContainerImage as Jn, MergeTrajectoriesResponseFeedbackInner as Jo, ExternalJointStreamDatapoint as Jr, NetworkDevice as Js, CloudConnectionErrorLeafnodeConnectionTimeoutCodeEnum as Jt, SystemApi as Ju, BostondynamicsControllerKindEnum as K, JoggingPausedNearJointLimit as Ka, PlaybackSpeedRequestMessageTypeEnum as Kc, UniversalrobotsControllerKindEnum as Kd, HTTPValidationError as Ki, SafetyGeometryPlane as Kl, ConstrainedPose as Kn, MergeTrajectoriesRequest as Ko, ExecuteTrajectoryRequest as Kr, NanValueErrorNanValue as Ks, CloudConnectionErrorLeafnodeConnectionErrorDetails as Kt, StoreObjectApiFp as Ku, Behavior as L, JoggingApiFactory as La, PlanTrajectoryFailedResponseErrorFeedback as Lc, TrajectoryRunningKindEnum as Ld, ForwardKinematicsRequest as Li, RobotControllerConfigurationRequest as Ll, ConfigurationArchiveStatusSuccessStatusEnum as Ln, LimitsOverride as Lo, ErrorMotionGroupKeyMismatch as Lr, MultiSearchCollisionFreeResponseResponse as Ls, CloudConfiguration as Lt, StoreCollisionComponentsApiFactory as Lu, BUSInputsOutputsApi as M, InverseKinematicsResponse as Ma, PlanCollisionFreeFailedResponse as Mc, TrajectoryPlanningApi as Md, operationServerMap as Mf, Flag as Mi, RobotConfigurationsApiAxiosParamCreator as Ml, ConfigurationArchiveStatusCreating as Mn, LicenseApiFp as Mo, ErrorJointLimitExceededErrorFeedbackNameEnum as Mr, MultiErrorJointPositionCollision as Ms, CloudConfigStatus as Mt, StopActionChunksResponseKindEnum as Mu, BUSInputsOutputsApiAxiosParamCreator as N, InverseKinematicsValidationError as Na, PlanCollisionFreeRequest as Nc, TrajectoryPlanningApiAxiosParamCreator as Nd, FlangePayload as Ni, RobotConfigurationsApiFactory as Nl, ConfigurationArchiveStatusCreatingStatusEnum as Nn, LicenseStatus as No, ErrorJointPositionCollision as Nr, MultiJointTrajectory as Ns, CloudConfigStatusConfigured as Nt, StorageKey as Nu, ApplicationApiFactory as O, InverseFeedbackAtIndex as Oa, PauseMovementResponseKindEnum as Oc, TrajectoryPausedByUser as Od, ZodValidationErrorError as Of, FeedbackStartJointsMissing as Oi, ReleaseChannel as Ol, CollisionSetupValueSourceEnum as On, License as Oo, ErrorDirectionConstraintNotNormalizedErrorFeedbackNameEnum as Or, MovementErrorResponseKindEnum as Os, CellApi as Ot, StaubliControllerRtiServer as Ou, BUSInputsOutputsApiFactory as P, InverseKinematicsValidationErrorAllOfData as Pa, PlanCollisionFreeResponse as Pc, TrajectoryPlanningApiFactory as Pd, FloatValue as Pi, RobotConfigurationsApiFp as Pl, ConfigurationArchiveStatusError as Pn, LicenseStatusEnum as Po, ErrorJointPositionCollisionErrorFeedbackNameEnum as Pr, MultiSearchCollisionFree422Response as Ps, CloudConfigStatusConfiguredStatusEnum as Pt, StorageKeySourceEnum as Pu, BusIOModbusClient as Q, JoggingRunning as Qa, ProfinetDescription as Qc, UpdateNovaVersionRequest as Qd, IOFloatValue as Qi, SafetyZones as Ql, ControllerApi as Qn, MidpointInsertionAlgorithmAlgorithmNameEnum as Qo, FeedbackAxisRangeExceeded as Qr, OpMode as Qs, CloudConnectionErrorNatsFailedCodeEnum as Qt, TcpOffset as Qu, BlendingAuto as R, JoggingApiFp as Ra, PlanTrajectoryRequest as Rc, TrajectorySection as Rd, ForwardKinematicsResponse as Ri, RobotControllerState as Rl, ConfigurationParameters as Rn, LinkChainValue as Ro, ErrorUnsupportedOperation as Rr, MultiSearchCollisionFreeValidationError as Rs, CloudConnectionError as Rt, StoreCollisionComponentsApiFp as Ru, AddTrajectoryResponse as S, InitializeMovementResponseKindEnum as Sa, PauseJoggingRequestMessageTypeEnum as Sc, TrajectoryExecutionApi as Sd, WaitForIOEventRequest as Sf, FeedbackNoSolutionInCurrentConfiguration as Si, RRTConnectAlgorithmStepSize as Sl, CollisionErrorKindEnum as Sn, KukaConfiguredPose as So, DirectionConstraint as Sr, MotionGroupModelsApiFactory as Ss, CapabilityEntry as St, StartMovementRequestMessageTypeEnum as Su, App as T, InvalidDofError as Ta, PauseMovementRequest as Tc, TrajectoryExecutionApiFp as Td, YaskawaController as Tf, FeedbackOutOfWorkspaceErrorFeedbackNameEnum as Ti, RectangleShapeTypeEnum as Tl, CollisionSetup as Tn, KukaControllerRsiServer as To, ErrorDirectionConstraintNotMet as Tr, MotionGroupState as Ts, CartesianLimits as Tt, StartOnIO as Tu, BooleanValue as U, JoggingPausedByUserKindEnum as Ua, Plane as Uc, UnitreeControllerKindEnum as Ud, GetKinematicConfigurationValidationError as Ui, SafetyGeometryBox as Ul, ConfiguredPoseInverseRequest as Un, MergeTrajectories422Response as Uo, ExecuteDetails as Ur, NOVACloudApiFp as Us, CloudConnectionErrorInvalidTokenDetailsCloudResponse as Ut, StoreObjectApi as Uu, BlendingPositionBlendingNameEnum as V, JoggingDetailsState as Va, PlanValidationError as Vc, UnitType as Vd, GetKinematicConfigurationRequest as Vi, RobotTcpData as Vl, ConfiguredPoseInverse422Response as Vn, ListTrajectoriesResponse as Vo, ExecuteActionChunksRequest as Vr, NOVACloudApiAxiosParamCreator as Vs, CloudConnectionErrorInvalidTokenCodeEnum as Vt, StoreCollisionSetupsApiFactory as Vu, BooleanValueValueTypeEnum as W, JoggingPausedNearCollision as Wa, PlaneShapeTypeEnum as Wc, UnitreeControllerRobotTypeEnum as Wd, GetKinematicConfigurationValidationErrorAllOfData as Wi, SafetyGeometryCapsule as Wl, ConfiguredPoseInverseResponse as Wn, MergeTrajectoriesError as Wo, ExecuteJoggingRequest as Wr, NanValueError as Ws, CloudConnectionErrorLeafnodeConnectionError as Wt, StoreObjectApiAxiosParamCreator as Wu, BoxShapeTypeEnum as X, JoggingPausedOnIO as Xa, PoseWaypoint as Xc, UnpauseActionChunksResponseKindEnum as Xd, IODescription as Xi, SafetyZone as Xl, ContainerResources as Xn, MergeTrajectoriesValidationError as Xo, FanucController as Xr, NetworkLinkState as Xs, CloudConnectionErrorLeafnodeRestartTimeoutCodeEnum as Xt, SystemApiFactory as Xu, BoxBoxTypeEnum as Y, JoggingPausedNearSingularityKindEnum as Ya, Pose as Yc, UnpauseActionChunksResponse as Yd, IOBoundary as Yi, SafetyStateType as Yl, ContainerImageSecretsInner as Yn, MergeTrajectoriesSegment as Yo, ExternalJointStreamRequest as Yr, NetworkInterface as Ys, CloudConnectionErrorLeafnodeRestartTimeout as Yt, SystemApiAxiosParamCreator as Yu, BusIODescription as Z, JoggingPausedOnIOKindEnum as Za, PoseWaypointKindEnum as Zc, UpdateCellVersionRequest as Zd, IODirection as Zi, SafetyZonePose as Zl, ContainerStorage as Zn, MidpointInsertionAlgorithm as Zo, FanucControllerKindEnum as Zr, NetworkState as Zs, CloudConnectionErrorNatsFailed as Zt, SystemApiFp as Zu, ActionChunkStreamingApiFp as _, InitializeJoggingResponseKindEnum as _a, PauseActionChunksRequest as _c, TrajectoryDetails as _d, VirtualControllerInputsOutputsApiAxiosParamCreator as _f, FeedbackInvalidNanValueErrorFeedbackNameEnum as _i, ProjectJointPositionDirectionConstraintResponse as _l, ColliderValueOrKey as _n, KinematicModel as _o, CycleTime as _r, MotionGroupJoints as _s, BusIOSnap7BusTypeEnum as _t, Snap7IODirection as _u, AbbConfiguredPose as a, ImageCredentials as aa, PathCircle as ac, ToolValue as ad, VersionApiFactory as af, FeedbackCubicSplineIsNotIncreasingErrorFeedbackNameEnum as ai, ProfinetSlotOffset as al, CloudDisconnectionError as an, JointTypeEnum as ao, ControllerInputsOutputsApiFactory as ar, MotionCommand as as, BusIOModbusTCPServerNetworkTypeEnum as at, SessionApi as au, AddTrajectoryErrorData as b, InitializeMovementRequestTrajectory as ba, PauseActionChunksResponseKindEnum as bc, TrajectoryEnded as bd, VirtualControllerKindEnum as bf, FeedbackJointLimitExceeded as bi, RRTConnectAlgorithm as bl, CollisionContact as bn, KinematicsApiFactory as bo, DHParameter as br, MotionGroupModelsApi as bs, BusIOsStateEnum as bt, SphereShapeTypeEnum as bu, AbbControllerKindEnum as c, InconsistentTrajectorySizeErrorKindEnum as ca, PathCubicSplinePathDefinitionNameEnum as cc, TorqueExceededError as cd, VirtualControllerApi as cf, FeedbackDirectionConstraintNoSolutionExists as ci, ProgramApi as cl, CloudDisconnectionStatusDisconnecting as cn, JointVelocityResponse as co, ConvertVendorConfiguredPose422Response as cr, MotionGroupApi as cs, BusIOProfinet as ct, SessionApiFp as cu, ActionChunkRequestMessageTypeEnum as d, InitializeActionChunksRequestMessageTypeEnum as da, PathDirectionConstrainedJointPTP as dc, TrajectoryCachingApi as dd, VirtualControllerApiFp as df, FeedbackDirectionConstraintNotMetErrorFeedbackNameEnum as di, ProgramApiFp as dl, CloudStatus as dn, JointWaypointKindEnum as do, ConvexHull as dr, MotionGroupApiFp as ds, BusIOProfinetIpConfig as dt, SettableRobotSystemMode as du, IOIntegerValue as ea, OperationLimits as ec, TcpRequiredErrorKindEnum as ed, ValidationError as ef, FeedbackCollision as ei, ProfinetIOData as el, CloudConnectionErrorUnexpectedResponse as en, JointLimitExceededError as eo, ControllerApiFactory as er, ModbusIOArea as es, BusIOModbusServer as et, ServiceStatus as eu, ActionChunkResponse as f, InitializeActionChunksResponse as fa, PathDirectionConstrainedJointPTPPathDefinitionNameEnum as fc, TrajectoryCachingApiAxiosParamCreator as fd, VirtualControllerBehaviorApi as ff, FeedbackDirectionConstraintNotNormalized as fi, ProgramRun as fl, CloudStatusChecks as fn, KinematicBranch as fo, ConvexHullShapeTypeEnum as fr, MotionGroupConfiguration as fs, BusIOProfinetNetwork as ft, SingularityHandling as fu, ActionChunkStreamingApiFactory as g, InitializeJoggingResponse as ga, PathLinePathDefinitionNameEnum as gc, TrajectoryDataMessageTypeEnum as gd, VirtualControllerInputsOutputsApi as gf, FeedbackInvalidNanValue as gi, ProjectJointPositionDirectionConstraintRequest as gl, ColliderValue as gn, KinematicConfiguration as go, CubicSplineParameter as gr, MotionGroupInfo as gs, BusIOSnap7 as gt, Snap7IOData as gu, ActionChunkStreamingApiAxiosParamCreator as h, InitializeJoggingRequestMessageTypeEnum as ha, PathLine as hc, TrajectoryData as hd, VirtualControllerBehaviorApiFp as hf, FeedbackInvalidDofErrorFeedbackNameEnum as hi, ProjectJointPositionDirectionConstraint422Response as hl, ColliderShape as hn, KinematicBranchWrist as ho, CopyMotionGroupModelRequest as hr, MotionGroupFromType as hs, BusIOProfinetVirtualBusTypeEnum as ht, Snap7IOArea as hu, AbbConfdata as i, IOValueType as ia, PathCartesianPTPPathDefinitionNameEnum as ic, TcpVelocityResponseKindEnum as id, VersionApiAxiosParamCreator as if, FeedbackCubicSplineIsNotIncreasing as ii, ProfinetSlotDescription as il, CloudConnectionRequest as in, JointTrajectory as io, ControllerInputsOutputsApiAxiosParamCreator as ir, ModelError as is, BusIOModbusTCPServer as it, ServiceStatusStatus as iu, BASE_PATH as j, InverseKinematicsRequest as ja, Plan422Response as jc, TrajectoryPausedOnIOKindEnum as jd, ZodValidationErrorErrorDetailsInnerPathInner as jf, FeedbackTorqueExceededErrorFeedbackNameEnum as ji, RobotConfigurationsApi as jl, ConfigurationArchiveStatus as jn, LicenseApiFactory as jo, ErrorJointLimitExceeded as jr, MultiErrorJointLimitExceeded as js, CellApiFp as jt, StopActionChunksResponse as ju, ApplicationApiFp as k, InverseFeedbackAtIndexErrorFeedback as ka, PauseOnIO as kc, TrajectoryPausedByUserKindEnum as kd, ZodValidationErrorErrorCodeEnum as kf, FeedbackStartJointsMissingErrorFeedbackNameEnum as ki, RequestArgs as kl, Comparator as kn, LicenseApi as ko, ErrorInvalidJointCount as kr, MultiCollisionSetup as ks, CellApiAxiosParamCreator as kt, StopActionChunksRequest as ku, AbbPose as l, InertiaTensor as la, PathDirectionConstrainedCartesianPTP as lc, TorqueExceededErrorKindEnum as ld, VirtualControllerApiAxiosParamCreator as lf, FeedbackDirectionConstraintNoSolutionExistsErrorFeedbackNameEnum as li, ProgramApiAxiosParamCreator as ll, CloudDisconnectionStatusDisconnectingStatusEnum as ln, JointVelocityResponseKindEnum as lo, ConvertVendorConfiguredPoseRequest as lr, MotionGroupApiAxiosParamCreator as ls, BusIOProfinetBusTypeEnum as lt, SessionResponse as lu, ActionChunkStreamingApi as m, InitializeJoggingRequest as ma, PathJointPTPPathDefinitionNameEnum as mc, TrajectoryCachingApiFp as md, VirtualControllerBehaviorApiFactory as mf, FeedbackInvalidDof as mi, ProgramStartRequest as ml, Collider as mn, KinematicBranchShoulder as mo, CoordinateSystemData as mr, MotionGroupFromJson as ms, BusIOProfinetVirtual as mt, Snap7IO as mu, NovaConfig as n, IOOrigin as na, OrientationType as nc, TcpVelocityRequestMessageTypeEnum as nd, ValidationErrorLocInner as nf, FeedbackCommandsMissing as ni, ProfinetIOTypeEnum as nl, CloudConnectionErrorUnexpectedResponseDetails as nn, JointLimits as no, ControllerDescription as nr, ModbusIOData as ns, BusIOModbusTCPClient as nt, ServiceStatusResponse as nu, AbbController as o, InconsistentTrajectorySizeError as oa, PathCirclePathDefinitionNameEnum as oc, ToolValueOrKey as od, VersionApiFp as of, FeedbackCubicSplineNotAtStartPose as oi, ProfinetSubSlotDescription as ol, CloudDisconnectionStatusDisconnected as on, JointVelocityRequest as oo, ControllerInputsOutputsApiFp as or, MotionCommandBlending as os, BusIOModbusVirtual as ot, SessionApiAxiosParamCreator as ou, ActionChunkResponseKindEnum as p, InitializeActionChunksResponseKindEnum as pa, PathJointPTP as pc, TrajectoryCachingApiFactory as pd, VirtualControllerBehaviorApiAxiosParamCreator as pf, FeedbackDirectionConstraintNotNormalizedErrorFeedbackNameEnum as pi, ProgramRunState as pl, CloudStatusErrors as pn, KinematicBranchElbow as po, CoordinateSystem as pr, MotionGroupDescription as ps, BusIOProfinetSlot as pt, SingularityTypeEnum as pu, BostondynamicsControllerRobotTypeEnum as q, JoggingPausedNearJointLimitKindEnum as qa, PlaybackSpeedResponse as qc, UnpauseActionChunksRequest as qd, IOBooleanValue as qi, SafetyGeometryPrism as ql, ContainerEnvironmentInner as qn, MergeTrajectoriesResponse as qo, ExecuteTrajectoryResponse as qr, NetworkBackend as qs, CloudConnectionErrorLeafnodeConnectionTimeout as qt, StreamIOValuesResponse as qu, NovaAPIClient as r, IOValue as ra, PathCartesianPTP as rc, TcpVelocityResponse as rd, VersionApi as rf, FeedbackCommandsMissingErrorFeedbackNameEnum as ri, ProfinetInputOutputConfig as rl, CloudConnectionErrorUnexpectedResponseDetailsCloudResponse as rn, JointPTPMotion as ro, ControllerInputsOutputsApi as rr, ModbusIOTypeEnum as rs, BusIOModbusTCPClientNetworkTypeEnum as rt, ServiceStatusSeverity as ru, AbbControllerEgmServer as s, InconsistentTrajectorySizeErrorInconsistentTrajectorySize as sa, PathCubicSpline as sc, ToolValueSourceEnum as sd, VirtualController as sf, FeedbackCubicSplineNotAtStartPoseErrorFeedbackNameEnum as si, Program as sl, CloudDisconnectionStatusDisconnectedStatusEnum as sn, JointVelocityRequestMessageTypeEnum as so, ControllerNetworkInterface as sr, MotionCommandPath as ss, BusIOModbusVirtualBusTypeEnum as st, SessionApiFactory as su, Nova as t, IOIntegerValueValueTypeEnum as ta, OperationMode as tc, TcpVelocityRequest as td, ValidationError2 as tf, FeedbackCollisionErrorFeedbackNameEnum as ti, ProfinetIODirection as tl, CloudConnectionErrorUnexpectedResponseCodeEnum as tn, JointLimitExceededErrorKindEnum as to, ControllerApiFp as tr, ModbusIOByteOrder as ts, BusIOModbusServerBusTypeEnum as tt, ServiceStatusPhase as tu, ActionChunkRequest as u, InitializeActionChunksRequest as ua, PathDirectionConstrainedCartesianPTPPathDefinitionNameEnum as uc, TorqueExceededErrorTorqueExceeded as ud, VirtualControllerApiFactory as uf, FeedbackDirectionConstraintNotMet as ui, ProgramApiFactory as ul, CloudRegistrationSuccessResponse as un, JointWaypoint as uo, ConvertVendorConfiguredPoseRequestVendorConfiguredPoses as ur, MotionGroupApiFactory as us, BusIOProfinetDefaultRoute as ut, SetIO as uu, ActivateLicenseRequest as v, InitializeMovementRequest as va, PauseActionChunksRequestMessageTypeEnum as vc, TrajectoryDetailsKindEnum as vd, VirtualControllerInputsOutputsApiFactory as vf, FeedbackInvalidSamplingTime as vi, ProjectJointPositionDirectionConstraintValidationError as vl, ColliderValueSourceEnum as vn, KinematicsApi as vo, Cylinder as vr, MotionGroupModelCatalog as vs, BusIOType as vt, Snap7IOTypeEnum as vu, ApiVersion as w, IntegerValueValueTypeEnum as wa, PauseJoggingResponseKindEnum as wc, TrajectoryExecutionApiFactory as wd, WaypointCoordinates as wf, FeedbackOutOfWorkspace as wi, Rectangle as wl, CollisionMotionGroup as wn, KukaControllerKindEnum as wo, DynamicModel as wr, MotionGroupSetup as ws, CapsuleShapeTypeEnum as wt, StartMovementResponseKindEnum as wu, AddTrajectoryRequest as x, InitializeMovementResponse as xa, PauseJoggingRequest as xc, TrajectoryEndedKindEnum as xd, VirtualRobotConfiguration as xf, FeedbackJointLimitExceededErrorFeedbackNameEnum as xi, RRTConnectAlgorithmAlgorithmNameEnum as xl, CollisionError as xn, KinematicsApiFp as xo, Direction as xr, MotionGroupModelsApiAxiosParamCreator as xs, COLLECTION_FORMATS as xt, StartMovementRequest as xu, AddTrajectoryError as y, InitializeMovementRequestMessageTypeEnum as ya, PauseActionChunksResponse as yc, TrajectoryDetailsState as yd, VirtualControllerInputsOutputsApiFp as yf, FeedbackInvalidSamplingTimeErrorFeedbackNameEnum as yi, ProjectJointPositionDirectionConstraintValidationErrorAllOfData as yl, Collision as yn, KinematicsApiAxiosParamCreator as yo, CylinderShapeTypeEnum as yr, MotionGroupModelDescription as ys, BusIOsState as yt, Sphere as yu, BlendingAutoBlendingNameEnum as z, JoggingDetails as za, PlanTrajectoryResponse as zc, TrajectoryWaitForIO as zd, ForwardKinematicsValidationError as zi, RobotSystemMode as zl, ConfigurationResource as zn, LinkChainValueOrKey as zo, ErrorUnsupportedOperationErrorFeedbackNameEnum as zr, MultiSearchCollisionFreeValidationErrorAllOfData as zs, CloudConnectionErrorError as zt, StoreCollisionSetupsApi as zu };
|
|
12498
|
+
//# sourceMappingURL=Nova-Dkb6yPVr.d.mts.map
|