@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.js
CHANGED
|
@@ -108,6 +108,8 @@ const createRequestFunction = function(axiosArgs, globalAxios, BASE_PATH, config
|
|
|
108
108
|
//#endregion
|
|
109
109
|
//#region v2/api.ts
|
|
110
110
|
const AbbControllerKindEnum = { AbbController: "AbbController" };
|
|
111
|
+
const ActionChunkRequestMessageTypeEnum = { ActionChunkRequest: "ActionChunkRequest" };
|
|
112
|
+
const ActionChunkResponseKindEnum = { ActionChunkReceived: "ACTION_CHUNK_RECEIVED" };
|
|
111
113
|
/**
|
|
112
114
|
* ## BEHAVIOR_AUTOMATIC This is the default behavior. The motion groups of the controller take commanded joint configuration as actual joint state. Configures the compliance of the virtual robot with the normal ControllerState cycle time. If set, the virtual robot will act like a physical one, e.g., with a cycle time of 8ms to respond to a new joint state command. ## BEHAVIOR_AUTOMATIC_NOT_COMPLY_WITH_CYCLETIME Configures the compliance of the virtual robot with the normal ControllerState cycle time. If set, the robot will respond as fast as possible, limited only by software execution speed. Because of that, the execution of a movement requires less time than with BEHAVIOR_AUTOMATIC. ## BEHAVIOR_EXTERNAL_SOURCE The external client is the only source of actual joint state changes. This mode is used to enable third party software indicating the current joint state via [externalJointsStream](#/operations/externalJointsStream).
|
|
113
115
|
*/
|
|
@@ -240,6 +242,8 @@ const IOValueType = {
|
|
|
240
242
|
IoValueAnalogInteger: "IO_VALUE_ANALOG_INTEGER"
|
|
241
243
|
};
|
|
242
244
|
const InconsistentTrajectorySizeErrorKindEnum = { InconsistentTrajectorySizeError: "InconsistentTrajectorySizeError" };
|
|
245
|
+
const InitializeActionChunksRequestMessageTypeEnum = { InitializeActionChunksRequest: "InitializeActionChunksRequest" };
|
|
246
|
+
const InitializeActionChunksResponseKindEnum = { InitializeReceived: "INITIALIZE_RECEIVED" };
|
|
243
247
|
const InitializeJoggingRequestMessageTypeEnum = { InitializeJoggingRequest: "InitializeJoggingRequest" };
|
|
244
248
|
const InitializeJoggingResponseKindEnum = { InitializeReceived: "INITIALIZE_RECEIVED" };
|
|
245
249
|
const InitializeMovementRequestMessageTypeEnum = { InitializeMovementRequest: "InitializeMovementRequest" };
|
|
@@ -260,8 +264,7 @@ const JointTypeEnum = {
|
|
|
260
264
|
};
|
|
261
265
|
const JointVelocityRequestMessageTypeEnum = { JointVelocityRequest: "JointVelocityRequest" };
|
|
262
266
|
const JointVelocityResponseKindEnum = { JointVelocityReceived: "JOINT_VELOCITY_RECEIVED" };
|
|
263
|
-
const
|
|
264
|
-
const JointWaypointsResponseKindEnum = { JointWaypointsReceived: "JOINT_WAYPOINTS_RECEIVED" };
|
|
267
|
+
const JointWaypointKindEnum = { Joints: "JOINTS" };
|
|
265
268
|
const KinematicBranchElbow = {
|
|
266
269
|
Up: "UP",
|
|
267
270
|
Down: "DOWN"
|
|
@@ -289,6 +292,7 @@ const Manufacturer = {
|
|
|
289
292
|
Fanuc: "fanuc",
|
|
290
293
|
Kuka: "kuka",
|
|
291
294
|
Staubli: "staubli",
|
|
295
|
+
Techman: "techman",
|
|
292
296
|
Unitree: "unitree",
|
|
293
297
|
Universalrobots: "universalrobots",
|
|
294
298
|
Yaskawa: "yaskawa"
|
|
@@ -325,12 +329,19 @@ const ModbusIOTypeEnum = {
|
|
|
325
329
|
};
|
|
326
330
|
const MovementErrorResponseKindEnum = { MotionError: "MOTION_ERROR" };
|
|
327
331
|
const NanValueErrorKindEnum = { NanValueError: "NanValueError" };
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
332
|
+
/**
|
|
333
|
+
* Network attachment method used to expose the interface to workloads.
|
|
334
|
+
*/
|
|
335
|
+
const NetworkBackend = {
|
|
336
|
+
Macvlan: "macvlan",
|
|
337
|
+
Sriov: "sriov"
|
|
338
|
+
};
|
|
339
|
+
/**
|
|
340
|
+
* Link state of the physical interface.
|
|
341
|
+
*/
|
|
342
|
+
const NetworkLinkState = {
|
|
343
|
+
Up: "up",
|
|
344
|
+
Down: "down"
|
|
334
345
|
};
|
|
335
346
|
/**
|
|
336
347
|
* The operating state.
|
|
@@ -392,6 +403,8 @@ const PathDirectionConstrainedCartesianPTPPathDefinitionNameEnum = { DirectionCo
|
|
|
392
403
|
const PathDirectionConstrainedJointPTPPathDefinitionNameEnum = { DirectionConstrainedJointPtp: "DirectionConstrainedJointPTP" };
|
|
393
404
|
const PathJointPTPPathDefinitionNameEnum = { PathJointPtp: "PathJointPTP" };
|
|
394
405
|
const PathLinePathDefinitionNameEnum = { PathLine: "PathLine" };
|
|
406
|
+
const PauseActionChunksRequestMessageTypeEnum = { PauseActionChunksRequest: "PauseActionChunksRequest" };
|
|
407
|
+
const PauseActionChunksResponseKindEnum = { PauseReceived: "PAUSE_RECEIVED" };
|
|
395
408
|
const PauseJoggingRequestMessageTypeEnum = { PauseJoggingRequest: "PauseJoggingRequest" };
|
|
396
409
|
const PauseJoggingResponseKindEnum = { PauseReceived: "PAUSE_RECEIVED" };
|
|
397
410
|
const PauseMovementRequestMessageTypeEnum = { PauseMovementRequest: "PauseMovementRequest" };
|
|
@@ -399,8 +412,7 @@ const PauseMovementResponseKindEnum = { PauseReceived: "PAUSE_RECEIVED" };
|
|
|
399
412
|
const PlaneShapeTypeEnum = { Plane: "plane" };
|
|
400
413
|
const PlaybackSpeedRequestMessageTypeEnum = { PlaybackSpeedRequest: "PlaybackSpeedRequest" };
|
|
401
414
|
const PlaybackSpeedResponseKindEnum = { PlaybackSpeedReceived: "PLAYBACK_SPEED_RECEIVED" };
|
|
402
|
-
const
|
|
403
|
-
const PoseWaypointsResponseKindEnum = { PoseWaypointsReceived: "POSE_WAYPOINTS_RECEIVED" };
|
|
415
|
+
const PoseWaypointKindEnum = { Pose: "POSE" };
|
|
404
416
|
/**
|
|
405
417
|
* The direction of the input/output variable, indicating whether it is an input or output for the PROFINET device, e.g., NOVA\'s PROFINET service.
|
|
406
418
|
*/
|
|
@@ -559,10 +571,13 @@ const SphereShapeTypeEnum = { Sphere: "sphere" };
|
|
|
559
571
|
const StartMovementRequestMessageTypeEnum = { StartMovementRequest: "StartMovementRequest" };
|
|
560
572
|
const StartMovementResponseKindEnum = { StartReceived: "START_RECEIVED" };
|
|
561
573
|
const StaubliControllerKindEnum = { StaubliController: "StaubliController" };
|
|
574
|
+
const StopActionChunksRequestMessageTypeEnum = { StopActionChunksRequest: "StopActionChunksRequest" };
|
|
575
|
+
const StopActionChunksResponseKindEnum = { StopReceived: "STOP_RECEIVED" };
|
|
562
576
|
const StorageKeySourceEnum = { Key: "key" };
|
|
563
577
|
const TcpRequiredErrorKindEnum = { TcpRequiredError: "TcpRequiredError" };
|
|
564
578
|
const TcpVelocityRequestMessageTypeEnum = { TcpVelocityRequest: "TcpVelocityRequest" };
|
|
565
579
|
const TcpVelocityResponseKindEnum = { TcpVelocityReceived: "TCP_VELOCITY_RECEIVED" };
|
|
580
|
+
const TechmanControllerKindEnum = { TechmanController: "TechmanController" };
|
|
566
581
|
const ToolValueSourceEnum = { Value: "value" };
|
|
567
582
|
const TorqueExceededErrorKindEnum = { TorqueExceededError: "TorqueExceededError" };
|
|
568
583
|
const TrajectoryDataMessageTypeEnum = { TrajectoryData: "TrajectoryData" };
|
|
@@ -596,10 +611,85 @@ const UnitreeControllerRobotTypeEnum = {
|
|
|
596
611
|
H1: "h1"
|
|
597
612
|
};
|
|
598
613
|
const UniversalrobotsControllerKindEnum = { UniversalrobotsController: "UniversalrobotsController" };
|
|
614
|
+
const UnpauseActionChunksRequestMessageTypeEnum = { UnpauseActionChunksRequest: "UnpauseActionChunksRequest" };
|
|
615
|
+
const UnpauseActionChunksResponseKindEnum = { UnpauseReceived: "UNPAUSE_RECEIVED" };
|
|
599
616
|
const VirtualControllerKindEnum = { VirtualController: "VirtualController" };
|
|
600
617
|
const YaskawaControllerKindEnum = { YaskawaController: "YaskawaController" };
|
|
601
618
|
const ZodValidationErrorErrorCodeEnum = { ValidationError: "validation_error" };
|
|
602
619
|
/**
|
|
620
|
+
* ActionChunkStreamingApi - axios parameter creator
|
|
621
|
+
*/
|
|
622
|
+
const ActionChunkStreamingApiAxiosParamCreator = function(configuration) {
|
|
623
|
+
return { executeActionChunks: async (cell, controller, executeActionChunksRequest, options = {}) => {
|
|
624
|
+
assertParamExists("executeActionChunks", "cell", cell);
|
|
625
|
+
assertParamExists("executeActionChunks", "controller", controller);
|
|
626
|
+
assertParamExists("executeActionChunks", "executeActionChunksRequest", executeActionChunksRequest);
|
|
627
|
+
const localVarPath = `/experimental/cells/{cell}/controllers/{controller}/execution/action-chunk-streaming`.replace(`{cell}`, encodeURIComponent(String(cell))).replace(`{controller}`, encodeURIComponent(String(controller)));
|
|
628
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
629
|
+
let baseOptions;
|
|
630
|
+
if (configuration) baseOptions = configuration.baseOptions;
|
|
631
|
+
const localVarRequestOptions = {
|
|
632
|
+
method: "GET",
|
|
633
|
+
...baseOptions,
|
|
634
|
+
...options
|
|
635
|
+
};
|
|
636
|
+
const localVarHeaderParameter = {};
|
|
637
|
+
const localVarQueryParameter = {};
|
|
638
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
639
|
+
localVarHeaderParameter["Content-Type"] = "application/json";
|
|
640
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
641
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
642
|
+
localVarRequestOptions.headers = {
|
|
643
|
+
...localVarHeaderParameter,
|
|
644
|
+
...headersFromBaseOptions,
|
|
645
|
+
...options.headers
|
|
646
|
+
};
|
|
647
|
+
localVarRequestOptions.data = serializeDataIfNeeded(executeActionChunksRequest, localVarRequestOptions, configuration);
|
|
648
|
+
return {
|
|
649
|
+
url: toPathString(localVarUrlObj),
|
|
650
|
+
options: localVarRequestOptions
|
|
651
|
+
};
|
|
652
|
+
} };
|
|
653
|
+
};
|
|
654
|
+
/**
|
|
655
|
+
* ActionChunkStreamingApi - functional programming interface
|
|
656
|
+
*/
|
|
657
|
+
const ActionChunkStreamingApiFp = function(configuration) {
|
|
658
|
+
const localVarAxiosParamCreator = ActionChunkStreamingApiAxiosParamCreator(configuration);
|
|
659
|
+
return { async executeActionChunks(cell, controller, executeActionChunksRequest, options) {
|
|
660
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.executeActionChunks(cell, controller, executeActionChunksRequest, options);
|
|
661
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
662
|
+
const localVarOperationServerBasePath = operationServerMap["ActionChunkStreamingApi.executeActionChunks"]?.[localVarOperationServerIndex]?.url;
|
|
663
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
664
|
+
} };
|
|
665
|
+
};
|
|
666
|
+
/**
|
|
667
|
+
* ActionChunkStreamingApi - factory interface
|
|
668
|
+
*/
|
|
669
|
+
const ActionChunkStreamingApiFactory = function(configuration, basePath, axios) {
|
|
670
|
+
const localVarFp = ActionChunkStreamingApiFp(configuration);
|
|
671
|
+
return { executeActionChunks(cell, controller, executeActionChunksRequest, options) {
|
|
672
|
+
return localVarFp.executeActionChunks(cell, controller, executeActionChunksRequest, options).then((request) => request(axios, basePath));
|
|
673
|
+
} };
|
|
674
|
+
};
|
|
675
|
+
/**
|
|
676
|
+
* ActionChunkStreamingApi - object-oriented interface
|
|
677
|
+
*/
|
|
678
|
+
var ActionChunkStreamingApi = class extends BaseAPI {
|
|
679
|
+
/**
|
|
680
|
+
* **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.
|
|
681
|
+
* @summary Execute Action Chunks
|
|
682
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
683
|
+
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
684
|
+
* @param {ExecuteActionChunksRequest} executeActionChunksRequest
|
|
685
|
+
* @param {*} [options] Override http request option.
|
|
686
|
+
* @throws {RequiredError}
|
|
687
|
+
*/
|
|
688
|
+
executeActionChunks(cell, controller, executeActionChunksRequest, options) {
|
|
689
|
+
return ActionChunkStreamingApiFp(this.configuration).executeActionChunks(cell, controller, executeActionChunksRequest, options).then((request) => request(this.axios, this.basePath));
|
|
690
|
+
}
|
|
691
|
+
};
|
|
692
|
+
/**
|
|
603
693
|
* ApplicationApi - axios parameter creator
|
|
604
694
|
*/
|
|
605
695
|
const ApplicationApiAxiosParamCreator = function(configuration) {
|
|
@@ -3479,102 +3569,57 @@ var ControllerInputsOutputsApi = class extends BaseAPI {
|
|
|
3479
3569
|
* JoggingApi - axios parameter creator
|
|
3480
3570
|
*/
|
|
3481
3571
|
const JoggingApiAxiosParamCreator = function(configuration) {
|
|
3482
|
-
return {
|
|
3483
|
-
executeJogging
|
|
3484
|
-
|
|
3485
|
-
|
|
3486
|
-
|
|
3487
|
-
|
|
3488
|
-
|
|
3489
|
-
|
|
3490
|
-
|
|
3491
|
-
|
|
3492
|
-
|
|
3493
|
-
|
|
3494
|
-
|
|
3495
|
-
|
|
3496
|
-
|
|
3497
|
-
|
|
3498
|
-
|
|
3499
|
-
|
|
3500
|
-
|
|
3501
|
-
|
|
3502
|
-
|
|
3503
|
-
|
|
3504
|
-
|
|
3505
|
-
|
|
3506
|
-
|
|
3507
|
-
|
|
3508
|
-
|
|
3509
|
-
|
|
3510
|
-
|
|
3511
|
-
|
|
3512
|
-
},
|
|
3513
|
-
executeWaypointJogging: async (cell, controller, executeWaypointJoggingRequest, options = {}) => {
|
|
3514
|
-
assertParamExists("executeWaypointJogging", "cell", cell);
|
|
3515
|
-
assertParamExists("executeWaypointJogging", "controller", controller);
|
|
3516
|
-
assertParamExists("executeWaypointJogging", "executeWaypointJoggingRequest", executeWaypointJoggingRequest);
|
|
3517
|
-
const localVarPath = `/experimental/cells/{cell}/controllers/{controller}/execution/jogging`.replace(`{cell}`, encodeURIComponent(String(cell))).replace(`{controller}`, encodeURIComponent(String(controller)));
|
|
3518
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
3519
|
-
let baseOptions;
|
|
3520
|
-
if (configuration) baseOptions = configuration.baseOptions;
|
|
3521
|
-
const localVarRequestOptions = {
|
|
3522
|
-
method: "GET",
|
|
3523
|
-
...baseOptions,
|
|
3524
|
-
...options
|
|
3525
|
-
};
|
|
3526
|
-
const localVarHeaderParameter = {};
|
|
3527
|
-
const localVarQueryParameter = {};
|
|
3528
|
-
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
3529
|
-
localVarHeaderParameter["Content-Type"] = "application/json";
|
|
3530
|
-
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
3531
|
-
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3532
|
-
localVarRequestOptions.headers = {
|
|
3533
|
-
...localVarHeaderParameter,
|
|
3534
|
-
...headersFromBaseOptions,
|
|
3535
|
-
...options.headers
|
|
3536
|
-
};
|
|
3537
|
-
localVarRequestOptions.data = serializeDataIfNeeded(executeWaypointJoggingRequest, localVarRequestOptions, configuration);
|
|
3538
|
-
return {
|
|
3539
|
-
url: toPathString(localVarUrlObj),
|
|
3540
|
-
options: localVarRequestOptions
|
|
3541
|
-
};
|
|
3542
|
-
}
|
|
3543
|
-
};
|
|
3572
|
+
return { executeJogging: async (cell, controller, executeJoggingRequest, options = {}) => {
|
|
3573
|
+
assertParamExists("executeJogging", "cell", cell);
|
|
3574
|
+
assertParamExists("executeJogging", "controller", controller);
|
|
3575
|
+
assertParamExists("executeJogging", "executeJoggingRequest", executeJoggingRequest);
|
|
3576
|
+
const localVarPath = `/cells/{cell}/controllers/{controller}/execution/jogging`.replace(`{cell}`, encodeURIComponent(String(cell))).replace(`{controller}`, encodeURIComponent(String(controller)));
|
|
3577
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
3578
|
+
let baseOptions;
|
|
3579
|
+
if (configuration) baseOptions = configuration.baseOptions;
|
|
3580
|
+
const localVarRequestOptions = {
|
|
3581
|
+
method: "GET",
|
|
3582
|
+
...baseOptions,
|
|
3583
|
+
...options
|
|
3584
|
+
};
|
|
3585
|
+
const localVarHeaderParameter = {};
|
|
3586
|
+
const localVarQueryParameter = {};
|
|
3587
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
3588
|
+
localVarHeaderParameter["Content-Type"] = "application/json";
|
|
3589
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
3590
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3591
|
+
localVarRequestOptions.headers = {
|
|
3592
|
+
...localVarHeaderParameter,
|
|
3593
|
+
...headersFromBaseOptions,
|
|
3594
|
+
...options.headers
|
|
3595
|
+
};
|
|
3596
|
+
localVarRequestOptions.data = serializeDataIfNeeded(executeJoggingRequest, localVarRequestOptions, configuration);
|
|
3597
|
+
return {
|
|
3598
|
+
url: toPathString(localVarUrlObj),
|
|
3599
|
+
options: localVarRequestOptions
|
|
3600
|
+
};
|
|
3601
|
+
} };
|
|
3544
3602
|
};
|
|
3545
3603
|
/**
|
|
3546
3604
|
* JoggingApi - functional programming interface
|
|
3547
3605
|
*/
|
|
3548
3606
|
const JoggingApiFp = function(configuration) {
|
|
3549
3607
|
const localVarAxiosParamCreator = JoggingApiAxiosParamCreator(configuration);
|
|
3550
|
-
return {
|
|
3551
|
-
|
|
3552
|
-
|
|
3553
|
-
|
|
3554
|
-
|
|
3555
|
-
|
|
3556
|
-
},
|
|
3557
|
-
async executeWaypointJogging(cell, controller, executeWaypointJoggingRequest, options) {
|
|
3558
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.executeWaypointJogging(cell, controller, executeWaypointJoggingRequest, options);
|
|
3559
|
-
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
3560
|
-
const localVarOperationServerBasePath = operationServerMap["JoggingApi.executeWaypointJogging"]?.[localVarOperationServerIndex]?.url;
|
|
3561
|
-
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
3562
|
-
}
|
|
3563
|
-
};
|
|
3608
|
+
return { async executeJogging(cell, controller, executeJoggingRequest, options) {
|
|
3609
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.executeJogging(cell, controller, executeJoggingRequest, options);
|
|
3610
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
3611
|
+
const localVarOperationServerBasePath = operationServerMap["JoggingApi.executeJogging"]?.[localVarOperationServerIndex]?.url;
|
|
3612
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
3613
|
+
} };
|
|
3564
3614
|
};
|
|
3565
3615
|
/**
|
|
3566
3616
|
* JoggingApi - factory interface
|
|
3567
3617
|
*/
|
|
3568
3618
|
const JoggingApiFactory = function(configuration, basePath, axios) {
|
|
3569
3619
|
const localVarFp = JoggingApiFp(configuration);
|
|
3570
|
-
return {
|
|
3571
|
-
executeJogging(cell, controller, executeJoggingRequest, options)
|
|
3572
|
-
|
|
3573
|
-
},
|
|
3574
|
-
executeWaypointJogging(cell, controller, executeWaypointJoggingRequest, options) {
|
|
3575
|
-
return localVarFp.executeWaypointJogging(cell, controller, executeWaypointJoggingRequest, options).then((request) => request(axios, basePath));
|
|
3576
|
-
}
|
|
3577
|
-
};
|
|
3620
|
+
return { executeJogging(cell, controller, executeJoggingRequest, options) {
|
|
3621
|
+
return localVarFp.executeJogging(cell, controller, executeJoggingRequest, options).then((request) => request(axios, basePath));
|
|
3622
|
+
} };
|
|
3578
3623
|
};
|
|
3579
3624
|
/**
|
|
3580
3625
|
* JoggingApi - object-oriented interface
|
|
@@ -3592,18 +3637,6 @@ var JoggingApi = class extends BaseAPI {
|
|
|
3592
3637
|
executeJogging(cell, controller, executeJoggingRequest, options) {
|
|
3593
3638
|
return JoggingApiFp(this.configuration).executeJogging(cell, controller, executeJoggingRequest, options).then((request) => request(this.axios, this.basePath));
|
|
3594
3639
|
}
|
|
3595
|
-
/**
|
|
3596
|
-
* **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.
|
|
3597
|
-
* @summary Execute Waypoint Jogging
|
|
3598
|
-
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
3599
|
-
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
3600
|
-
* @param {ExecuteWaypointJoggingRequest} executeWaypointJoggingRequest
|
|
3601
|
-
* @param {*} [options] Override http request option.
|
|
3602
|
-
* @throws {RequiredError}
|
|
3603
|
-
*/
|
|
3604
|
-
executeWaypointJogging(cell, controller, executeWaypointJoggingRequest, options) {
|
|
3605
|
-
return JoggingApiFp(this.configuration).executeWaypointJogging(cell, controller, executeWaypointJoggingRequest, options).then((request) => request(this.axios, this.basePath));
|
|
3606
|
-
}
|
|
3607
3640
|
};
|
|
3608
3641
|
/**
|
|
3609
3642
|
* KinematicsApi - axios parameter creator
|
|
@@ -6933,7 +6966,9 @@ const SystemApiAxiosParamCreator = function(configuration) {
|
|
|
6933
6966
|
};
|
|
6934
6967
|
},
|
|
6935
6968
|
getArpScan: async (_interface, cidr, timeout, options = {}) => {
|
|
6936
|
-
|
|
6969
|
+
assertParamExists("getArpScan", "_interface", _interface);
|
|
6970
|
+
assertParamExists("getArpScan", "cidr", cidr);
|
|
6971
|
+
const localVarUrlObj = new URL(`/system/network/arp-scan`, DUMMY_BASE_URL);
|
|
6937
6972
|
let baseOptions;
|
|
6938
6973
|
if (configuration) baseOptions = configuration.baseOptions;
|
|
6939
6974
|
const localVarRequestOptions = {
|
|
@@ -7010,7 +7045,7 @@ const SystemApiAxiosParamCreator = function(configuration) {
|
|
|
7010
7045
|
};
|
|
7011
7046
|
},
|
|
7012
7047
|
getNetworkInterfaces: async (options = {}) => {
|
|
7013
|
-
const localVarUrlObj = new URL(`/
|
|
7048
|
+
const localVarUrlObj = new URL(`/system/network/interfaces`, DUMMY_BASE_URL);
|
|
7014
7049
|
let baseOptions;
|
|
7015
7050
|
if (configuration) baseOptions = configuration.baseOptions;
|
|
7016
7051
|
const localVarRequestOptions = {
|
|
@@ -7336,10 +7371,10 @@ var SystemApi = class extends BaseAPI {
|
|
|
7336
7371
|
return SystemApiFp(this.configuration).checkNovaVersionUpdate(channel, options).then((request) => request(this.axios, this.basePath));
|
|
7337
7372
|
}
|
|
7338
7373
|
/**
|
|
7339
|
-
* **Required permissions:** `can_access_system` - View system status and metadata ___
|
|
7374
|
+
* **Required permissions:** `can_access_system` - View system status and metadata ___ Runs an ARP scan on the target interface and returns all discovered devices.
|
|
7340
7375
|
* @summary Get ARP-Scan
|
|
7341
|
-
* @param {string}
|
|
7342
|
-
* @param {string}
|
|
7376
|
+
* @param {string} _interface
|
|
7377
|
+
* @param {string} cidr
|
|
7343
7378
|
* @param {number} [timeout]
|
|
7344
7379
|
* @param {*} [options] Override http request option.
|
|
7345
7380
|
* @throws {RequiredError}
|
|
@@ -7367,7 +7402,7 @@ var SystemApi = class extends BaseAPI {
|
|
|
7367
7402
|
return SystemApiFp(this.configuration).getDiagnosePackage(options).then((request) => request(this.axios, this.basePath));
|
|
7368
7403
|
}
|
|
7369
7404
|
/**
|
|
7370
|
-
* **Required permissions:** `can_access_system` - View system status and metadata ___
|
|
7405
|
+
* **Required permissions:** `can_access_system` - View system status and metadata ___ Lists all managed network interfaces available for controller connections and ARP scanning.
|
|
7371
7406
|
* @summary Network Interfaces
|
|
7372
7407
|
* @param {*} [options] Override http request option.
|
|
7373
7408
|
* @throws {RequiredError}
|
|
@@ -9614,4 +9649,4 @@ var Configuration = class {
|
|
|
9614
9649
|
}
|
|
9615
9650
|
};
|
|
9616
9651
|
//#endregion
|
|
9617
|
-
export { AbbControllerKindEnum, ApplicationApi, ApplicationApiAxiosParamCreator, ApplicationApiFactory, ApplicationApiFp, BASE_PATH, BUSInputsOutputsApi, BUSInputsOutputsApiAxiosParamCreator, BUSInputsOutputsApiFactory, BUSInputsOutputsApiFp, BaseAPI, Behavior, BlendingAutoBlendingNameEnum, BlendingPositionBlendingNameEnum, BlendingSpace, BooleanValueValueTypeEnum, BostondynamicsControllerKindEnum, BostondynamicsControllerRobotTypeEnum, BoxBoxTypeEnum, BoxShapeTypeEnum, BusIOModbusClientBusTypeEnum, BusIOModbusServerBusTypeEnum, BusIOModbusTCPClientNetworkTypeEnum, BusIOModbusTCPServerNetworkTypeEnum, BusIOModbusVirtualBusTypeEnum, BusIOProfinetBusTypeEnum, BusIOProfinetVirtualBusTypeEnum, BusIOSnap7BusTypeEnum, BusIOsStateEnum, COLLECTION_FORMATS, CapsuleShapeTypeEnum, CellApi, CellApiAxiosParamCreator, CellApiFactory, CellApiFp, CloudConfigStatusConfiguredStatusEnum, CloudConfigStatusNotConfiguredStatusEnum, CloudConnectionErrorInvalidTokenCodeEnum, CloudConnectionErrorLeafnodeConnectionErrorCodeEnum, CloudConnectionErrorLeafnodeConnectionTimeoutCodeEnum, CloudConnectionErrorLeafnodeRestartTimeoutCodeEnum, CloudConnectionErrorNatsFailedCodeEnum, CloudConnectionErrorUnexpectedResponseCodeEnum, CloudDisconnectionStatusDisconnectedStatusEnum, CloudDisconnectionStatusDisconnectingStatusEnum, ColliderValueSourceEnum, CollisionErrorKindEnum, CollisionSetupValueSourceEnum, Comparator, Configuration, ConfigurationArchiveStatusCreatingStatusEnum, ConfigurationArchiveStatusErrorStatusEnum, ConfigurationArchiveStatusSuccessStatusEnum, ControllerApi, ControllerApiAxiosParamCreator, ControllerApiFactory, ControllerApiFp, ControllerInputsOutputsApi, ControllerInputsOutputsApiAxiosParamCreator, ControllerInputsOutputsApiFactory, ControllerInputsOutputsApiFp, ConvexHullShapeTypeEnum, CylinderShapeTypeEnum, Direction, DirectionConstraintConstraintNameEnum, ErrorDirectionConstraintNotMetErrorFeedbackNameEnum, ErrorDirectionConstraintNotNormalizedErrorFeedbackNameEnum, ErrorInvalidJointCountErrorFeedbackNameEnum, ErrorJointLimitExceededErrorFeedbackNameEnum, ErrorJointPositionCollisionErrorFeedbackNameEnum, ErrorMaxIterationsExceededErrorFeedbackNameEnum, ErrorUnsupportedOperationErrorFeedbackNameEnum, FanucControllerKindEnum, FeedbackAxisRangeExceededErrorFeedbackNameEnum, FeedbackCollisionErrorFeedbackNameEnum, FeedbackCommandsMissingErrorFeedbackNameEnum, FeedbackCubicSplineIsNotIncreasingErrorFeedbackNameEnum, FeedbackCubicSplineNotAtStartPoseErrorFeedbackNameEnum, FeedbackDirectionConstraintNoSolutionExistsErrorFeedbackNameEnum, FeedbackDirectionConstraintNotMetErrorFeedbackNameEnum, FeedbackDirectionConstraintNotNormalizedErrorFeedbackNameEnum, FeedbackInvalidDofErrorFeedbackNameEnum, FeedbackInvalidNanValueErrorFeedbackNameEnum, FeedbackInvalidSamplingTimeErrorFeedbackNameEnum, FeedbackJointLimitExceededErrorFeedbackNameEnum, FeedbackNoSolutionInCurrentConfigurationErrorFeedbackNameEnum, FeedbackOutOfWorkspaceErrorFeedbackNameEnum, FeedbackSingularityErrorFeedbackNameEnum, FeedbackStartJointsMissingErrorFeedbackNameEnum, FeedbackTorqueExceededErrorFeedbackNameEnum, FloatValueValueTypeEnum, IOBooleanValueValueTypeEnum, IODirection, IOFloatValueValueTypeEnum, IOIntegerValueValueTypeEnum, IOOrigin, IOValueType, InconsistentTrajectorySizeErrorKindEnum, InitializeJoggingRequestMessageTypeEnum, InitializeJoggingResponseKindEnum, InitializeMovementRequestMessageTypeEnum, InitializeMovementResponseKindEnum, IntegerValueValueTypeEnum, InvalidDofErrorKindEnum, JoggingApi, JoggingApiAxiosParamCreator, JoggingApiFactory, JoggingApiFp, JoggingDetailsKindEnum, JoggingPausedByUserKindEnum, JoggingPausedNearCollisionKindEnum, JoggingPausedNearJointLimitKindEnum, JoggingPausedNearSingularityKindEnum, JoggingPausedOnIOKindEnum, JoggingRunningKindEnum, JointLimitExceededErrorKindEnum, JointTypeEnum, JointVelocityRequestMessageTypeEnum, JointVelocityResponseKindEnum,
|
|
9652
|
+
export { AbbControllerKindEnum, ActionChunkRequestMessageTypeEnum, ActionChunkResponseKindEnum, ActionChunkStreamingApi, ActionChunkStreamingApiAxiosParamCreator, ActionChunkStreamingApiFactory, ActionChunkStreamingApiFp, ApplicationApi, ApplicationApiAxiosParamCreator, ApplicationApiFactory, ApplicationApiFp, BASE_PATH, BUSInputsOutputsApi, BUSInputsOutputsApiAxiosParamCreator, BUSInputsOutputsApiFactory, BUSInputsOutputsApiFp, BaseAPI, Behavior, BlendingAutoBlendingNameEnum, BlendingPositionBlendingNameEnum, BlendingSpace, BooleanValueValueTypeEnum, BostondynamicsControllerKindEnum, BostondynamicsControllerRobotTypeEnum, BoxBoxTypeEnum, BoxShapeTypeEnum, BusIOModbusClientBusTypeEnum, BusIOModbusServerBusTypeEnum, BusIOModbusTCPClientNetworkTypeEnum, BusIOModbusTCPServerNetworkTypeEnum, BusIOModbusVirtualBusTypeEnum, BusIOProfinetBusTypeEnum, BusIOProfinetVirtualBusTypeEnum, BusIOSnap7BusTypeEnum, BusIOsStateEnum, COLLECTION_FORMATS, CapsuleShapeTypeEnum, CellApi, CellApiAxiosParamCreator, CellApiFactory, CellApiFp, CloudConfigStatusConfiguredStatusEnum, CloudConfigStatusNotConfiguredStatusEnum, CloudConnectionErrorInvalidTokenCodeEnum, CloudConnectionErrorLeafnodeConnectionErrorCodeEnum, CloudConnectionErrorLeafnodeConnectionTimeoutCodeEnum, CloudConnectionErrorLeafnodeRestartTimeoutCodeEnum, CloudConnectionErrorNatsFailedCodeEnum, CloudConnectionErrorUnexpectedResponseCodeEnum, CloudDisconnectionStatusDisconnectedStatusEnum, CloudDisconnectionStatusDisconnectingStatusEnum, ColliderValueSourceEnum, CollisionErrorKindEnum, CollisionSetupValueSourceEnum, Comparator, Configuration, ConfigurationArchiveStatusCreatingStatusEnum, ConfigurationArchiveStatusErrorStatusEnum, ConfigurationArchiveStatusSuccessStatusEnum, ControllerApi, ControllerApiAxiosParamCreator, ControllerApiFactory, ControllerApiFp, ControllerInputsOutputsApi, ControllerInputsOutputsApiAxiosParamCreator, ControllerInputsOutputsApiFactory, ControllerInputsOutputsApiFp, ConvexHullShapeTypeEnum, CylinderShapeTypeEnum, Direction, DirectionConstraintConstraintNameEnum, ErrorDirectionConstraintNotMetErrorFeedbackNameEnum, ErrorDirectionConstraintNotNormalizedErrorFeedbackNameEnum, ErrorInvalidJointCountErrorFeedbackNameEnum, ErrorJointLimitExceededErrorFeedbackNameEnum, ErrorJointPositionCollisionErrorFeedbackNameEnum, ErrorMaxIterationsExceededErrorFeedbackNameEnum, ErrorUnsupportedOperationErrorFeedbackNameEnum, FanucControllerKindEnum, FeedbackAxisRangeExceededErrorFeedbackNameEnum, FeedbackCollisionErrorFeedbackNameEnum, FeedbackCommandsMissingErrorFeedbackNameEnum, FeedbackCubicSplineIsNotIncreasingErrorFeedbackNameEnum, FeedbackCubicSplineNotAtStartPoseErrorFeedbackNameEnum, FeedbackDirectionConstraintNoSolutionExistsErrorFeedbackNameEnum, FeedbackDirectionConstraintNotMetErrorFeedbackNameEnum, FeedbackDirectionConstraintNotNormalizedErrorFeedbackNameEnum, FeedbackInvalidDofErrorFeedbackNameEnum, FeedbackInvalidNanValueErrorFeedbackNameEnum, FeedbackInvalidSamplingTimeErrorFeedbackNameEnum, FeedbackJointLimitExceededErrorFeedbackNameEnum, FeedbackNoSolutionInCurrentConfigurationErrorFeedbackNameEnum, FeedbackOutOfWorkspaceErrorFeedbackNameEnum, FeedbackSingularityErrorFeedbackNameEnum, FeedbackStartJointsMissingErrorFeedbackNameEnum, FeedbackTorqueExceededErrorFeedbackNameEnum, FloatValueValueTypeEnum, IOBooleanValueValueTypeEnum, IODirection, IOFloatValueValueTypeEnum, IOIntegerValueValueTypeEnum, IOOrigin, IOValueType, InconsistentTrajectorySizeErrorKindEnum, InitializeActionChunksRequestMessageTypeEnum, InitializeActionChunksResponseKindEnum, InitializeJoggingRequestMessageTypeEnum, InitializeJoggingResponseKindEnum, InitializeMovementRequestMessageTypeEnum, InitializeMovementResponseKindEnum, IntegerValueValueTypeEnum, InvalidDofErrorKindEnum, JoggingApi, JoggingApiAxiosParamCreator, JoggingApiFactory, JoggingApiFp, JoggingDetailsKindEnum, JoggingPausedByUserKindEnum, JoggingPausedNearCollisionKindEnum, JoggingPausedNearJointLimitKindEnum, JoggingPausedNearSingularityKindEnum, JoggingPausedOnIOKindEnum, JoggingRunningKindEnum, JointLimitExceededErrorKindEnum, JointTypeEnum, JointVelocityRequestMessageTypeEnum, JointVelocityResponseKindEnum, JointWaypointKindEnum, KinematicBranchElbow, KinematicBranchShoulder, KinematicBranchWrist, KinematicsApi, KinematicsApiAxiosParamCreator, KinematicsApiFactory, KinematicsApiFp, KukaControllerKindEnum, LicenseApi, LicenseApiAxiosParamCreator, LicenseApiFactory, LicenseApiFp, LicenseStatusEnum, LinkChainValueSourceEnum, Manufacturer, MidpointInsertionAlgorithmAlgorithmNameEnum, ModbusIOArea, ModbusIOByteOrder, ModbusIOTypeEnum, MotionGroupApi, MotionGroupApiAxiosParamCreator, MotionGroupApiFactory, MotionGroupApiFp, MotionGroupModelsApi, MotionGroupModelsApiAxiosParamCreator, MotionGroupModelsApiFactory, MotionGroupModelsApiFp, MovementErrorResponseKindEnum, NOVACloudApi, NOVACloudApiAxiosParamCreator, NOVACloudApiFactory, NOVACloudApiFp, NanValueErrorKindEnum, NetworkBackend, NetworkLinkState, OperatingState, OperationMode, OrientationType, PathCartesianPTPPathDefinitionNameEnum, PathCirclePathDefinitionNameEnum, PathCubicSplinePathDefinitionNameEnum, PathDirectionConstrainedCartesianPTPPathDefinitionNameEnum, PathDirectionConstrainedJointPTPPathDefinitionNameEnum, PathJointPTPPathDefinitionNameEnum, PathLinePathDefinitionNameEnum, PauseActionChunksRequestMessageTypeEnum, PauseActionChunksResponseKindEnum, PauseJoggingRequestMessageTypeEnum, PauseJoggingResponseKindEnum, PauseMovementRequestMessageTypeEnum, PauseMovementResponseKindEnum, PlaneShapeTypeEnum, PlaybackSpeedRequestMessageTypeEnum, PlaybackSpeedResponseKindEnum, PoseWaypointKindEnum, ProfinetIODirection, ProfinetIOTypeEnum, ProgramApi, ProgramApiAxiosParamCreator, ProgramApiFactory, ProgramApiFp, ProgramRunState, RRTConnectAlgorithmAlgorithmNameEnum, RectangleShapeTypeEnum, RectangularCapsuleShapeTypeEnum, ReleaseChannel, RequiredError, RobotConfigurationsApi, RobotConfigurationsApiAxiosParamCreator, RobotConfigurationsApiFactory, RobotConfigurationsApiFp, RobotSystemMode, SafetyStateType, ServiceGroup, ServiceStatusPhase, ServiceStatusSeverity, SessionApi, SessionApiAxiosParamCreator, SessionApiFactory, SessionApiFp, SettableRobotSystemMode, SingularityHandling, SingularityTypeEnum, Snap7IOArea, Snap7IODirection, Snap7IOTypeEnum, SphereShapeTypeEnum, StartMovementRequestMessageTypeEnum, StartMovementResponseKindEnum, StaubliControllerKindEnum, StopActionChunksRequestMessageTypeEnum, StopActionChunksResponseKindEnum, StorageKeySourceEnum, StoreCollisionComponentsApi, StoreCollisionComponentsApiAxiosParamCreator, StoreCollisionComponentsApiFactory, StoreCollisionComponentsApiFp, StoreCollisionSetupsApi, StoreCollisionSetupsApiAxiosParamCreator, StoreCollisionSetupsApiFactory, StoreCollisionSetupsApiFp, StoreObjectApi, StoreObjectApiAxiosParamCreator, StoreObjectApiFactory, StoreObjectApiFp, SystemApi, SystemApiAxiosParamCreator, SystemApiFactory, SystemApiFp, TcpRequiredErrorKindEnum, TcpVelocityRequestMessageTypeEnum, TcpVelocityResponseKindEnum, TechmanControllerKindEnum, ToolValueSourceEnum, TorqueExceededErrorKindEnum, TrajectoryCachingApi, TrajectoryCachingApiAxiosParamCreator, TrajectoryCachingApiFactory, TrajectoryCachingApiFp, TrajectoryDataMessageTypeEnum, TrajectoryDetailsKindEnum, TrajectoryEndedKindEnum, TrajectoryExecutionApi, TrajectoryExecutionApiAxiosParamCreator, TrajectoryExecutionApiFactory, TrajectoryExecutionApiFp, TrajectoryIdMessageTypeEnum, TrajectoryPausedByUserKindEnum, TrajectoryPausedOnIOKindEnum, TrajectoryPlanningApi, TrajectoryPlanningApiAxiosParamCreator, TrajectoryPlanningApiFactory, TrajectoryPlanningApiFp, TrajectoryRunningKindEnum, TrajectoryWaitForIOKindEnum, UnitType, UnitreeControllerKindEnum, UnitreeControllerRobotTypeEnum, UniversalrobotsControllerKindEnum, UnpauseActionChunksRequestMessageTypeEnum, UnpauseActionChunksResponseKindEnum, VersionApi, VersionApiAxiosParamCreator, VersionApiFactory, VersionApiFp, VirtualControllerApi, VirtualControllerApiAxiosParamCreator, VirtualControllerApiFactory, VirtualControllerApiFp, VirtualControllerBehaviorApi, VirtualControllerBehaviorApiAxiosParamCreator, VirtualControllerBehaviorApiFactory, VirtualControllerBehaviorApiFp, VirtualControllerInputsOutputsApi, VirtualControllerInputsOutputsApiAxiosParamCreator, VirtualControllerInputsOutputsApiFactory, VirtualControllerInputsOutputsApiFp, VirtualControllerKindEnum, YaskawaControllerKindEnum, ZodValidationErrorErrorCodeEnum, operationServerMap };
|