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