@wandelbots/nova-js 4.3.0-pr.318.e48e5ca → 4.4.0-nova-api-dev.26-7-0-dev-4
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-asaP_dDy.d.mts} +839 -216
- package/dist/Nova-asaP_dDy.d.mts.map +1 -0
- package/dist/experimental/math/index.d.mts +41 -41
- package/dist/experimental/math/index.d.mts.map +1 -1
- package/dist/experimental/math/index.mjs +9 -6
- package/dist/experimental/math/index.mjs.map +1 -1
- package/dist/experimental/nats/index.d.mts +20 -3
- package/dist/experimental/nats/index.d.mts.map +1 -1
- package/dist/experimental/nats/index.mjs +12 -1
- package/dist/experimental/nats/index.mjs.map +1 -1
- package/dist/v2/index.d.mts +2 -2
- package/dist/v2/index.mjs +361 -128
- package/dist/v2/index.mjs.map +1 -1
- package/package.json +2 -2
- package/src/experimental/math/index.ts +8 -8
- package/src/experimental/nats/index.ts +4 -1
- package/src/lib/experimental/math/Quaternion.ts +14 -2
- package/src/lib/experimental/math/{augmentMath.ts → withMath.ts} +3 -3
- package/src/lib/experimental/nats/NovaNatsClient.ts +41 -2
- 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.7.0-dev.4/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
|
|
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
|
}
|
|
@@ -1279,7 +1428,7 @@ interface CoordinateSystem {
|
|
|
1279
1428
|
*/
|
|
1280
1429
|
'position'?: Array<number>;
|
|
1281
1430
|
/**
|
|
1282
|
-
* Describes an orientation in 3D space. A
|
|
1431
|
+
* Describes an orientation in 3D space. A three-to-four-dimensional vector [x, y, z, w] with double precision.
|
|
1283
1432
|
*/
|
|
1284
1433
|
'orientation'?: Array<number>;
|
|
1285
1434
|
'orientation_type'?: OrientationType;
|
|
@@ -1302,7 +1451,7 @@ interface CoordinateSystemData {
|
|
|
1302
1451
|
*/
|
|
1303
1452
|
'position'?: Array<number>;
|
|
1304
1453
|
/**
|
|
1305
|
-
* Describes an orientation in 3D space. A
|
|
1454
|
+
* Describes an orientation in 3D space. A three-to-four-dimensional vector [x, y, z, w] with double precision.
|
|
1306
1455
|
*/
|
|
1307
1456
|
'orientation'?: Array<number>;
|
|
1308
1457
|
'orientation_type'?: OrientationType;
|
|
@@ -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";
|
|
2428
|
-
};
|
|
2429
|
-
type JointWaypointsRequestMessageTypeEnum = typeof JointWaypointsRequestMessageTypeEnum[keyof typeof JointWaypointsRequestMessageTypeEnum];
|
|
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";
|
|
2649
|
+
declare const JointWaypointKindEnum: {
|
|
2650
|
+
readonly Joints: "JOINTS";
|
|
2442
2651
|
};
|
|
2443
|
-
type
|
|
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,12 @@ 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 Techman: "techman";
|
|
2936
|
+
readonly Unitree: "unitree";
|
|
2715
2937
|
readonly Universalrobots: "universalrobots";
|
|
2716
2938
|
readonly Yaskawa: "yaskawa";
|
|
2717
2939
|
};
|
|
@@ -2760,7 +2982,7 @@ interface MergeTrajectoriesSegment {
|
|
|
2760
2982
|
*/
|
|
2761
2983
|
'trajectory': JointTrajectory;
|
|
2762
2984
|
/**
|
|
2763
|
-
* Limits override
|
|
2985
|
+
* 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
2986
|
*/
|
|
2765
2987
|
'limits_override'?: LimitsOverride;
|
|
2766
2988
|
/**
|
|
@@ -2881,7 +3103,7 @@ interface ModelError {
|
|
|
2881
3103
|
interface MotionCommand {
|
|
2882
3104
|
'blending'?: MotionCommandBlending;
|
|
2883
3105
|
/**
|
|
2884
|
-
* Limits override
|
|
3106
|
+
* 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
3107
|
*/
|
|
2886
3108
|
'limits_override'?: LimitsOverride;
|
|
2887
3109
|
'path': MotionCommandPath;
|
|
@@ -2895,6 +3117,27 @@ type MotionCommandBlending = BlendingAuto | BlendingPosition;
|
|
|
2895
3117
|
* @type MotionCommandPath
|
|
2896
3118
|
*/
|
|
2897
3119
|
type MotionCommandPath = PathCartesianPTP | PathCircle | PathCubicSpline | PathDirectionConstrainedCartesianPTP | PathDirectionConstrainedJointPTP | PathJointPTP | PathLine;
|
|
3120
|
+
/**
|
|
3121
|
+
* Response for motion group configuration lookup.
|
|
3122
|
+
*/
|
|
3123
|
+
interface MotionGroupConfiguration {
|
|
3124
|
+
/**
|
|
3125
|
+
* Name of the robot configuration containing this motion group.
|
|
3126
|
+
*/
|
|
3127
|
+
'robot_configuration': string;
|
|
3128
|
+
/**
|
|
3129
|
+
* Identifies a single motion group model. See [getMotionGroupModels](#/operations/getMotionGroupModels) for supported types.
|
|
3130
|
+
*/
|
|
3131
|
+
'motion_group_model': string;
|
|
3132
|
+
/**
|
|
3133
|
+
* Internal UID of the motion group inside the GCI transcript.
|
|
3134
|
+
*/
|
|
3135
|
+
'motion_group_uid': number;
|
|
3136
|
+
/**
|
|
3137
|
+
* Full GCI transcript (JSON) containing the robot configuration and motion group.
|
|
3138
|
+
*/
|
|
3139
|
+
'content': string;
|
|
3140
|
+
}
|
|
2898
3141
|
/**
|
|
2899
3142
|
* 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
3143
|
*/
|
|
@@ -2971,7 +3214,7 @@ interface MotionGroupFromJson {
|
|
|
2971
3214
|
*/
|
|
2972
3215
|
'motion_group': string;
|
|
2973
3216
|
/**
|
|
2974
|
-
*
|
|
3217
|
+
* JSON configuration of the virtual robot controller, can be obtained from the physical controller\'s configuration via [getVirtualControllerConfiguration](#/operations/getVirtualControllerConfiguration).
|
|
2975
3218
|
*/
|
|
2976
3219
|
'json_data': string;
|
|
2977
3220
|
/**
|
|
@@ -2979,7 +3222,7 @@ interface MotionGroupFromJson {
|
|
|
2979
3222
|
*/
|
|
2980
3223
|
'extracted_motion_group_id': string;
|
|
2981
3224
|
/**
|
|
2982
|
-
* Initial joint position of the added motion group. Provides the joint position as a JSON array of float values in radians
|
|
3225
|
+
* 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
3226
|
*/
|
|
2984
3227
|
'initial_joint_position'?: string;
|
|
2985
3228
|
}
|
|
@@ -2993,7 +3236,7 @@ interface MotionGroupFromType {
|
|
|
2993
3236
|
*/
|
|
2994
3237
|
'motion_group_model': string;
|
|
2995
3238
|
/**
|
|
2996
|
-
* Initial joint position of the added motion group. Provides the joint position as a JSON array of float values in radians
|
|
3239
|
+
* 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
3240
|
*/
|
|
2998
3241
|
'initial_joint_position'?: string;
|
|
2999
3242
|
}
|
|
@@ -3032,6 +3275,19 @@ interface MotionGroupJoints {
|
|
|
3032
3275
|
*/
|
|
3033
3276
|
'torques'?: Array<number>;
|
|
3034
3277
|
}
|
|
3278
|
+
/**
|
|
3279
|
+
* Entry for a motion group with its name and readable name.
|
|
3280
|
+
*/
|
|
3281
|
+
interface MotionGroupModelCatalog {
|
|
3282
|
+
/**
|
|
3283
|
+
* Name of the motion group.
|
|
3284
|
+
*/
|
|
3285
|
+
'motion_group_name': string;
|
|
3286
|
+
/**
|
|
3287
|
+
* Readable name for the motion group.
|
|
3288
|
+
*/
|
|
3289
|
+
'readable_name': string;
|
|
3290
|
+
}
|
|
3035
3291
|
/**
|
|
3036
3292
|
* Metadata about a motion group model.
|
|
3037
3293
|
*/
|
|
@@ -3110,17 +3366,25 @@ interface MotionGroupState {
|
|
|
3110
3366
|
*/
|
|
3111
3367
|
'joint_current'?: Array<number>;
|
|
3112
3368
|
/**
|
|
3113
|
-
* Pose of the flange. Positions are in [mm]. Orientations are in [rad]. The pose is relative to the
|
|
3369
|
+
* 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
3370
|
*/
|
|
3115
3371
|
'flange_pose'?: Pose;
|
|
3372
|
+
/**
|
|
3373
|
+
* Cartesian velocity of the flange. The velocity is relative to the response coordinate system specified in the request.
|
|
3374
|
+
*/
|
|
3375
|
+
'flange_velocity'?: CartesianVelocity;
|
|
3116
3376
|
/**
|
|
3117
3377
|
* Unique identifier addressing the active TCP. Might not be returned for positioners as some do not support TCPs, depending on the model.
|
|
3118
3378
|
*/
|
|
3119
3379
|
'tcp'?: string;
|
|
3120
3380
|
/**
|
|
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
|
|
3381
|
+
* 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
3382
|
*/
|
|
3123
3383
|
'tcp_pose'?: Pose;
|
|
3384
|
+
/**
|
|
3385
|
+
* Cartesian velocity of the TCP selected on the robot control panel. The velocity is relative to the response coordinate system specified in the request.
|
|
3386
|
+
*/
|
|
3387
|
+
'tcp_velocity'?: CartesianVelocity;
|
|
3124
3388
|
/**
|
|
3125
3389
|
* 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
3390
|
*/
|
|
@@ -3286,55 +3550,61 @@ interface NanValueErrorNanValue {
|
|
|
3286
3550
|
*/
|
|
3287
3551
|
'joint_position'?: Array<number>;
|
|
3288
3552
|
}
|
|
3553
|
+
/**
|
|
3554
|
+
* Network attachment method used to expose the interface to workloads.
|
|
3555
|
+
*/
|
|
3556
|
+
declare const NetworkBackend: {
|
|
3557
|
+
readonly Macvlan: "macvlan";
|
|
3558
|
+
readonly Sriov: "sriov";
|
|
3559
|
+
};
|
|
3560
|
+
type NetworkBackend = typeof NetworkBackend[keyof typeof NetworkBackend];
|
|
3289
3561
|
interface NetworkDevice {
|
|
3290
3562
|
/**
|
|
3291
|
-
*
|
|
3563
|
+
* IPv4 address of the discovered device.
|
|
3292
3564
|
*/
|
|
3293
3565
|
'ip': string;
|
|
3294
3566
|
/**
|
|
3295
|
-
*
|
|
3567
|
+
* MAC address of the discovered device.
|
|
3296
3568
|
*/
|
|
3297
3569
|
'mac': string;
|
|
3298
3570
|
/**
|
|
3299
|
-
*
|
|
3571
|
+
* Hardware manufacturer name derived from the MAC address, omitted when unknown.
|
|
3300
3572
|
*/
|
|
3301
3573
|
'vendor'?: string;
|
|
3302
3574
|
}
|
|
3303
3575
|
interface NetworkInterface {
|
|
3304
3576
|
/**
|
|
3305
|
-
*
|
|
3577
|
+
* Host network interface name, e.g., enp0s31f6.
|
|
3306
3578
|
*/
|
|
3307
3579
|
'name': string;
|
|
3308
3580
|
/**
|
|
3309
|
-
*
|
|
3581
|
+
* Stable identifier for this interface. Pass it as the `interface` field in ARP scan request, e.g., wandelbox-abc123-enp3s0.
|
|
3310
3582
|
*/
|
|
3311
|
-
'
|
|
3583
|
+
'interface': string;
|
|
3312
3584
|
/**
|
|
3313
|
-
*
|
|
3585
|
+
* Hostname that exposes this interface.
|
|
3314
3586
|
*/
|
|
3315
|
-
'
|
|
3587
|
+
'node': string;
|
|
3588
|
+
'backend': NetworkBackend;
|
|
3589
|
+
'link': NetworkLinkState;
|
|
3316
3590
|
/**
|
|
3317
|
-
*
|
|
3591
|
+
* IP/CIDR addresses currently assigned to the interface. Omitted when not available.
|
|
3318
3592
|
*/
|
|
3319
|
-
'
|
|
3593
|
+
'addresses'?: Array<string>;
|
|
3320
3594
|
}
|
|
3595
|
+
/**
|
|
3596
|
+
* Link state of the physical interface.
|
|
3597
|
+
*/
|
|
3598
|
+
declare const NetworkLinkState: {
|
|
3599
|
+
readonly Up: "up";
|
|
3600
|
+
readonly Down: "down";
|
|
3601
|
+
};
|
|
3602
|
+
type NetworkLinkState = typeof NetworkLinkState[keyof typeof NetworkLinkState];
|
|
3321
3603
|
interface NetworkState {
|
|
3322
3604
|
/**
|
|
3323
3605
|
* Indicates whether the system is connected to the internet.
|
|
3324
3606
|
*/
|
|
3325
3607
|
'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
3608
|
/**
|
|
3339
3609
|
* Round-trip latency to the probe endpoint measured in milliseconds.
|
|
3340
3610
|
*/
|
|
@@ -3344,14 +3614,6 @@ interface NetworkState {
|
|
|
3344
3614
|
*/
|
|
3345
3615
|
'bandwidth_mbps'?: number;
|
|
3346
3616
|
}
|
|
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
3617
|
/**
|
|
3356
3618
|
* 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
3619
|
*/
|
|
@@ -3505,6 +3767,33 @@ declare const PathLinePathDefinitionNameEnum: {
|
|
|
3505
3767
|
readonly PathLine: "PathLine";
|
|
3506
3768
|
};
|
|
3507
3769
|
type PathLinePathDefinitionNameEnum = typeof PathLinePathDefinitionNameEnum[keyof typeof PathLinePathDefinitionNameEnum];
|
|
3770
|
+
/**
|
|
3771
|
+
* Request to pause executing action chunks. If successful, `execute` jogging state in [MotionGroupState](MotionGroupState.yaml) is set to `PAUSED_BY_USER`.
|
|
3772
|
+
*/
|
|
3773
|
+
interface PauseActionChunksRequest {
|
|
3774
|
+
/**
|
|
3775
|
+
* Type specifier for server, set automatically.
|
|
3776
|
+
*/
|
|
3777
|
+
'message_type': PauseActionChunksRequestMessageTypeEnum;
|
|
3778
|
+
}
|
|
3779
|
+
declare const PauseActionChunksRequestMessageTypeEnum: {
|
|
3780
|
+
readonly PauseActionChunksRequest: "PauseActionChunksRequest";
|
|
3781
|
+
};
|
|
3782
|
+
type PauseActionChunksRequestMessageTypeEnum = typeof PauseActionChunksRequestMessageTypeEnum[keyof typeof PauseActionChunksRequestMessageTypeEnum];
|
|
3783
|
+
/**
|
|
3784
|
+
* Acknowledgment to a PauseActionChunksRequest.
|
|
3785
|
+
*/
|
|
3786
|
+
interface PauseActionChunksResponse {
|
|
3787
|
+
/**
|
|
3788
|
+
* Error message in case of invalid PauseActionChunksRequest.
|
|
3789
|
+
*/
|
|
3790
|
+
'message'?: string;
|
|
3791
|
+
'kind': PauseActionChunksResponseKindEnum;
|
|
3792
|
+
}
|
|
3793
|
+
declare const PauseActionChunksResponseKindEnum: {
|
|
3794
|
+
readonly PauseReceived: "PAUSE_RECEIVED";
|
|
3795
|
+
};
|
|
3796
|
+
type PauseActionChunksResponseKindEnum = typeof PauseActionChunksResponseKindEnum[keyof typeof PauseActionChunksResponseKindEnum];
|
|
3508
3797
|
/**
|
|
3509
3798
|
* Request to pause jogging. If successful, `execute` jogging state in [MotionGroupState](MotionGroupState.yaml) is set to `PAUSED_BY_USER`.
|
|
3510
3799
|
*/
|
|
@@ -3618,6 +3907,10 @@ interface PlanCollisionFreeRequest {
|
|
|
3618
3907
|
*/
|
|
3619
3908
|
interface PlanCollisionFreeResponse {
|
|
3620
3909
|
'response': PlanCollisionFreeResponseResponse;
|
|
3910
|
+
/**
|
|
3911
|
+
* The motion commands that produced the trajectory.
|
|
3912
|
+
*/
|
|
3913
|
+
'motion_commands'?: Array<MotionCommand>;
|
|
3621
3914
|
}
|
|
3622
3915
|
/**
|
|
3623
3916
|
* @type PlanCollisionFreeResponseResponse
|
|
@@ -3648,6 +3941,10 @@ interface PlanTrajectoryRequest {
|
|
|
3648
3941
|
* List of motion commands. A command consists of a path definition (line, circle, joint_ptp, cartesian_ptp, cubic_spline), blending, and limits override.
|
|
3649
3942
|
*/
|
|
3650
3943
|
'motion_commands': Array<MotionCommand>;
|
|
3944
|
+
/**
|
|
3945
|
+
* <!-- theme: danger --> > > **Experimental** Strategy used to deal with wrist singularities along a cartesian path.
|
|
3946
|
+
*/
|
|
3947
|
+
'singularity_handling'?: SingularityHandling;
|
|
3651
3948
|
}
|
|
3652
3949
|
interface PlanTrajectoryResponse {
|
|
3653
3950
|
'response': PlanTrajectoryResponseResponse;
|
|
@@ -3725,49 +4022,22 @@ interface Pose {
|
|
|
3725
4022
|
'orientation'?: Array<number>;
|
|
3726
4023
|
}
|
|
3727
4024
|
/**
|
|
3728
|
-
* A waypoint
|
|
4025
|
+
* A pose waypoint for action chunk streaming. > **NOTE** > > This type is experimental and its behavior may change in future releases.
|
|
3729
4026
|
*/
|
|
3730
4027
|
interface PoseWaypoint {
|
|
3731
4028
|
/**
|
|
3732
|
-
*
|
|
4029
|
+
* Type specifier for server, set automatically.
|
|
3733
4030
|
*/
|
|
3734
|
-
'
|
|
4031
|
+
'kind': PoseWaypointKindEnum;
|
|
3735
4032
|
/**
|
|
3736
4033
|
* Cartesian pose for this waypoint.
|
|
3737
4034
|
*/
|
|
3738
4035
|
'pose': Pose;
|
|
3739
4036
|
}
|
|
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";
|
|
4037
|
+
declare const PoseWaypointKindEnum: {
|
|
4038
|
+
readonly Pose: "POSE";
|
|
3769
4039
|
};
|
|
3770
|
-
type
|
|
4040
|
+
type PoseWaypointKindEnum = typeof PoseWaypointKindEnum[keyof typeof PoseWaypointKindEnum];
|
|
3771
4041
|
interface ProfinetDescription {
|
|
3772
4042
|
/**
|
|
3773
4043
|
* The vendor identifier of the PROFINET device, identifying the manufacturer.
|
|
@@ -3795,7 +4065,7 @@ interface ProfinetIO {
|
|
|
3795
4065
|
*/
|
|
3796
4066
|
'direction': ProfinetIODirection;
|
|
3797
4067
|
/**
|
|
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
|
|
4068
|
+
* 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
4069
|
*/
|
|
3800
4070
|
'byte_address': number;
|
|
3801
4071
|
/**
|
|
@@ -3818,7 +4088,7 @@ interface ProfinetIOData {
|
|
|
3818
4088
|
*/
|
|
3819
4089
|
'direction': ProfinetIODirection;
|
|
3820
4090
|
/**
|
|
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
|
|
4091
|
+
* 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
4092
|
*/
|
|
3823
4093
|
'byte_address': number;
|
|
3824
4094
|
/**
|
|
@@ -3857,13 +4127,19 @@ interface ProfinetInputOutputConfig {
|
|
|
3857
4127
|
*/
|
|
3858
4128
|
'config': string;
|
|
3859
4129
|
/**
|
|
3860
|
-
*
|
|
4130
|
+
* 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
4131
|
*/
|
|
3862
|
-
'
|
|
4132
|
+
'offsets'?: Array<ProfinetSlotOffset>;
|
|
3863
4133
|
/**
|
|
3864
|
-
* Offset in bytes for the
|
|
4134
|
+
* 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.
|
|
4135
|
+
* @deprecated
|
|
3865
4136
|
*/
|
|
3866
|
-
'
|
|
4137
|
+
'input_offset'?: number;
|
|
4138
|
+
/**
|
|
4139
|
+
* 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.
|
|
4140
|
+
* @deprecated
|
|
4141
|
+
*/
|
|
4142
|
+
'output_offset'?: number;
|
|
3867
4143
|
}
|
|
3868
4144
|
/**
|
|
3869
4145
|
* 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 +4158,20 @@ interface ProfinetSlotDescription {
|
|
|
3882
4158
|
*/
|
|
3883
4159
|
'subslots': Array<ProfinetSubSlotDescription>;
|
|
3884
4160
|
}
|
|
4161
|
+
interface ProfinetSlotOffset {
|
|
4162
|
+
/**
|
|
4163
|
+
* 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.
|
|
4164
|
+
*/
|
|
4165
|
+
'slot': number;
|
|
4166
|
+
/**
|
|
4167
|
+
* 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.
|
|
4168
|
+
*/
|
|
4169
|
+
'input_offset': number;
|
|
4170
|
+
/**
|
|
4171
|
+
* 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.
|
|
4172
|
+
*/
|
|
4173
|
+
'output_offset': number;
|
|
4174
|
+
}
|
|
3885
4175
|
interface ProfinetSubSlotDescription {
|
|
3886
4176
|
/**
|
|
3887
4177
|
* The number/index of the PROFINET subslot.
|
|
@@ -4135,7 +4425,7 @@ interface RobotController {
|
|
|
4135
4425
|
/**
|
|
4136
4426
|
* @type RobotControllerConfiguration
|
|
4137
4427
|
*/
|
|
4138
|
-
type RobotControllerConfiguration = AbbController | FanucController | KukaController | UniversalrobotsController | VirtualController | YaskawaController;
|
|
4428
|
+
type RobotControllerConfiguration = AbbController | BostondynamicsController | FanucController | KukaController | StaubliController | TechmanController | UnitreeController | UniversalrobotsController | VirtualController | YaskawaController;
|
|
4139
4429
|
/**
|
|
4140
4430
|
* Information to generate all robot controller configurations that match a given ARP scan result.
|
|
4141
4431
|
*/
|
|
@@ -4205,7 +4495,7 @@ interface RobotTcp {
|
|
|
4205
4495
|
*/
|
|
4206
4496
|
'position': Array<number>;
|
|
4207
4497
|
/**
|
|
4208
|
-
* Describes an orientation in 3D space. A
|
|
4498
|
+
* Describes an orientation in 3D space. A three-to-four-dimensional vector [x, y, z, w] with double precision.
|
|
4209
4499
|
*/
|
|
4210
4500
|
'orientation'?: Array<number>;
|
|
4211
4501
|
'orientation_type'?: OrientationType;
|
|
@@ -4225,7 +4515,7 @@ interface RobotTcpData {
|
|
|
4225
4515
|
*/
|
|
4226
4516
|
'position': Array<number>;
|
|
4227
4517
|
/**
|
|
4228
|
-
* Describes an orientation in 3D space. A
|
|
4518
|
+
* Describes an orientation in 3D space. A three-to-four-dimensional vector [x, y, z, w] with double precision.
|
|
4229
4519
|
*/
|
|
4230
4520
|
'orientation'?: Array<number>;
|
|
4231
4521
|
'orientation_type'?: OrientationType;
|
|
@@ -4531,6 +4821,15 @@ declare const SettableRobotSystemMode: {
|
|
|
4531
4821
|
readonly ModeControl: "MODE_CONTROL";
|
|
4532
4822
|
};
|
|
4533
4823
|
type SettableRobotSystemMode = typeof SettableRobotSystemMode[keyof typeof SettableRobotSystemMode];
|
|
4824
|
+
/**
|
|
4825
|
+
* <!-- 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.
|
|
4826
|
+
*/
|
|
4827
|
+
declare const SingularityHandling: {
|
|
4828
|
+
readonly None: "NONE";
|
|
4829
|
+
readonly PalletizingWrist: "PALLETIZING_WRIST";
|
|
4830
|
+
readonly AdaptiveSampling: "ADAPTIVE_SAMPLING";
|
|
4831
|
+
};
|
|
4832
|
+
type SingularityHandling = typeof SingularityHandling[keyof typeof SingularityHandling];
|
|
4534
4833
|
declare const SingularityTypeEnum: {
|
|
4535
4834
|
readonly Wrist: "WRIST";
|
|
4536
4835
|
readonly Elbow: "ELBOW";
|
|
@@ -4692,6 +4991,55 @@ interface StartOnIO {
|
|
|
4692
4991
|
'comparator': Comparator;
|
|
4693
4992
|
'io_origin': IOOrigin;
|
|
4694
4993
|
}
|
|
4994
|
+
/**
|
|
4995
|
+
* 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.
|
|
4996
|
+
*/
|
|
4997
|
+
interface StaubliController {
|
|
4998
|
+
'kind': StaubliControllerKindEnum;
|
|
4999
|
+
'controller_ip': string;
|
|
5000
|
+
'network_interface'?: ControllerNetworkInterface;
|
|
5001
|
+
'controller_port': number;
|
|
5002
|
+
'command_port': number;
|
|
5003
|
+
'rti_server': StaubliControllerRtiServer;
|
|
5004
|
+
}
|
|
5005
|
+
declare const StaubliControllerKindEnum: {
|
|
5006
|
+
readonly StaubliController: "StaubliController";
|
|
5007
|
+
};
|
|
5008
|
+
type StaubliControllerKindEnum = typeof StaubliControllerKindEnum[keyof typeof StaubliControllerKindEnum];
|
|
5009
|
+
/**
|
|
5010
|
+
* The RTI server runs inside of the cell.
|
|
5011
|
+
*/
|
|
5012
|
+
interface StaubliControllerRtiServer {
|
|
5013
|
+
'ip': string;
|
|
5014
|
+
'port': number;
|
|
5015
|
+
}
|
|
5016
|
+
/**
|
|
5017
|
+
* Request to stop executing action chunks. If successful, `execute` jogging state in [MotionGroupState](MotionGroupState.yaml) is set to `PAUSED_BY_USER`.
|
|
5018
|
+
*/
|
|
5019
|
+
interface StopActionChunksRequest {
|
|
5020
|
+
/**
|
|
5021
|
+
* Type specifier for server, set automatically.
|
|
5022
|
+
*/
|
|
5023
|
+
'message_type': StopActionChunksRequestMessageTypeEnum;
|
|
5024
|
+
}
|
|
5025
|
+
declare const StopActionChunksRequestMessageTypeEnum: {
|
|
5026
|
+
readonly StopActionChunksRequest: "StopActionChunksRequest";
|
|
5027
|
+
};
|
|
5028
|
+
type StopActionChunksRequestMessageTypeEnum = typeof StopActionChunksRequestMessageTypeEnum[keyof typeof StopActionChunksRequestMessageTypeEnum];
|
|
5029
|
+
/**
|
|
5030
|
+
* Acknowledgment to a StopActionChunksRequest.
|
|
5031
|
+
*/
|
|
5032
|
+
interface StopActionChunksResponse {
|
|
5033
|
+
/**
|
|
5034
|
+
* Error message in case of invalid StopActionChunksRequest.
|
|
5035
|
+
*/
|
|
5036
|
+
'message'?: string;
|
|
5037
|
+
'kind': StopActionChunksResponseKindEnum;
|
|
5038
|
+
}
|
|
5039
|
+
declare const StopActionChunksResponseKindEnum: {
|
|
5040
|
+
readonly StopReceived: "STOP_RECEIVED";
|
|
5041
|
+
};
|
|
5042
|
+
type StopActionChunksResponseKindEnum = typeof StopActionChunksResponseKindEnum[keyof typeof StopActionChunksResponseKindEnum];
|
|
4695
5043
|
/**
|
|
4696
5044
|
* 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
5045
|
*/
|
|
@@ -4780,6 +5128,41 @@ declare const TcpVelocityResponseKindEnum: {
|
|
|
4780
5128
|
readonly TcpVelocityReceived: "TCP_VELOCITY_RECEIVED";
|
|
4781
5129
|
};
|
|
4782
5130
|
type TcpVelocityResponseKindEnum = typeof TcpVelocityResponseKindEnum[keyof typeof TcpVelocityResponseKindEnum];
|
|
5131
|
+
/**
|
|
5132
|
+
* The configuration of a physical Techman robot controller has to contain an IP address. Additionally an RTRS server configuration has to be specified to obtain state from the robot.
|
|
5133
|
+
*/
|
|
5134
|
+
interface TechmanController {
|
|
5135
|
+
'kind': TechmanControllerKindEnum;
|
|
5136
|
+
'controller_ip': string;
|
|
5137
|
+
'network_interface'?: ControllerNetworkInterface;
|
|
5138
|
+
/**
|
|
5139
|
+
* TCP port for the TMSVR channel on the robot controller.
|
|
5140
|
+
*/
|
|
5141
|
+
'tmsvr_port'?: number;
|
|
5142
|
+
/**
|
|
5143
|
+
* TCP port for the TMSCT channel on the robot controller.
|
|
5144
|
+
*/
|
|
5145
|
+
'tmsct_port'?: number;
|
|
5146
|
+
'rtrs': TechmanControllerRtrs;
|
|
5147
|
+
}
|
|
5148
|
+
declare const TechmanControllerKindEnum: {
|
|
5149
|
+
readonly TechmanController: "TechmanController";
|
|
5150
|
+
};
|
|
5151
|
+
type TechmanControllerKindEnum = typeof TechmanControllerKindEnum[keyof typeof TechmanControllerKindEnum];
|
|
5152
|
+
/**
|
|
5153
|
+
* RTRS server configuration for real-time communication.
|
|
5154
|
+
*/
|
|
5155
|
+
interface TechmanControllerRtrs {
|
|
5156
|
+
'ip': string;
|
|
5157
|
+
/**
|
|
5158
|
+
* TCP port for the TMRTS state reporting channel.
|
|
5159
|
+
*/
|
|
5160
|
+
'tmrts_port'?: number;
|
|
5161
|
+
/**
|
|
5162
|
+
* TCP port for the TMRTC real-time control channel.
|
|
5163
|
+
*/
|
|
5164
|
+
'tmrtc_port'?: number;
|
|
5165
|
+
}
|
|
4783
5166
|
/**
|
|
4784
5167
|
* An inline tool collider wrapped for discriminator support.
|
|
4785
5168
|
*/
|
|
@@ -4972,17 +5355,82 @@ declare const UnitType: {
|
|
|
4972
5355
|
readonly UnitMeter: "UNIT_METER";
|
|
4973
5356
|
};
|
|
4974
5357
|
type UnitType = typeof UnitType[keyof typeof UnitType];
|
|
5358
|
+
/**
|
|
5359
|
+
* 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.
|
|
5360
|
+
*/
|
|
5361
|
+
interface UnitreeController {
|
|
5362
|
+
'kind': UnitreeControllerKindEnum;
|
|
5363
|
+
/**
|
|
5364
|
+
* The IP address of the Unitree robot.
|
|
5365
|
+
*/
|
|
5366
|
+
'controller_ip': string;
|
|
5367
|
+
/**
|
|
5368
|
+
* The Unitree robot model type.
|
|
5369
|
+
*/
|
|
5370
|
+
'robot_type': UnitreeControllerRobotTypeEnum;
|
|
5371
|
+
/**
|
|
5372
|
+
* The network interface used for DDS discovery.
|
|
5373
|
+
*/
|
|
5374
|
+
'network_interface'?: string;
|
|
5375
|
+
/**
|
|
5376
|
+
* Enable DDS unicast mode for environments where multicast is unavailable.
|
|
5377
|
+
*/
|
|
5378
|
+
'dds_unicast_mode'?: boolean;
|
|
5379
|
+
/**
|
|
5380
|
+
* Enable exclusive lease-based control of the robot.
|
|
5381
|
+
*/
|
|
5382
|
+
'enable_lease'?: boolean;
|
|
5383
|
+
}
|
|
5384
|
+
declare const UnitreeControllerKindEnum: {
|
|
5385
|
+
readonly UnitreeController: "UnitreeController";
|
|
5386
|
+
};
|
|
5387
|
+
type UnitreeControllerKindEnum = typeof UnitreeControllerKindEnum[keyof typeof UnitreeControllerKindEnum];
|
|
5388
|
+
declare const UnitreeControllerRobotTypeEnum: {
|
|
5389
|
+
readonly Go2: "go2";
|
|
5390
|
+
readonly G1: "g1";
|
|
5391
|
+
readonly B2: "b2";
|
|
5392
|
+
readonly H1: "h1";
|
|
5393
|
+
};
|
|
5394
|
+
type UnitreeControllerRobotTypeEnum = typeof UnitreeControllerRobotTypeEnum[keyof typeof UnitreeControllerRobotTypeEnum];
|
|
4975
5395
|
/**
|
|
4976
5396
|
* The configuration of a physical Universal Robots controller has to contain IP address of the controller.
|
|
4977
5397
|
*/
|
|
4978
5398
|
interface UniversalrobotsController {
|
|
4979
5399
|
'kind': UniversalrobotsControllerKindEnum;
|
|
4980
5400
|
'controller_ip': string;
|
|
5401
|
+
'network_interface'?: ControllerNetworkInterface;
|
|
4981
5402
|
}
|
|
4982
5403
|
declare const UniversalrobotsControllerKindEnum: {
|
|
4983
5404
|
readonly UniversalrobotsController: "UniversalrobotsController";
|
|
4984
5405
|
};
|
|
4985
5406
|
type UniversalrobotsControllerKindEnum = typeof UniversalrobotsControllerKindEnum[keyof typeof UniversalrobotsControllerKindEnum];
|
|
5407
|
+
/**
|
|
5408
|
+
* Request to unpause executing action chunks. If successful, `execute` jogging state in [MotionGroupState](MotionGroupState.yaml) is set to `RUNNING`.
|
|
5409
|
+
*/
|
|
5410
|
+
interface UnpauseActionChunksRequest {
|
|
5411
|
+
/**
|
|
5412
|
+
* Type specifier for server, set automatically.
|
|
5413
|
+
*/
|
|
5414
|
+
'message_type': UnpauseActionChunksRequestMessageTypeEnum;
|
|
5415
|
+
}
|
|
5416
|
+
declare const UnpauseActionChunksRequestMessageTypeEnum: {
|
|
5417
|
+
readonly UnpauseActionChunksRequest: "UnpauseActionChunksRequest";
|
|
5418
|
+
};
|
|
5419
|
+
type UnpauseActionChunksRequestMessageTypeEnum = typeof UnpauseActionChunksRequestMessageTypeEnum[keyof typeof UnpauseActionChunksRequestMessageTypeEnum];
|
|
5420
|
+
/**
|
|
5421
|
+
* Acknowledgment to an UnpauseActionChunksRequest.
|
|
5422
|
+
*/
|
|
5423
|
+
interface UnpauseActionChunksResponse {
|
|
5424
|
+
/**
|
|
5425
|
+
* Error message in case of invalid UnpauseActionChunksRequest.
|
|
5426
|
+
*/
|
|
5427
|
+
'message'?: string;
|
|
5428
|
+
'kind': UnpauseActionChunksResponseKindEnum;
|
|
5429
|
+
}
|
|
5430
|
+
declare const UnpauseActionChunksResponseKindEnum: {
|
|
5431
|
+
readonly UnpauseReceived: "UNPAUSE_RECEIVED";
|
|
5432
|
+
};
|
|
5433
|
+
type UnpauseActionChunksResponseKindEnum = typeof UnpauseActionChunksResponseKindEnum[keyof typeof UnpauseActionChunksResponseKindEnum];
|
|
4986
5434
|
/**
|
|
4987
5435
|
* Update a single cell\'s Foundation chart version based on the indicated release channel.
|
|
4988
5436
|
*/
|
|
@@ -5051,9 +5499,13 @@ interface VirtualController {
|
|
|
5051
5499
|
*/
|
|
5052
5500
|
'json'?: string;
|
|
5053
5501
|
/**
|
|
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
|
|
5502
|
+
* 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
5503
|
*/
|
|
5056
5504
|
'initial_joint_position'?: string;
|
|
5505
|
+
/**
|
|
5506
|
+
* 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
|
|
5507
|
+
*/
|
|
5508
|
+
'motion_groups'?: Array<AddVirtualControllerMotionGroupRequest>;
|
|
5057
5509
|
}
|
|
5058
5510
|
declare const VirtualControllerKindEnum: {
|
|
5059
5511
|
readonly VirtualController: "VirtualController";
|
|
@@ -5079,12 +5531,35 @@ interface WaitForIOEventRequest {
|
|
|
5079
5531
|
*/
|
|
5080
5532
|
'comparator': Comparator;
|
|
5081
5533
|
}
|
|
5534
|
+
/**
|
|
5535
|
+
* A waypoint for action chunk streaming. > **NOTE** > > This type is experimental and its behavior may change in future releases.
|
|
5536
|
+
*/
|
|
5537
|
+
interface Waypoint {
|
|
5538
|
+
/**
|
|
5539
|
+
* Exact timestamp [ms] at which the waypoint should be reached, relative to the start of the session.
|
|
5540
|
+
*/
|
|
5541
|
+
'timestamp': number;
|
|
5542
|
+
/**
|
|
5543
|
+
* Coordinates for this waypoint.
|
|
5544
|
+
*/
|
|
5545
|
+
'waypoint': WaypointCoordinates;
|
|
5546
|
+
}
|
|
5547
|
+
/**
|
|
5548
|
+
* @type WaypointCoordinates
|
|
5549
|
+
* Coordinates for an action chunk streaming waypoint. > **NOTE** > > This type is experimental and its behavior may change in future releases.
|
|
5550
|
+
*/
|
|
5551
|
+
type WaypointCoordinates = {
|
|
5552
|
+
kind: 'JOINTS';
|
|
5553
|
+
} & JointWaypoint | {
|
|
5554
|
+
kind: 'POSE';
|
|
5555
|
+
} & PoseWaypoint;
|
|
5082
5556
|
/**
|
|
5083
5557
|
* The configuration of a physical Yaskawa robot controller has to contain IP address of the controller.
|
|
5084
5558
|
*/
|
|
5085
5559
|
interface YaskawaController {
|
|
5086
5560
|
'kind': YaskawaControllerKindEnum;
|
|
5087
5561
|
'controller_ip': string;
|
|
5562
|
+
'network_interface'?: ControllerNetworkInterface;
|
|
5088
5563
|
}
|
|
5089
5564
|
declare const YaskawaControllerKindEnum: {
|
|
5090
5565
|
readonly YaskawaController: "YaskawaController";
|
|
@@ -5117,6 +5592,66 @@ interface ZodValidationErrorErrorDetailsInner {
|
|
|
5117
5592
|
* @type ZodValidationErrorErrorDetailsInnerPathInner
|
|
5118
5593
|
*/
|
|
5119
5594
|
type ZodValidationErrorErrorDetailsInnerPathInner = number | string;
|
|
5595
|
+
/**
|
|
5596
|
+
* ActionChunkStreamingApi - axios parameter creator
|
|
5597
|
+
*/
|
|
5598
|
+
declare const ActionChunkStreamingApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
5599
|
+
/**
|
|
5600
|
+
* **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.
|
|
5601
|
+
* @summary Execute Action Chunks
|
|
5602
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
5603
|
+
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
5604
|
+
* @param {ExecuteActionChunksRequest} executeActionChunksRequest
|
|
5605
|
+
* @param {*} [options] Override http request option.
|
|
5606
|
+
* @throws {RequiredError}
|
|
5607
|
+
*/
|
|
5608
|
+
executeActionChunks: (cell: string, controller: string, executeActionChunksRequest: ExecuteActionChunksRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
5609
|
+
};
|
|
5610
|
+
/**
|
|
5611
|
+
* ActionChunkStreamingApi - functional programming interface
|
|
5612
|
+
*/
|
|
5613
|
+
declare const ActionChunkStreamingApiFp: (configuration?: Configuration) => {
|
|
5614
|
+
/**
|
|
5615
|
+
* **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.
|
|
5616
|
+
* @summary Execute Action Chunks
|
|
5617
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
5618
|
+
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
5619
|
+
* @param {ExecuteActionChunksRequest} executeActionChunksRequest
|
|
5620
|
+
* @param {*} [options] Override http request option.
|
|
5621
|
+
* @throws {RequiredError}
|
|
5622
|
+
*/
|
|
5623
|
+
executeActionChunks(cell: string, controller: string, executeActionChunksRequest: ExecuteActionChunksRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ExecuteActionChunksResponse>>;
|
|
5624
|
+
};
|
|
5625
|
+
/**
|
|
5626
|
+
* ActionChunkStreamingApi - factory interface
|
|
5627
|
+
*/
|
|
5628
|
+
declare const ActionChunkStreamingApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
5629
|
+
/**
|
|
5630
|
+
* **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.
|
|
5631
|
+
* @summary Execute Action Chunks
|
|
5632
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
5633
|
+
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
5634
|
+
* @param {ExecuteActionChunksRequest} executeActionChunksRequest
|
|
5635
|
+
* @param {*} [options] Override http request option.
|
|
5636
|
+
* @throws {RequiredError}
|
|
5637
|
+
*/
|
|
5638
|
+
executeActionChunks(cell: string, controller: string, executeActionChunksRequest: ExecuteActionChunksRequest, options?: RawAxiosRequestConfig): AxiosPromise<ExecuteActionChunksResponse>;
|
|
5639
|
+
};
|
|
5640
|
+
/**
|
|
5641
|
+
* ActionChunkStreamingApi - object-oriented interface
|
|
5642
|
+
*/
|
|
5643
|
+
declare class ActionChunkStreamingApi extends BaseAPI {
|
|
5644
|
+
/**
|
|
5645
|
+
* **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.
|
|
5646
|
+
* @summary Execute Action Chunks
|
|
5647
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
5648
|
+
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
5649
|
+
* @param {ExecuteActionChunksRequest} executeActionChunksRequest
|
|
5650
|
+
* @param {*} [options] Override http request option.
|
|
5651
|
+
* @throws {RequiredError}
|
|
5652
|
+
*/
|
|
5653
|
+
executeActionChunks(cell: string, controller: string, executeActionChunksRequest: ExecuteActionChunksRequest, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<ExecuteActionChunksResponse, any, {}>>;
|
|
5654
|
+
}
|
|
5120
5655
|
/**
|
|
5121
5656
|
* ApplicationApi - axios parameter creator
|
|
5122
5657
|
*/
|
|
@@ -5511,15 +6046,16 @@ declare const BUSInputsOutputsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
5511
6046
|
*/
|
|
5512
6047
|
getProfinetGSDML: (cell: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
5513
6048
|
/**
|
|
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
|
|
6049
|
+
* **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
6050
|
* @summary PROFINET Inputs/Outputs to File
|
|
5516
6051
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
6052
|
+
* @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
6053
|
* @param {number} [inputOffset]
|
|
5518
6054
|
* @param {number} [outputOffset]
|
|
5519
6055
|
* @param {*} [options] Override http request option.
|
|
5520
6056
|
* @throws {RequiredError}
|
|
5521
6057
|
*/
|
|
5522
|
-
getProfinetIOsFromFile: (cell: string, inputOffset?: number, outputOffset?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
6058
|
+
getProfinetIOsFromFile: (cell: string, offsets?: Array<ProfinetSlotOffset>, inputOffset?: number, outputOffset?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
5523
6059
|
/**
|
|
5524
6060
|
* **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
6061
|
* @summary List Descriptions
|
|
@@ -5717,15 +6253,16 @@ declare const BUSInputsOutputsApiFp: (configuration?: Configuration) => {
|
|
|
5717
6253
|
*/
|
|
5718
6254
|
getProfinetGSDML(cell: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<string>>;
|
|
5719
6255
|
/**
|
|
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
|
|
6256
|
+
* **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
6257
|
* @summary PROFINET Inputs/Outputs to File
|
|
5722
6258
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
6259
|
+
* @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
6260
|
* @param {number} [inputOffset]
|
|
5724
6261
|
* @param {number} [outputOffset]
|
|
5725
6262
|
* @param {*} [options] Override http request option.
|
|
5726
6263
|
* @throws {RequiredError}
|
|
5727
6264
|
*/
|
|
5728
|
-
getProfinetIOsFromFile(cell: string, inputOffset?: number, outputOffset?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<string>>;
|
|
6265
|
+
getProfinetIOsFromFile(cell: string, offsets?: Array<ProfinetSlotOffset>, inputOffset?: number, outputOffset?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<string>>;
|
|
5729
6266
|
/**
|
|
5730
6267
|
* **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
6268
|
* @summary List Descriptions
|
|
@@ -5923,15 +6460,16 @@ declare const BUSInputsOutputsApiFactory: (configuration?: Configuration, basePa
|
|
|
5923
6460
|
*/
|
|
5924
6461
|
getProfinetGSDML(cell: string, options?: RawAxiosRequestConfig): AxiosPromise<string>;
|
|
5925
6462
|
/**
|
|
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
|
|
6463
|
+
* **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
6464
|
* @summary PROFINET Inputs/Outputs to File
|
|
5928
6465
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
6466
|
+
* @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
6467
|
* @param {number} [inputOffset]
|
|
5930
6468
|
* @param {number} [outputOffset]
|
|
5931
6469
|
* @param {*} [options] Override http request option.
|
|
5932
6470
|
* @throws {RequiredError}
|
|
5933
6471
|
*/
|
|
5934
|
-
getProfinetIOsFromFile(cell: string, inputOffset?: number, outputOffset?: number, options?: RawAxiosRequestConfig): AxiosPromise<string>;
|
|
6472
|
+
getProfinetIOsFromFile(cell: string, offsets?: Array<ProfinetSlotOffset>, inputOffset?: number, outputOffset?: number, options?: RawAxiosRequestConfig): AxiosPromise<string>;
|
|
5935
6473
|
/**
|
|
5936
6474
|
* **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
6475
|
* @summary List Descriptions
|
|
@@ -6129,15 +6667,16 @@ declare class BUSInputsOutputsApi extends BaseAPI {
|
|
|
6129
6667
|
*/
|
|
6130
6668
|
getProfinetGSDML(cell: string, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<string, any, {}>>;
|
|
6131
6669
|
/**
|
|
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
|
|
6670
|
+
* **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
6671
|
* @summary PROFINET Inputs/Outputs to File
|
|
6134
6672
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
6673
|
+
* @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
6674
|
* @param {number} [inputOffset]
|
|
6136
6675
|
* @param {number} [outputOffset]
|
|
6137
6676
|
* @param {*} [options] Override http request option.
|
|
6138
6677
|
* @throws {RequiredError}
|
|
6139
6678
|
*/
|
|
6140
|
-
getProfinetIOsFromFile(cell: string, inputOffset?: number, outputOffset?: number, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<string, any, {}>>;
|
|
6679
|
+
getProfinetIOsFromFile(cell: string, offsets?: Array<ProfinetSlotOffset>, inputOffset?: number, outputOffset?: number, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<string, any, {}>>;
|
|
6141
6680
|
/**
|
|
6142
6681
|
* **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
6682
|
* @summary List Descriptions
|
|
@@ -7331,16 +7870,6 @@ declare const JoggingApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
7331
7870
|
* @throws {RequiredError}
|
|
7332
7871
|
*/
|
|
7333
7872
|
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
7873
|
};
|
|
7345
7874
|
/**
|
|
7346
7875
|
* JoggingApi - functional programming interface
|
|
@@ -7356,16 +7885,6 @@ declare const JoggingApiFp: (configuration?: Configuration) => {
|
|
|
7356
7885
|
* @throws {RequiredError}
|
|
7357
7886
|
*/
|
|
7358
7887
|
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
7888
|
};
|
|
7370
7889
|
/**
|
|
7371
7890
|
* JoggingApi - factory interface
|
|
@@ -7381,16 +7900,6 @@ declare const JoggingApiFactory: (configuration?: Configuration, basePath?: stri
|
|
|
7381
7900
|
* @throws {RequiredError}
|
|
7382
7901
|
*/
|
|
7383
7902
|
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
7903
|
};
|
|
7395
7904
|
/**
|
|
7396
7905
|
* JoggingApi - object-oriented interface
|
|
@@ -7406,16 +7915,6 @@ declare class JoggingApi extends BaseAPI {
|
|
|
7406
7915
|
* @throws {RequiredError}
|
|
7407
7916
|
*/
|
|
7408
7917
|
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
7918
|
}
|
|
7420
7919
|
/**
|
|
7421
7920
|
* KinematicsApi - axios parameter creator
|
|
@@ -7448,6 +7947,15 @@ declare const KinematicsApiAxiosParamCreator: (configuration?: Configuration) =>
|
|
|
7448
7947
|
* @throws {RequiredError}
|
|
7449
7948
|
*/
|
|
7450
7949
|
forwardKinematics: (cell: string, forwardKinematicsRequest: ForwardKinematicsRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
7950
|
+
/**
|
|
7951
|
+
* **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.
|
|
7952
|
+
* @summary Get kinematic configuration
|
|
7953
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
7954
|
+
* @param {GetKinematicConfigurationRequest} getKinematicConfigurationRequest
|
|
7955
|
+
* @param {*} [options] Override http request option.
|
|
7956
|
+
* @throws {RequiredError}
|
|
7957
|
+
*/
|
|
7958
|
+
getKinematicConfiguration: (cell: string, getKinematicConfigurationRequest: GetKinematicConfigurationRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
7451
7959
|
/**
|
|
7452
7960
|
* **Required permissions:** `can_plan_motion` - Plan robot motions and trajectories ___ Returns the reachable joint positions for a list of given poses.
|
|
7453
7961
|
* @summary Inverse kinematics
|
|
@@ -7498,6 +8006,15 @@ declare const KinematicsApiFp: (configuration?: Configuration) => {
|
|
|
7498
8006
|
* @throws {RequiredError}
|
|
7499
8007
|
*/
|
|
7500
8008
|
forwardKinematics(cell: string, forwardKinematicsRequest: ForwardKinematicsRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ForwardKinematicsResponse>>;
|
|
8009
|
+
/**
|
|
8010
|
+
* **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.
|
|
8011
|
+
* @summary Get kinematic configuration
|
|
8012
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
8013
|
+
* @param {GetKinematicConfigurationRequest} getKinematicConfigurationRequest
|
|
8014
|
+
* @param {*} [options] Override http request option.
|
|
8015
|
+
* @throws {RequiredError}
|
|
8016
|
+
*/
|
|
8017
|
+
getKinematicConfiguration(cell: string, getKinematicConfigurationRequest: GetKinematicConfigurationRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetKinematicConfigurationResponse>>;
|
|
7501
8018
|
/**
|
|
7502
8019
|
* **Required permissions:** `can_plan_motion` - Plan robot motions and trajectories ___ Returns the reachable joint positions for a list of given poses.
|
|
7503
8020
|
* @summary Inverse kinematics
|
|
@@ -7548,6 +8065,15 @@ declare const KinematicsApiFactory: (configuration?: Configuration, basePath?: s
|
|
|
7548
8065
|
* @throws {RequiredError}
|
|
7549
8066
|
*/
|
|
7550
8067
|
forwardKinematics(cell: string, forwardKinematicsRequest: ForwardKinematicsRequest, options?: RawAxiosRequestConfig): AxiosPromise<ForwardKinematicsResponse>;
|
|
8068
|
+
/**
|
|
8069
|
+
* **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.
|
|
8070
|
+
* @summary Get kinematic configuration
|
|
8071
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
8072
|
+
* @param {GetKinematicConfigurationRequest} getKinematicConfigurationRequest
|
|
8073
|
+
* @param {*} [options] Override http request option.
|
|
8074
|
+
* @throws {RequiredError}
|
|
8075
|
+
*/
|
|
8076
|
+
getKinematicConfiguration(cell: string, getKinematicConfigurationRequest: GetKinematicConfigurationRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetKinematicConfigurationResponse>;
|
|
7551
8077
|
/**
|
|
7552
8078
|
* **Required permissions:** `can_plan_motion` - Plan robot motions and trajectories ___ Returns the reachable joint positions for a list of given poses.
|
|
7553
8079
|
* @summary Inverse kinematics
|
|
@@ -7598,6 +8124,15 @@ declare class KinematicsApi extends BaseAPI {
|
|
|
7598
8124
|
* @throws {RequiredError}
|
|
7599
8125
|
*/
|
|
7600
8126
|
forwardKinematics(cell: string, forwardKinematicsRequest: ForwardKinematicsRequest, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<ForwardKinematicsResponse, any, {}>>;
|
|
8127
|
+
/**
|
|
8128
|
+
* **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.
|
|
8129
|
+
* @summary Get kinematic configuration
|
|
8130
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
8131
|
+
* @param {GetKinematicConfigurationRequest} getKinematicConfigurationRequest
|
|
8132
|
+
* @param {*} [options] Override http request option.
|
|
8133
|
+
* @throws {RequiredError}
|
|
8134
|
+
*/
|
|
8135
|
+
getKinematicConfiguration(cell: string, getKinematicConfigurationRequest: GetKinematicConfigurationRequest, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<GetKinematicConfigurationResponse, any, {}>>;
|
|
7601
8136
|
/**
|
|
7602
8137
|
* **Required permissions:** `can_plan_motion` - Plan robot motions and trajectories ___ Returns the reachable joint positions for a list of given poses.
|
|
7603
8138
|
* @summary Inverse kinematics
|
|
@@ -7919,7 +8454,7 @@ declare const MotionGroupModelsApiAxiosParamCreator: (configuration?: Configurat
|
|
|
7919
8454
|
*/
|
|
7920
8455
|
copyMotionGroupModel: (motionGroupModel: string, copyMotionGroupModelRequest: CopyMotionGroupModelRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
7921
8456
|
/**
|
|
7922
|
-
* **Required permissions:** `can_access_system` - View system status and metadata ___ Deletes a custom motion group model. Only custom models
|
|
8457
|
+
* **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
8458
|
* @summary Delete Motion Group Model
|
|
7924
8459
|
* @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
8460
|
* @param {*} [options] Override http request option.
|
|
@@ -7934,6 +8469,14 @@ declare const MotionGroupModelsApiAxiosParamCreator: (configuration?: Configurat
|
|
|
7934
8469
|
* @throws {RequiredError}
|
|
7935
8470
|
*/
|
|
7936
8471
|
exportMotionGroupModel: (motionGroupModel: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
8472
|
+
/**
|
|
8473
|
+
* **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.
|
|
8474
|
+
* @summary Get Configuration for Motion Group
|
|
8475
|
+
* @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).
|
|
8476
|
+
* @param {*} [options] Override http request option.
|
|
8477
|
+
* @throws {RequiredError}
|
|
8478
|
+
*/
|
|
8479
|
+
getConfigurationForMotionGroup: (motionGroupModel: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
7937
8480
|
/**
|
|
7938
8481
|
* **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
8482
|
* @summary Get Collision Model
|
|
@@ -7989,6 +8532,13 @@ declare const MotionGroupModelsApiAxiosParamCreator: (configuration?: Configurat
|
|
|
7989
8532
|
* @throws {RequiredError}
|
|
7990
8533
|
*/
|
|
7991
8534
|
getMotionGroupModels: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
8535
|
+
/**
|
|
8536
|
+
* **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.
|
|
8537
|
+
* @summary Motion Group Model Catalog
|
|
8538
|
+
* @param {*} [options] Override http request option.
|
|
8539
|
+
* @throws {RequiredError}
|
|
8540
|
+
*/
|
|
8541
|
+
getMotionGroupModelsCatalog: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
7992
8542
|
/**
|
|
7993
8543
|
* **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
8544
|
* @summary Download USD Model
|
|
@@ -8020,7 +8570,7 @@ declare const MotionGroupModelsApiFp: (configuration?: Configuration) => {
|
|
|
8020
8570
|
*/
|
|
8021
8571
|
copyMotionGroupModel(motionGroupModel: string, copyMotionGroupModelRequest: CopyMotionGroupModelRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MotionGroupModelDescription>>;
|
|
8022
8572
|
/**
|
|
8023
|
-
* **Required permissions:** `can_access_system` - View system status and metadata ___ Deletes a custom motion group model. Only custom models
|
|
8573
|
+
* **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
8574
|
* @summary Delete Motion Group Model
|
|
8025
8575
|
* @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
8576
|
* @param {*} [options] Override http request option.
|
|
@@ -8035,6 +8585,14 @@ declare const MotionGroupModelsApiFp: (configuration?: Configuration) => {
|
|
|
8035
8585
|
* @throws {RequiredError}
|
|
8036
8586
|
*/
|
|
8037
8587
|
exportMotionGroupModel(motionGroupModel: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<File>>;
|
|
8588
|
+
/**
|
|
8589
|
+
* **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.
|
|
8590
|
+
* @summary Get Configuration for Motion Group
|
|
8591
|
+
* @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).
|
|
8592
|
+
* @param {*} [options] Override http request option.
|
|
8593
|
+
* @throws {RequiredError}
|
|
8594
|
+
*/
|
|
8595
|
+
getConfigurationForMotionGroup(motionGroupModel: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MotionGroupConfiguration>>;
|
|
8038
8596
|
/**
|
|
8039
8597
|
* **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
8598
|
* @summary Get Collision Model
|
|
@@ -8092,6 +8650,13 @@ declare const MotionGroupModelsApiFp: (configuration?: Configuration) => {
|
|
|
8092
8650
|
* @throws {RequiredError}
|
|
8093
8651
|
*/
|
|
8094
8652
|
getMotionGroupModels(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<string>>>;
|
|
8653
|
+
/**
|
|
8654
|
+
* **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.
|
|
8655
|
+
* @summary Motion Group Model Catalog
|
|
8656
|
+
* @param {*} [options] Override http request option.
|
|
8657
|
+
* @throws {RequiredError}
|
|
8658
|
+
*/
|
|
8659
|
+
getMotionGroupModelsCatalog(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<MotionGroupModelCatalog>>>;
|
|
8095
8660
|
/**
|
|
8096
8661
|
* **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
8662
|
* @summary Download USD Model
|
|
@@ -8123,7 +8688,7 @@ declare const MotionGroupModelsApiFactory: (configuration?: Configuration, baseP
|
|
|
8123
8688
|
*/
|
|
8124
8689
|
copyMotionGroupModel(motionGroupModel: string, copyMotionGroupModelRequest: CopyMotionGroupModelRequest, options?: RawAxiosRequestConfig): AxiosPromise<MotionGroupModelDescription>;
|
|
8125
8690
|
/**
|
|
8126
|
-
* **Required permissions:** `can_access_system` - View system status and metadata ___ Deletes a custom motion group model. Only custom models
|
|
8691
|
+
* **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
8692
|
* @summary Delete Motion Group Model
|
|
8128
8693
|
* @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
8694
|
* @param {*} [options] Override http request option.
|
|
@@ -8138,6 +8703,14 @@ declare const MotionGroupModelsApiFactory: (configuration?: Configuration, baseP
|
|
|
8138
8703
|
* @throws {RequiredError}
|
|
8139
8704
|
*/
|
|
8140
8705
|
exportMotionGroupModel(motionGroupModel: string, options?: RawAxiosRequestConfig): AxiosPromise<File>;
|
|
8706
|
+
/**
|
|
8707
|
+
* **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.
|
|
8708
|
+
* @summary Get Configuration for Motion Group
|
|
8709
|
+
* @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).
|
|
8710
|
+
* @param {*} [options] Override http request option.
|
|
8711
|
+
* @throws {RequiredError}
|
|
8712
|
+
*/
|
|
8713
|
+
getConfigurationForMotionGroup(motionGroupModel: string, options?: RawAxiosRequestConfig): AxiosPromise<MotionGroupConfiguration>;
|
|
8141
8714
|
/**
|
|
8142
8715
|
* **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
8716
|
* @summary Get Collision Model
|
|
@@ -8195,6 +8768,13 @@ declare const MotionGroupModelsApiFactory: (configuration?: Configuration, baseP
|
|
|
8195
8768
|
* @throws {RequiredError}
|
|
8196
8769
|
*/
|
|
8197
8770
|
getMotionGroupModels(options?: RawAxiosRequestConfig): AxiosPromise<Array<string>>;
|
|
8771
|
+
/**
|
|
8772
|
+
* **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.
|
|
8773
|
+
* @summary Motion Group Model Catalog
|
|
8774
|
+
* @param {*} [options] Override http request option.
|
|
8775
|
+
* @throws {RequiredError}
|
|
8776
|
+
*/
|
|
8777
|
+
getMotionGroupModelsCatalog(options?: RawAxiosRequestConfig): AxiosPromise<Array<MotionGroupModelCatalog>>;
|
|
8198
8778
|
/**
|
|
8199
8779
|
* **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
8780
|
* @summary Download USD Model
|
|
@@ -8226,7 +8806,7 @@ declare class MotionGroupModelsApi extends BaseAPI {
|
|
|
8226
8806
|
*/
|
|
8227
8807
|
copyMotionGroupModel(motionGroupModel: string, copyMotionGroupModelRequest: CopyMotionGroupModelRequest, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<MotionGroupModelDescription, any, {}>>;
|
|
8228
8808
|
/**
|
|
8229
|
-
* **Required permissions:** `can_access_system` - View system status and metadata ___ Deletes a custom motion group model. Only custom models
|
|
8809
|
+
* **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
8810
|
* @summary Delete Motion Group Model
|
|
8231
8811
|
* @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
8812
|
* @param {*} [options] Override http request option.
|
|
@@ -8241,6 +8821,14 @@ declare class MotionGroupModelsApi extends BaseAPI {
|
|
|
8241
8821
|
* @throws {RequiredError}
|
|
8242
8822
|
*/
|
|
8243
8823
|
exportMotionGroupModel(motionGroupModel: string, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<File, any, {}>>;
|
|
8824
|
+
/**
|
|
8825
|
+
* **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.
|
|
8826
|
+
* @summary Get Configuration for Motion Group
|
|
8827
|
+
* @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).
|
|
8828
|
+
* @param {*} [options] Override http request option.
|
|
8829
|
+
* @throws {RequiredError}
|
|
8830
|
+
*/
|
|
8831
|
+
getConfigurationForMotionGroup(motionGroupModel: string, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<MotionGroupConfiguration, any, {}>>;
|
|
8244
8832
|
/**
|
|
8245
8833
|
* **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
8834
|
* @summary Get Collision Model
|
|
@@ -8298,6 +8886,13 @@ declare class MotionGroupModelsApi extends BaseAPI {
|
|
|
8298
8886
|
* @throws {RequiredError}
|
|
8299
8887
|
*/
|
|
8300
8888
|
getMotionGroupModels(options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<string[], any, {}>>;
|
|
8889
|
+
/**
|
|
8890
|
+
* **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.
|
|
8891
|
+
* @summary Motion Group Model Catalog
|
|
8892
|
+
* @param {*} [options] Override http request option.
|
|
8893
|
+
* @throws {RequiredError}
|
|
8894
|
+
*/
|
|
8895
|
+
getMotionGroupModelsCatalog(options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<MotionGroupModelCatalog[], any, {}>>;
|
|
8301
8896
|
/**
|
|
8302
8897
|
* **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
8898
|
* @summary Download USD Model
|
|
@@ -8336,6 +8931,13 @@ declare const NOVACloudApiAxiosParamCreator: (configuration?: Configuration) =>
|
|
|
8336
8931
|
* @throws {RequiredError}
|
|
8337
8932
|
*/
|
|
8338
8933
|
disconnectFromNovaCloud: (completionTimeout?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
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<RequestArgs>;
|
|
8339
8941
|
/**
|
|
8340
8942
|
* **Required permissions:** `can_access_system` - View system status and metadata ___ <!-- theme: danger --> > **Experimental** Get the current NOVA Cloud connection config for this instance.
|
|
8341
8943
|
* @summary Get Connection Config
|
|
@@ -8365,6 +8967,13 @@ declare const NOVACloudApiFp: (configuration?: Configuration) => {
|
|
|
8365
8967
|
* @throws {RequiredError}
|
|
8366
8968
|
*/
|
|
8367
8969
|
disconnectFromNovaCloud(completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => 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): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CloudStatus>>;
|
|
8368
8977
|
/**
|
|
8369
8978
|
* **Required permissions:** `can_access_system` - View system status and metadata ___ <!-- theme: danger --> > **Experimental** Get the current NOVA Cloud connection config for this instance.
|
|
8370
8979
|
* @summary Get Connection Config
|
|
@@ -8394,6 +9003,13 @@ declare const NOVACloudApiFactory: (configuration?: Configuration, basePath?: st
|
|
|
8394
9003
|
* @throws {RequiredError}
|
|
8395
9004
|
*/
|
|
8396
9005
|
disconnectFromNovaCloud(completionTimeout?: number, options?: RawAxiosRequestConfig): AxiosPromise<CloudDisconnectionStatusDisconnected>;
|
|
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): AxiosPromise<CloudStatus>;
|
|
8397
9013
|
/**
|
|
8398
9014
|
* **Required permissions:** `can_access_system` - View system status and metadata ___ <!-- theme: danger --> > **Experimental** Get the current NOVA Cloud connection config for this instance.
|
|
8399
9015
|
* @summary Get Connection Config
|
|
@@ -8423,6 +9039,13 @@ declare class NOVACloudApi extends BaseAPI {
|
|
|
8423
9039
|
* @throws {RequiredError}
|
|
8424
9040
|
*/
|
|
8425
9041
|
disconnectFromNovaCloud(completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<CloudDisconnectionStatusDisconnected, any, {}>>;
|
|
9042
|
+
/**
|
|
9043
|
+
* **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.
|
|
9044
|
+
* @summary Get Connection Status
|
|
9045
|
+
* @param {*} [options] Override http request option.
|
|
9046
|
+
* @throws {RequiredError}
|
|
9047
|
+
*/
|
|
9048
|
+
getCloudStatus(options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<CloudStatus, any, {}>>;
|
|
8426
9049
|
/**
|
|
8427
9050
|
* **Required permissions:** `can_access_system` - View system status and metadata ___ <!-- theme: danger --> > **Experimental** Get the current NOVA Cloud connection config for this instance.
|
|
8428
9051
|
* @summary Get Connection Config
|
|
@@ -9811,15 +10434,15 @@ declare const SystemApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
9811
10434
|
*/
|
|
9812
10435
|
checkNovaVersionUpdate: (channel: ReleaseChannel, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
9813
10436
|
/**
|
|
9814
|
-
* **Required permissions:** `can_access_system` - View system status and metadata ___
|
|
10437
|
+
* **Required permissions:** `can_access_system` - View system status and metadata ___ Runs an ARP scan on the target interface and returns all discovered devices.
|
|
9815
10438
|
* @summary Get ARP-Scan
|
|
9816
|
-
* @param {string}
|
|
9817
|
-
* @param {string}
|
|
10439
|
+
* @param {string} _interface
|
|
10440
|
+
* @param {string} cidr
|
|
9818
10441
|
* @param {number} [timeout]
|
|
9819
10442
|
* @param {*} [options] Override http request option.
|
|
9820
10443
|
* @throws {RequiredError}
|
|
9821
10444
|
*/
|
|
9822
|
-
getArpScan: (_interface
|
|
10445
|
+
getArpScan: (_interface: string, cidr: string, timeout?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
9823
10446
|
/**
|
|
9824
10447
|
* **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
10448
|
* @summary Retrieve Backup Status
|
|
@@ -9836,7 +10459,7 @@ declare const SystemApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
9836
10459
|
*/
|
|
9837
10460
|
getDiagnosePackage: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
9838
10461
|
/**
|
|
9839
|
-
* **Required permissions:** `can_access_system` - View system status and metadata ___
|
|
10462
|
+
* **Required permissions:** `can_access_system` - View system status and metadata ___ Lists all managed network interfaces available for controller connections and ARP scanning.
|
|
9840
10463
|
* @summary Network Interfaces
|
|
9841
10464
|
* @param {*} [options] Override http request option.
|
|
9842
10465
|
* @throws {RequiredError}
|
|
@@ -9912,15 +10535,15 @@ declare const SystemApiFp: (configuration?: Configuration) => {
|
|
|
9912
10535
|
*/
|
|
9913
10536
|
checkNovaVersionUpdate(channel: ReleaseChannel, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<string>>;
|
|
9914
10537
|
/**
|
|
9915
|
-
* **Required permissions:** `can_access_system` - View system status and metadata ___
|
|
10538
|
+
* **Required permissions:** `can_access_system` - View system status and metadata ___ Runs an ARP scan on the target interface and returns all discovered devices.
|
|
9916
10539
|
* @summary Get ARP-Scan
|
|
9917
|
-
* @param {string}
|
|
9918
|
-
* @param {string}
|
|
10540
|
+
* @param {string} _interface
|
|
10541
|
+
* @param {string} cidr
|
|
9919
10542
|
* @param {number} [timeout]
|
|
9920
10543
|
* @param {*} [options] Override http request option.
|
|
9921
10544
|
* @throws {RequiredError}
|
|
9922
10545
|
*/
|
|
9923
|
-
getArpScan(_interface
|
|
10546
|
+
getArpScan(_interface: string, cidr: string, timeout?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<NetworkDevice>>>;
|
|
9924
10547
|
/**
|
|
9925
10548
|
* **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
10549
|
* @summary Retrieve Backup Status
|
|
@@ -9937,7 +10560,7 @@ declare const SystemApiFp: (configuration?: Configuration) => {
|
|
|
9937
10560
|
*/
|
|
9938
10561
|
getDiagnosePackage(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<File>>;
|
|
9939
10562
|
/**
|
|
9940
|
-
* **Required permissions:** `can_access_system` - View system status and metadata ___
|
|
10563
|
+
* **Required permissions:** `can_access_system` - View system status and metadata ___ Lists all managed network interfaces available for controller connections and ARP scanning.
|
|
9941
10564
|
* @summary Network Interfaces
|
|
9942
10565
|
* @param {*} [options] Override http request option.
|
|
9943
10566
|
* @throws {RequiredError}
|
|
@@ -10013,15 +10636,15 @@ declare const SystemApiFactory: (configuration?: Configuration, basePath?: strin
|
|
|
10013
10636
|
*/
|
|
10014
10637
|
checkNovaVersionUpdate(channel: ReleaseChannel, options?: RawAxiosRequestConfig): AxiosPromise<string>;
|
|
10015
10638
|
/**
|
|
10016
|
-
* **Required permissions:** `can_access_system` - View system status and metadata ___
|
|
10639
|
+
* **Required permissions:** `can_access_system` - View system status and metadata ___ Runs an ARP scan on the target interface and returns all discovered devices.
|
|
10017
10640
|
* @summary Get ARP-Scan
|
|
10018
|
-
* @param {string}
|
|
10019
|
-
* @param {string}
|
|
10641
|
+
* @param {string} _interface
|
|
10642
|
+
* @param {string} cidr
|
|
10020
10643
|
* @param {number} [timeout]
|
|
10021
10644
|
* @param {*} [options] Override http request option.
|
|
10022
10645
|
* @throws {RequiredError}
|
|
10023
10646
|
*/
|
|
10024
|
-
getArpScan(_interface
|
|
10647
|
+
getArpScan(_interface: string, cidr: string, timeout?: number, options?: RawAxiosRequestConfig): AxiosPromise<Array<NetworkDevice>>;
|
|
10025
10648
|
/**
|
|
10026
10649
|
* **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
10650
|
* @summary Retrieve Backup Status
|
|
@@ -10038,7 +10661,7 @@ declare const SystemApiFactory: (configuration?: Configuration, basePath?: strin
|
|
|
10038
10661
|
*/
|
|
10039
10662
|
getDiagnosePackage(options?: RawAxiosRequestConfig): AxiosPromise<File>;
|
|
10040
10663
|
/**
|
|
10041
|
-
* **Required permissions:** `can_access_system` - View system status and metadata ___
|
|
10664
|
+
* **Required permissions:** `can_access_system` - View system status and metadata ___ Lists all managed network interfaces available for controller connections and ARP scanning.
|
|
10042
10665
|
* @summary Network Interfaces
|
|
10043
10666
|
* @param {*} [options] Override http request option.
|
|
10044
10667
|
* @throws {RequiredError}
|
|
@@ -10114,15 +10737,15 @@ declare class SystemApi extends BaseAPI {
|
|
|
10114
10737
|
*/
|
|
10115
10738
|
checkNovaVersionUpdate(channel: ReleaseChannel, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<string, any, {}>>;
|
|
10116
10739
|
/**
|
|
10117
|
-
* **Required permissions:** `can_access_system` - View system status and metadata ___
|
|
10740
|
+
* **Required permissions:** `can_access_system` - View system status and metadata ___ Runs an ARP scan on the target interface and returns all discovered devices.
|
|
10118
10741
|
* @summary Get ARP-Scan
|
|
10119
|
-
* @param {string}
|
|
10120
|
-
* @param {string}
|
|
10742
|
+
* @param {string} _interface
|
|
10743
|
+
* @param {string} cidr
|
|
10121
10744
|
* @param {number} [timeout]
|
|
10122
10745
|
* @param {*} [options] Override http request option.
|
|
10123
10746
|
* @throws {RequiredError}
|
|
10124
10747
|
*/
|
|
10125
|
-
getArpScan(_interface
|
|
10748
|
+
getArpScan(_interface: string, cidr: string, timeout?: number, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<NetworkDevice[], any, {}>>;
|
|
10126
10749
|
/**
|
|
10127
10750
|
* **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
10751
|
* @summary Retrieve Backup Status
|
|
@@ -10139,7 +10762,7 @@ declare class SystemApi extends BaseAPI {
|
|
|
10139
10762
|
*/
|
|
10140
10763
|
getDiagnosePackage(options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<File, any, {}>>;
|
|
10141
10764
|
/**
|
|
10142
|
-
* **Required permissions:** `can_access_system` - View system status and metadata ___
|
|
10765
|
+
* **Required permissions:** `can_access_system` - View system status and metadata ___ Lists all managed network interfaces available for controller connections and ARP scanning.
|
|
10143
10766
|
* @summary Network Interfaces
|
|
10144
10767
|
* @param {*} [options] Override http request option.
|
|
10145
10768
|
* @throws {RequiredError}
|
|
@@ -11907,5 +12530,5 @@ declare class Nova {
|
|
|
11907
12530
|
openReconnectingWebsocket(path: string): AutoReconnectingWebsocket;
|
|
11908
12531
|
}
|
|
11909
12532
|
//#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-
|
|
12533
|
+
export { BusIOModbusClientBusTypeEnum as $, JoggingRunningKindEnum as $a, ProfinetIO as $c, UnpauseActionChunksResponseKindEnum 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, TrajectoryIdMessageTypeEnum as Ad, ZodValidationError 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, TrajectoryRunningKindEnum 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, TrajectoryEnded as Cd, VirtualControllerKindEnum 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, TrajectoryExecutionApiFactory as Dd, WaypointCoordinates 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, TrajectoryExecutionApiAxiosParamCreator as Ed, Waypoint 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, TrajectoryPlanningApi as Fd, operationServerMap as Ff, 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, UnitreeController 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, TrajectoryWaitForIO 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, TrajectoryPlanningApiAxiosParamCreator 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, UniversalrobotsController 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, UnitreeControllerKindEnum 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, TrajectoryPlanningApiFactory 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, TrajectoryPausedByUserKindEnum as Md, ZodValidationErrorErrorCodeEnum 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, TrajectoryPausedOnIO as Nd, ZodValidationErrorErrorDetailsInner as Nf, 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, TrajectoryExecutionApiFp as Od, YaskawaController 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, TrajectoryPausedOnIOKindEnum as Pd, ZodValidationErrorErrorDetailsInnerPathInner as Pf, 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, UnpauseActionChunksResponse 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, TrajectoryPlanningApiFp 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, TrajectoryDetailsState as Sd, VirtualControllerInputsOutputsApiFp 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, TrajectoryExecutionApi as Td, WaitForIOEventRequest 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, TrajectoryWaitForIOKindEnum 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, TrajectorySection 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, UnitType 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, UnpauseActionChunksRequest 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, UniversalrobotsControllerKindEnum 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, UnpauseActionChunksRequestMessageTypeEnum 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, TrajectoryCachingApiFp as _d, VirtualControllerBehaviorApiFactory 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, TechmanController as ad, ValidationErrorLocInner 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, TrajectoryDetails as bd, VirtualControllerInputsOutputsApiAxiosParamCreator 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, ToolValue as cd, VersionApiFactory 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, TorqueExceededError as dd, VirtualControllerApi 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, UpdateCellVersionRequest 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, TorqueExceededErrorKindEnum as fd, VirtualControllerApiAxiosParamCreator 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, TrajectoryCachingApiFactory as gd, VirtualControllerBehaviorApiAxiosParamCreator 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, TrajectoryCachingApiAxiosParamCreator as hd, VirtualControllerBehaviorApi 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, ValidationError2 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, TrajectoryPausedByUser as jd, ZodValidationErrorError 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, TrajectoryId as kd, YaskawaControllerKindEnum 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, ToolValueOrKey as ld, VersionApiFp 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, TrajectoryCachingApi as md, VirtualControllerApiFp 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, User 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, TechmanControllerKindEnum as od, VersionApi 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, TorqueExceededErrorTorqueExceeded as pd, VirtualControllerApiFactory 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, UnitreeControllerRobotTypeEnum 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, ValidationError 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, TechmanControllerRtrs as sd, VersionApiAxiosParamCreator 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, UpdateNovaVersionRequest 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, ToolValueSourceEnum as ud, VirtualController 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, TrajectoryData as vd, VirtualControllerBehaviorApiFp 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, TrajectoryEndedKindEnum as wd, VirtualRobotConfiguration 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, TrajectoryDetailsKindEnum as xd, VirtualControllerInputsOutputsApiFactory 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, TrajectoryDataMessageTypeEnum as yd, VirtualControllerInputsOutputsApi 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, TrajectoryRunning 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 };
|
|
12534
|
+
//# sourceMappingURL=Nova-asaP_dDy.d.mts.map
|