@wandelbots/nova-api 26.6.0-dev.98 → 26.6.0-rc.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/v2/index.cjs +535 -486
- package/dist/v2/index.d.cts +358 -187
- package/dist/v2/index.d.ts +358 -187
- package/dist/v2/index.js +148 -113
- package/package.json +1 -1
package/dist/v2/index.d.cts
CHANGED
|
@@ -6,7 +6,7 @@ import { AxiosInstance, AxiosPromise, RawAxiosRequestConfig } from "axios";
|
|
|
6
6
|
* Wandelbots NOVA API
|
|
7
7
|
* Interact with robots in an easy and intuitive way.
|
|
8
8
|
*
|
|
9
|
-
* The version of the OpenAPI document: 2.6.0
|
|
9
|
+
* The version of the OpenAPI document: 2.6.0
|
|
10
10
|
*
|
|
11
11
|
*
|
|
12
12
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -192,6 +192,37 @@ interface AbbPose {
|
|
|
192
192
|
'q3': number;
|
|
193
193
|
'q4': number;
|
|
194
194
|
}
|
|
195
|
+
/**
|
|
196
|
+
* 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.
|
|
197
|
+
*/
|
|
198
|
+
interface ActionChunkRequest {
|
|
199
|
+
/**
|
|
200
|
+
* Type specifier for server, set automatically.
|
|
201
|
+
*/
|
|
202
|
+
'message_type': ActionChunkRequestMessageTypeEnum;
|
|
203
|
+
/**
|
|
204
|
+
* List of waypoints.
|
|
205
|
+
*/
|
|
206
|
+
'waypoints': Array<Waypoint>;
|
|
207
|
+
}
|
|
208
|
+
declare const ActionChunkRequestMessageTypeEnum: {
|
|
209
|
+
readonly ActionChunkRequest: "ActionChunkRequest";
|
|
210
|
+
};
|
|
211
|
+
type ActionChunkRequestMessageTypeEnum = typeof ActionChunkRequestMessageTypeEnum[keyof typeof ActionChunkRequestMessageTypeEnum];
|
|
212
|
+
/**
|
|
213
|
+
* Acknowledgment to an ActionChunkRequest.
|
|
214
|
+
*/
|
|
215
|
+
interface ActionChunkResponse {
|
|
216
|
+
/**
|
|
217
|
+
* Error message in case of invalid ActionChunkRequest.
|
|
218
|
+
*/
|
|
219
|
+
'message'?: string;
|
|
220
|
+
'kind': ActionChunkResponseKindEnum;
|
|
221
|
+
}
|
|
222
|
+
declare const ActionChunkResponseKindEnum: {
|
|
223
|
+
readonly ActionChunkReceived: "ACTION_CHUNK_RECEIVED";
|
|
224
|
+
};
|
|
225
|
+
type ActionChunkResponseKindEnum = typeof ActionChunkResponseKindEnum[keyof typeof ActionChunkResponseKindEnum];
|
|
195
226
|
/**
|
|
196
227
|
* The authentication token to fetch the license from the license server.
|
|
197
228
|
*/
|
|
@@ -1346,17 +1377,17 @@ interface ControllerDescription {
|
|
|
1346
1377
|
'supports_safety_zones': boolean;
|
|
1347
1378
|
}
|
|
1348
1379
|
/**
|
|
1349
|
-
*
|
|
1380
|
+
* 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.
|
|
1350
1381
|
*/
|
|
1351
1382
|
interface ControllerNetworkInterface {
|
|
1352
1383
|
/**
|
|
1353
|
-
*
|
|
1384
|
+
* 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.
|
|
1354
1385
|
*/
|
|
1355
|
-
'
|
|
1386
|
+
'interface': string;
|
|
1356
1387
|
/**
|
|
1357
|
-
*
|
|
1388
|
+
* IPv4 addresses to assign to the interface, in address/prefix format, e.g., `192.168.1.10/24`.
|
|
1358
1389
|
*/
|
|
1359
|
-
'
|
|
1390
|
+
'addresses': Array<string>;
|
|
1360
1391
|
}
|
|
1361
1392
|
interface ConvertVendorConfiguredPose422Response {
|
|
1362
1393
|
'detail'?: Array<ValidationError>;
|
|
@@ -1396,7 +1427,7 @@ interface CoordinateSystem {
|
|
|
1396
1427
|
*/
|
|
1397
1428
|
'position'?: Array<number>;
|
|
1398
1429
|
/**
|
|
1399
|
-
* Describes an orientation in 3D space. A
|
|
1430
|
+
* Describes an orientation in 3D space. A three-to-four-dimensional vector [x, y, z, w] with double precision.
|
|
1400
1431
|
*/
|
|
1401
1432
|
'orientation'?: Array<number>;
|
|
1402
1433
|
'orientation_type'?: OrientationType;
|
|
@@ -1419,7 +1450,7 @@ interface CoordinateSystemData {
|
|
|
1419
1450
|
*/
|
|
1420
1451
|
'position'?: Array<number>;
|
|
1421
1452
|
/**
|
|
1422
|
-
* Describes an orientation in 3D space. A
|
|
1453
|
+
* Describes an orientation in 3D space. A three-to-four-dimensional vector [x, y, z, w] with double precision.
|
|
1423
1454
|
*/
|
|
1424
1455
|
'orientation'?: Array<number>;
|
|
1425
1456
|
'orientation_type'?: OrientationType;
|
|
@@ -1641,7 +1672,7 @@ declare const ErrorUnsupportedOperationErrorFeedbackNameEnum: {
|
|
|
1641
1672
|
};
|
|
1642
1673
|
type ErrorUnsupportedOperationErrorFeedbackNameEnum = typeof ErrorUnsupportedOperationErrorFeedbackNameEnum[keyof typeof ErrorUnsupportedOperationErrorFeedbackNameEnum];
|
|
1643
1674
|
/**
|
|
1644
|
-
* Details about the state of the motion execution. The details are either for a jogging or
|
|
1675
|
+
* 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.
|
|
1645
1676
|
*/
|
|
1646
1677
|
interface Execute {
|
|
1647
1678
|
/**
|
|
@@ -1650,6 +1681,26 @@ interface Execute {
|
|
|
1650
1681
|
'joint_position': Array<number>;
|
|
1651
1682
|
'details'?: ExecuteDetails;
|
|
1652
1683
|
}
|
|
1684
|
+
/**
|
|
1685
|
+
* @type ExecuteActionChunksRequest
|
|
1686
|
+
*/
|
|
1687
|
+
type ExecuteActionChunksRequest = ActionChunkRequest | InitializeActionChunksRequest | PauseActionChunksRequest | StopActionChunksRequest | UnpauseActionChunksRequest;
|
|
1688
|
+
/**
|
|
1689
|
+
* @type ExecuteActionChunksResponse
|
|
1690
|
+
*/
|
|
1691
|
+
type ExecuteActionChunksResponse = {
|
|
1692
|
+
kind: 'ACTION_CHUNK_RECEIVED';
|
|
1693
|
+
} & ActionChunkResponse | {
|
|
1694
|
+
kind: 'INITIALIZE_RECEIVED';
|
|
1695
|
+
} & InitializeActionChunksResponse | {
|
|
1696
|
+
kind: 'MOTION_ERROR';
|
|
1697
|
+
} & MovementErrorResponse | {
|
|
1698
|
+
kind: 'PAUSE_RECEIVED';
|
|
1699
|
+
} & PauseActionChunksResponse | {
|
|
1700
|
+
kind: 'STOP_RECEIVED';
|
|
1701
|
+
} & StopActionChunksResponse | {
|
|
1702
|
+
kind: 'UNPAUSE_RECEIVED';
|
|
1703
|
+
} & UnpauseActionChunksResponse;
|
|
1653
1704
|
/**
|
|
1654
1705
|
* @type ExecuteDetails
|
|
1655
1706
|
*/
|
|
@@ -1694,24 +1745,6 @@ type ExecuteTrajectoryResponse = {
|
|
|
1694
1745
|
} & PlaybackSpeedResponse | {
|
|
1695
1746
|
kind: 'START_RECEIVED';
|
|
1696
1747
|
} & StartMovementResponse;
|
|
1697
|
-
/**
|
|
1698
|
-
* @type ExecuteWaypointJoggingRequest
|
|
1699
|
-
*/
|
|
1700
|
-
type ExecuteWaypointJoggingRequest = InitializeJoggingRequest | JointWaypointsRequest | PauseJoggingRequest | PoseWaypointsRequest;
|
|
1701
|
-
/**
|
|
1702
|
-
* @type ExecuteWaypointJoggingResponse
|
|
1703
|
-
*/
|
|
1704
|
-
type ExecuteWaypointJoggingResponse = {
|
|
1705
|
-
kind: 'INITIALIZE_RECEIVED';
|
|
1706
|
-
} & InitializeJoggingResponse | {
|
|
1707
|
-
kind: 'JOINT_WAYPOINTS_RECEIVED';
|
|
1708
|
-
} & JointWaypointsResponse | {
|
|
1709
|
-
kind: 'MOTION_ERROR';
|
|
1710
|
-
} & MovementErrorResponse | {
|
|
1711
|
-
kind: 'PAUSE_RECEIVED';
|
|
1712
|
-
} & PauseJoggingResponse | {
|
|
1713
|
-
kind: 'POSE_WAYPOINTS_RECEIVED';
|
|
1714
|
-
} & PoseWaypointsResponse;
|
|
1715
1748
|
/**
|
|
1716
1749
|
* A datapoint inside external joint stream.
|
|
1717
1750
|
*/
|
|
@@ -2221,6 +2254,41 @@ interface InertiaTensor {
|
|
|
2221
2254
|
*/
|
|
2222
2255
|
'yz': number;
|
|
2223
2256
|
}
|
|
2257
|
+
/**
|
|
2258
|
+
* Send this message to start executing action chunks on a motion group.
|
|
2259
|
+
*/
|
|
2260
|
+
interface InitializeActionChunksRequest {
|
|
2261
|
+
/**
|
|
2262
|
+
* Type specifier for server, set automatically.
|
|
2263
|
+
*/
|
|
2264
|
+
'message_type': InitializeActionChunksRequestMessageTypeEnum;
|
|
2265
|
+
/**
|
|
2266
|
+
* Identifier of the motion group.
|
|
2267
|
+
*/
|
|
2268
|
+
'motion_group': string;
|
|
2269
|
+
/**
|
|
2270
|
+
* 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.
|
|
2271
|
+
*/
|
|
2272
|
+
'tcp'?: string;
|
|
2273
|
+
}
|
|
2274
|
+
declare const InitializeActionChunksRequestMessageTypeEnum: {
|
|
2275
|
+
readonly InitializeActionChunksRequest: "InitializeActionChunksRequest";
|
|
2276
|
+
};
|
|
2277
|
+
type InitializeActionChunksRequestMessageTypeEnum = typeof InitializeActionChunksRequestMessageTypeEnum[keyof typeof InitializeActionChunksRequestMessageTypeEnum];
|
|
2278
|
+
/**
|
|
2279
|
+
* Acknowledgment to an InitializeActionChunksRequest.
|
|
2280
|
+
*/
|
|
2281
|
+
interface InitializeActionChunksResponse {
|
|
2282
|
+
/**
|
|
2283
|
+
* Error message in case of invalid InitializeActionChunksRequest.
|
|
2284
|
+
*/
|
|
2285
|
+
'message'?: string;
|
|
2286
|
+
'kind': InitializeActionChunksResponseKindEnum;
|
|
2287
|
+
}
|
|
2288
|
+
declare const InitializeActionChunksResponseKindEnum: {
|
|
2289
|
+
readonly InitializeReceived: "INITIALIZE_RECEIVED";
|
|
2290
|
+
};
|
|
2291
|
+
type InitializeActionChunksResponseKindEnum = typeof InitializeActionChunksResponseKindEnum[keyof typeof InitializeActionChunksResponseKindEnum];
|
|
2224
2292
|
/**
|
|
2225
2293
|
* Send this message to start jogging a motion group.
|
|
2226
2294
|
*/
|
|
@@ -2565,49 +2633,22 @@ declare const JointVelocityResponseKindEnum: {
|
|
|
2565
2633
|
};
|
|
2566
2634
|
type JointVelocityResponseKindEnum = typeof JointVelocityResponseKindEnum[keyof typeof JointVelocityResponseKindEnum];
|
|
2567
2635
|
/**
|
|
2568
|
-
* A waypoint
|
|
2636
|
+
* A joint waypoint for action chunk streaming. > **NOTE** > > This type is experimental and its behavior may change in future releases.
|
|
2569
2637
|
*/
|
|
2570
2638
|
interface JointWaypoint {
|
|
2571
2639
|
/**
|
|
2572
|
-
*
|
|
2640
|
+
* Type specifier for server, set automatically.
|
|
2573
2641
|
*/
|
|
2574
|
-
'
|
|
2642
|
+
'kind': JointWaypointKindEnum;
|
|
2575
2643
|
/**
|
|
2576
2644
|
* This structure describes a set of joint values, e.g., positions, currents, torques, of a motion group. Float precision is the default.
|
|
2577
2645
|
*/
|
|
2578
2646
|
'joints': Array<number>;
|
|
2579
2647
|
}
|
|
2580
|
-
|
|
2581
|
-
|
|
2582
|
-
*/
|
|
2583
|
-
interface JointWaypointsRequest {
|
|
2584
|
-
/**
|
|
2585
|
-
* Type specifier for server, set automatically.
|
|
2586
|
-
*/
|
|
2587
|
-
'message_type': JointWaypointsRequestMessageTypeEnum;
|
|
2588
|
-
/**
|
|
2589
|
-
* List of joint waypoints.
|
|
2590
|
-
*/
|
|
2591
|
-
'waypoints': Array<JointWaypoint>;
|
|
2592
|
-
}
|
|
2593
|
-
declare const JointWaypointsRequestMessageTypeEnum: {
|
|
2594
|
-
readonly JointWaypointsRequest: "JointWaypointsRequest";
|
|
2595
|
-
};
|
|
2596
|
-
type JointWaypointsRequestMessageTypeEnum = typeof JointWaypointsRequestMessageTypeEnum[keyof typeof JointWaypointsRequestMessageTypeEnum];
|
|
2597
|
-
/**
|
|
2598
|
-
* Acknowledgment to a JointWaypointsRequest.
|
|
2599
|
-
*/
|
|
2600
|
-
interface JointWaypointsResponse {
|
|
2601
|
-
/**
|
|
2602
|
-
* Error message in case of invalid JointWaypointsRequest.
|
|
2603
|
-
*/
|
|
2604
|
-
'message'?: string;
|
|
2605
|
-
'kind': JointWaypointsResponseKindEnum;
|
|
2606
|
-
}
|
|
2607
|
-
declare const JointWaypointsResponseKindEnum: {
|
|
2608
|
-
readonly JointWaypointsReceived: "JOINT_WAYPOINTS_RECEIVED";
|
|
2648
|
+
declare const JointWaypointKindEnum: {
|
|
2649
|
+
readonly Joints: "JOINTS";
|
|
2609
2650
|
};
|
|
2610
|
-
type
|
|
2651
|
+
type JointWaypointKindEnum = typeof JointWaypointKindEnum[keyof typeof JointWaypointKindEnum];
|
|
2611
2652
|
/**
|
|
2612
2653
|
* 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.
|
|
2613
2654
|
*/
|
|
@@ -2890,6 +2931,7 @@ declare const Manufacturer: {
|
|
|
2890
2931
|
readonly Fanuc: "fanuc";
|
|
2891
2932
|
readonly Kuka: "kuka";
|
|
2892
2933
|
readonly Staubli: "staubli";
|
|
2934
|
+
readonly Techman: "techman";
|
|
2893
2935
|
readonly Unitree: "unitree";
|
|
2894
2936
|
readonly Universalrobots: "universalrobots";
|
|
2895
2937
|
readonly Yaskawa: "yaskawa";
|
|
@@ -3507,55 +3549,61 @@ interface NanValueErrorNanValue {
|
|
|
3507
3549
|
*/
|
|
3508
3550
|
'joint_position'?: Array<number>;
|
|
3509
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];
|
|
3510
3560
|
interface NetworkDevice {
|
|
3511
3561
|
/**
|
|
3512
|
-
*
|
|
3562
|
+
* IPv4 address of the discovered device.
|
|
3513
3563
|
*/
|
|
3514
3564
|
'ip': string;
|
|
3515
3565
|
/**
|
|
3516
|
-
*
|
|
3566
|
+
* MAC address of the discovered device.
|
|
3517
3567
|
*/
|
|
3518
3568
|
'mac': string;
|
|
3519
3569
|
/**
|
|
3520
|
-
*
|
|
3570
|
+
* Hardware manufacturer name derived from the MAC address, omitted when unknown.
|
|
3521
3571
|
*/
|
|
3522
3572
|
'vendor'?: string;
|
|
3523
3573
|
}
|
|
3524
3574
|
interface NetworkInterface {
|
|
3525
3575
|
/**
|
|
3526
|
-
*
|
|
3576
|
+
* Host network interface name, e.g., enp0s31f6.
|
|
3527
3577
|
*/
|
|
3528
3578
|
'name': string;
|
|
3529
3579
|
/**
|
|
3530
|
-
*
|
|
3580
|
+
* Stable identifier for this interface. Pass it as the `interface` field in ARP scan request, e.g., wandelbox-abc123-enp3s0.
|
|
3531
3581
|
*/
|
|
3532
|
-
'
|
|
3582
|
+
'interface': string;
|
|
3533
3583
|
/**
|
|
3534
|
-
*
|
|
3584
|
+
* Hostname that exposes this interface.
|
|
3535
3585
|
*/
|
|
3536
|
-
'
|
|
3586
|
+
'node': string;
|
|
3587
|
+
'backend': NetworkBackend;
|
|
3588
|
+
'link': NetworkLinkState;
|
|
3537
3589
|
/**
|
|
3538
|
-
*
|
|
3590
|
+
* IP/CIDR addresses currently assigned to the interface. Omitted when not available.
|
|
3539
3591
|
*/
|
|
3540
|
-
'
|
|
3592
|
+
'addresses'?: Array<string>;
|
|
3541
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];
|
|
3542
3602
|
interface NetworkState {
|
|
3543
3603
|
/**
|
|
3544
3604
|
* Indicates whether the system is connected to the internet.
|
|
3545
3605
|
*/
|
|
3546
3606
|
'internet_connected': boolean;
|
|
3547
|
-
/**
|
|
3548
|
-
* Type of the active network link (e.g., ethernet, wifi, cellular, vpn, unknown).
|
|
3549
|
-
*/
|
|
3550
|
-
'connection_type'?: NetworkStateConnectionTypeEnum;
|
|
3551
|
-
/**
|
|
3552
|
-
* Received signal strength in dBm for wireless interfaces; negative values indicate weaker signals.
|
|
3553
|
-
*/
|
|
3554
|
-
'signal_strength'?: number;
|
|
3555
|
-
/**
|
|
3556
|
-
* Normalized link quality metric from 0 (poor) to 1 (excellent) when provided by the interface.
|
|
3557
|
-
*/
|
|
3558
|
-
'link_quality'?: number;
|
|
3559
3607
|
/**
|
|
3560
3608
|
* Round-trip latency to the probe endpoint measured in milliseconds.
|
|
3561
3609
|
*/
|
|
@@ -3565,14 +3613,6 @@ interface NetworkState {
|
|
|
3565
3613
|
*/
|
|
3566
3614
|
'bandwidth_mbps'?: number;
|
|
3567
3615
|
}
|
|
3568
|
-
declare const NetworkStateConnectionTypeEnum: {
|
|
3569
|
-
readonly Ethernet: "ethernet";
|
|
3570
|
-
readonly Wifi: "wifi";
|
|
3571
|
-
readonly Cellular: "cellular";
|
|
3572
|
-
readonly Vpn: "vpn";
|
|
3573
|
-
readonly Unknown: "unknown";
|
|
3574
|
-
};
|
|
3575
|
-
type NetworkStateConnectionTypeEnum = typeof NetworkStateConnectionTypeEnum[keyof typeof NetworkStateConnectionTypeEnum];
|
|
3576
3616
|
/**
|
|
3577
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.
|
|
3578
3618
|
*/
|
|
@@ -3726,6 +3766,33 @@ declare const PathLinePathDefinitionNameEnum: {
|
|
|
3726
3766
|
readonly PathLine: "PathLine";
|
|
3727
3767
|
};
|
|
3728
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];
|
|
3729
3796
|
/**
|
|
3730
3797
|
* Request to pause jogging. If successful, `execute` jogging state in [MotionGroupState](MotionGroupState.yaml) is set to `PAUSED_BY_USER`.
|
|
3731
3798
|
*/
|
|
@@ -3954,49 +4021,22 @@ interface Pose {
|
|
|
3954
4021
|
'orientation'?: Array<number>;
|
|
3955
4022
|
}
|
|
3956
4023
|
/**
|
|
3957
|
-
* A waypoint
|
|
4024
|
+
* A pose waypoint for action chunk streaming. > **NOTE** > > This type is experimental and its behavior may change in future releases.
|
|
3958
4025
|
*/
|
|
3959
4026
|
interface PoseWaypoint {
|
|
3960
4027
|
/**
|
|
3961
|
-
*
|
|
4028
|
+
* Type specifier for server, set automatically.
|
|
3962
4029
|
*/
|
|
3963
|
-
'
|
|
4030
|
+
'kind': PoseWaypointKindEnum;
|
|
3964
4031
|
/**
|
|
3965
4032
|
* Cartesian pose for this waypoint.
|
|
3966
4033
|
*/
|
|
3967
4034
|
'pose': Pose;
|
|
3968
4035
|
}
|
|
3969
|
-
|
|
3970
|
-
|
|
3971
|
-
*/
|
|
3972
|
-
interface PoseWaypointsRequest {
|
|
3973
|
-
/**
|
|
3974
|
-
* Type specifier for server, set automatically.
|
|
3975
|
-
*/
|
|
3976
|
-
'message_type': PoseWaypointsRequestMessageTypeEnum;
|
|
3977
|
-
/**
|
|
3978
|
-
* List of pose waypoints.
|
|
3979
|
-
*/
|
|
3980
|
-
'waypoints': Array<PoseWaypoint>;
|
|
3981
|
-
}
|
|
3982
|
-
declare const PoseWaypointsRequestMessageTypeEnum: {
|
|
3983
|
-
readonly PoseWaypointsRequest: "PoseWaypointsRequest";
|
|
4036
|
+
declare const PoseWaypointKindEnum: {
|
|
4037
|
+
readonly Pose: "POSE";
|
|
3984
4038
|
};
|
|
3985
|
-
type
|
|
3986
|
-
/**
|
|
3987
|
-
* Acknowledgment to a PoseWaypointsRequest.
|
|
3988
|
-
*/
|
|
3989
|
-
interface PoseWaypointsResponse {
|
|
3990
|
-
/**
|
|
3991
|
-
* Error message in case of invalid PoseWaypointsRequest.
|
|
3992
|
-
*/
|
|
3993
|
-
'message'?: string;
|
|
3994
|
-
'kind': PoseWaypointsResponseKindEnum;
|
|
3995
|
-
}
|
|
3996
|
-
declare const PoseWaypointsResponseKindEnum: {
|
|
3997
|
-
readonly PoseWaypointsReceived: "POSE_WAYPOINTS_RECEIVED";
|
|
3998
|
-
};
|
|
3999
|
-
type PoseWaypointsResponseKindEnum = typeof PoseWaypointsResponseKindEnum[keyof typeof PoseWaypointsResponseKindEnum];
|
|
4039
|
+
type PoseWaypointKindEnum = typeof PoseWaypointKindEnum[keyof typeof PoseWaypointKindEnum];
|
|
4000
4040
|
interface ProfinetDescription {
|
|
4001
4041
|
/**
|
|
4002
4042
|
* The vendor identifier of the PROFINET device, identifying the manufacturer.
|
|
@@ -4384,7 +4424,7 @@ interface RobotController {
|
|
|
4384
4424
|
/**
|
|
4385
4425
|
* @type RobotControllerConfiguration
|
|
4386
4426
|
*/
|
|
4387
|
-
type RobotControllerConfiguration = AbbController | BostondynamicsController | FanucController | KukaController | StaubliController | UnitreeController | UniversalrobotsController | VirtualController | YaskawaController;
|
|
4427
|
+
type RobotControllerConfiguration = AbbController | BostondynamicsController | FanucController | KukaController | StaubliController | TechmanController | UnitreeController | UniversalrobotsController | VirtualController | YaskawaController;
|
|
4388
4428
|
/**
|
|
4389
4429
|
* Information to generate all robot controller configurations that match a given ARP scan result.
|
|
4390
4430
|
*/
|
|
@@ -4454,7 +4494,7 @@ interface RobotTcp {
|
|
|
4454
4494
|
*/
|
|
4455
4495
|
'position': Array<number>;
|
|
4456
4496
|
/**
|
|
4457
|
-
* Describes an orientation in 3D space. A
|
|
4497
|
+
* Describes an orientation in 3D space. A three-to-four-dimensional vector [x, y, z, w] with double precision.
|
|
4458
4498
|
*/
|
|
4459
4499
|
'orientation'?: Array<number>;
|
|
4460
4500
|
'orientation_type'?: OrientationType;
|
|
@@ -4474,7 +4514,7 @@ interface RobotTcpData {
|
|
|
4474
4514
|
*/
|
|
4475
4515
|
'position': Array<number>;
|
|
4476
4516
|
/**
|
|
4477
|
-
* Describes an orientation in 3D space. A
|
|
4517
|
+
* Describes an orientation in 3D space. A three-to-four-dimensional vector [x, y, z, w] with double precision.
|
|
4478
4518
|
*/
|
|
4479
4519
|
'orientation'?: Array<number>;
|
|
4480
4520
|
'orientation_type'?: OrientationType;
|
|
@@ -4972,6 +5012,33 @@ interface StaubliControllerRtiServer {
|
|
|
4972
5012
|
'ip': string;
|
|
4973
5013
|
'port': number;
|
|
4974
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];
|
|
4975
5042
|
/**
|
|
4976
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/).
|
|
4977
5044
|
*/
|
|
@@ -5060,6 +5127,41 @@ declare const TcpVelocityResponseKindEnum: {
|
|
|
5060
5127
|
readonly TcpVelocityReceived: "TCP_VELOCITY_RECEIVED";
|
|
5061
5128
|
};
|
|
5062
5129
|
type TcpVelocityResponseKindEnum = typeof TcpVelocityResponseKindEnum[keyof typeof TcpVelocityResponseKindEnum];
|
|
5130
|
+
/**
|
|
5131
|
+
* The configuration of a physical Techman robot controller has to contain an IP address. Additionally an RTRS server configuration has to be specified to obtain state from the robot.
|
|
5132
|
+
*/
|
|
5133
|
+
interface TechmanController {
|
|
5134
|
+
'kind': TechmanControllerKindEnum;
|
|
5135
|
+
'controller_ip': string;
|
|
5136
|
+
'network_interface'?: ControllerNetworkInterface;
|
|
5137
|
+
/**
|
|
5138
|
+
* TCP port for the TMSVR channel on the robot controller.
|
|
5139
|
+
*/
|
|
5140
|
+
'tmsvr_port'?: number;
|
|
5141
|
+
/**
|
|
5142
|
+
* TCP port for the TMSCT channel on the robot controller.
|
|
5143
|
+
*/
|
|
5144
|
+
'tmsct_port'?: number;
|
|
5145
|
+
'rtrs': TechmanControllerRtrs;
|
|
5146
|
+
}
|
|
5147
|
+
declare const TechmanControllerKindEnum: {
|
|
5148
|
+
readonly TechmanController: "TechmanController";
|
|
5149
|
+
};
|
|
5150
|
+
type TechmanControllerKindEnum = typeof TechmanControllerKindEnum[keyof typeof TechmanControllerKindEnum];
|
|
5151
|
+
/**
|
|
5152
|
+
* RTRS server configuration for real-time communication.
|
|
5153
|
+
*/
|
|
5154
|
+
interface TechmanControllerRtrs {
|
|
5155
|
+
'ip': string;
|
|
5156
|
+
/**
|
|
5157
|
+
* TCP port for the TMRTS state reporting channel.
|
|
5158
|
+
*/
|
|
5159
|
+
'tmrts_port'?: number;
|
|
5160
|
+
/**
|
|
5161
|
+
* TCP port for the TMRTC real-time control channel.
|
|
5162
|
+
*/
|
|
5163
|
+
'tmrtc_port'?: number;
|
|
5164
|
+
}
|
|
5063
5165
|
/**
|
|
5064
5166
|
* An inline tool collider wrapped for discriminator support.
|
|
5065
5167
|
*/
|
|
@@ -5301,6 +5403,33 @@ declare const UniversalrobotsControllerKindEnum: {
|
|
|
5301
5403
|
readonly UniversalrobotsController: "UniversalrobotsController";
|
|
5302
5404
|
};
|
|
5303
5405
|
type UniversalrobotsControllerKindEnum = typeof UniversalrobotsControllerKindEnum[keyof typeof UniversalrobotsControllerKindEnum];
|
|
5406
|
+
/**
|
|
5407
|
+
* Request to unpause executing action chunks. If successful, `execute` jogging state in [MotionGroupState](MotionGroupState.yaml) is set to `RUNNING`.
|
|
5408
|
+
*/
|
|
5409
|
+
interface UnpauseActionChunksRequest {
|
|
5410
|
+
/**
|
|
5411
|
+
* Type specifier for server, set automatically.
|
|
5412
|
+
*/
|
|
5413
|
+
'message_type': UnpauseActionChunksRequestMessageTypeEnum;
|
|
5414
|
+
}
|
|
5415
|
+
declare const UnpauseActionChunksRequestMessageTypeEnum: {
|
|
5416
|
+
readonly UnpauseActionChunksRequest: "UnpauseActionChunksRequest";
|
|
5417
|
+
};
|
|
5418
|
+
type UnpauseActionChunksRequestMessageTypeEnum = typeof UnpauseActionChunksRequestMessageTypeEnum[keyof typeof UnpauseActionChunksRequestMessageTypeEnum];
|
|
5419
|
+
/**
|
|
5420
|
+
* Acknowledgment to an UnpauseActionChunksRequest.
|
|
5421
|
+
*/
|
|
5422
|
+
interface UnpauseActionChunksResponse {
|
|
5423
|
+
/**
|
|
5424
|
+
* Error message in case of invalid UnpauseActionChunksRequest.
|
|
5425
|
+
*/
|
|
5426
|
+
'message'?: string;
|
|
5427
|
+
'kind': UnpauseActionChunksResponseKindEnum;
|
|
5428
|
+
}
|
|
5429
|
+
declare const UnpauseActionChunksResponseKindEnum: {
|
|
5430
|
+
readonly UnpauseReceived: "UNPAUSE_RECEIVED";
|
|
5431
|
+
};
|
|
5432
|
+
type UnpauseActionChunksResponseKindEnum = typeof UnpauseActionChunksResponseKindEnum[keyof typeof UnpauseActionChunksResponseKindEnum];
|
|
5304
5433
|
/**
|
|
5305
5434
|
* Update a single cell\'s Foundation chart version based on the indicated release channel.
|
|
5306
5435
|
*/
|
|
@@ -5401,6 +5530,28 @@ interface WaitForIOEventRequest {
|
|
|
5401
5530
|
*/
|
|
5402
5531
|
'comparator': Comparator;
|
|
5403
5532
|
}
|
|
5533
|
+
/**
|
|
5534
|
+
* A waypoint for action chunk streaming. > **NOTE** > > This type is experimental and its behavior may change in future releases.
|
|
5535
|
+
*/
|
|
5536
|
+
interface Waypoint {
|
|
5537
|
+
/**
|
|
5538
|
+
* Exact timestamp [ms] at which the waypoint should be reached, relative to the start of the session.
|
|
5539
|
+
*/
|
|
5540
|
+
'timestamp': number;
|
|
5541
|
+
/**
|
|
5542
|
+
* Coordinates for this waypoint.
|
|
5543
|
+
*/
|
|
5544
|
+
'waypoint': WaypointCoordinates;
|
|
5545
|
+
}
|
|
5546
|
+
/**
|
|
5547
|
+
* @type WaypointCoordinates
|
|
5548
|
+
* Coordinates for an action chunk streaming waypoint. > **NOTE** > > This type is experimental and its behavior may change in future releases.
|
|
5549
|
+
*/
|
|
5550
|
+
type WaypointCoordinates = {
|
|
5551
|
+
kind: 'JOINTS';
|
|
5552
|
+
} & JointWaypoint | {
|
|
5553
|
+
kind: 'POSE';
|
|
5554
|
+
} & PoseWaypoint;
|
|
5404
5555
|
/**
|
|
5405
5556
|
* The configuration of a physical Yaskawa robot controller has to contain IP address of the controller.
|
|
5406
5557
|
*/
|
|
@@ -5440,6 +5591,66 @@ interface ZodValidationErrorErrorDetailsInner {
|
|
|
5440
5591
|
* @type ZodValidationErrorErrorDetailsInnerPathInner
|
|
5441
5592
|
*/
|
|
5442
5593
|
type ZodValidationErrorErrorDetailsInnerPathInner = number | string;
|
|
5594
|
+
/**
|
|
5595
|
+
* ActionChunkStreamingApi - axios parameter creator
|
|
5596
|
+
*/
|
|
5597
|
+
declare const ActionChunkStreamingApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
5598
|
+
/**
|
|
5599
|
+
* **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.
|
|
5600
|
+
* @summary Execute Action Chunks
|
|
5601
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
5602
|
+
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
5603
|
+
* @param {ExecuteActionChunksRequest} executeActionChunksRequest
|
|
5604
|
+
* @param {*} [options] Override http request option.
|
|
5605
|
+
* @throws {RequiredError}
|
|
5606
|
+
*/
|
|
5607
|
+
executeActionChunks: (cell: string, controller: string, executeActionChunksRequest: ExecuteActionChunksRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
5608
|
+
};
|
|
5609
|
+
/**
|
|
5610
|
+
* ActionChunkStreamingApi - functional programming interface
|
|
5611
|
+
*/
|
|
5612
|
+
declare const ActionChunkStreamingApiFp: (configuration?: Configuration) => {
|
|
5613
|
+
/**
|
|
5614
|
+
* **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.
|
|
5615
|
+
* @summary Execute Action Chunks
|
|
5616
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
5617
|
+
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
5618
|
+
* @param {ExecuteActionChunksRequest} executeActionChunksRequest
|
|
5619
|
+
* @param {*} [options] Override http request option.
|
|
5620
|
+
* @throws {RequiredError}
|
|
5621
|
+
*/
|
|
5622
|
+
executeActionChunks(cell: string, controller: string, executeActionChunksRequest: ExecuteActionChunksRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ExecuteActionChunksResponse>>;
|
|
5623
|
+
};
|
|
5624
|
+
/**
|
|
5625
|
+
* ActionChunkStreamingApi - factory interface
|
|
5626
|
+
*/
|
|
5627
|
+
declare const ActionChunkStreamingApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
5628
|
+
/**
|
|
5629
|
+
* **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.
|
|
5630
|
+
* @summary Execute Action Chunks
|
|
5631
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
5632
|
+
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
5633
|
+
* @param {ExecuteActionChunksRequest} executeActionChunksRequest
|
|
5634
|
+
* @param {*} [options] Override http request option.
|
|
5635
|
+
* @throws {RequiredError}
|
|
5636
|
+
*/
|
|
5637
|
+
executeActionChunks(cell: string, controller: string, executeActionChunksRequest: ExecuteActionChunksRequest, options?: RawAxiosRequestConfig): AxiosPromise<ExecuteActionChunksResponse>;
|
|
5638
|
+
};
|
|
5639
|
+
/**
|
|
5640
|
+
* ActionChunkStreamingApi - object-oriented interface
|
|
5641
|
+
*/
|
|
5642
|
+
declare class ActionChunkStreamingApi extends BaseAPI {
|
|
5643
|
+
/**
|
|
5644
|
+
* **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.
|
|
5645
|
+
* @summary Execute Action Chunks
|
|
5646
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
5647
|
+
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
5648
|
+
* @param {ExecuteActionChunksRequest} executeActionChunksRequest
|
|
5649
|
+
* @param {*} [options] Override http request option.
|
|
5650
|
+
* @throws {RequiredError}
|
|
5651
|
+
*/
|
|
5652
|
+
executeActionChunks(cell: string, controller: string, executeActionChunksRequest: ExecuteActionChunksRequest, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<ExecuteActionChunksResponse, any, {}>>;
|
|
5653
|
+
}
|
|
5443
5654
|
/**
|
|
5444
5655
|
* ApplicationApi - axios parameter creator
|
|
5445
5656
|
*/
|
|
@@ -7658,16 +7869,6 @@ declare const JoggingApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
7658
7869
|
* @throws {RequiredError}
|
|
7659
7870
|
*/
|
|
7660
7871
|
executeJogging: (cell: string, controller: string, executeJoggingRequest: ExecuteJoggingRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
7661
|
-
/**
|
|
7662
|
-
* **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.
|
|
7663
|
-
* @summary Execute Waypoint Jogging
|
|
7664
|
-
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
7665
|
-
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
7666
|
-
* @param {ExecuteWaypointJoggingRequest} executeWaypointJoggingRequest
|
|
7667
|
-
* @param {*} [options] Override http request option.
|
|
7668
|
-
* @throws {RequiredError}
|
|
7669
|
-
*/
|
|
7670
|
-
executeWaypointJogging: (cell: string, controller: string, executeWaypointJoggingRequest: ExecuteWaypointJoggingRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
7671
7872
|
};
|
|
7672
7873
|
/**
|
|
7673
7874
|
* JoggingApi - functional programming interface
|
|
@@ -7683,16 +7884,6 @@ declare const JoggingApiFp: (configuration?: Configuration) => {
|
|
|
7683
7884
|
* @throws {RequiredError}
|
|
7684
7885
|
*/
|
|
7685
7886
|
executeJogging(cell: string, controller: string, executeJoggingRequest: ExecuteJoggingRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ExecuteJoggingResponse>>;
|
|
7686
|
-
/**
|
|
7687
|
-
* **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.
|
|
7688
|
-
* @summary Execute Waypoint Jogging
|
|
7689
|
-
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
7690
|
-
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
7691
|
-
* @param {ExecuteWaypointJoggingRequest} executeWaypointJoggingRequest
|
|
7692
|
-
* @param {*} [options] Override http request option.
|
|
7693
|
-
* @throws {RequiredError}
|
|
7694
|
-
*/
|
|
7695
|
-
executeWaypointJogging(cell: string, controller: string, executeWaypointJoggingRequest: ExecuteWaypointJoggingRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ExecuteWaypointJoggingResponse>>;
|
|
7696
7887
|
};
|
|
7697
7888
|
/**
|
|
7698
7889
|
* JoggingApi - factory interface
|
|
@@ -7708,16 +7899,6 @@ declare const JoggingApiFactory: (configuration?: Configuration, basePath?: stri
|
|
|
7708
7899
|
* @throws {RequiredError}
|
|
7709
7900
|
*/
|
|
7710
7901
|
executeJogging(cell: string, controller: string, executeJoggingRequest: ExecuteJoggingRequest, options?: RawAxiosRequestConfig): AxiosPromise<ExecuteJoggingResponse>;
|
|
7711
|
-
/**
|
|
7712
|
-
* **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.
|
|
7713
|
-
* @summary Execute Waypoint Jogging
|
|
7714
|
-
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
7715
|
-
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
7716
|
-
* @param {ExecuteWaypointJoggingRequest} executeWaypointJoggingRequest
|
|
7717
|
-
* @param {*} [options] Override http request option.
|
|
7718
|
-
* @throws {RequiredError}
|
|
7719
|
-
*/
|
|
7720
|
-
executeWaypointJogging(cell: string, controller: string, executeWaypointJoggingRequest: ExecuteWaypointJoggingRequest, options?: RawAxiosRequestConfig): AxiosPromise<ExecuteWaypointJoggingResponse>;
|
|
7721
7902
|
};
|
|
7722
7903
|
/**
|
|
7723
7904
|
* JoggingApi - object-oriented interface
|
|
@@ -7733,16 +7914,6 @@ declare class JoggingApi extends BaseAPI {
|
|
|
7733
7914
|
* @throws {RequiredError}
|
|
7734
7915
|
*/
|
|
7735
7916
|
executeJogging(cell: string, controller: string, executeJoggingRequest: ExecuteJoggingRequest, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<ExecuteJoggingResponse, any, {}>>;
|
|
7736
|
-
/**
|
|
7737
|
-
* **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.
|
|
7738
|
-
* @summary Execute Waypoint Jogging
|
|
7739
|
-
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
7740
|
-
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
7741
|
-
* @param {ExecuteWaypointJoggingRequest} executeWaypointJoggingRequest
|
|
7742
|
-
* @param {*} [options] Override http request option.
|
|
7743
|
-
* @throws {RequiredError}
|
|
7744
|
-
*/
|
|
7745
|
-
executeWaypointJogging(cell: string, controller: string, executeWaypointJoggingRequest: ExecuteWaypointJoggingRequest, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<ExecuteWaypointJoggingResponse, any, {}>>;
|
|
7746
7917
|
}
|
|
7747
7918
|
/**
|
|
7748
7919
|
* KinematicsApi - axios parameter creator
|
|
@@ -10262,15 +10433,15 @@ declare const SystemApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
10262
10433
|
*/
|
|
10263
10434
|
checkNovaVersionUpdate: (channel: ReleaseChannel, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
10264
10435
|
/**
|
|
10265
|
-
* **Required permissions:** `can_access_system` - View system status and metadata ___
|
|
10436
|
+
* **Required permissions:** `can_access_system` - View system status and metadata ___ Runs an ARP scan on the target interface and returns all discovered devices.
|
|
10266
10437
|
* @summary Get ARP-Scan
|
|
10267
|
-
* @param {string}
|
|
10268
|
-
* @param {string}
|
|
10438
|
+
* @param {string} _interface
|
|
10439
|
+
* @param {string} cidr
|
|
10269
10440
|
* @param {number} [timeout]
|
|
10270
10441
|
* @param {*} [options] Override http request option.
|
|
10271
10442
|
* @throws {RequiredError}
|
|
10272
10443
|
*/
|
|
10273
|
-
getArpScan: (_interface
|
|
10444
|
+
getArpScan: (_interface: string, cidr: string, timeout?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
10274
10445
|
/**
|
|
10275
10446
|
* **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.
|
|
10276
10447
|
* @summary Retrieve Backup Status
|
|
@@ -10287,7 +10458,7 @@ declare const SystemApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
10287
10458
|
*/
|
|
10288
10459
|
getDiagnosePackage: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
10289
10460
|
/**
|
|
10290
|
-
* **Required permissions:** `can_access_system` - View system status and metadata ___
|
|
10461
|
+
* **Required permissions:** `can_access_system` - View system status and metadata ___ Lists all managed network interfaces available for controller connections and ARP scanning.
|
|
10291
10462
|
* @summary Network Interfaces
|
|
10292
10463
|
* @param {*} [options] Override http request option.
|
|
10293
10464
|
* @throws {RequiredError}
|
|
@@ -10363,15 +10534,15 @@ declare const SystemApiFp: (configuration?: Configuration) => {
|
|
|
10363
10534
|
*/
|
|
10364
10535
|
checkNovaVersionUpdate(channel: ReleaseChannel, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<string>>;
|
|
10365
10536
|
/**
|
|
10366
|
-
* **Required permissions:** `can_access_system` - View system status and metadata ___
|
|
10537
|
+
* **Required permissions:** `can_access_system` - View system status and metadata ___ Runs an ARP scan on the target interface and returns all discovered devices.
|
|
10367
10538
|
* @summary Get ARP-Scan
|
|
10368
|
-
* @param {string}
|
|
10369
|
-
* @param {string}
|
|
10539
|
+
* @param {string} _interface
|
|
10540
|
+
* @param {string} cidr
|
|
10370
10541
|
* @param {number} [timeout]
|
|
10371
10542
|
* @param {*} [options] Override http request option.
|
|
10372
10543
|
* @throws {RequiredError}
|
|
10373
10544
|
*/
|
|
10374
|
-
getArpScan(_interface
|
|
10545
|
+
getArpScan(_interface: string, cidr: string, timeout?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<NetworkDevice>>>;
|
|
10375
10546
|
/**
|
|
10376
10547
|
* **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.
|
|
10377
10548
|
* @summary Retrieve Backup Status
|
|
@@ -10388,7 +10559,7 @@ declare const SystemApiFp: (configuration?: Configuration) => {
|
|
|
10388
10559
|
*/
|
|
10389
10560
|
getDiagnosePackage(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<File>>;
|
|
10390
10561
|
/**
|
|
10391
|
-
* **Required permissions:** `can_access_system` - View system status and metadata ___
|
|
10562
|
+
* **Required permissions:** `can_access_system` - View system status and metadata ___ Lists all managed network interfaces available for controller connections and ARP scanning.
|
|
10392
10563
|
* @summary Network Interfaces
|
|
10393
10564
|
* @param {*} [options] Override http request option.
|
|
10394
10565
|
* @throws {RequiredError}
|
|
@@ -10464,15 +10635,15 @@ declare const SystemApiFactory: (configuration?: Configuration, basePath?: strin
|
|
|
10464
10635
|
*/
|
|
10465
10636
|
checkNovaVersionUpdate(channel: ReleaseChannel, options?: RawAxiosRequestConfig): AxiosPromise<string>;
|
|
10466
10637
|
/**
|
|
10467
|
-
* **Required permissions:** `can_access_system` - View system status and metadata ___
|
|
10638
|
+
* **Required permissions:** `can_access_system` - View system status and metadata ___ Runs an ARP scan on the target interface and returns all discovered devices.
|
|
10468
10639
|
* @summary Get ARP-Scan
|
|
10469
|
-
* @param {string}
|
|
10470
|
-
* @param {string}
|
|
10640
|
+
* @param {string} _interface
|
|
10641
|
+
* @param {string} cidr
|
|
10471
10642
|
* @param {number} [timeout]
|
|
10472
10643
|
* @param {*} [options] Override http request option.
|
|
10473
10644
|
* @throws {RequiredError}
|
|
10474
10645
|
*/
|
|
10475
|
-
getArpScan(_interface
|
|
10646
|
+
getArpScan(_interface: string, cidr: string, timeout?: number, options?: RawAxiosRequestConfig): AxiosPromise<Array<NetworkDevice>>;
|
|
10476
10647
|
/**
|
|
10477
10648
|
* **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.
|
|
10478
10649
|
* @summary Retrieve Backup Status
|
|
@@ -10489,7 +10660,7 @@ declare const SystemApiFactory: (configuration?: Configuration, basePath?: strin
|
|
|
10489
10660
|
*/
|
|
10490
10661
|
getDiagnosePackage(options?: RawAxiosRequestConfig): AxiosPromise<File>;
|
|
10491
10662
|
/**
|
|
10492
|
-
* **Required permissions:** `can_access_system` - View system status and metadata ___
|
|
10663
|
+
* **Required permissions:** `can_access_system` - View system status and metadata ___ Lists all managed network interfaces available for controller connections and ARP scanning.
|
|
10493
10664
|
* @summary Network Interfaces
|
|
10494
10665
|
* @param {*} [options] Override http request option.
|
|
10495
10666
|
* @throws {RequiredError}
|
|
@@ -10565,15 +10736,15 @@ declare class SystemApi extends BaseAPI {
|
|
|
10565
10736
|
*/
|
|
10566
10737
|
checkNovaVersionUpdate(channel: ReleaseChannel, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<string, any, {}>>;
|
|
10567
10738
|
/**
|
|
10568
|
-
* **Required permissions:** `can_access_system` - View system status and metadata ___
|
|
10739
|
+
* **Required permissions:** `can_access_system` - View system status and metadata ___ Runs an ARP scan on the target interface and returns all discovered devices.
|
|
10569
10740
|
* @summary Get ARP-Scan
|
|
10570
|
-
* @param {string}
|
|
10571
|
-
* @param {string}
|
|
10741
|
+
* @param {string} _interface
|
|
10742
|
+
* @param {string} cidr
|
|
10572
10743
|
* @param {number} [timeout]
|
|
10573
10744
|
* @param {*} [options] Override http request option.
|
|
10574
10745
|
* @throws {RequiredError}
|
|
10575
10746
|
*/
|
|
10576
|
-
getArpScan(_interface
|
|
10747
|
+
getArpScan(_interface: string, cidr: string, timeout?: number, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<NetworkDevice[], any, {}>>;
|
|
10577
10748
|
/**
|
|
10578
10749
|
* **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.
|
|
10579
10750
|
* @summary Retrieve Backup Status
|
|
@@ -10590,7 +10761,7 @@ declare class SystemApi extends BaseAPI {
|
|
|
10590
10761
|
*/
|
|
10591
10762
|
getDiagnosePackage(options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<File, any, {}>>;
|
|
10592
10763
|
/**
|
|
10593
|
-
* **Required permissions:** `can_access_system` - View system status and metadata ___
|
|
10764
|
+
* **Required permissions:** `can_access_system` - View system status and metadata ___ Lists all managed network interfaces available for controller connections and ARP scanning.
|
|
10594
10765
|
* @summary Network Interfaces
|
|
10595
10766
|
* @param {*} [options] Override http request option.
|
|
10596
10767
|
* @throws {RequiredError}
|
|
@@ -12279,4 +12450,4 @@ declare class VirtualControllerInputsOutputsApi extends BaseAPI {
|
|
|
12279
12450
|
setIOValues(cell: string, controller: string, iOValue: Array<IOValue>, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<void, any, {}>>;
|
|
12280
12451
|
}
|
|
12281
12452
|
//#endregion
|
|
12282
|
-
export { AbbConfdata, AbbConfiguredPose, AbbController, AbbControllerEgmServer, AbbControllerKindEnum, AbbPose, ActivateLicenseRequest, AddTrajectoryError, AddTrajectoryErrorData, AddTrajectoryRequest, AddTrajectoryResponse, AddVirtualControllerMotionGroupRequest, ApiVersion, App, ApplicationApi, ApplicationApiAxiosParamCreator, ApplicationApiFactory, ApplicationApiFp, AxisRange, BASE_PATH, BUSInputsOutputsApi, BUSInputsOutputsApiAxiosParamCreator, BUSInputsOutputsApiFactory, BUSInputsOutputsApiFp, BaseAPI, Behavior, BlendingAuto, BlendingAutoBlendingNameEnum, BlendingPosition, BlendingPositionBlendingNameEnum, BlendingSpace, BooleanValue, BooleanValueValueTypeEnum, BostondynamicsController, BostondynamicsControllerKindEnum, BostondynamicsControllerRobotTypeEnum, Box, BoxBoxTypeEnum, BoxShapeTypeEnum, BusIODescription, BusIOModbusClient, BusIOModbusClientBusTypeEnum, BusIOModbusServer, BusIOModbusServerBusTypeEnum, BusIOModbusTCPClient, BusIOModbusTCPClientNetworkTypeEnum, BusIOModbusTCPServer, BusIOModbusTCPServerNetworkTypeEnum, BusIOModbusVirtual, BusIOModbusVirtualBusTypeEnum, BusIOProfinet, BusIOProfinetBusTypeEnum, BusIOProfinetDefaultRoute, BusIOProfinetIpConfig, BusIOProfinetNetwork, BusIOProfinetSlot, BusIOProfinetVirtual, BusIOProfinetVirtualBusTypeEnum, BusIOSnap7, BusIOSnap7BusTypeEnum, BusIOType, BusIOsState, BusIOsStateEnum, COLLECTION_FORMATS, CapabilityEntry, Capsule, CapsuleShapeTypeEnum, CartesianLimits, CartesianVelocity, Cell, CellApi, CellApiAxiosParamCreator, CellApiFactory, CellApiFp, CloudConfigStatus, CloudConfigStatusConfigured, CloudConfigStatusConfiguredStatusEnum, CloudConfigStatusNotConfigured, CloudConfigStatusNotConfiguredStatusEnum, CloudConfiguration, CloudConnectionError, CloudConnectionErrorError, CloudConnectionErrorInvalidToken, CloudConnectionErrorInvalidTokenCodeEnum, CloudConnectionErrorInvalidTokenDetails, CloudConnectionErrorInvalidTokenDetailsCloudResponse, CloudConnectionErrorLeafnodeConnectionError, CloudConnectionErrorLeafnodeConnectionErrorCodeEnum, CloudConnectionErrorLeafnodeConnectionErrorDetails, CloudConnectionErrorLeafnodeConnectionTimeout, CloudConnectionErrorLeafnodeConnectionTimeoutCodeEnum, CloudConnectionErrorLeafnodeRestartTimeout, CloudConnectionErrorLeafnodeRestartTimeoutCodeEnum, CloudConnectionErrorNatsFailed, CloudConnectionErrorNatsFailedCodeEnum, CloudConnectionErrorNatsFailedDetails, CloudConnectionErrorUnexpectedResponse, CloudConnectionErrorUnexpectedResponseCodeEnum, CloudConnectionErrorUnexpectedResponseDetails, CloudConnectionErrorUnexpectedResponseDetailsCloudResponse, CloudConnectionRequest, CloudDisconnectionError, CloudDisconnectionStatusDisconnected, CloudDisconnectionStatusDisconnectedStatusEnum, CloudDisconnectionStatusDisconnecting, CloudDisconnectionStatusDisconnectingStatusEnum, CloudRegistrationSuccessResponse, CloudStatus, CloudStatusChecks, CloudStatusErrors, Collider, ColliderShape, ColliderValue, ColliderValueOrKey, ColliderValueSourceEnum, Collision, CollisionContact, CollisionError, CollisionErrorKindEnum, CollisionFreeAlgorithm, CollisionMotionGroup, CollisionSetup, CollisionSetupValue, CollisionSetupValueOrKey, CollisionSetupValueSourceEnum, Comparator, Configuration, ConfigurationArchiveStatus, ConfigurationArchiveStatusCreating, ConfigurationArchiveStatusCreatingStatusEnum, ConfigurationArchiveStatusError, ConfigurationArchiveStatusErrorStatusEnum, ConfigurationArchiveStatusSuccess, ConfigurationArchiveStatusSuccessStatusEnum, ConfigurationParameters, ConfigurationResource, ConfiguredPose, ConfiguredPoseInverse422Response, ConfiguredPoseInverseFailedResponse, ConfiguredPoseInverseRequest, ConfiguredPoseInverseResponse, ConfiguredPoseInverseResponseResponse, ConstrainedPose, ContainerEnvironmentInner, ContainerImage, ContainerImageSecretsInner, ContainerResources, ContainerStorage, ControllerApi, ControllerApiAxiosParamCreator, ControllerApiFactory, ControllerApiFp, ControllerDescription, ControllerInputsOutputsApi, ControllerInputsOutputsApiAxiosParamCreator, ControllerInputsOutputsApiFactory, ControllerInputsOutputsApiFp, ControllerNetworkInterface, ConvertVendorConfiguredPose422Response, ConvertVendorConfiguredPoseRequest, ConvertVendorConfiguredPoseRequestVendorConfiguredPoses, ConvexHull, ConvexHullShapeTypeEnum, CoordinateSystem, CoordinateSystemData, CopyMotionGroupModelRequest, CubicSplineParameter, CycleTime, Cylinder, CylinderShapeTypeEnum, DHParameter, Direction, DirectionConstraint, DirectionConstraintConstraintNameEnum, DynamicModel, ErrorDirectionConstraintNotMet, ErrorDirectionConstraintNotMetErrorFeedbackNameEnum, ErrorDirectionConstraintNotNormalized, ErrorDirectionConstraintNotNormalizedErrorFeedbackNameEnum, ErrorInvalidJointCount, ErrorInvalidJointCountErrorFeedbackNameEnum, ErrorJointLimitExceeded, ErrorJointLimitExceededErrorFeedbackNameEnum, ErrorJointPositionCollision, ErrorJointPositionCollisionErrorFeedbackNameEnum, ErrorMaxIterationsExceeded, ErrorMaxIterationsExceededErrorFeedbackNameEnum, ErrorMotionGroupKeyMismatch, ErrorUnsupportedOperation, ErrorUnsupportedOperationErrorFeedbackNameEnum, Execute, ExecuteDetails, ExecuteJoggingRequest, ExecuteJoggingResponse, ExecuteTrajectoryRequest, ExecuteTrajectoryResponse, ExecuteWaypointJoggingRequest, ExecuteWaypointJoggingResponse, ExternalJointStreamDatapoint, ExternalJointStreamRequest, FanucController, FanucControllerKindEnum, FeedbackAxisRangeExceeded, FeedbackAxisRangeExceededErrorFeedbackNameEnum, FeedbackCollision, FeedbackCollisionErrorFeedbackNameEnum, FeedbackCommandsMissing, FeedbackCommandsMissingErrorFeedbackNameEnum, FeedbackCubicSplineIsNotIncreasing, FeedbackCubicSplineIsNotIncreasingErrorFeedbackNameEnum, FeedbackCubicSplineNotAtStartPose, FeedbackCubicSplineNotAtStartPoseErrorFeedbackNameEnum, FeedbackDirectionConstraintNoSolutionExists, FeedbackDirectionConstraintNoSolutionExistsErrorFeedbackNameEnum, FeedbackDirectionConstraintNotMet, FeedbackDirectionConstraintNotMetErrorFeedbackNameEnum, FeedbackDirectionConstraintNotNormalized, FeedbackDirectionConstraintNotNormalizedErrorFeedbackNameEnum, FeedbackInvalidDof, FeedbackInvalidDofErrorFeedbackNameEnum, FeedbackInvalidNanValue, FeedbackInvalidNanValueErrorFeedbackNameEnum, FeedbackInvalidSamplingTime, FeedbackInvalidSamplingTimeErrorFeedbackNameEnum, FeedbackJointLimitExceeded, FeedbackJointLimitExceededErrorFeedbackNameEnum, FeedbackNoSolutionInCurrentConfiguration, FeedbackNoSolutionInCurrentConfigurationErrorFeedbackNameEnum, FeedbackOutOfWorkspace, FeedbackOutOfWorkspaceErrorFeedbackNameEnum, FeedbackSingularity, FeedbackSingularityErrorFeedbackNameEnum, FeedbackStartJointsMissing, FeedbackStartJointsMissingErrorFeedbackNameEnum, FeedbackTorqueExceeded, FeedbackTorqueExceededErrorFeedbackNameEnum, Flag, FlangePayload, FloatValue, FloatValueValueTypeEnum, ForwardKinematics422Response, ForwardKinematicsRequest, ForwardKinematicsResponse, ForwardKinematicsValidationError, GetKinematicConfiguration422Response, GetKinematicConfigurationRequest, GetKinematicConfigurationResponse, GetKinematicConfigurationValidationError, GetKinematicConfigurationValidationErrorAllOfData, GetTrajectoryResponse, HTTPValidationError, IOBooleanValue, IOBooleanValueValueTypeEnum, IOBoundary, IODescription, IODirection, IOFloatValue, IOFloatValueValueTypeEnum, IOIntegerValue, IOIntegerValueValueTypeEnum, IOOrigin, IOValue, IOValueType, ImageCredentials, InconsistentTrajectorySizeError, InconsistentTrajectorySizeErrorInconsistentTrajectorySize, InconsistentTrajectorySizeErrorKindEnum, InertiaTensor, InitializeJoggingRequest, InitializeJoggingRequestMessageTypeEnum, InitializeJoggingResponse, InitializeJoggingResponseKindEnum, InitializeMovementRequest, InitializeMovementRequestMessageTypeEnum, InitializeMovementRequestTrajectory, InitializeMovementResponse, InitializeMovementResponseKindEnum, IntegerValue, IntegerValueValueTypeEnum, InvalidDofError, InvalidDofErrorInvalidDof, InvalidDofErrorKindEnum, InverseFeedbackAtIndex, InverseFeedbackAtIndexErrorFeedback, InverseKinematics422Response, InverseKinematicsRequest, InverseKinematicsResponse, InverseKinematicsValidationError, InverseKinematicsValidationErrorAllOfData, JoggingApi, JoggingApiAxiosParamCreator, JoggingApiFactory, JoggingApiFp, JoggingDetails, JoggingDetailsKindEnum, JoggingDetailsState, JoggingPausedByUser, JoggingPausedByUserKindEnum, JoggingPausedNearCollision, JoggingPausedNearCollisionKindEnum, JoggingPausedNearJointLimit, JoggingPausedNearJointLimitKindEnum, JoggingPausedNearSingularity, JoggingPausedNearSingularityKindEnum, JoggingPausedOnIO, JoggingPausedOnIOKindEnum, JoggingRunning, JoggingRunningKindEnum, JointLimitExceededError, JointLimitExceededErrorKindEnum, JointLimits, JointPTPMotion, JointTrajectory, JointTypeEnum, JointVelocityRequest, JointVelocityRequestMessageTypeEnum, JointVelocityResponse, JointVelocityResponseKindEnum, JointWaypoint, JointWaypointsRequest, JointWaypointsRequestMessageTypeEnum, JointWaypointsResponse, JointWaypointsResponseKindEnum, KinematicBranch, KinematicBranchElbow, KinematicBranchShoulder, KinematicBranchWrist, KinematicConfiguration, KinematicModel, KinematicsApi, KinematicsApiAxiosParamCreator, KinematicsApiFactory, KinematicsApiFp, KukaConfiguredPose, KukaController, KukaControllerKindEnum, KukaControllerRsiServer, KukaPose, KukaStatusAndTurnBits, License, LicenseApi, LicenseApiAxiosParamCreator, LicenseApiFactory, LicenseApiFp, LicenseStatus, LicenseStatusEnum, LimitRange, LimitSet, LimitsOverride, LinkChainValue, LinkChainValueOrKey, LinkChainValueSourceEnum, ListTrajectoriesResponse, Manufacturer, MergeTrajectories422Response, MergeTrajectoriesError, MergeTrajectoriesErrorErrorFeedback, MergeTrajectoriesRequest, MergeTrajectoriesResponse, MergeTrajectoriesResponseFeedbackInner, MergeTrajectoriesSegment, MergeTrajectoriesValidationError, MidpointInsertionAlgorithm, MidpointInsertionAlgorithmAlgorithmNameEnum, ModbusIO, ModbusIOArea, ModbusIOByteOrder, ModbusIOData, ModbusIOTypeEnum, ModelError, MotionCommand, MotionCommandBlending, MotionCommandPath, MotionGroupApi, MotionGroupApiAxiosParamCreator, MotionGroupApiFactory, MotionGroupApiFp, MotionGroupConfiguration, MotionGroupDescription, MotionGroupFromJson, MotionGroupFromType, MotionGroupInfo, MotionGroupJoints, MotionGroupModelCatalog, MotionGroupModelDescription, MotionGroupModelsApi, MotionGroupModelsApiAxiosParamCreator, MotionGroupModelsApiFactory, MotionGroupModelsApiFp, MotionGroupSetup, MotionGroupState, MotionGroupStateJointLimitReached, MovementErrorResponse, MovementErrorResponseKindEnum, MultiCollisionSetup, MultiErrorInvalidJointCount, MultiErrorJointLimitExceeded, MultiErrorJointPositionCollision, MultiJointTrajectory, MultiSearchCollisionFree422Response, MultiSearchCollisionFreeRequest, MultiSearchCollisionFreeResponse, MultiSearchCollisionFreeResponseResponse, MultiSearchCollisionFreeValidationError, MultiSearchCollisionFreeValidationErrorAllOfData, NOVACloudApi, NOVACloudApiAxiosParamCreator, NOVACloudApiFactory, NOVACloudApiFp, NanValueError, NanValueErrorKindEnum, NanValueErrorNanValue, NetworkDevice, NetworkInterface, NetworkState, NetworkStateConnectionTypeEnum, OpMode, OperatingState, OperationLimits, OperationMode, OrientationType, PathCartesianPTP, PathCartesianPTPPathDefinitionNameEnum, PathCircle, PathCirclePathDefinitionNameEnum, PathCubicSpline, PathCubicSplinePathDefinitionNameEnum, PathDirectionConstrainedCartesianPTP, PathDirectionConstrainedCartesianPTPPathDefinitionNameEnum, PathDirectionConstrainedJointPTP, PathDirectionConstrainedJointPTPPathDefinitionNameEnum, PathJointPTP, PathJointPTPPathDefinitionNameEnum, PathLine, PathLinePathDefinitionNameEnum, PauseJoggingRequest, PauseJoggingRequestMessageTypeEnum, PauseJoggingResponse, PauseJoggingResponseKindEnum, PauseMovementRequest, PauseMovementRequestMessageTypeEnum, PauseMovementResponse, PauseMovementResponseKindEnum, PauseOnIO, Payload, Plan422Response, PlanCollisionFreeFailedResponse, PlanCollisionFreeRequest, PlanCollisionFreeResponse, PlanCollisionFreeResponseResponse, PlanTrajectoryFailedResponse, PlanTrajectoryFailedResponseErrorFeedback, PlanTrajectoryRequest, PlanTrajectoryResponse, PlanTrajectoryResponseResponse, PlanValidationError, PlanValidationErrorAllOfData, Plane, PlaneShapeTypeEnum, PlaybackSpeedRequest, PlaybackSpeedRequestMessageTypeEnum, PlaybackSpeedResponse, PlaybackSpeedResponseKindEnum, Pose, PoseWaypoint, PoseWaypointsRequest, PoseWaypointsRequestMessageTypeEnum, PoseWaypointsResponse, PoseWaypointsResponseKindEnum, ProfinetDescription, ProfinetIO, ProfinetIOData, ProfinetIODirection, ProfinetIOTypeEnum, ProfinetInputOutputConfig, ProfinetSlotDescription, ProfinetSlotOffset, ProfinetSubSlotDescription, Program, ProgramApi, ProgramApiAxiosParamCreator, ProgramApiFactory, ProgramApiFp, ProgramRun, ProgramRunState, ProgramStartRequest, ProjectJointPositionDirectionConstraint422Response, ProjectJointPositionDirectionConstraintRequest, ProjectJointPositionDirectionConstraintResponse, ProjectJointPositionDirectionConstraintValidationError, ProjectJointPositionDirectionConstraintValidationErrorAllOfData, RRTConnectAlgorithm, RRTConnectAlgorithmAlgorithmNameEnum, RRTConnectAlgorithmStepSize, Range, Rectangle, RectangleShapeTypeEnum, RectangularCapsule, RectangularCapsuleShapeTypeEnum, ReleaseChannel, RequestArgs, RequiredError, RobotConfigurationsApi, RobotConfigurationsApiAxiosParamCreator, RobotConfigurationsApiFactory, RobotConfigurationsApiFp, RobotController, RobotControllerConfiguration, RobotControllerConfigurationRequest, RobotControllerState, RobotSystemMode, RobotTcp, RobotTcpData, SafetyGeometry, SafetyGeometryBox, SafetyGeometryCapsule, SafetyGeometryLozenge, SafetyGeometryPlane, SafetyGeometryPrism, SafetyGeometrySphere, SafetyStateType, SafetyZone, SafetyZonePose, SafetyZones, ServiceGroup, ServiceStatus, ServiceStatusPhase, ServiceStatusResponse, ServiceStatusSeverity, ServiceStatusStatus, SessionApi, SessionApiAxiosParamCreator, SessionApiFactory, SessionApiFp, SessionResponse, SetIO, SettableRobotSystemMode, SingularityHandling, SingularityTypeEnum, Snap7IO, Snap7IOArea, Snap7IOData, Snap7IODirection, Snap7IOTypeEnum, Sphere, SphereShapeTypeEnum, StartMovementRequest, StartMovementRequestMessageTypeEnum, StartMovementResponse, StartMovementResponseKindEnum, StartOnIO, StaubliController, StaubliControllerKindEnum, StaubliControllerRtiServer, StorageKey, StorageKeySourceEnum, StoreCollisionComponentsApi, StoreCollisionComponentsApiAxiosParamCreator, StoreCollisionComponentsApiFactory, StoreCollisionComponentsApiFp, StoreCollisionSetupsApi, StoreCollisionSetupsApiAxiosParamCreator, StoreCollisionSetupsApiFactory, StoreCollisionSetupsApiFp, StoreObjectApi, StoreObjectApiAxiosParamCreator, StoreObjectApiFactory, StoreObjectApiFp, StreamIOValuesResponse, SystemApi, SystemApiAxiosParamCreator, SystemApiFactory, SystemApiFp, TcpOffset, TcpRequiredError, TcpRequiredErrorKindEnum, TcpVelocityRequest, TcpVelocityRequestMessageTypeEnum, TcpVelocityResponse, TcpVelocityResponseKindEnum, ToolValue, ToolValueOrKey, ToolValueSourceEnum, TorqueExceededError, TorqueExceededErrorKindEnum, TorqueExceededErrorTorqueExceeded, TrajectoryCachingApi, TrajectoryCachingApiAxiosParamCreator, TrajectoryCachingApiFactory, TrajectoryCachingApiFp, TrajectoryData, TrajectoryDataMessageTypeEnum, TrajectoryDetails, TrajectoryDetailsKindEnum, TrajectoryDetailsState, TrajectoryEnded, TrajectoryEndedKindEnum, TrajectoryExecutionApi, TrajectoryExecutionApiAxiosParamCreator, TrajectoryExecutionApiFactory, TrajectoryExecutionApiFp, TrajectoryId, TrajectoryIdMessageTypeEnum, TrajectoryPausedByUser, TrajectoryPausedByUserKindEnum, TrajectoryPausedOnIO, TrajectoryPausedOnIOKindEnum, TrajectoryPlanningApi, TrajectoryPlanningApiAxiosParamCreator, TrajectoryPlanningApiFactory, TrajectoryPlanningApiFp, TrajectoryRunning, TrajectoryRunningKindEnum, TrajectorySection, TrajectoryWaitForIO, TrajectoryWaitForIOKindEnum, UnitType, UnitreeController, UnitreeControllerKindEnum, UnitreeControllerRobotTypeEnum, UniversalrobotsController, UniversalrobotsControllerKindEnum, UpdateCellVersionRequest, UpdateNovaVersionRequest, User, ValidationError, ValidationError2, ValidationErrorLocInner, VersionApi, VersionApiAxiosParamCreator, VersionApiFactory, VersionApiFp, VirtualController, VirtualControllerApi, VirtualControllerApiAxiosParamCreator, VirtualControllerApiFactory, VirtualControllerApiFp, VirtualControllerBehaviorApi, VirtualControllerBehaviorApiAxiosParamCreator, VirtualControllerBehaviorApiFactory, VirtualControllerBehaviorApiFp, VirtualControllerInputsOutputsApi, VirtualControllerInputsOutputsApiAxiosParamCreator, VirtualControllerInputsOutputsApiFactory, VirtualControllerInputsOutputsApiFp, VirtualControllerKindEnum, VirtualRobotConfiguration, WaitForIOEventRequest, YaskawaController, YaskawaControllerKindEnum, ZodValidationError, ZodValidationErrorError, ZodValidationErrorErrorCodeEnum, ZodValidationErrorErrorDetailsInner, ZodValidationErrorErrorDetailsInnerPathInner, operationServerMap };
|
|
12453
|
+
export { AbbConfdata, AbbConfiguredPose, AbbController, AbbControllerEgmServer, AbbControllerKindEnum, AbbPose, ActionChunkRequest, ActionChunkRequestMessageTypeEnum, ActionChunkResponse, ActionChunkResponseKindEnum, ActionChunkStreamingApi, ActionChunkStreamingApiAxiosParamCreator, ActionChunkStreamingApiFactory, ActionChunkStreamingApiFp, ActivateLicenseRequest, AddTrajectoryError, AddTrajectoryErrorData, AddTrajectoryRequest, AddTrajectoryResponse, AddVirtualControllerMotionGroupRequest, ApiVersion, App, ApplicationApi, ApplicationApiAxiosParamCreator, ApplicationApiFactory, ApplicationApiFp, AxisRange, BASE_PATH, BUSInputsOutputsApi, BUSInputsOutputsApiAxiosParamCreator, BUSInputsOutputsApiFactory, BUSInputsOutputsApiFp, BaseAPI, Behavior, BlendingAuto, BlendingAutoBlendingNameEnum, BlendingPosition, BlendingPositionBlendingNameEnum, BlendingSpace, BooleanValue, BooleanValueValueTypeEnum, BostondynamicsController, BostondynamicsControllerKindEnum, BostondynamicsControllerRobotTypeEnum, Box, BoxBoxTypeEnum, BoxShapeTypeEnum, BusIODescription, BusIOModbusClient, BusIOModbusClientBusTypeEnum, BusIOModbusServer, BusIOModbusServerBusTypeEnum, BusIOModbusTCPClient, BusIOModbusTCPClientNetworkTypeEnum, BusIOModbusTCPServer, BusIOModbusTCPServerNetworkTypeEnum, BusIOModbusVirtual, BusIOModbusVirtualBusTypeEnum, BusIOProfinet, BusIOProfinetBusTypeEnum, BusIOProfinetDefaultRoute, BusIOProfinetIpConfig, BusIOProfinetNetwork, BusIOProfinetSlot, BusIOProfinetVirtual, BusIOProfinetVirtualBusTypeEnum, BusIOSnap7, BusIOSnap7BusTypeEnum, BusIOType, BusIOsState, BusIOsStateEnum, COLLECTION_FORMATS, CapabilityEntry, Capsule, CapsuleShapeTypeEnum, CartesianLimits, CartesianVelocity, Cell, CellApi, CellApiAxiosParamCreator, CellApiFactory, CellApiFp, CloudConfigStatus, CloudConfigStatusConfigured, CloudConfigStatusConfiguredStatusEnum, CloudConfigStatusNotConfigured, CloudConfigStatusNotConfiguredStatusEnum, CloudConfiguration, CloudConnectionError, CloudConnectionErrorError, CloudConnectionErrorInvalidToken, CloudConnectionErrorInvalidTokenCodeEnum, CloudConnectionErrorInvalidTokenDetails, CloudConnectionErrorInvalidTokenDetailsCloudResponse, CloudConnectionErrorLeafnodeConnectionError, CloudConnectionErrorLeafnodeConnectionErrorCodeEnum, CloudConnectionErrorLeafnodeConnectionErrorDetails, CloudConnectionErrorLeafnodeConnectionTimeout, CloudConnectionErrorLeafnodeConnectionTimeoutCodeEnum, CloudConnectionErrorLeafnodeRestartTimeout, CloudConnectionErrorLeafnodeRestartTimeoutCodeEnum, CloudConnectionErrorNatsFailed, CloudConnectionErrorNatsFailedCodeEnum, CloudConnectionErrorNatsFailedDetails, CloudConnectionErrorUnexpectedResponse, CloudConnectionErrorUnexpectedResponseCodeEnum, CloudConnectionErrorUnexpectedResponseDetails, CloudConnectionErrorUnexpectedResponseDetailsCloudResponse, CloudConnectionRequest, CloudDisconnectionError, CloudDisconnectionStatusDisconnected, CloudDisconnectionStatusDisconnectedStatusEnum, CloudDisconnectionStatusDisconnecting, CloudDisconnectionStatusDisconnectingStatusEnum, CloudRegistrationSuccessResponse, CloudStatus, CloudStatusChecks, CloudStatusErrors, Collider, ColliderShape, ColliderValue, ColliderValueOrKey, ColliderValueSourceEnum, Collision, CollisionContact, CollisionError, CollisionErrorKindEnum, CollisionFreeAlgorithm, CollisionMotionGroup, CollisionSetup, CollisionSetupValue, CollisionSetupValueOrKey, CollisionSetupValueSourceEnum, Comparator, Configuration, ConfigurationArchiveStatus, ConfigurationArchiveStatusCreating, ConfigurationArchiveStatusCreatingStatusEnum, ConfigurationArchiveStatusError, ConfigurationArchiveStatusErrorStatusEnum, ConfigurationArchiveStatusSuccess, ConfigurationArchiveStatusSuccessStatusEnum, ConfigurationParameters, ConfigurationResource, ConfiguredPose, ConfiguredPoseInverse422Response, ConfiguredPoseInverseFailedResponse, ConfiguredPoseInverseRequest, ConfiguredPoseInverseResponse, ConfiguredPoseInverseResponseResponse, ConstrainedPose, ContainerEnvironmentInner, ContainerImage, ContainerImageSecretsInner, ContainerResources, ContainerStorage, ControllerApi, ControllerApiAxiosParamCreator, ControllerApiFactory, ControllerApiFp, ControllerDescription, ControllerInputsOutputsApi, ControllerInputsOutputsApiAxiosParamCreator, ControllerInputsOutputsApiFactory, ControllerInputsOutputsApiFp, ControllerNetworkInterface, ConvertVendorConfiguredPose422Response, ConvertVendorConfiguredPoseRequest, ConvertVendorConfiguredPoseRequestVendorConfiguredPoses, ConvexHull, ConvexHullShapeTypeEnum, CoordinateSystem, CoordinateSystemData, CopyMotionGroupModelRequest, CubicSplineParameter, CycleTime, Cylinder, CylinderShapeTypeEnum, DHParameter, Direction, DirectionConstraint, DirectionConstraintConstraintNameEnum, DynamicModel, ErrorDirectionConstraintNotMet, ErrorDirectionConstraintNotMetErrorFeedbackNameEnum, ErrorDirectionConstraintNotNormalized, ErrorDirectionConstraintNotNormalizedErrorFeedbackNameEnum, ErrorInvalidJointCount, ErrorInvalidJointCountErrorFeedbackNameEnum, ErrorJointLimitExceeded, ErrorJointLimitExceededErrorFeedbackNameEnum, ErrorJointPositionCollision, ErrorJointPositionCollisionErrorFeedbackNameEnum, ErrorMaxIterationsExceeded, ErrorMaxIterationsExceededErrorFeedbackNameEnum, ErrorMotionGroupKeyMismatch, ErrorUnsupportedOperation, ErrorUnsupportedOperationErrorFeedbackNameEnum, Execute, ExecuteActionChunksRequest, ExecuteActionChunksResponse, ExecuteDetails, ExecuteJoggingRequest, ExecuteJoggingResponse, ExecuteTrajectoryRequest, ExecuteTrajectoryResponse, ExternalJointStreamDatapoint, ExternalJointStreamRequest, FanucController, FanucControllerKindEnum, FeedbackAxisRangeExceeded, FeedbackAxisRangeExceededErrorFeedbackNameEnum, FeedbackCollision, FeedbackCollisionErrorFeedbackNameEnum, FeedbackCommandsMissing, FeedbackCommandsMissingErrorFeedbackNameEnum, FeedbackCubicSplineIsNotIncreasing, FeedbackCubicSplineIsNotIncreasingErrorFeedbackNameEnum, FeedbackCubicSplineNotAtStartPose, FeedbackCubicSplineNotAtStartPoseErrorFeedbackNameEnum, FeedbackDirectionConstraintNoSolutionExists, FeedbackDirectionConstraintNoSolutionExistsErrorFeedbackNameEnum, FeedbackDirectionConstraintNotMet, FeedbackDirectionConstraintNotMetErrorFeedbackNameEnum, FeedbackDirectionConstraintNotNormalized, FeedbackDirectionConstraintNotNormalizedErrorFeedbackNameEnum, FeedbackInvalidDof, FeedbackInvalidDofErrorFeedbackNameEnum, FeedbackInvalidNanValue, FeedbackInvalidNanValueErrorFeedbackNameEnum, FeedbackInvalidSamplingTime, FeedbackInvalidSamplingTimeErrorFeedbackNameEnum, FeedbackJointLimitExceeded, FeedbackJointLimitExceededErrorFeedbackNameEnum, FeedbackNoSolutionInCurrentConfiguration, FeedbackNoSolutionInCurrentConfigurationErrorFeedbackNameEnum, FeedbackOutOfWorkspace, FeedbackOutOfWorkspaceErrorFeedbackNameEnum, FeedbackSingularity, FeedbackSingularityErrorFeedbackNameEnum, FeedbackStartJointsMissing, FeedbackStartJointsMissingErrorFeedbackNameEnum, FeedbackTorqueExceeded, FeedbackTorqueExceededErrorFeedbackNameEnum, Flag, FlangePayload, FloatValue, FloatValueValueTypeEnum, ForwardKinematics422Response, ForwardKinematicsRequest, ForwardKinematicsResponse, ForwardKinematicsValidationError, GetKinematicConfiguration422Response, GetKinematicConfigurationRequest, GetKinematicConfigurationResponse, GetKinematicConfigurationValidationError, GetKinematicConfigurationValidationErrorAllOfData, GetTrajectoryResponse, HTTPValidationError, IOBooleanValue, IOBooleanValueValueTypeEnum, IOBoundary, IODescription, IODirection, IOFloatValue, IOFloatValueValueTypeEnum, IOIntegerValue, IOIntegerValueValueTypeEnum, IOOrigin, IOValue, IOValueType, ImageCredentials, InconsistentTrajectorySizeError, InconsistentTrajectorySizeErrorInconsistentTrajectorySize, InconsistentTrajectorySizeErrorKindEnum, InertiaTensor, InitializeActionChunksRequest, InitializeActionChunksRequestMessageTypeEnum, InitializeActionChunksResponse, InitializeActionChunksResponseKindEnum, InitializeJoggingRequest, InitializeJoggingRequestMessageTypeEnum, InitializeJoggingResponse, InitializeJoggingResponseKindEnum, InitializeMovementRequest, InitializeMovementRequestMessageTypeEnum, InitializeMovementRequestTrajectory, InitializeMovementResponse, InitializeMovementResponseKindEnum, IntegerValue, IntegerValueValueTypeEnum, InvalidDofError, InvalidDofErrorInvalidDof, InvalidDofErrorKindEnum, InverseFeedbackAtIndex, InverseFeedbackAtIndexErrorFeedback, InverseKinematics422Response, InverseKinematicsRequest, InverseKinematicsResponse, InverseKinematicsValidationError, InverseKinematicsValidationErrorAllOfData, JoggingApi, JoggingApiAxiosParamCreator, JoggingApiFactory, JoggingApiFp, JoggingDetails, JoggingDetailsKindEnum, JoggingDetailsState, JoggingPausedByUser, JoggingPausedByUserKindEnum, JoggingPausedNearCollision, JoggingPausedNearCollisionKindEnum, JoggingPausedNearJointLimit, JoggingPausedNearJointLimitKindEnum, JoggingPausedNearSingularity, JoggingPausedNearSingularityKindEnum, JoggingPausedOnIO, JoggingPausedOnIOKindEnum, JoggingRunning, JoggingRunningKindEnum, JointLimitExceededError, JointLimitExceededErrorKindEnum, JointLimits, JointPTPMotion, JointTrajectory, JointTypeEnum, JointVelocityRequest, JointVelocityRequestMessageTypeEnum, JointVelocityResponse, JointVelocityResponseKindEnum, JointWaypoint, JointWaypointKindEnum, KinematicBranch, KinematicBranchElbow, KinematicBranchShoulder, KinematicBranchWrist, KinematicConfiguration, KinematicModel, KinematicsApi, KinematicsApiAxiosParamCreator, KinematicsApiFactory, KinematicsApiFp, KukaConfiguredPose, KukaController, KukaControllerKindEnum, KukaControllerRsiServer, KukaPose, KukaStatusAndTurnBits, License, LicenseApi, LicenseApiAxiosParamCreator, LicenseApiFactory, LicenseApiFp, LicenseStatus, LicenseStatusEnum, LimitRange, LimitSet, LimitsOverride, LinkChainValue, LinkChainValueOrKey, LinkChainValueSourceEnum, ListTrajectoriesResponse, Manufacturer, MergeTrajectories422Response, MergeTrajectoriesError, MergeTrajectoriesErrorErrorFeedback, MergeTrajectoriesRequest, MergeTrajectoriesResponse, MergeTrajectoriesResponseFeedbackInner, MergeTrajectoriesSegment, MergeTrajectoriesValidationError, MidpointInsertionAlgorithm, MidpointInsertionAlgorithmAlgorithmNameEnum, ModbusIO, ModbusIOArea, ModbusIOByteOrder, ModbusIOData, ModbusIOTypeEnum, ModelError, MotionCommand, MotionCommandBlending, MotionCommandPath, MotionGroupApi, MotionGroupApiAxiosParamCreator, MotionGroupApiFactory, MotionGroupApiFp, MotionGroupConfiguration, MotionGroupDescription, MotionGroupFromJson, MotionGroupFromType, MotionGroupInfo, MotionGroupJoints, MotionGroupModelCatalog, MotionGroupModelDescription, MotionGroupModelsApi, MotionGroupModelsApiAxiosParamCreator, MotionGroupModelsApiFactory, MotionGroupModelsApiFp, MotionGroupSetup, MotionGroupState, MotionGroupStateJointLimitReached, MovementErrorResponse, MovementErrorResponseKindEnum, MultiCollisionSetup, MultiErrorInvalidJointCount, MultiErrorJointLimitExceeded, MultiErrorJointPositionCollision, MultiJointTrajectory, MultiSearchCollisionFree422Response, MultiSearchCollisionFreeRequest, MultiSearchCollisionFreeResponse, MultiSearchCollisionFreeResponseResponse, MultiSearchCollisionFreeValidationError, MultiSearchCollisionFreeValidationErrorAllOfData, NOVACloudApi, NOVACloudApiAxiosParamCreator, NOVACloudApiFactory, NOVACloudApiFp, NanValueError, NanValueErrorKindEnum, NanValueErrorNanValue, NetworkBackend, NetworkDevice, NetworkInterface, NetworkLinkState, NetworkState, OpMode, OperatingState, OperationLimits, OperationMode, OrientationType, PathCartesianPTP, PathCartesianPTPPathDefinitionNameEnum, PathCircle, PathCirclePathDefinitionNameEnum, PathCubicSpline, PathCubicSplinePathDefinitionNameEnum, PathDirectionConstrainedCartesianPTP, PathDirectionConstrainedCartesianPTPPathDefinitionNameEnum, PathDirectionConstrainedJointPTP, PathDirectionConstrainedJointPTPPathDefinitionNameEnum, PathJointPTP, PathJointPTPPathDefinitionNameEnum, PathLine, PathLinePathDefinitionNameEnum, PauseActionChunksRequest, PauseActionChunksRequestMessageTypeEnum, PauseActionChunksResponse, PauseActionChunksResponseKindEnum, PauseJoggingRequest, PauseJoggingRequestMessageTypeEnum, PauseJoggingResponse, PauseJoggingResponseKindEnum, PauseMovementRequest, PauseMovementRequestMessageTypeEnum, PauseMovementResponse, PauseMovementResponseKindEnum, PauseOnIO, Payload, Plan422Response, PlanCollisionFreeFailedResponse, PlanCollisionFreeRequest, PlanCollisionFreeResponse, PlanCollisionFreeResponseResponse, PlanTrajectoryFailedResponse, PlanTrajectoryFailedResponseErrorFeedback, PlanTrajectoryRequest, PlanTrajectoryResponse, PlanTrajectoryResponseResponse, PlanValidationError, PlanValidationErrorAllOfData, Plane, PlaneShapeTypeEnum, PlaybackSpeedRequest, PlaybackSpeedRequestMessageTypeEnum, PlaybackSpeedResponse, PlaybackSpeedResponseKindEnum, Pose, PoseWaypoint, PoseWaypointKindEnum, ProfinetDescription, ProfinetIO, ProfinetIOData, ProfinetIODirection, ProfinetIOTypeEnum, ProfinetInputOutputConfig, ProfinetSlotDescription, ProfinetSlotOffset, ProfinetSubSlotDescription, Program, ProgramApi, ProgramApiAxiosParamCreator, ProgramApiFactory, ProgramApiFp, ProgramRun, ProgramRunState, ProgramStartRequest, ProjectJointPositionDirectionConstraint422Response, ProjectJointPositionDirectionConstraintRequest, ProjectJointPositionDirectionConstraintResponse, ProjectJointPositionDirectionConstraintValidationError, ProjectJointPositionDirectionConstraintValidationErrorAllOfData, RRTConnectAlgorithm, RRTConnectAlgorithmAlgorithmNameEnum, RRTConnectAlgorithmStepSize, Range, Rectangle, RectangleShapeTypeEnum, RectangularCapsule, RectangularCapsuleShapeTypeEnum, ReleaseChannel, RequestArgs, RequiredError, RobotConfigurationsApi, RobotConfigurationsApiAxiosParamCreator, RobotConfigurationsApiFactory, RobotConfigurationsApiFp, RobotController, RobotControllerConfiguration, RobotControllerConfigurationRequest, RobotControllerState, RobotSystemMode, RobotTcp, RobotTcpData, SafetyGeometry, SafetyGeometryBox, SafetyGeometryCapsule, SafetyGeometryLozenge, SafetyGeometryPlane, SafetyGeometryPrism, SafetyGeometrySphere, SafetyStateType, SafetyZone, SafetyZonePose, SafetyZones, ServiceGroup, ServiceStatus, ServiceStatusPhase, ServiceStatusResponse, ServiceStatusSeverity, ServiceStatusStatus, SessionApi, SessionApiAxiosParamCreator, SessionApiFactory, SessionApiFp, SessionResponse, SetIO, SettableRobotSystemMode, SingularityHandling, SingularityTypeEnum, Snap7IO, Snap7IOArea, Snap7IOData, Snap7IODirection, Snap7IOTypeEnum, Sphere, SphereShapeTypeEnum, StartMovementRequest, StartMovementRequestMessageTypeEnum, StartMovementResponse, StartMovementResponseKindEnum, StartOnIO, StaubliController, StaubliControllerKindEnum, StaubliControllerRtiServer, StopActionChunksRequest, StopActionChunksRequestMessageTypeEnum, StopActionChunksResponse, StopActionChunksResponseKindEnum, StorageKey, StorageKeySourceEnum, StoreCollisionComponentsApi, StoreCollisionComponentsApiAxiosParamCreator, StoreCollisionComponentsApiFactory, StoreCollisionComponentsApiFp, StoreCollisionSetupsApi, StoreCollisionSetupsApiAxiosParamCreator, StoreCollisionSetupsApiFactory, StoreCollisionSetupsApiFp, StoreObjectApi, StoreObjectApiAxiosParamCreator, StoreObjectApiFactory, StoreObjectApiFp, StreamIOValuesResponse, SystemApi, SystemApiAxiosParamCreator, SystemApiFactory, SystemApiFp, TcpOffset, TcpRequiredError, TcpRequiredErrorKindEnum, TcpVelocityRequest, TcpVelocityRequestMessageTypeEnum, TcpVelocityResponse, TcpVelocityResponseKindEnum, TechmanController, TechmanControllerKindEnum, TechmanControllerRtrs, ToolValue, ToolValueOrKey, ToolValueSourceEnum, TorqueExceededError, TorqueExceededErrorKindEnum, TorqueExceededErrorTorqueExceeded, TrajectoryCachingApi, TrajectoryCachingApiAxiosParamCreator, TrajectoryCachingApiFactory, TrajectoryCachingApiFp, TrajectoryData, TrajectoryDataMessageTypeEnum, TrajectoryDetails, TrajectoryDetailsKindEnum, TrajectoryDetailsState, TrajectoryEnded, TrajectoryEndedKindEnum, TrajectoryExecutionApi, TrajectoryExecutionApiAxiosParamCreator, TrajectoryExecutionApiFactory, TrajectoryExecutionApiFp, TrajectoryId, TrajectoryIdMessageTypeEnum, TrajectoryPausedByUser, TrajectoryPausedByUserKindEnum, TrajectoryPausedOnIO, TrajectoryPausedOnIOKindEnum, TrajectoryPlanningApi, TrajectoryPlanningApiAxiosParamCreator, TrajectoryPlanningApiFactory, TrajectoryPlanningApiFp, TrajectoryRunning, TrajectoryRunningKindEnum, TrajectorySection, TrajectoryWaitForIO, TrajectoryWaitForIOKindEnum, UnitType, UnitreeController, UnitreeControllerKindEnum, UnitreeControllerRobotTypeEnum, UniversalrobotsController, UniversalrobotsControllerKindEnum, UnpauseActionChunksRequest, UnpauseActionChunksRequestMessageTypeEnum, UnpauseActionChunksResponse, UnpauseActionChunksResponseKindEnum, UpdateCellVersionRequest, UpdateNovaVersionRequest, User, ValidationError, ValidationError2, ValidationErrorLocInner, VersionApi, VersionApiAxiosParamCreator, VersionApiFactory, VersionApiFp, VirtualController, VirtualControllerApi, VirtualControllerApiAxiosParamCreator, VirtualControllerApiFactory, VirtualControllerApiFp, VirtualControllerBehaviorApi, VirtualControllerBehaviorApiAxiosParamCreator, VirtualControllerBehaviorApiFactory, VirtualControllerBehaviorApiFp, VirtualControllerInputsOutputsApi, VirtualControllerInputsOutputsApiAxiosParamCreator, VirtualControllerInputsOutputsApiFactory, VirtualControllerInputsOutputsApiFp, VirtualControllerKindEnum, VirtualRobotConfiguration, WaitForIOEventRequest, Waypoint, WaypointCoordinates, YaskawaController, YaskawaControllerKindEnum, ZodValidationError, ZodValidationErrorError, ZodValidationErrorErrorCodeEnum, ZodValidationErrorErrorDetailsInner, ZodValidationErrorErrorDetailsInnerPathInner, operationServerMap };
|