@wandelbots/nova-api 26.5.0-dev.9 → 26.5.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 +485 -275
- package/dist/v2/index.d.cts +449 -5
- package/dist/v2/index.d.ts +449 -5
- package/dist/v2/index.js +241 -40
- package/package.json +1 -1
package/dist/v2/index.cjs
CHANGED
|
@@ -11,9 +11,9 @@ const COLLECTION_FORMATS = {
|
|
|
11
11
|
pipes: "|"
|
|
12
12
|
};
|
|
13
13
|
var BaseAPI = class {
|
|
14
|
-
constructor(configuration, basePath = BASE_PATH, axios$
|
|
14
|
+
constructor(configuration, basePath = BASE_PATH, axios$195 = axios.default) {
|
|
15
15
|
this.basePath = basePath;
|
|
16
|
-
this.axios = axios$
|
|
16
|
+
this.axios = axios$195;
|
|
17
17
|
require_defineProperty._defineProperty(this, "configuration", void 0);
|
|
18
18
|
if (configuration) {
|
|
19
19
|
this.configuration = configuration;
|
|
@@ -124,7 +124,9 @@ const CloudConnectionErrorNatsFailedCodeEnum = { NatsConnectionFailed: "nats_con
|
|
|
124
124
|
const CloudConnectionErrorUnexpectedResponseCodeEnum = { UnexpectedCloudResponse: "unexpected_cloud_response" };
|
|
125
125
|
const CloudDisconnectionStatusDisconnectedStatusEnum = { Disconnected: "disconnected" };
|
|
126
126
|
const CloudDisconnectionStatusDisconnectingStatusEnum = { Disconnecting: "disconnecting" };
|
|
127
|
+
const ColliderValueSourceEnum = { Value: "value" };
|
|
127
128
|
const CollisionErrorKindEnum = { CollisionError: "CollisionError" };
|
|
129
|
+
const CollisionSetupValueSourceEnum = { Value: "value" };
|
|
128
130
|
/**
|
|
129
131
|
* Comparator for the comparison of two values. The comparator is used to compare two values and return a boolean result. The default comparator is unknown.
|
|
130
132
|
*/
|
|
@@ -221,6 +223,8 @@ const JointTypeEnum = {
|
|
|
221
223
|
};
|
|
222
224
|
const JointVelocityRequestMessageTypeEnum = { JointVelocityRequest: "JointVelocityRequest" };
|
|
223
225
|
const JointVelocityResponseKindEnum = { JointVelocityReceived: "JOINT_VELOCITY_RECEIVED" };
|
|
226
|
+
const JointWaypointsRequestMessageTypeEnum = { JointWaypointsRequest: "JointWaypointsRequest" };
|
|
227
|
+
const JointWaypointsResponseKindEnum = { JointWaypointsReceived: "JOINT_WAYPOINTS_RECEIVED" };
|
|
224
228
|
const KinematicBranchElbow = {
|
|
225
229
|
Up: "UP",
|
|
226
230
|
Down: "DOWN"
|
|
@@ -241,6 +245,7 @@ const LicenseStatusEnum = {
|
|
|
241
245
|
GracePeriodOver: "GRACE_PERIOD_OVER",
|
|
242
246
|
NotFound: "NOT_FOUND"
|
|
243
247
|
};
|
|
248
|
+
const LinkChainValueSourceEnum = { Value: "value" };
|
|
244
249
|
const Manufacturer = {
|
|
245
250
|
Abb: "abb",
|
|
246
251
|
Fanuc: "fanuc",
|
|
@@ -355,6 +360,8 @@ const PauseMovementResponseKindEnum = { PauseReceived: "PAUSE_RECEIVED" };
|
|
|
355
360
|
const PlaneShapeTypeEnum = { Plane: "plane" };
|
|
356
361
|
const PlaybackSpeedRequestMessageTypeEnum = { PlaybackSpeedRequest: "PlaybackSpeedRequest" };
|
|
357
362
|
const PlaybackSpeedResponseKindEnum = { PlaybackSpeedReceived: "PLAYBACK_SPEED_RECEIVED" };
|
|
363
|
+
const PoseWaypointsRequestMessageTypeEnum = { PoseWaypointsRequest: "PoseWaypointsRequest" };
|
|
364
|
+
const PoseWaypointsResponseKindEnum = { PoseWaypointsReceived: "POSE_WAYPOINTS_RECEIVED" };
|
|
358
365
|
/**
|
|
359
366
|
* 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.
|
|
360
367
|
*/
|
|
@@ -504,9 +511,11 @@ const Snap7IOTypeEnum = {
|
|
|
504
511
|
const SphereShapeTypeEnum = { Sphere: "sphere" };
|
|
505
512
|
const StartMovementRequestMessageTypeEnum = { StartMovementRequest: "StartMovementRequest" };
|
|
506
513
|
const StartMovementResponseKindEnum = { StartReceived: "START_RECEIVED" };
|
|
514
|
+
const StorageKeySourceEnum = { Key: "key" };
|
|
507
515
|
const TcpRequiredErrorKindEnum = { TcpRequiredError: "TcpRequiredError" };
|
|
508
516
|
const TcpVelocityRequestMessageTypeEnum = { TcpVelocityRequest: "TcpVelocityRequest" };
|
|
509
517
|
const TcpVelocityResponseKindEnum = { TcpVelocityReceived: "TCP_VELOCITY_RECEIVED" };
|
|
518
|
+
const ToolValueSourceEnum = { Value: "value" };
|
|
510
519
|
const TorqueExceededErrorKindEnum = { TorqueExceededError: "TorqueExceededError" };
|
|
511
520
|
const TrajectoryDataMessageTypeEnum = { TrajectoryData: "TrajectoryData" };
|
|
512
521
|
const TrajectoryDetailsKindEnum = { Trajectory: "TRAJECTORY" };
|
|
@@ -3413,57 +3422,102 @@ var ControllerInputsOutputsApi = class extends BaseAPI {
|
|
|
3413
3422
|
* JoggingApi - axios parameter creator
|
|
3414
3423
|
*/
|
|
3415
3424
|
const JoggingApiAxiosParamCreator = function(configuration) {
|
|
3416
|
-
return {
|
|
3417
|
-
|
|
3418
|
-
|
|
3419
|
-
|
|
3420
|
-
|
|
3421
|
-
|
|
3422
|
-
|
|
3423
|
-
|
|
3424
|
-
|
|
3425
|
-
|
|
3426
|
-
|
|
3427
|
-
|
|
3428
|
-
|
|
3429
|
-
|
|
3430
|
-
|
|
3431
|
-
|
|
3432
|
-
|
|
3433
|
-
|
|
3434
|
-
|
|
3435
|
-
|
|
3436
|
-
|
|
3437
|
-
|
|
3438
|
-
|
|
3439
|
-
|
|
3440
|
-
|
|
3441
|
-
|
|
3442
|
-
|
|
3443
|
-
|
|
3444
|
-
|
|
3445
|
-
|
|
3425
|
+
return {
|
|
3426
|
+
executeJogging: async (cell, controller, executeJoggingRequest, options = {}) => {
|
|
3427
|
+
assertParamExists("executeJogging", "cell", cell);
|
|
3428
|
+
assertParamExists("executeJogging", "controller", controller);
|
|
3429
|
+
assertParamExists("executeJogging", "executeJoggingRequest", executeJoggingRequest);
|
|
3430
|
+
const localVarPath = `/cells/{cell}/controllers/{controller}/execution/jogging`.replace(`{cell}`, encodeURIComponent(String(cell))).replace(`{controller}`, encodeURIComponent(String(controller)));
|
|
3431
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
3432
|
+
let baseOptions;
|
|
3433
|
+
if (configuration) baseOptions = configuration.baseOptions;
|
|
3434
|
+
const localVarRequestOptions = {
|
|
3435
|
+
method: "GET",
|
|
3436
|
+
...baseOptions,
|
|
3437
|
+
...options
|
|
3438
|
+
};
|
|
3439
|
+
const localVarHeaderParameter = {};
|
|
3440
|
+
const localVarQueryParameter = {};
|
|
3441
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
3442
|
+
localVarHeaderParameter["Content-Type"] = "application/json";
|
|
3443
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
3444
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3445
|
+
localVarRequestOptions.headers = {
|
|
3446
|
+
...localVarHeaderParameter,
|
|
3447
|
+
...headersFromBaseOptions,
|
|
3448
|
+
...options.headers
|
|
3449
|
+
};
|
|
3450
|
+
localVarRequestOptions.data = serializeDataIfNeeded(executeJoggingRequest, localVarRequestOptions, configuration);
|
|
3451
|
+
return {
|
|
3452
|
+
url: toPathString(localVarUrlObj),
|
|
3453
|
+
options: localVarRequestOptions
|
|
3454
|
+
};
|
|
3455
|
+
},
|
|
3456
|
+
executeWaypointJogging: async (cell, controller, executeWaypointJoggingRequest, options = {}) => {
|
|
3457
|
+
assertParamExists("executeWaypointJogging", "cell", cell);
|
|
3458
|
+
assertParamExists("executeWaypointJogging", "controller", controller);
|
|
3459
|
+
assertParamExists("executeWaypointJogging", "executeWaypointJoggingRequest", executeWaypointJoggingRequest);
|
|
3460
|
+
const localVarPath = `/experimental/cells/{cell}/controllers/{controller}/execution/jogging`.replace(`{cell}`, encodeURIComponent(String(cell))).replace(`{controller}`, encodeURIComponent(String(controller)));
|
|
3461
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
3462
|
+
let baseOptions;
|
|
3463
|
+
if (configuration) baseOptions = configuration.baseOptions;
|
|
3464
|
+
const localVarRequestOptions = {
|
|
3465
|
+
method: "GET",
|
|
3466
|
+
...baseOptions,
|
|
3467
|
+
...options
|
|
3468
|
+
};
|
|
3469
|
+
const localVarHeaderParameter = {};
|
|
3470
|
+
const localVarQueryParameter = {};
|
|
3471
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
3472
|
+
localVarHeaderParameter["Content-Type"] = "application/json";
|
|
3473
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
3474
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3475
|
+
localVarRequestOptions.headers = {
|
|
3476
|
+
...localVarHeaderParameter,
|
|
3477
|
+
...headersFromBaseOptions,
|
|
3478
|
+
...options.headers
|
|
3479
|
+
};
|
|
3480
|
+
localVarRequestOptions.data = serializeDataIfNeeded(executeWaypointJoggingRequest, localVarRequestOptions, configuration);
|
|
3481
|
+
return {
|
|
3482
|
+
url: toPathString(localVarUrlObj),
|
|
3483
|
+
options: localVarRequestOptions
|
|
3484
|
+
};
|
|
3485
|
+
}
|
|
3486
|
+
};
|
|
3446
3487
|
};
|
|
3447
3488
|
/**
|
|
3448
3489
|
* JoggingApi - functional programming interface
|
|
3449
3490
|
*/
|
|
3450
3491
|
const JoggingApiFp = function(configuration) {
|
|
3451
3492
|
const localVarAxiosParamCreator = JoggingApiAxiosParamCreator(configuration);
|
|
3452
|
-
return {
|
|
3453
|
-
|
|
3454
|
-
|
|
3455
|
-
|
|
3456
|
-
|
|
3457
|
-
|
|
3493
|
+
return {
|
|
3494
|
+
async executeJogging(cell, controller, executeJoggingRequest, options) {
|
|
3495
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.executeJogging(cell, controller, executeJoggingRequest, options);
|
|
3496
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
3497
|
+
const localVarOperationServerBasePath = operationServerMap["JoggingApi.executeJogging"]?.[localVarOperationServerIndex]?.url;
|
|
3498
|
+
return (axios$63, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$63, localVarOperationServerBasePath || basePath);
|
|
3499
|
+
},
|
|
3500
|
+
async executeWaypointJogging(cell, controller, executeWaypointJoggingRequest, options) {
|
|
3501
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.executeWaypointJogging(cell, controller, executeWaypointJoggingRequest, options);
|
|
3502
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
3503
|
+
const localVarOperationServerBasePath = operationServerMap["JoggingApi.executeWaypointJogging"]?.[localVarOperationServerIndex]?.url;
|
|
3504
|
+
return (axios$64, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$64, localVarOperationServerBasePath || basePath);
|
|
3505
|
+
}
|
|
3506
|
+
};
|
|
3458
3507
|
};
|
|
3459
3508
|
/**
|
|
3460
3509
|
* JoggingApi - factory interface
|
|
3461
3510
|
*/
|
|
3462
|
-
const JoggingApiFactory = function(configuration, basePath, axios$
|
|
3511
|
+
const JoggingApiFactory = function(configuration, basePath, axios$65) {
|
|
3463
3512
|
const localVarFp = JoggingApiFp(configuration);
|
|
3464
|
-
return {
|
|
3465
|
-
|
|
3466
|
-
|
|
3513
|
+
return {
|
|
3514
|
+
executeJogging(cell, controller, executeJoggingRequest, options) {
|
|
3515
|
+
return localVarFp.executeJogging(cell, controller, executeJoggingRequest, options).then((request) => request(axios$65, basePath));
|
|
3516
|
+
},
|
|
3517
|
+
executeWaypointJogging(cell, controller, executeWaypointJoggingRequest, options) {
|
|
3518
|
+
return localVarFp.executeWaypointJogging(cell, controller, executeWaypointJoggingRequest, options).then((request) => request(axios$65, basePath));
|
|
3519
|
+
}
|
|
3520
|
+
};
|
|
3467
3521
|
};
|
|
3468
3522
|
/**
|
|
3469
3523
|
* JoggingApi - object-oriented interface
|
|
@@ -3481,6 +3535,18 @@ var JoggingApi = class extends BaseAPI {
|
|
|
3481
3535
|
executeJogging(cell, controller, executeJoggingRequest, options) {
|
|
3482
3536
|
return JoggingApiFp(this.configuration).executeJogging(cell, controller, executeJoggingRequest, options).then((request) => request(this.axios, this.basePath));
|
|
3483
3537
|
}
|
|
3538
|
+
/**
|
|
3539
|
+
* **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.
|
|
3540
|
+
* @summary Execute Waypoint Jogging
|
|
3541
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
3542
|
+
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
3543
|
+
* @param {ExecuteWaypointJoggingRequest} executeWaypointJoggingRequest
|
|
3544
|
+
* @param {*} [options] Override http request option.
|
|
3545
|
+
* @throws {RequiredError}
|
|
3546
|
+
*/
|
|
3547
|
+
executeWaypointJogging(cell, controller, executeWaypointJoggingRequest, options) {
|
|
3548
|
+
return JoggingApiFp(this.configuration).executeWaypointJogging(cell, controller, executeWaypointJoggingRequest, options).then((request) => request(this.axios, this.basePath));
|
|
3549
|
+
}
|
|
3484
3550
|
};
|
|
3485
3551
|
/**
|
|
3486
3552
|
* KinematicsApi - axios parameter creator
|
|
@@ -3644,54 +3710,54 @@ const KinematicsApiFp = function(configuration) {
|
|
|
3644
3710
|
const localVarAxiosArgs = await localVarAxiosParamCreator.configuredPoseInverse(cell, configuredPoseInverseRequest, options);
|
|
3645
3711
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
3646
3712
|
const localVarOperationServerBasePath = operationServerMap["KinematicsApi.configuredPoseInverse"]?.[localVarOperationServerIndex]?.url;
|
|
3647
|
-
return (axios$
|
|
3713
|
+
return (axios$66, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$66, localVarOperationServerBasePath || basePath);
|
|
3648
3714
|
},
|
|
3649
3715
|
async convertVendorConfiguredPose(cell, convertVendorConfiguredPoseRequest, options) {
|
|
3650
3716
|
const localVarAxiosArgs = await localVarAxiosParamCreator.convertVendorConfiguredPose(cell, convertVendorConfiguredPoseRequest, options);
|
|
3651
3717
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
3652
3718
|
const localVarOperationServerBasePath = operationServerMap["KinematicsApi.convertVendorConfiguredPose"]?.[localVarOperationServerIndex]?.url;
|
|
3653
|
-
return (axios$
|
|
3719
|
+
return (axios$67, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$67, localVarOperationServerBasePath || basePath);
|
|
3654
3720
|
},
|
|
3655
3721
|
async forwardKinematics(cell, forwardKinematicsRequest, options) {
|
|
3656
3722
|
const localVarAxiosArgs = await localVarAxiosParamCreator.forwardKinematics(cell, forwardKinematicsRequest, options);
|
|
3657
3723
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
3658
3724
|
const localVarOperationServerBasePath = operationServerMap["KinematicsApi.forwardKinematics"]?.[localVarOperationServerIndex]?.url;
|
|
3659
|
-
return (axios$
|
|
3725
|
+
return (axios$68, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$68, localVarOperationServerBasePath || basePath);
|
|
3660
3726
|
},
|
|
3661
3727
|
async inverseKinematics(cell, inverseKinematicsRequest, options) {
|
|
3662
3728
|
const localVarAxiosArgs = await localVarAxiosParamCreator.inverseKinematics(cell, inverseKinematicsRequest, options);
|
|
3663
3729
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
3664
3730
|
const localVarOperationServerBasePath = operationServerMap["KinematicsApi.inverseKinematics"]?.[localVarOperationServerIndex]?.url;
|
|
3665
|
-
return (axios$
|
|
3731
|
+
return (axios$69, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$69, localVarOperationServerBasePath || basePath);
|
|
3666
3732
|
},
|
|
3667
3733
|
async projectJointPositionDirectionConstraint(cell, projectJointPositionDirectionConstraintRequest, options) {
|
|
3668
3734
|
const localVarAxiosArgs = await localVarAxiosParamCreator.projectJointPositionDirectionConstraint(cell, projectJointPositionDirectionConstraintRequest, options);
|
|
3669
3735
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
3670
3736
|
const localVarOperationServerBasePath = operationServerMap["KinematicsApi.projectJointPositionDirectionConstraint"]?.[localVarOperationServerIndex]?.url;
|
|
3671
|
-
return (axios$
|
|
3737
|
+
return (axios$70, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$70, localVarOperationServerBasePath || basePath);
|
|
3672
3738
|
}
|
|
3673
3739
|
};
|
|
3674
3740
|
};
|
|
3675
3741
|
/**
|
|
3676
3742
|
* KinematicsApi - factory interface
|
|
3677
3743
|
*/
|
|
3678
|
-
const KinematicsApiFactory = function(configuration, basePath, axios$
|
|
3744
|
+
const KinematicsApiFactory = function(configuration, basePath, axios$71) {
|
|
3679
3745
|
const localVarFp = KinematicsApiFp(configuration);
|
|
3680
3746
|
return {
|
|
3681
3747
|
configuredPoseInverse(cell, configuredPoseInverseRequest, options) {
|
|
3682
|
-
return localVarFp.configuredPoseInverse(cell, configuredPoseInverseRequest, options).then((request) => request(axios$
|
|
3748
|
+
return localVarFp.configuredPoseInverse(cell, configuredPoseInverseRequest, options).then((request) => request(axios$71, basePath));
|
|
3683
3749
|
},
|
|
3684
3750
|
convertVendorConfiguredPose(cell, convertVendorConfiguredPoseRequest, options) {
|
|
3685
|
-
return localVarFp.convertVendorConfiguredPose(cell, convertVendorConfiguredPoseRequest, options).then((request) => request(axios$
|
|
3751
|
+
return localVarFp.convertVendorConfiguredPose(cell, convertVendorConfiguredPoseRequest, options).then((request) => request(axios$71, basePath));
|
|
3686
3752
|
},
|
|
3687
3753
|
forwardKinematics(cell, forwardKinematicsRequest, options) {
|
|
3688
|
-
return localVarFp.forwardKinematics(cell, forwardKinematicsRequest, options).then((request) => request(axios$
|
|
3754
|
+
return localVarFp.forwardKinematics(cell, forwardKinematicsRequest, options).then((request) => request(axios$71, basePath));
|
|
3689
3755
|
},
|
|
3690
3756
|
inverseKinematics(cell, inverseKinematicsRequest, options) {
|
|
3691
|
-
return localVarFp.inverseKinematics(cell, inverseKinematicsRequest, options).then((request) => request(axios$
|
|
3757
|
+
return localVarFp.inverseKinematics(cell, inverseKinematicsRequest, options).then((request) => request(axios$71, basePath));
|
|
3692
3758
|
},
|
|
3693
3759
|
projectJointPositionDirectionConstraint(cell, projectJointPositionDirectionConstraintRequest, options) {
|
|
3694
|
-
return localVarFp.projectJointPositionDirectionConstraint(cell, projectJointPositionDirectionConstraintRequest, options).then((request) => request(axios$
|
|
3760
|
+
return localVarFp.projectJointPositionDirectionConstraint(cell, projectJointPositionDirectionConstraintRequest, options).then((request) => request(axios$71, basePath));
|
|
3695
3761
|
}
|
|
3696
3762
|
};
|
|
3697
3763
|
};
|
|
@@ -3871,45 +3937,45 @@ const LicenseApiFp = function(configuration) {
|
|
|
3871
3937
|
const localVarAxiosArgs = await localVarAxiosParamCreator.activateLicense(activateLicenseRequest, options);
|
|
3872
3938
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
3873
3939
|
const localVarOperationServerBasePath = operationServerMap["LicenseApi.activateLicense"]?.[localVarOperationServerIndex]?.url;
|
|
3874
|
-
return (axios$
|
|
3940
|
+
return (axios$72, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$72, localVarOperationServerBasePath || basePath);
|
|
3875
3941
|
},
|
|
3876
3942
|
async deactivateLicense(options) {
|
|
3877
3943
|
const localVarAxiosArgs = await localVarAxiosParamCreator.deactivateLicense(options);
|
|
3878
3944
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
3879
3945
|
const localVarOperationServerBasePath = operationServerMap["LicenseApi.deactivateLicense"]?.[localVarOperationServerIndex]?.url;
|
|
3880
|
-
return (axios$
|
|
3946
|
+
return (axios$73, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$73, localVarOperationServerBasePath || basePath);
|
|
3881
3947
|
},
|
|
3882
3948
|
async getLicense(options) {
|
|
3883
3949
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getLicense(options);
|
|
3884
3950
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
3885
3951
|
const localVarOperationServerBasePath = operationServerMap["LicenseApi.getLicense"]?.[localVarOperationServerIndex]?.url;
|
|
3886
|
-
return (axios$
|
|
3952
|
+
return (axios$74, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$74, localVarOperationServerBasePath || basePath);
|
|
3887
3953
|
},
|
|
3888
3954
|
async getLicenseStatus(options) {
|
|
3889
3955
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getLicenseStatus(options);
|
|
3890
3956
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
3891
3957
|
const localVarOperationServerBasePath = operationServerMap["LicenseApi.getLicenseStatus"]?.[localVarOperationServerIndex]?.url;
|
|
3892
|
-
return (axios$
|
|
3958
|
+
return (axios$75, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$75, localVarOperationServerBasePath || basePath);
|
|
3893
3959
|
}
|
|
3894
3960
|
};
|
|
3895
3961
|
};
|
|
3896
3962
|
/**
|
|
3897
3963
|
* LicenseApi - factory interface
|
|
3898
3964
|
*/
|
|
3899
|
-
const LicenseApiFactory = function(configuration, basePath, axios$
|
|
3965
|
+
const LicenseApiFactory = function(configuration, basePath, axios$76) {
|
|
3900
3966
|
const localVarFp = LicenseApiFp(configuration);
|
|
3901
3967
|
return {
|
|
3902
3968
|
activateLicense(activateLicenseRequest, options) {
|
|
3903
|
-
return localVarFp.activateLicense(activateLicenseRequest, options).then((request) => request(axios$
|
|
3969
|
+
return localVarFp.activateLicense(activateLicenseRequest, options).then((request) => request(axios$76, basePath));
|
|
3904
3970
|
},
|
|
3905
3971
|
deactivateLicense(options) {
|
|
3906
|
-
return localVarFp.deactivateLicense(options).then((request) => request(axios$
|
|
3972
|
+
return localVarFp.deactivateLicense(options).then((request) => request(axios$76, basePath));
|
|
3907
3973
|
},
|
|
3908
3974
|
getLicense(options) {
|
|
3909
|
-
return localVarFp.getLicense(options).then((request) => request(axios$
|
|
3975
|
+
return localVarFp.getLicense(options).then((request) => request(axios$76, basePath));
|
|
3910
3976
|
},
|
|
3911
3977
|
getLicenseStatus(options) {
|
|
3912
|
-
return localVarFp.getLicenseStatus(options).then((request) => request(axios$
|
|
3978
|
+
return localVarFp.getLicenseStatus(options).then((request) => request(axios$76, basePath));
|
|
3913
3979
|
}
|
|
3914
3980
|
};
|
|
3915
3981
|
};
|
|
@@ -4059,36 +4125,36 @@ const MotionGroupApiFp = function(configuration) {
|
|
|
4059
4125
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getCurrentMotionGroupState(cell, controller, motionGroup, responseCoordinateSystem, options);
|
|
4060
4126
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
4061
4127
|
const localVarOperationServerBasePath = operationServerMap["MotionGroupApi.getCurrentMotionGroupState"]?.[localVarOperationServerIndex]?.url;
|
|
4062
|
-
return (axios$
|
|
4128
|
+
return (axios$77, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$77, localVarOperationServerBasePath || basePath);
|
|
4063
4129
|
},
|
|
4064
4130
|
async getMotionGroupDescription(cell, controller, motionGroup, options) {
|
|
4065
4131
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getMotionGroupDescription(cell, controller, motionGroup, options);
|
|
4066
4132
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
4067
4133
|
const localVarOperationServerBasePath = operationServerMap["MotionGroupApi.getMotionGroupDescription"]?.[localVarOperationServerIndex]?.url;
|
|
4068
|
-
return (axios$
|
|
4134
|
+
return (axios$78, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$78, localVarOperationServerBasePath || basePath);
|
|
4069
4135
|
},
|
|
4070
4136
|
async streamMotionGroupState(cell, controller, motionGroup, responseRate, responseCoordinateSystem, options) {
|
|
4071
4137
|
const localVarAxiosArgs = await localVarAxiosParamCreator.streamMotionGroupState(cell, controller, motionGroup, responseRate, responseCoordinateSystem, options);
|
|
4072
4138
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
4073
4139
|
const localVarOperationServerBasePath = operationServerMap["MotionGroupApi.streamMotionGroupState"]?.[localVarOperationServerIndex]?.url;
|
|
4074
|
-
return (axios$
|
|
4140
|
+
return (axios$79, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$79, localVarOperationServerBasePath || basePath);
|
|
4075
4141
|
}
|
|
4076
4142
|
};
|
|
4077
4143
|
};
|
|
4078
4144
|
/**
|
|
4079
4145
|
* MotionGroupApi - factory interface
|
|
4080
4146
|
*/
|
|
4081
|
-
const MotionGroupApiFactory = function(configuration, basePath, axios$
|
|
4147
|
+
const MotionGroupApiFactory = function(configuration, basePath, axios$80) {
|
|
4082
4148
|
const localVarFp = MotionGroupApiFp(configuration);
|
|
4083
4149
|
return {
|
|
4084
4150
|
getCurrentMotionGroupState(cell, controller, motionGroup, responseCoordinateSystem, options) {
|
|
4085
|
-
return localVarFp.getCurrentMotionGroupState(cell, controller, motionGroup, responseCoordinateSystem, options).then((request) => request(axios$
|
|
4151
|
+
return localVarFp.getCurrentMotionGroupState(cell, controller, motionGroup, responseCoordinateSystem, options).then((request) => request(axios$80, basePath));
|
|
4086
4152
|
},
|
|
4087
4153
|
getMotionGroupDescription(cell, controller, motionGroup, options) {
|
|
4088
|
-
return localVarFp.getMotionGroupDescription(cell, controller, motionGroup, options).then((request) => request(axios$
|
|
4154
|
+
return localVarFp.getMotionGroupDescription(cell, controller, motionGroup, options).then((request) => request(axios$80, basePath));
|
|
4089
4155
|
},
|
|
4090
4156
|
streamMotionGroupState(cell, controller, motionGroup, responseRate, responseCoordinateSystem, options) {
|
|
4091
|
-
return localVarFp.streamMotionGroupState(cell, controller, motionGroup, responseRate, responseCoordinateSystem, options).then((request) => request(axios$
|
|
4157
|
+
return localVarFp.streamMotionGroupState(cell, controller, motionGroup, responseRate, responseCoordinateSystem, options).then((request) => request(axios$80, basePath));
|
|
4092
4158
|
}
|
|
4093
4159
|
};
|
|
4094
4160
|
};
|
|
@@ -4248,6 +4314,32 @@ const MotionGroupModelsApiAxiosParamCreator = function(configuration) {
|
|
|
4248
4314
|
options: localVarRequestOptions
|
|
4249
4315
|
};
|
|
4250
4316
|
},
|
|
4317
|
+
getMotionGroupDynamicModel: async (motionGroupModel, options = {}) => {
|
|
4318
|
+
assertParamExists("getMotionGroupDynamicModel", "motionGroupModel", motionGroupModel);
|
|
4319
|
+
const localVarPath = `/experimental/motion-group-models/{motion-group-model}/dynamic`.replace(`{motion-group-model}`, encodeURIComponent(String(motionGroupModel)));
|
|
4320
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
4321
|
+
let baseOptions;
|
|
4322
|
+
if (configuration) baseOptions = configuration.baseOptions;
|
|
4323
|
+
const localVarRequestOptions = {
|
|
4324
|
+
method: "GET",
|
|
4325
|
+
...baseOptions,
|
|
4326
|
+
...options
|
|
4327
|
+
};
|
|
4328
|
+
const localVarHeaderParameter = {};
|
|
4329
|
+
const localVarQueryParameter = {};
|
|
4330
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
4331
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
4332
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
4333
|
+
localVarRequestOptions.headers = {
|
|
4334
|
+
...localVarHeaderParameter,
|
|
4335
|
+
...headersFromBaseOptions,
|
|
4336
|
+
...options.headers
|
|
4337
|
+
};
|
|
4338
|
+
return {
|
|
4339
|
+
url: toPathString(localVarUrlObj),
|
|
4340
|
+
options: localVarRequestOptions
|
|
4341
|
+
};
|
|
4342
|
+
},
|
|
4251
4343
|
getMotionGroupGlbModel: async (motionGroupModel, options = {}) => {
|
|
4252
4344
|
assertParamExists("getMotionGroupGlbModel", "motionGroupModel", motionGroupModel);
|
|
4253
4345
|
const localVarPath = `/motion-group-models/{motion-group-model}/glb`.replace(`{motion-group-model}`, encodeURIComponent(String(motionGroupModel)));
|
|
@@ -4274,6 +4366,32 @@ const MotionGroupModelsApiAxiosParamCreator = function(configuration) {
|
|
|
4274
4366
|
options: localVarRequestOptions
|
|
4275
4367
|
};
|
|
4276
4368
|
},
|
|
4369
|
+
getMotionGroupHomejoints: async (motionGroupModel, options = {}) => {
|
|
4370
|
+
assertParamExists("getMotionGroupHomejoints", "motionGroupModel", motionGroupModel);
|
|
4371
|
+
const localVarPath = `/experimental/motion-group-models/{motion-group-model}/homejoints`.replace(`{motion-group-model}`, encodeURIComponent(String(motionGroupModel)));
|
|
4372
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
4373
|
+
let baseOptions;
|
|
4374
|
+
if (configuration) baseOptions = configuration.baseOptions;
|
|
4375
|
+
const localVarRequestOptions = {
|
|
4376
|
+
method: "GET",
|
|
4377
|
+
...baseOptions,
|
|
4378
|
+
...options
|
|
4379
|
+
};
|
|
4380
|
+
const localVarHeaderParameter = {};
|
|
4381
|
+
const localVarQueryParameter = {};
|
|
4382
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
4383
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
4384
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
4385
|
+
localVarRequestOptions.headers = {
|
|
4386
|
+
...localVarHeaderParameter,
|
|
4387
|
+
...headersFromBaseOptions,
|
|
4388
|
+
...options.headers
|
|
4389
|
+
};
|
|
4390
|
+
return {
|
|
4391
|
+
url: toPathString(localVarUrlObj),
|
|
4392
|
+
options: localVarRequestOptions
|
|
4393
|
+
};
|
|
4394
|
+
},
|
|
4277
4395
|
getMotionGroupKinematicModel: async (motionGroupModel, options = {}) => {
|
|
4278
4396
|
assertParamExists("getMotionGroupKinematicModel", "motionGroupModel", motionGroupModel);
|
|
4279
4397
|
const localVarPath = `/motion-group-models/{motion-group-model}/kinematic`.replace(`{motion-group-model}`, encodeURIComponent(String(motionGroupModel)));
|
|
@@ -4300,6 +4418,32 @@ const MotionGroupModelsApiAxiosParamCreator = function(configuration) {
|
|
|
4300
4418
|
options: localVarRequestOptions
|
|
4301
4419
|
};
|
|
4302
4420
|
},
|
|
4421
|
+
getMotionGroupLimitModel: async (motionGroupModel, options = {}) => {
|
|
4422
|
+
assertParamExists("getMotionGroupLimitModel", "motionGroupModel", motionGroupModel);
|
|
4423
|
+
const localVarPath = `/experimental/motion-group-models/{motion-group-model}/limit`.replace(`{motion-group-model}`, encodeURIComponent(String(motionGroupModel)));
|
|
4424
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
4425
|
+
let baseOptions;
|
|
4426
|
+
if (configuration) baseOptions = configuration.baseOptions;
|
|
4427
|
+
const localVarRequestOptions = {
|
|
4428
|
+
method: "GET",
|
|
4429
|
+
...baseOptions,
|
|
4430
|
+
...options
|
|
4431
|
+
};
|
|
4432
|
+
const localVarHeaderParameter = {};
|
|
4433
|
+
const localVarQueryParameter = {};
|
|
4434
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
4435
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
4436
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
4437
|
+
localVarRequestOptions.headers = {
|
|
4438
|
+
...localVarHeaderParameter,
|
|
4439
|
+
...headersFromBaseOptions,
|
|
4440
|
+
...options.headers
|
|
4441
|
+
};
|
|
4442
|
+
return {
|
|
4443
|
+
url: toPathString(localVarUrlObj),
|
|
4444
|
+
options: localVarRequestOptions
|
|
4445
|
+
};
|
|
4446
|
+
},
|
|
4303
4447
|
getMotionGroupModels: async (options = {}) => {
|
|
4304
4448
|
const localVarUrlObj = new URL(`/motion-group-models`, DUMMY_BASE_URL);
|
|
4305
4449
|
let baseOptions;
|
|
@@ -4389,90 +4533,117 @@ const MotionGroupModelsApiFp = function(configuration) {
|
|
|
4389
4533
|
const localVarAxiosArgs = await localVarAxiosParamCreator.copyMotionGroupModel(motionGroupModel, copyMotionGroupModelRequest, options);
|
|
4390
4534
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
4391
4535
|
const localVarOperationServerBasePath = operationServerMap["MotionGroupModelsApi.copyMotionGroupModel"]?.[localVarOperationServerIndex]?.url;
|
|
4392
|
-
return (axios$
|
|
4536
|
+
return (axios$81, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$81, localVarOperationServerBasePath || basePath);
|
|
4393
4537
|
},
|
|
4394
4538
|
async deleteExperimentalMotionGroupModel(motionGroupModel, options) {
|
|
4395
4539
|
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteExperimentalMotionGroupModel(motionGroupModel, options);
|
|
4396
4540
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
4397
4541
|
const localVarOperationServerBasePath = operationServerMap["MotionGroupModelsApi.deleteExperimentalMotionGroupModel"]?.[localVarOperationServerIndex]?.url;
|
|
4398
|
-
return (axios$
|
|
4542
|
+
return (axios$82, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$82, localVarOperationServerBasePath || basePath);
|
|
4399
4543
|
},
|
|
4400
4544
|
async exportMotionGroupModel(motionGroupModel, options) {
|
|
4401
4545
|
const localVarAxiosArgs = await localVarAxiosParamCreator.exportMotionGroupModel(motionGroupModel, options);
|
|
4402
4546
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
4403
4547
|
const localVarOperationServerBasePath = operationServerMap["MotionGroupModelsApi.exportMotionGroupModel"]?.[localVarOperationServerIndex]?.url;
|
|
4404
|
-
return (axios$
|
|
4548
|
+
return (axios$83, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$83, localVarOperationServerBasePath || basePath);
|
|
4405
4549
|
},
|
|
4406
4550
|
async getMotionGroupCollisionModel(motionGroupModel, options) {
|
|
4407
4551
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getMotionGroupCollisionModel(motionGroupModel, options);
|
|
4408
4552
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
4409
4553
|
const localVarOperationServerBasePath = operationServerMap["MotionGroupModelsApi.getMotionGroupCollisionModel"]?.[localVarOperationServerIndex]?.url;
|
|
4410
|
-
return (axios$
|
|
4554
|
+
return (axios$84, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$84, localVarOperationServerBasePath || basePath);
|
|
4555
|
+
},
|
|
4556
|
+
async getMotionGroupDynamicModel(motionGroupModel, options) {
|
|
4557
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getMotionGroupDynamicModel(motionGroupModel, options);
|
|
4558
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
4559
|
+
const localVarOperationServerBasePath = operationServerMap["MotionGroupModelsApi.getMotionGroupDynamicModel"]?.[localVarOperationServerIndex]?.url;
|
|
4560
|
+
return (axios$85, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$85, localVarOperationServerBasePath || basePath);
|
|
4411
4561
|
},
|
|
4412
4562
|
async getMotionGroupGlbModel(motionGroupModel, options) {
|
|
4413
4563
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getMotionGroupGlbModel(motionGroupModel, options);
|
|
4414
4564
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
4415
4565
|
const localVarOperationServerBasePath = operationServerMap["MotionGroupModelsApi.getMotionGroupGlbModel"]?.[localVarOperationServerIndex]?.url;
|
|
4416
|
-
return (axios$
|
|
4566
|
+
return (axios$86, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$86, localVarOperationServerBasePath || basePath);
|
|
4567
|
+
},
|
|
4568
|
+
async getMotionGroupHomejoints(motionGroupModel, options) {
|
|
4569
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getMotionGroupHomejoints(motionGroupModel, options);
|
|
4570
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
4571
|
+
const localVarOperationServerBasePath = operationServerMap["MotionGroupModelsApi.getMotionGroupHomejoints"]?.[localVarOperationServerIndex]?.url;
|
|
4572
|
+
return (axios$87, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$87, localVarOperationServerBasePath || basePath);
|
|
4417
4573
|
},
|
|
4418
4574
|
async getMotionGroupKinematicModel(motionGroupModel, options) {
|
|
4419
4575
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getMotionGroupKinematicModel(motionGroupModel, options);
|
|
4420
4576
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
4421
4577
|
const localVarOperationServerBasePath = operationServerMap["MotionGroupModelsApi.getMotionGroupKinematicModel"]?.[localVarOperationServerIndex]?.url;
|
|
4422
|
-
return (axios$
|
|
4578
|
+
return (axios$88, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$88, localVarOperationServerBasePath || basePath);
|
|
4579
|
+
},
|
|
4580
|
+
async getMotionGroupLimitModel(motionGroupModel, options) {
|
|
4581
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getMotionGroupLimitModel(motionGroupModel, options);
|
|
4582
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
4583
|
+
const localVarOperationServerBasePath = operationServerMap["MotionGroupModelsApi.getMotionGroupLimitModel"]?.[localVarOperationServerIndex]?.url;
|
|
4584
|
+
return (axios$89, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$89, localVarOperationServerBasePath || basePath);
|
|
4423
4585
|
},
|
|
4424
4586
|
async getMotionGroupModels(options) {
|
|
4425
4587
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getMotionGroupModels(options);
|
|
4426
4588
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
4427
4589
|
const localVarOperationServerBasePath = operationServerMap["MotionGroupModelsApi.getMotionGroupModels"]?.[localVarOperationServerIndex]?.url;
|
|
4428
|
-
return (axios$
|
|
4590
|
+
return (axios$90, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$90, localVarOperationServerBasePath || basePath);
|
|
4429
4591
|
},
|
|
4430
4592
|
async getMotionGroupUsdModel(motionGroupModel, options) {
|
|
4431
4593
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getMotionGroupUsdModel(motionGroupModel, options);
|
|
4432
4594
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
4433
4595
|
const localVarOperationServerBasePath = operationServerMap["MotionGroupModelsApi.getMotionGroupUsdModel"]?.[localVarOperationServerIndex]?.url;
|
|
4434
|
-
return (axios$
|
|
4596
|
+
return (axios$91, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$91, localVarOperationServerBasePath || basePath);
|
|
4435
4597
|
},
|
|
4436
4598
|
async importMotionGroupModel(body, options) {
|
|
4437
4599
|
const localVarAxiosArgs = await localVarAxiosParamCreator.importMotionGroupModel(body, options);
|
|
4438
4600
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
4439
4601
|
const localVarOperationServerBasePath = operationServerMap["MotionGroupModelsApi.importMotionGroupModel"]?.[localVarOperationServerIndex]?.url;
|
|
4440
|
-
return (axios$
|
|
4602
|
+
return (axios$92, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$92, localVarOperationServerBasePath || basePath);
|
|
4441
4603
|
}
|
|
4442
4604
|
};
|
|
4443
4605
|
};
|
|
4444
4606
|
/**
|
|
4445
4607
|
* MotionGroupModelsApi - factory interface
|
|
4446
4608
|
*/
|
|
4447
|
-
const MotionGroupModelsApiFactory = function(configuration, basePath, axios$
|
|
4609
|
+
const MotionGroupModelsApiFactory = function(configuration, basePath, axios$93) {
|
|
4448
4610
|
const localVarFp = MotionGroupModelsApiFp(configuration);
|
|
4449
4611
|
return {
|
|
4450
4612
|
copyMotionGroupModel(motionGroupModel, copyMotionGroupModelRequest, options) {
|
|
4451
|
-
return localVarFp.copyMotionGroupModel(motionGroupModel, copyMotionGroupModelRequest, options).then((request) => request(axios$
|
|
4613
|
+
return localVarFp.copyMotionGroupModel(motionGroupModel, copyMotionGroupModelRequest, options).then((request) => request(axios$93, basePath));
|
|
4452
4614
|
},
|
|
4453
4615
|
deleteExperimentalMotionGroupModel(motionGroupModel, options) {
|
|
4454
|
-
return localVarFp.deleteExperimentalMotionGroupModel(motionGroupModel, options).then((request) => request(axios$
|
|
4616
|
+
return localVarFp.deleteExperimentalMotionGroupModel(motionGroupModel, options).then((request) => request(axios$93, basePath));
|
|
4455
4617
|
},
|
|
4456
4618
|
exportMotionGroupModel(motionGroupModel, options) {
|
|
4457
|
-
return localVarFp.exportMotionGroupModel(motionGroupModel, options).then((request) => request(axios$
|
|
4619
|
+
return localVarFp.exportMotionGroupModel(motionGroupModel, options).then((request) => request(axios$93, basePath));
|
|
4458
4620
|
},
|
|
4459
4621
|
getMotionGroupCollisionModel(motionGroupModel, options) {
|
|
4460
|
-
return localVarFp.getMotionGroupCollisionModel(motionGroupModel, options).then((request) => request(axios$
|
|
4622
|
+
return localVarFp.getMotionGroupCollisionModel(motionGroupModel, options).then((request) => request(axios$93, basePath));
|
|
4623
|
+
},
|
|
4624
|
+
getMotionGroupDynamicModel(motionGroupModel, options) {
|
|
4625
|
+
return localVarFp.getMotionGroupDynamicModel(motionGroupModel, options).then((request) => request(axios$93, basePath));
|
|
4461
4626
|
},
|
|
4462
4627
|
getMotionGroupGlbModel(motionGroupModel, options) {
|
|
4463
|
-
return localVarFp.getMotionGroupGlbModel(motionGroupModel, options).then((request) => request(axios$
|
|
4628
|
+
return localVarFp.getMotionGroupGlbModel(motionGroupModel, options).then((request) => request(axios$93, basePath));
|
|
4629
|
+
},
|
|
4630
|
+
getMotionGroupHomejoints(motionGroupModel, options) {
|
|
4631
|
+
return localVarFp.getMotionGroupHomejoints(motionGroupModel, options).then((request) => request(axios$93, basePath));
|
|
4464
4632
|
},
|
|
4465
4633
|
getMotionGroupKinematicModel(motionGroupModel, options) {
|
|
4466
|
-
return localVarFp.getMotionGroupKinematicModel(motionGroupModel, options).then((request) => request(axios$
|
|
4634
|
+
return localVarFp.getMotionGroupKinematicModel(motionGroupModel, options).then((request) => request(axios$93, basePath));
|
|
4635
|
+
},
|
|
4636
|
+
getMotionGroupLimitModel(motionGroupModel, options) {
|
|
4637
|
+
return localVarFp.getMotionGroupLimitModel(motionGroupModel, options).then((request) => request(axios$93, basePath));
|
|
4467
4638
|
},
|
|
4468
4639
|
getMotionGroupModels(options) {
|
|
4469
|
-
return localVarFp.getMotionGroupModels(options).then((request) => request(axios$
|
|
4640
|
+
return localVarFp.getMotionGroupModels(options).then((request) => request(axios$93, basePath));
|
|
4470
4641
|
},
|
|
4471
4642
|
getMotionGroupUsdModel(motionGroupModel, options) {
|
|
4472
|
-
return localVarFp.getMotionGroupUsdModel(motionGroupModel, options).then((request) => request(axios$
|
|
4643
|
+
return localVarFp.getMotionGroupUsdModel(motionGroupModel, options).then((request) => request(axios$93, basePath));
|
|
4473
4644
|
},
|
|
4474
4645
|
importMotionGroupModel(body, options) {
|
|
4475
|
-
return localVarFp.importMotionGroupModel(body, options).then((request) => request(axios$
|
|
4646
|
+
return localVarFp.importMotionGroupModel(body, options).then((request) => request(axios$93, basePath));
|
|
4476
4647
|
}
|
|
4477
4648
|
};
|
|
4478
4649
|
};
|
|
@@ -4522,6 +4693,16 @@ var MotionGroupModelsApi = class extends BaseAPI {
|
|
|
4522
4693
|
return MotionGroupModelsApiFp(this.configuration).getMotionGroupCollisionModel(motionGroupModel, options).then((request) => request(this.axios, this.basePath));
|
|
4523
4694
|
}
|
|
4524
4695
|
/**
|
|
4696
|
+
* **Required permissions:** `can_access_system` - View system status and metadata ___ Returns the dynamics model (mass, center of mass, inertia, friction parameters) for the given motion group model. See [getMotionGroupModels](#/operations/getMotionGroupModels) for supported motion group models.
|
|
4697
|
+
* @summary Get Dynamics
|
|
4698
|
+
* @param {string} motionGroupModel Unique identifier for the model of a motion group, e.g., `UniversalRobots_UR10e`. Get the `model` of a configured motion group with [getOptimizerConfiguration](#/operations/getOptimizerConfiguration).
|
|
4699
|
+
* @param {*} [options] Override http request option.
|
|
4700
|
+
* @throws {RequiredError}
|
|
4701
|
+
*/
|
|
4702
|
+
getMotionGroupDynamicModel(motionGroupModel, options) {
|
|
4703
|
+
return MotionGroupModelsApiFp(this.configuration).getMotionGroupDynamicModel(motionGroupModel, options).then((request) => request(this.axios, this.basePath));
|
|
4704
|
+
}
|
|
4705
|
+
/**
|
|
4525
4706
|
* **Required permissions:** `can_access_system` - View system status and metadata ___ Returns the GLB asset for the specified motion group model. See [getMotionGroupModels](#/operations/getMotionGroupModels) for supported identifiers.
|
|
4526
4707
|
* @summary Download GLB Model
|
|
4527
4708
|
* @param {string} motionGroupModel Unique identifier for the model of a motion group, e.g., `UniversalRobots_UR10e`. Get the `model` of a configured motion group with [getOptimizerConfiguration](#/operations/getOptimizerConfiguration).
|
|
@@ -4532,6 +4713,16 @@ var MotionGroupModelsApi = class extends BaseAPI {
|
|
|
4532
4713
|
return MotionGroupModelsApiFp(this.configuration).getMotionGroupGlbModel(motionGroupModel, options).then((request) => request(this.axios, this.basePath));
|
|
4533
4714
|
}
|
|
4534
4715
|
/**
|
|
4716
|
+
* **Required permissions:** `can_access_system` - View system status and metadata ___ Returns the default joint positions from which a virtual robot is started. See [getMotionGroupModels](#/operations/getMotionGroupModels) for supported motion group models.
|
|
4717
|
+
* @summary Get Homejoints
|
|
4718
|
+
* @param {string} motionGroupModel Unique identifier for the model of a motion group, e.g., `UniversalRobots_UR10e`. Get the `model` of a configured motion group with [getOptimizerConfiguration](#/operations/getOptimizerConfiguration).
|
|
4719
|
+
* @param {*} [options] Override http request option.
|
|
4720
|
+
* @throws {RequiredError}
|
|
4721
|
+
*/
|
|
4722
|
+
getMotionGroupHomejoints(motionGroupModel, options) {
|
|
4723
|
+
return MotionGroupModelsApiFp(this.configuration).getMotionGroupHomejoints(motionGroupModel, options).then((request) => request(this.axios, this.basePath));
|
|
4724
|
+
}
|
|
4725
|
+
/**
|
|
4535
4726
|
* **Required permissions:** `can_access_system` - View system status and metadata ___ Returns the kinematics model (DH parameters) for the given motion group model. See [getMotionGroupModels](#/operations/getMotionGroupModels) for supported motion group models.
|
|
4536
4727
|
* @summary Get Kinematics
|
|
4537
4728
|
* @param {string} motionGroupModel Unique identifier for the model of a motion group, e.g., `UniversalRobots_UR10e`. Get the `model` of a configured motion group with [getOptimizerConfiguration](#/operations/getOptimizerConfiguration).
|
|
@@ -4542,6 +4733,16 @@ var MotionGroupModelsApi = class extends BaseAPI {
|
|
|
4542
4733
|
return MotionGroupModelsApiFp(this.configuration).getMotionGroupKinematicModel(motionGroupModel, options).then((request) => request(this.axios, this.basePath));
|
|
4543
4734
|
}
|
|
4544
4735
|
/**
|
|
4736
|
+
* **Required permissions:** `can_access_system` - View system status and metadata ___ Returns the operation limits for the given motion group model. See [getMotionGroupModels](#/operations/getMotionGroupModels) for supported motion group models.
|
|
4737
|
+
* @summary Get Limits
|
|
4738
|
+
* @param {string} motionGroupModel Unique identifier for the model of a motion group, e.g., `UniversalRobots_UR10e`. Get the `model` of a configured motion group with [getOptimizerConfiguration](#/operations/getOptimizerConfiguration).
|
|
4739
|
+
* @param {*} [options] Override http request option.
|
|
4740
|
+
* @throws {RequiredError}
|
|
4741
|
+
*/
|
|
4742
|
+
getMotionGroupLimitModel(motionGroupModel, options) {
|
|
4743
|
+
return MotionGroupModelsApiFp(this.configuration).getMotionGroupLimitModel(motionGroupModel, options).then((request) => request(this.axios, this.basePath));
|
|
4744
|
+
}
|
|
4745
|
+
/**
|
|
4545
4746
|
* **Required permissions:** `can_access_system` - View system status and metadata ___ Returns the list of supported motion group models.
|
|
4546
4747
|
* @summary Motion Group Models
|
|
4547
4748
|
* @param {*} [options] Override http request option.
|
|
@@ -4664,36 +4865,36 @@ const NOVACloudApiFp = function(configuration) {
|
|
|
4664
4865
|
const localVarAxiosArgs = await localVarAxiosParamCreator.connectToNovaCloud(completionTimeout, cloudConnectionRequest, options);
|
|
4665
4866
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
4666
4867
|
const localVarOperationServerBasePath = operationServerMap["NOVACloudApi.connectToNovaCloud"]?.[localVarOperationServerIndex]?.url;
|
|
4667
|
-
return (axios$
|
|
4868
|
+
return (axios$94, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$94, localVarOperationServerBasePath || basePath);
|
|
4668
4869
|
},
|
|
4669
4870
|
async disconnectFromNovaCloud(completionTimeout, options) {
|
|
4670
4871
|
const localVarAxiosArgs = await localVarAxiosParamCreator.disconnectFromNovaCloud(completionTimeout, options);
|
|
4671
4872
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
4672
4873
|
const localVarOperationServerBasePath = operationServerMap["NOVACloudApi.disconnectFromNovaCloud"]?.[localVarOperationServerIndex]?.url;
|
|
4673
|
-
return (axios$
|
|
4874
|
+
return (axios$95, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$95, localVarOperationServerBasePath || basePath);
|
|
4674
4875
|
},
|
|
4675
4876
|
async getNovaCloudConfig(options) {
|
|
4676
4877
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getNovaCloudConfig(options);
|
|
4677
4878
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
4678
4879
|
const localVarOperationServerBasePath = operationServerMap["NOVACloudApi.getNovaCloudConfig"]?.[localVarOperationServerIndex]?.url;
|
|
4679
|
-
return (axios$
|
|
4880
|
+
return (axios$96, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$96, localVarOperationServerBasePath || basePath);
|
|
4680
4881
|
}
|
|
4681
4882
|
};
|
|
4682
4883
|
};
|
|
4683
4884
|
/**
|
|
4684
4885
|
* NOVACloudApi - factory interface
|
|
4685
4886
|
*/
|
|
4686
|
-
const NOVACloudApiFactory = function(configuration, basePath, axios$
|
|
4887
|
+
const NOVACloudApiFactory = function(configuration, basePath, axios$97) {
|
|
4687
4888
|
const localVarFp = NOVACloudApiFp(configuration);
|
|
4688
4889
|
return {
|
|
4689
4890
|
connectToNovaCloud(completionTimeout, cloudConnectionRequest, options) {
|
|
4690
|
-
return localVarFp.connectToNovaCloud(completionTimeout, cloudConnectionRequest, options).then((request) => request(axios$
|
|
4891
|
+
return localVarFp.connectToNovaCloud(completionTimeout, cloudConnectionRequest, options).then((request) => request(axios$97, basePath));
|
|
4691
4892
|
},
|
|
4692
4893
|
disconnectFromNovaCloud(completionTimeout, options) {
|
|
4693
|
-
return localVarFp.disconnectFromNovaCloud(completionTimeout, options).then((request) => request(axios$
|
|
4894
|
+
return localVarFp.disconnectFromNovaCloud(completionTimeout, options).then((request) => request(axios$97, basePath));
|
|
4694
4895
|
},
|
|
4695
4896
|
getNovaCloudConfig(options) {
|
|
4696
|
-
return localVarFp.getNovaCloudConfig(options).then((request) => request(axios$
|
|
4897
|
+
return localVarFp.getNovaCloudConfig(options).then((request) => request(axios$97, basePath));
|
|
4697
4898
|
}
|
|
4698
4899
|
};
|
|
4699
4900
|
};
|
|
@@ -4859,45 +5060,45 @@ const ProgramApiFp = function(configuration) {
|
|
|
4859
5060
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getProgram(cell, program, options);
|
|
4860
5061
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
4861
5062
|
const localVarOperationServerBasePath = operationServerMap["ProgramApi.getProgram"]?.[localVarOperationServerIndex]?.url;
|
|
4862
|
-
return (axios$
|
|
5063
|
+
return (axios$98, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$98, localVarOperationServerBasePath || basePath);
|
|
4863
5064
|
},
|
|
4864
5065
|
async listPrograms(cell, options) {
|
|
4865
5066
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listPrograms(cell, options);
|
|
4866
5067
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
4867
5068
|
const localVarOperationServerBasePath = operationServerMap["ProgramApi.listPrograms"]?.[localVarOperationServerIndex]?.url;
|
|
4868
|
-
return (axios$
|
|
5069
|
+
return (axios$99, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$99, localVarOperationServerBasePath || basePath);
|
|
4869
5070
|
},
|
|
4870
5071
|
async startProgram(cell, program, programStartRequest, options) {
|
|
4871
5072
|
const localVarAxiosArgs = await localVarAxiosParamCreator.startProgram(cell, program, programStartRequest, options);
|
|
4872
5073
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
4873
5074
|
const localVarOperationServerBasePath = operationServerMap["ProgramApi.startProgram"]?.[localVarOperationServerIndex]?.url;
|
|
4874
|
-
return (axios$
|
|
5075
|
+
return (axios$100, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$100, localVarOperationServerBasePath || basePath);
|
|
4875
5076
|
},
|
|
4876
5077
|
async stopProgram(cell, program, options) {
|
|
4877
5078
|
const localVarAxiosArgs = await localVarAxiosParamCreator.stopProgram(cell, program, options);
|
|
4878
5079
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
4879
5080
|
const localVarOperationServerBasePath = operationServerMap["ProgramApi.stopProgram"]?.[localVarOperationServerIndex]?.url;
|
|
4880
|
-
return (axios$
|
|
5081
|
+
return (axios$101, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$101, localVarOperationServerBasePath || basePath);
|
|
4881
5082
|
}
|
|
4882
5083
|
};
|
|
4883
5084
|
};
|
|
4884
5085
|
/**
|
|
4885
5086
|
* ProgramApi - factory interface
|
|
4886
5087
|
*/
|
|
4887
|
-
const ProgramApiFactory = function(configuration, basePath, axios$
|
|
5088
|
+
const ProgramApiFactory = function(configuration, basePath, axios$102) {
|
|
4888
5089
|
const localVarFp = ProgramApiFp(configuration);
|
|
4889
5090
|
return {
|
|
4890
5091
|
getProgram(cell, program, options) {
|
|
4891
|
-
return localVarFp.getProgram(cell, program, options).then((request) => request(axios$
|
|
5092
|
+
return localVarFp.getProgram(cell, program, options).then((request) => request(axios$102, basePath));
|
|
4892
5093
|
},
|
|
4893
5094
|
listPrograms(cell, options) {
|
|
4894
|
-
return localVarFp.listPrograms(cell, options).then((request) => request(axios$
|
|
5095
|
+
return localVarFp.listPrograms(cell, options).then((request) => request(axios$102, basePath));
|
|
4895
5096
|
},
|
|
4896
5097
|
startProgram(cell, program, programStartRequest, options) {
|
|
4897
|
-
return localVarFp.startProgram(cell, program, programStartRequest, options).then((request) => request(axios$
|
|
5098
|
+
return localVarFp.startProgram(cell, program, programStartRequest, options).then((request) => request(axios$102, basePath));
|
|
4898
5099
|
},
|
|
4899
5100
|
stopProgram(cell, program, options) {
|
|
4900
|
-
return localVarFp.stopProgram(cell, program, options).then((request) => request(axios$
|
|
5101
|
+
return localVarFp.stopProgram(cell, program, options).then((request) => request(axios$102, basePath));
|
|
4901
5102
|
}
|
|
4902
5103
|
};
|
|
4903
5104
|
};
|
|
@@ -5018,27 +5219,27 @@ const RobotConfigurationsApiFp = function(configuration) {
|
|
|
5018
5219
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getControllerConfigFromArpScan(robotControllerConfigurationRequest, options);
|
|
5019
5220
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
5020
5221
|
const localVarOperationServerBasePath = operationServerMap["RobotConfigurationsApi.getControllerConfigFromArpScan"]?.[localVarOperationServerIndex]?.url;
|
|
5021
|
-
return (axios$
|
|
5222
|
+
return (axios$103, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$103, localVarOperationServerBasePath || basePath);
|
|
5022
5223
|
},
|
|
5023
5224
|
async getRobotConfigurations(options) {
|
|
5024
5225
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getRobotConfigurations(options);
|
|
5025
5226
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
5026
5227
|
const localVarOperationServerBasePath = operationServerMap["RobotConfigurationsApi.getRobotConfigurations"]?.[localVarOperationServerIndex]?.url;
|
|
5027
|
-
return (axios$
|
|
5228
|
+
return (axios$104, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$104, localVarOperationServerBasePath || basePath);
|
|
5028
5229
|
}
|
|
5029
5230
|
};
|
|
5030
5231
|
};
|
|
5031
5232
|
/**
|
|
5032
5233
|
* RobotConfigurationsApi - factory interface
|
|
5033
5234
|
*/
|
|
5034
|
-
const RobotConfigurationsApiFactory = function(configuration, basePath, axios$
|
|
5235
|
+
const RobotConfigurationsApiFactory = function(configuration, basePath, axios$105) {
|
|
5035
5236
|
const localVarFp = RobotConfigurationsApiFp(configuration);
|
|
5036
5237
|
return {
|
|
5037
5238
|
getControllerConfigFromArpScan(robotControllerConfigurationRequest, options) {
|
|
5038
|
-
return localVarFp.getControllerConfigFromArpScan(robotControllerConfigurationRequest, options).then((request) => request(axios$
|
|
5239
|
+
return localVarFp.getControllerConfigFromArpScan(robotControllerConfigurationRequest, options).then((request) => request(axios$105, basePath));
|
|
5039
5240
|
},
|
|
5040
5241
|
getRobotConfigurations(options) {
|
|
5041
|
-
return localVarFp.getRobotConfigurations(options).then((request) => request(axios$
|
|
5242
|
+
return localVarFp.getRobotConfigurations(options).then((request) => request(axios$105, basePath));
|
|
5042
5243
|
}
|
|
5043
5244
|
};
|
|
5044
5245
|
};
|
|
@@ -5104,16 +5305,16 @@ const SessionApiFp = function(configuration) {
|
|
|
5104
5305
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getSession(options);
|
|
5105
5306
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
5106
5307
|
const localVarOperationServerBasePath = operationServerMap["SessionApi.getSession"]?.[localVarOperationServerIndex]?.url;
|
|
5107
|
-
return (axios$
|
|
5308
|
+
return (axios$106, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$106, localVarOperationServerBasePath || basePath);
|
|
5108
5309
|
} };
|
|
5109
5310
|
};
|
|
5110
5311
|
/**
|
|
5111
5312
|
* SessionApi - factory interface
|
|
5112
5313
|
*/
|
|
5113
|
-
const SessionApiFactory = function(configuration, basePath, axios$
|
|
5314
|
+
const SessionApiFactory = function(configuration, basePath, axios$107) {
|
|
5114
5315
|
const localVarFp = SessionApiFp(configuration);
|
|
5115
5316
|
return { getSession(options) {
|
|
5116
|
-
return localVarFp.getSession(options).then((request) => request(axios$
|
|
5317
|
+
return localVarFp.getSession(options).then((request) => request(axios$107, basePath));
|
|
5117
5318
|
} };
|
|
5118
5319
|
};
|
|
5119
5320
|
/**
|
|
@@ -5555,144 +5756,144 @@ const StoreCollisionComponentsApiFp = function(configuration) {
|
|
|
5555
5756
|
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteStoredCollider(cell, collider, options);
|
|
5556
5757
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
5557
5758
|
const localVarOperationServerBasePath = operationServerMap["StoreCollisionComponentsApi.deleteStoredCollider"]?.[localVarOperationServerIndex]?.url;
|
|
5558
|
-
return (axios$
|
|
5759
|
+
return (axios$108, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$108, localVarOperationServerBasePath || basePath);
|
|
5559
5760
|
},
|
|
5560
5761
|
async deleteStoredCollisionLinkChain(cell, linkChain, options) {
|
|
5561
5762
|
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteStoredCollisionLinkChain(cell, linkChain, options);
|
|
5562
5763
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
5563
5764
|
const localVarOperationServerBasePath = operationServerMap["StoreCollisionComponentsApi.deleteStoredCollisionLinkChain"]?.[localVarOperationServerIndex]?.url;
|
|
5564
|
-
return (axios$
|
|
5765
|
+
return (axios$109, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$109, localVarOperationServerBasePath || basePath);
|
|
5565
5766
|
},
|
|
5566
5767
|
async deleteStoredCollisionTool(cell, tool, options) {
|
|
5567
5768
|
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteStoredCollisionTool(cell, tool, options);
|
|
5568
5769
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
5569
5770
|
const localVarOperationServerBasePath = operationServerMap["StoreCollisionComponentsApi.deleteStoredCollisionTool"]?.[localVarOperationServerIndex]?.url;
|
|
5570
|
-
return (axios$
|
|
5771
|
+
return (axios$110, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$110, localVarOperationServerBasePath || basePath);
|
|
5571
5772
|
},
|
|
5572
5773
|
async getStoredCollider(cell, collider, options) {
|
|
5573
5774
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getStoredCollider(cell, collider, options);
|
|
5574
5775
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
5575
5776
|
const localVarOperationServerBasePath = operationServerMap["StoreCollisionComponentsApi.getStoredCollider"]?.[localVarOperationServerIndex]?.url;
|
|
5576
|
-
return (axios$
|
|
5777
|
+
return (axios$111, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$111, localVarOperationServerBasePath || basePath);
|
|
5577
5778
|
},
|
|
5578
5779
|
async getStoredCollisionLinkChain(cell, linkChain, options) {
|
|
5579
5780
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getStoredCollisionLinkChain(cell, linkChain, options);
|
|
5580
5781
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
5581
5782
|
const localVarOperationServerBasePath = operationServerMap["StoreCollisionComponentsApi.getStoredCollisionLinkChain"]?.[localVarOperationServerIndex]?.url;
|
|
5582
|
-
return (axios$
|
|
5783
|
+
return (axios$112, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$112, localVarOperationServerBasePath || basePath);
|
|
5583
5784
|
},
|
|
5584
5785
|
async getStoredCollisionTool(cell, tool, options) {
|
|
5585
5786
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getStoredCollisionTool(cell, tool, options);
|
|
5586
5787
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
5587
5788
|
const localVarOperationServerBasePath = operationServerMap["StoreCollisionComponentsApi.getStoredCollisionTool"]?.[localVarOperationServerIndex]?.url;
|
|
5588
|
-
return (axios$
|
|
5789
|
+
return (axios$113, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$113, localVarOperationServerBasePath || basePath);
|
|
5589
5790
|
},
|
|
5590
5791
|
async listCollisionLinkChains(cell, options) {
|
|
5591
5792
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listCollisionLinkChains(cell, options);
|
|
5592
5793
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
5593
5794
|
const localVarOperationServerBasePath = operationServerMap["StoreCollisionComponentsApi.listCollisionLinkChains"]?.[localVarOperationServerIndex]?.url;
|
|
5594
|
-
return (axios$
|
|
5795
|
+
return (axios$114, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$114, localVarOperationServerBasePath || basePath);
|
|
5595
5796
|
},
|
|
5596
5797
|
async listCollisionLinkChainsKeys(cell, options) {
|
|
5597
5798
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listCollisionLinkChainsKeys(cell, options);
|
|
5598
5799
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
5599
5800
|
const localVarOperationServerBasePath = operationServerMap["StoreCollisionComponentsApi.listCollisionLinkChainsKeys"]?.[localVarOperationServerIndex]?.url;
|
|
5600
|
-
return (axios$
|
|
5801
|
+
return (axios$115, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$115, localVarOperationServerBasePath || basePath);
|
|
5601
5802
|
},
|
|
5602
5803
|
async listStoredColliders(cell, options) {
|
|
5603
5804
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listStoredColliders(cell, options);
|
|
5604
5805
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
5605
5806
|
const localVarOperationServerBasePath = operationServerMap["StoreCollisionComponentsApi.listStoredColliders"]?.[localVarOperationServerIndex]?.url;
|
|
5606
|
-
return (axios$
|
|
5807
|
+
return (axios$116, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$116, localVarOperationServerBasePath || basePath);
|
|
5607
5808
|
},
|
|
5608
5809
|
async listStoredCollidersKeys(cell, options) {
|
|
5609
5810
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listStoredCollidersKeys(cell, options);
|
|
5610
5811
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
5611
5812
|
const localVarOperationServerBasePath = operationServerMap["StoreCollisionComponentsApi.listStoredCollidersKeys"]?.[localVarOperationServerIndex]?.url;
|
|
5612
|
-
return (axios$
|
|
5813
|
+
return (axios$117, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$117, localVarOperationServerBasePath || basePath);
|
|
5613
5814
|
},
|
|
5614
5815
|
async listStoredCollisionTools(cell, options) {
|
|
5615
5816
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listStoredCollisionTools(cell, options);
|
|
5616
5817
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
5617
5818
|
const localVarOperationServerBasePath = operationServerMap["StoreCollisionComponentsApi.listStoredCollisionTools"]?.[localVarOperationServerIndex]?.url;
|
|
5618
|
-
return (axios$
|
|
5819
|
+
return (axios$118, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$118, localVarOperationServerBasePath || basePath);
|
|
5619
5820
|
},
|
|
5620
5821
|
async listStoredCollisionToolsKeys(cell, options) {
|
|
5621
5822
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listStoredCollisionToolsKeys(cell, options);
|
|
5622
5823
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
5623
5824
|
const localVarOperationServerBasePath = operationServerMap["StoreCollisionComponentsApi.listStoredCollisionToolsKeys"]?.[localVarOperationServerIndex]?.url;
|
|
5624
|
-
return (axios$
|
|
5825
|
+
return (axios$119, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$119, localVarOperationServerBasePath || basePath);
|
|
5625
5826
|
},
|
|
5626
5827
|
async storeCollider(cell, collider, collider2, options) {
|
|
5627
5828
|
const localVarAxiosArgs = await localVarAxiosParamCreator.storeCollider(cell, collider, collider2, options);
|
|
5628
5829
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
5629
5830
|
const localVarOperationServerBasePath = operationServerMap["StoreCollisionComponentsApi.storeCollider"]?.[localVarOperationServerIndex]?.url;
|
|
5630
|
-
return (axios$
|
|
5831
|
+
return (axios$120, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$120, localVarOperationServerBasePath || basePath);
|
|
5631
5832
|
},
|
|
5632
5833
|
async storeCollisionLinkChain(cell, linkChain, collider, options) {
|
|
5633
5834
|
const localVarAxiosArgs = await localVarAxiosParamCreator.storeCollisionLinkChain(cell, linkChain, collider, options);
|
|
5634
5835
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
5635
5836
|
const localVarOperationServerBasePath = operationServerMap["StoreCollisionComponentsApi.storeCollisionLinkChain"]?.[localVarOperationServerIndex]?.url;
|
|
5636
|
-
return (axios$
|
|
5837
|
+
return (axios$121, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$121, localVarOperationServerBasePath || basePath);
|
|
5637
5838
|
},
|
|
5638
5839
|
async storeCollisionTool(cell, tool, requestBody, options) {
|
|
5639
5840
|
const localVarAxiosArgs = await localVarAxiosParamCreator.storeCollisionTool(cell, tool, requestBody, options);
|
|
5640
5841
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
5641
5842
|
const localVarOperationServerBasePath = operationServerMap["StoreCollisionComponentsApi.storeCollisionTool"]?.[localVarOperationServerIndex]?.url;
|
|
5642
|
-
return (axios$
|
|
5843
|
+
return (axios$122, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$122, localVarOperationServerBasePath || basePath);
|
|
5643
5844
|
}
|
|
5644
5845
|
};
|
|
5645
5846
|
};
|
|
5646
5847
|
/**
|
|
5647
5848
|
* StoreCollisionComponentsApi - factory interface
|
|
5648
5849
|
*/
|
|
5649
|
-
const StoreCollisionComponentsApiFactory = function(configuration, basePath, axios$
|
|
5850
|
+
const StoreCollisionComponentsApiFactory = function(configuration, basePath, axios$123) {
|
|
5650
5851
|
const localVarFp = StoreCollisionComponentsApiFp(configuration);
|
|
5651
5852
|
return {
|
|
5652
5853
|
deleteStoredCollider(cell, collider, options) {
|
|
5653
|
-
return localVarFp.deleteStoredCollider(cell, collider, options).then((request) => request(axios$
|
|
5854
|
+
return localVarFp.deleteStoredCollider(cell, collider, options).then((request) => request(axios$123, basePath));
|
|
5654
5855
|
},
|
|
5655
5856
|
deleteStoredCollisionLinkChain(cell, linkChain, options) {
|
|
5656
|
-
return localVarFp.deleteStoredCollisionLinkChain(cell, linkChain, options).then((request) => request(axios$
|
|
5857
|
+
return localVarFp.deleteStoredCollisionLinkChain(cell, linkChain, options).then((request) => request(axios$123, basePath));
|
|
5657
5858
|
},
|
|
5658
5859
|
deleteStoredCollisionTool(cell, tool, options) {
|
|
5659
|
-
return localVarFp.deleteStoredCollisionTool(cell, tool, options).then((request) => request(axios$
|
|
5860
|
+
return localVarFp.deleteStoredCollisionTool(cell, tool, options).then((request) => request(axios$123, basePath));
|
|
5660
5861
|
},
|
|
5661
5862
|
getStoredCollider(cell, collider, options) {
|
|
5662
|
-
return localVarFp.getStoredCollider(cell, collider, options).then((request) => request(axios$
|
|
5863
|
+
return localVarFp.getStoredCollider(cell, collider, options).then((request) => request(axios$123, basePath));
|
|
5663
5864
|
},
|
|
5664
5865
|
getStoredCollisionLinkChain(cell, linkChain, options) {
|
|
5665
|
-
return localVarFp.getStoredCollisionLinkChain(cell, linkChain, options).then((request) => request(axios$
|
|
5866
|
+
return localVarFp.getStoredCollisionLinkChain(cell, linkChain, options).then((request) => request(axios$123, basePath));
|
|
5666
5867
|
},
|
|
5667
5868
|
getStoredCollisionTool(cell, tool, options) {
|
|
5668
|
-
return localVarFp.getStoredCollisionTool(cell, tool, options).then((request) => request(axios$
|
|
5869
|
+
return localVarFp.getStoredCollisionTool(cell, tool, options).then((request) => request(axios$123, basePath));
|
|
5669
5870
|
},
|
|
5670
5871
|
listCollisionLinkChains(cell, options) {
|
|
5671
|
-
return localVarFp.listCollisionLinkChains(cell, options).then((request) => request(axios$
|
|
5872
|
+
return localVarFp.listCollisionLinkChains(cell, options).then((request) => request(axios$123, basePath));
|
|
5672
5873
|
},
|
|
5673
5874
|
listCollisionLinkChainsKeys(cell, options) {
|
|
5674
|
-
return localVarFp.listCollisionLinkChainsKeys(cell, options).then((request) => request(axios$
|
|
5875
|
+
return localVarFp.listCollisionLinkChainsKeys(cell, options).then((request) => request(axios$123, basePath));
|
|
5675
5876
|
},
|
|
5676
5877
|
listStoredColliders(cell, options) {
|
|
5677
|
-
return localVarFp.listStoredColliders(cell, options).then((request) => request(axios$
|
|
5878
|
+
return localVarFp.listStoredColliders(cell, options).then((request) => request(axios$123, basePath));
|
|
5678
5879
|
},
|
|
5679
5880
|
listStoredCollidersKeys(cell, options) {
|
|
5680
|
-
return localVarFp.listStoredCollidersKeys(cell, options).then((request) => request(axios$
|
|
5881
|
+
return localVarFp.listStoredCollidersKeys(cell, options).then((request) => request(axios$123, basePath));
|
|
5681
5882
|
},
|
|
5682
5883
|
listStoredCollisionTools(cell, options) {
|
|
5683
|
-
return localVarFp.listStoredCollisionTools(cell, options).then((request) => request(axios$
|
|
5884
|
+
return localVarFp.listStoredCollisionTools(cell, options).then((request) => request(axios$123, basePath));
|
|
5684
5885
|
},
|
|
5685
5886
|
listStoredCollisionToolsKeys(cell, options) {
|
|
5686
|
-
return localVarFp.listStoredCollisionToolsKeys(cell, options).then((request) => request(axios$
|
|
5887
|
+
return localVarFp.listStoredCollisionToolsKeys(cell, options).then((request) => request(axios$123, basePath));
|
|
5687
5888
|
},
|
|
5688
5889
|
storeCollider(cell, collider, collider2, options) {
|
|
5689
|
-
return localVarFp.storeCollider(cell, collider, collider2, options).then((request) => request(axios$
|
|
5890
|
+
return localVarFp.storeCollider(cell, collider, collider2, options).then((request) => request(axios$123, basePath));
|
|
5690
5891
|
},
|
|
5691
5892
|
storeCollisionLinkChain(cell, linkChain, collider, options) {
|
|
5692
|
-
return localVarFp.storeCollisionLinkChain(cell, linkChain, collider, options).then((request) => request(axios$
|
|
5893
|
+
return localVarFp.storeCollisionLinkChain(cell, linkChain, collider, options).then((request) => request(axios$123, basePath));
|
|
5693
5894
|
},
|
|
5694
5895
|
storeCollisionTool(cell, tool, requestBody, options) {
|
|
5695
|
-
return localVarFp.storeCollisionTool(cell, tool, requestBody, options).then((request) => request(axios$
|
|
5896
|
+
return localVarFp.storeCollisionTool(cell, tool, requestBody, options).then((request) => request(axios$123, basePath));
|
|
5696
5897
|
}
|
|
5697
5898
|
};
|
|
5698
5899
|
};
|
|
@@ -6016,54 +6217,54 @@ const StoreCollisionSetupsApiFp = function(configuration) {
|
|
|
6016
6217
|
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteStoredCollisionSetup(cell, setup, options);
|
|
6017
6218
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6018
6219
|
const localVarOperationServerBasePath = operationServerMap["StoreCollisionSetupsApi.deleteStoredCollisionSetup"]?.[localVarOperationServerIndex]?.url;
|
|
6019
|
-
return (axios$
|
|
6220
|
+
return (axios$124, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$124, localVarOperationServerBasePath || basePath);
|
|
6020
6221
|
},
|
|
6021
6222
|
async getStoredCollisionSetup(cell, setup, options) {
|
|
6022
6223
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getStoredCollisionSetup(cell, setup, options);
|
|
6023
6224
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6024
6225
|
const localVarOperationServerBasePath = operationServerMap["StoreCollisionSetupsApi.getStoredCollisionSetup"]?.[localVarOperationServerIndex]?.url;
|
|
6025
|
-
return (axios$
|
|
6226
|
+
return (axios$125, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$125, localVarOperationServerBasePath || basePath);
|
|
6026
6227
|
},
|
|
6027
6228
|
async listStoredCollisionSetups(cell, options) {
|
|
6028
6229
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listStoredCollisionSetups(cell, options);
|
|
6029
6230
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6030
6231
|
const localVarOperationServerBasePath = operationServerMap["StoreCollisionSetupsApi.listStoredCollisionSetups"]?.[localVarOperationServerIndex]?.url;
|
|
6031
|
-
return (axios$
|
|
6232
|
+
return (axios$126, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$126, localVarOperationServerBasePath || basePath);
|
|
6032
6233
|
},
|
|
6033
6234
|
async listStoredCollisionSetupsKeys(cell, options) {
|
|
6034
6235
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listStoredCollisionSetupsKeys(cell, options);
|
|
6035
6236
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6036
6237
|
const localVarOperationServerBasePath = operationServerMap["StoreCollisionSetupsApi.listStoredCollisionSetupsKeys"]?.[localVarOperationServerIndex]?.url;
|
|
6037
|
-
return (axios$
|
|
6238
|
+
return (axios$127, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$127, localVarOperationServerBasePath || basePath);
|
|
6038
6239
|
},
|
|
6039
6240
|
async storeCollisionSetup(cell, setup, collisionSetup, options) {
|
|
6040
6241
|
const localVarAxiosArgs = await localVarAxiosParamCreator.storeCollisionSetup(cell, setup, collisionSetup, options);
|
|
6041
6242
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6042
6243
|
const localVarOperationServerBasePath = operationServerMap["StoreCollisionSetupsApi.storeCollisionSetup"]?.[localVarOperationServerIndex]?.url;
|
|
6043
|
-
return (axios$
|
|
6244
|
+
return (axios$128, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$128, localVarOperationServerBasePath || basePath);
|
|
6044
6245
|
}
|
|
6045
6246
|
};
|
|
6046
6247
|
};
|
|
6047
6248
|
/**
|
|
6048
6249
|
* StoreCollisionSetupsApi - factory interface
|
|
6049
6250
|
*/
|
|
6050
|
-
const StoreCollisionSetupsApiFactory = function(configuration, basePath, axios$
|
|
6251
|
+
const StoreCollisionSetupsApiFactory = function(configuration, basePath, axios$129) {
|
|
6051
6252
|
const localVarFp = StoreCollisionSetupsApiFp(configuration);
|
|
6052
6253
|
return {
|
|
6053
6254
|
deleteStoredCollisionSetup(cell, setup, options) {
|
|
6054
|
-
return localVarFp.deleteStoredCollisionSetup(cell, setup, options).then((request) => request(axios$
|
|
6255
|
+
return localVarFp.deleteStoredCollisionSetup(cell, setup, options).then((request) => request(axios$129, basePath));
|
|
6055
6256
|
},
|
|
6056
6257
|
getStoredCollisionSetup(cell, setup, options) {
|
|
6057
|
-
return localVarFp.getStoredCollisionSetup(cell, setup, options).then((request) => request(axios$
|
|
6258
|
+
return localVarFp.getStoredCollisionSetup(cell, setup, options).then((request) => request(axios$129, basePath));
|
|
6058
6259
|
},
|
|
6059
6260
|
listStoredCollisionSetups(cell, options) {
|
|
6060
|
-
return localVarFp.listStoredCollisionSetups(cell, options).then((request) => request(axios$
|
|
6261
|
+
return localVarFp.listStoredCollisionSetups(cell, options).then((request) => request(axios$129, basePath));
|
|
6061
6262
|
},
|
|
6062
6263
|
listStoredCollisionSetupsKeys(cell, options) {
|
|
6063
|
-
return localVarFp.listStoredCollisionSetupsKeys(cell, options).then((request) => request(axios$
|
|
6264
|
+
return localVarFp.listStoredCollisionSetupsKeys(cell, options).then((request) => request(axios$129, basePath));
|
|
6064
6265
|
},
|
|
6065
6266
|
storeCollisionSetup(cell, setup, collisionSetup, options) {
|
|
6066
|
-
return localVarFp.storeCollisionSetup(cell, setup, collisionSetup, options).then((request) => request(axios$
|
|
6267
|
+
return localVarFp.storeCollisionSetup(cell, setup, collisionSetup, options).then((request) => request(axios$129, basePath));
|
|
6067
6268
|
}
|
|
6068
6269
|
};
|
|
6069
6270
|
};
|
|
@@ -6308,63 +6509,63 @@ const StoreObjectApiFp = function(configuration) {
|
|
|
6308
6509
|
const localVarAxiosArgs = await localVarAxiosParamCreator.clearAllObjects(cell, options);
|
|
6309
6510
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6310
6511
|
const localVarOperationServerBasePath = operationServerMap["StoreObjectApi.clearAllObjects"]?.[localVarOperationServerIndex]?.url;
|
|
6311
|
-
return (axios$
|
|
6512
|
+
return (axios$130, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$130, localVarOperationServerBasePath || basePath);
|
|
6312
6513
|
},
|
|
6313
6514
|
async deleteObject(cell, key, options) {
|
|
6314
6515
|
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteObject(cell, key, options);
|
|
6315
6516
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6316
6517
|
const localVarOperationServerBasePath = operationServerMap["StoreObjectApi.deleteObject"]?.[localVarOperationServerIndex]?.url;
|
|
6317
|
-
return (axios$
|
|
6518
|
+
return (axios$131, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$131, localVarOperationServerBasePath || basePath);
|
|
6318
6519
|
},
|
|
6319
6520
|
async getObject(cell, key, options) {
|
|
6320
6521
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getObject(cell, key, options);
|
|
6321
6522
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6322
6523
|
const localVarOperationServerBasePath = operationServerMap["StoreObjectApi.getObject"]?.[localVarOperationServerIndex]?.url;
|
|
6323
|
-
return (axios$
|
|
6524
|
+
return (axios$132, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$132, localVarOperationServerBasePath || basePath);
|
|
6324
6525
|
},
|
|
6325
6526
|
async getObjectMetadata(cell, key, options) {
|
|
6326
6527
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getObjectMetadata(cell, key, options);
|
|
6327
6528
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6328
6529
|
const localVarOperationServerBasePath = operationServerMap["StoreObjectApi.getObjectMetadata"]?.[localVarOperationServerIndex]?.url;
|
|
6329
|
-
return (axios$
|
|
6530
|
+
return (axios$133, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$133, localVarOperationServerBasePath || basePath);
|
|
6330
6531
|
},
|
|
6331
6532
|
async listAllObjectKeys(cell, options) {
|
|
6332
6533
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listAllObjectKeys(cell, options);
|
|
6333
6534
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6334
6535
|
const localVarOperationServerBasePath = operationServerMap["StoreObjectApi.listAllObjectKeys"]?.[localVarOperationServerIndex]?.url;
|
|
6335
|
-
return (axios$
|
|
6536
|
+
return (axios$134, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$134, localVarOperationServerBasePath || basePath);
|
|
6336
6537
|
},
|
|
6337
6538
|
async storeObject(cell, key, xMetadata, anyValue, options) {
|
|
6338
6539
|
const localVarAxiosArgs = await localVarAxiosParamCreator.storeObject(cell, key, xMetadata, anyValue, options);
|
|
6339
6540
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6340
6541
|
const localVarOperationServerBasePath = operationServerMap["StoreObjectApi.storeObject"]?.[localVarOperationServerIndex]?.url;
|
|
6341
|
-
return (axios$
|
|
6542
|
+
return (axios$135, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$135, localVarOperationServerBasePath || basePath);
|
|
6342
6543
|
}
|
|
6343
6544
|
};
|
|
6344
6545
|
};
|
|
6345
6546
|
/**
|
|
6346
6547
|
* StoreObjectApi - factory interface
|
|
6347
6548
|
*/
|
|
6348
|
-
const StoreObjectApiFactory = function(configuration, basePath, axios$
|
|
6549
|
+
const StoreObjectApiFactory = function(configuration, basePath, axios$136) {
|
|
6349
6550
|
const localVarFp = StoreObjectApiFp(configuration);
|
|
6350
6551
|
return {
|
|
6351
6552
|
clearAllObjects(cell, options) {
|
|
6352
|
-
return localVarFp.clearAllObjects(cell, options).then((request) => request(axios$
|
|
6553
|
+
return localVarFp.clearAllObjects(cell, options).then((request) => request(axios$136, basePath));
|
|
6353
6554
|
},
|
|
6354
6555
|
deleteObject(cell, key, options) {
|
|
6355
|
-
return localVarFp.deleteObject(cell, key, options).then((request) => request(axios$
|
|
6556
|
+
return localVarFp.deleteObject(cell, key, options).then((request) => request(axios$136, basePath));
|
|
6356
6557
|
},
|
|
6357
6558
|
getObject(cell, key, options) {
|
|
6358
|
-
return localVarFp.getObject(cell, key, options).then((request) => request(axios$
|
|
6559
|
+
return localVarFp.getObject(cell, key, options).then((request) => request(axios$136, basePath));
|
|
6359
6560
|
},
|
|
6360
6561
|
getObjectMetadata(cell, key, options) {
|
|
6361
|
-
return localVarFp.getObjectMetadata(cell, key, options).then((request) => request(axios$
|
|
6562
|
+
return localVarFp.getObjectMetadata(cell, key, options).then((request) => request(axios$136, basePath));
|
|
6362
6563
|
},
|
|
6363
6564
|
listAllObjectKeys(cell, options) {
|
|
6364
|
-
return localVarFp.listAllObjectKeys(cell, options).then((request) => request(axios$
|
|
6565
|
+
return localVarFp.listAllObjectKeys(cell, options).then((request) => request(axios$136, basePath));
|
|
6365
6566
|
},
|
|
6366
6567
|
storeObject(cell, key, xMetadata, anyValue, options) {
|
|
6367
|
-
return localVarFp.storeObject(cell, key, xMetadata, anyValue, options).then((request) => request(axios$
|
|
6568
|
+
return localVarFp.storeObject(cell, key, xMetadata, anyValue, options).then((request) => request(axios$136, basePath));
|
|
6368
6569
|
}
|
|
6369
6570
|
};
|
|
6370
6571
|
};
|
|
@@ -6760,117 +6961,117 @@ const SystemApiFp = function(configuration) {
|
|
|
6760
6961
|
const localVarAxiosArgs = await localVarAxiosParamCreator.backupConfiguration(resources, metadata, options);
|
|
6761
6962
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6762
6963
|
const localVarOperationServerBasePath = operationServerMap["SystemApi.backupConfiguration"]?.[localVarOperationServerIndex]?.url;
|
|
6763
|
-
return (axios$
|
|
6964
|
+
return (axios$137, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$137, localVarOperationServerBasePath || basePath);
|
|
6764
6965
|
},
|
|
6765
6966
|
async checkNovaVersionUpdate(channel, options) {
|
|
6766
6967
|
const localVarAxiosArgs = await localVarAxiosParamCreator.checkNovaVersionUpdate(channel, options);
|
|
6767
6968
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6768
6969
|
const localVarOperationServerBasePath = operationServerMap["SystemApi.checkNovaVersionUpdate"]?.[localVarOperationServerIndex]?.url;
|
|
6769
|
-
return (axios$
|
|
6970
|
+
return (axios$138, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$138, localVarOperationServerBasePath || basePath);
|
|
6770
6971
|
},
|
|
6771
6972
|
async getArpScan(_interface, cidr, timeout, options) {
|
|
6772
6973
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getArpScan(_interface, cidr, timeout, options);
|
|
6773
6974
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6774
6975
|
const localVarOperationServerBasePath = operationServerMap["SystemApi.getArpScan"]?.[localVarOperationServerIndex]?.url;
|
|
6775
|
-
return (axios$
|
|
6976
|
+
return (axios$139, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$139, localVarOperationServerBasePath || basePath);
|
|
6776
6977
|
},
|
|
6777
6978
|
async getConfigurationBackupStatus(operationId, options) {
|
|
6778
6979
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getConfigurationBackupStatus(operationId, options);
|
|
6779
6980
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6780
6981
|
const localVarOperationServerBasePath = operationServerMap["SystemApi.getConfigurationBackupStatus"]?.[localVarOperationServerIndex]?.url;
|
|
6781
|
-
return (axios$
|
|
6982
|
+
return (axios$140, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$140, localVarOperationServerBasePath || basePath);
|
|
6782
6983
|
},
|
|
6783
6984
|
async getDiagnosePackage(options) {
|
|
6784
6985
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getDiagnosePackage(options);
|
|
6785
6986
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6786
6987
|
const localVarOperationServerBasePath = operationServerMap["SystemApi.getDiagnosePackage"]?.[localVarOperationServerIndex]?.url;
|
|
6787
|
-
return (axios$
|
|
6988
|
+
return (axios$141, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$141, localVarOperationServerBasePath || basePath);
|
|
6788
6989
|
},
|
|
6789
6990
|
async getNetworkInterfaces(options) {
|
|
6790
6991
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getNetworkInterfaces(options);
|
|
6791
6992
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6792
6993
|
const localVarOperationServerBasePath = operationServerMap["SystemApi.getNetworkInterfaces"]?.[localVarOperationServerIndex]?.url;
|
|
6793
|
-
return (axios$
|
|
6994
|
+
return (axios$142, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$142, localVarOperationServerBasePath || basePath);
|
|
6794
6995
|
},
|
|
6795
6996
|
async getNetworkState(options) {
|
|
6796
6997
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getNetworkState(options);
|
|
6797
6998
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6798
6999
|
const localVarOperationServerBasePath = operationServerMap["SystemApi.getNetworkState"]?.[localVarOperationServerIndex]?.url;
|
|
6799
|
-
return (axios$
|
|
7000
|
+
return (axios$143, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$143, localVarOperationServerBasePath || basePath);
|
|
6800
7001
|
},
|
|
6801
7002
|
async getSystemStatus(options) {
|
|
6802
7003
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getSystemStatus(options);
|
|
6803
7004
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6804
7005
|
const localVarOperationServerBasePath = operationServerMap["SystemApi.getSystemStatus"]?.[localVarOperationServerIndex]?.url;
|
|
6805
|
-
return (axios$
|
|
7006
|
+
return (axios$144, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$144, localVarOperationServerBasePath || basePath);
|
|
6806
7007
|
},
|
|
6807
7008
|
async getSystemVersion(options) {
|
|
6808
7009
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getSystemVersion(options);
|
|
6809
7010
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6810
7011
|
const localVarOperationServerBasePath = operationServerMap["SystemApi.getSystemVersion"]?.[localVarOperationServerIndex]?.url;
|
|
6811
|
-
return (axios$
|
|
7012
|
+
return (axios$145, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$145, localVarOperationServerBasePath || basePath);
|
|
6812
7013
|
},
|
|
6813
7014
|
async listConfigurationResources(options) {
|
|
6814
7015
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listConfigurationResources(options);
|
|
6815
7016
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6816
7017
|
const localVarOperationServerBasePath = operationServerMap["SystemApi.listConfigurationResources"]?.[localVarOperationServerIndex]?.url;
|
|
6817
|
-
return (axios$
|
|
7018
|
+
return (axios$146, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$146, localVarOperationServerBasePath || basePath);
|
|
6818
7019
|
},
|
|
6819
7020
|
async restoreConfiguration(body, resources, options) {
|
|
6820
7021
|
const localVarAxiosArgs = await localVarAxiosParamCreator.restoreConfiguration(body, resources, options);
|
|
6821
7022
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6822
7023
|
const localVarOperationServerBasePath = operationServerMap["SystemApi.restoreConfiguration"]?.[localVarOperationServerIndex]?.url;
|
|
6823
|
-
return (axios$
|
|
7024
|
+
return (axios$147, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$147, localVarOperationServerBasePath || basePath);
|
|
6824
7025
|
},
|
|
6825
7026
|
async updateNovaVersion(updateNovaVersionRequest, options) {
|
|
6826
7027
|
const localVarAxiosArgs = await localVarAxiosParamCreator.updateNovaVersion(updateNovaVersionRequest, options);
|
|
6827
7028
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6828
7029
|
const localVarOperationServerBasePath = operationServerMap["SystemApi.updateNovaVersion"]?.[localVarOperationServerIndex]?.url;
|
|
6829
|
-
return (axios$
|
|
7030
|
+
return (axios$148, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$148, localVarOperationServerBasePath || basePath);
|
|
6830
7031
|
}
|
|
6831
7032
|
};
|
|
6832
7033
|
};
|
|
6833
7034
|
/**
|
|
6834
7035
|
* SystemApi - factory interface
|
|
6835
7036
|
*/
|
|
6836
|
-
const SystemApiFactory = function(configuration, basePath, axios$
|
|
7037
|
+
const SystemApiFactory = function(configuration, basePath, axios$149) {
|
|
6837
7038
|
const localVarFp = SystemApiFp(configuration);
|
|
6838
7039
|
return {
|
|
6839
7040
|
backupConfiguration(resources, metadata, options) {
|
|
6840
|
-
return localVarFp.backupConfiguration(resources, metadata, options).then((request) => request(axios$
|
|
7041
|
+
return localVarFp.backupConfiguration(resources, metadata, options).then((request) => request(axios$149, basePath));
|
|
6841
7042
|
},
|
|
6842
7043
|
checkNovaVersionUpdate(channel, options) {
|
|
6843
|
-
return localVarFp.checkNovaVersionUpdate(channel, options).then((request) => request(axios$
|
|
7044
|
+
return localVarFp.checkNovaVersionUpdate(channel, options).then((request) => request(axios$149, basePath));
|
|
6844
7045
|
},
|
|
6845
7046
|
getArpScan(_interface, cidr, timeout, options) {
|
|
6846
|
-
return localVarFp.getArpScan(_interface, cidr, timeout, options).then((request) => request(axios$
|
|
7047
|
+
return localVarFp.getArpScan(_interface, cidr, timeout, options).then((request) => request(axios$149, basePath));
|
|
6847
7048
|
},
|
|
6848
7049
|
getConfigurationBackupStatus(operationId, options) {
|
|
6849
|
-
return localVarFp.getConfigurationBackupStatus(operationId, options).then((request) => request(axios$
|
|
7050
|
+
return localVarFp.getConfigurationBackupStatus(operationId, options).then((request) => request(axios$149, basePath));
|
|
6850
7051
|
},
|
|
6851
7052
|
getDiagnosePackage(options) {
|
|
6852
|
-
return localVarFp.getDiagnosePackage(options).then((request) => request(axios$
|
|
7053
|
+
return localVarFp.getDiagnosePackage(options).then((request) => request(axios$149, basePath));
|
|
6853
7054
|
},
|
|
6854
7055
|
getNetworkInterfaces(options) {
|
|
6855
|
-
return localVarFp.getNetworkInterfaces(options).then((request) => request(axios$
|
|
7056
|
+
return localVarFp.getNetworkInterfaces(options).then((request) => request(axios$149, basePath));
|
|
6856
7057
|
},
|
|
6857
7058
|
getNetworkState(options) {
|
|
6858
|
-
return localVarFp.getNetworkState(options).then((request) => request(axios$
|
|
7059
|
+
return localVarFp.getNetworkState(options).then((request) => request(axios$149, basePath));
|
|
6859
7060
|
},
|
|
6860
7061
|
getSystemStatus(options) {
|
|
6861
|
-
return localVarFp.getSystemStatus(options).then((request) => request(axios$
|
|
7062
|
+
return localVarFp.getSystemStatus(options).then((request) => request(axios$149, basePath));
|
|
6862
7063
|
},
|
|
6863
7064
|
getSystemVersion(options) {
|
|
6864
|
-
return localVarFp.getSystemVersion(options).then((request) => request(axios$
|
|
7065
|
+
return localVarFp.getSystemVersion(options).then((request) => request(axios$149, basePath));
|
|
6865
7066
|
},
|
|
6866
7067
|
listConfigurationResources(options) {
|
|
6867
|
-
return localVarFp.listConfigurationResources(options).then((request) => request(axios$
|
|
7068
|
+
return localVarFp.listConfigurationResources(options).then((request) => request(axios$149, basePath));
|
|
6868
7069
|
},
|
|
6869
7070
|
restoreConfiguration(body, resources, options) {
|
|
6870
|
-
return localVarFp.restoreConfiguration(body, resources, options).then((request) => request(axios$
|
|
7071
|
+
return localVarFp.restoreConfiguration(body, resources, options).then((request) => request(axios$149, basePath));
|
|
6871
7072
|
},
|
|
6872
7073
|
updateNovaVersion(updateNovaVersionRequest, options) {
|
|
6873
|
-
return localVarFp.updateNovaVersion(updateNovaVersionRequest, options).then((request) => request(axios$
|
|
7074
|
+
return localVarFp.updateNovaVersion(updateNovaVersionRequest, options).then((request) => request(axios$149, basePath));
|
|
6874
7075
|
}
|
|
6875
7076
|
};
|
|
6876
7077
|
};
|
|
@@ -7154,54 +7355,54 @@ const TrajectoryCachingApiFp = function(configuration) {
|
|
|
7154
7355
|
const localVarAxiosArgs = await localVarAxiosParamCreator.addTrajectory(cell, controller, addTrajectoryRequest, options);
|
|
7155
7356
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
7156
7357
|
const localVarOperationServerBasePath = operationServerMap["TrajectoryCachingApi.addTrajectory"]?.[localVarOperationServerIndex]?.url;
|
|
7157
|
-
return (axios$
|
|
7358
|
+
return (axios$150, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$150, localVarOperationServerBasePath || basePath);
|
|
7158
7359
|
},
|
|
7159
7360
|
async clearTrajectories(cell, controller, options) {
|
|
7160
7361
|
const localVarAxiosArgs = await localVarAxiosParamCreator.clearTrajectories(cell, controller, options);
|
|
7161
7362
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
7162
7363
|
const localVarOperationServerBasePath = operationServerMap["TrajectoryCachingApi.clearTrajectories"]?.[localVarOperationServerIndex]?.url;
|
|
7163
|
-
return (axios$
|
|
7364
|
+
return (axios$151, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$151, localVarOperationServerBasePath || basePath);
|
|
7164
7365
|
},
|
|
7165
7366
|
async deleteTrajectory(cell, controller, trajectory, options) {
|
|
7166
7367
|
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteTrajectory(cell, controller, trajectory, options);
|
|
7167
7368
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
7168
7369
|
const localVarOperationServerBasePath = operationServerMap["TrajectoryCachingApi.deleteTrajectory"]?.[localVarOperationServerIndex]?.url;
|
|
7169
|
-
return (axios$
|
|
7370
|
+
return (axios$152, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$152, localVarOperationServerBasePath || basePath);
|
|
7170
7371
|
},
|
|
7171
7372
|
async getTrajectory(cell, controller, trajectory, options) {
|
|
7172
7373
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getTrajectory(cell, controller, trajectory, options);
|
|
7173
7374
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
7174
7375
|
const localVarOperationServerBasePath = operationServerMap["TrajectoryCachingApi.getTrajectory"]?.[localVarOperationServerIndex]?.url;
|
|
7175
|
-
return (axios$
|
|
7376
|
+
return (axios$153, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$153, localVarOperationServerBasePath || basePath);
|
|
7176
7377
|
},
|
|
7177
7378
|
async listTrajectories(cell, controller, options) {
|
|
7178
7379
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listTrajectories(cell, controller, options);
|
|
7179
7380
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
7180
7381
|
const localVarOperationServerBasePath = operationServerMap["TrajectoryCachingApi.listTrajectories"]?.[localVarOperationServerIndex]?.url;
|
|
7181
|
-
return (axios$
|
|
7382
|
+
return (axios$154, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$154, localVarOperationServerBasePath || basePath);
|
|
7182
7383
|
}
|
|
7183
7384
|
};
|
|
7184
7385
|
};
|
|
7185
7386
|
/**
|
|
7186
7387
|
* TrajectoryCachingApi - factory interface
|
|
7187
7388
|
*/
|
|
7188
|
-
const TrajectoryCachingApiFactory = function(configuration, basePath, axios$
|
|
7389
|
+
const TrajectoryCachingApiFactory = function(configuration, basePath, axios$155) {
|
|
7189
7390
|
const localVarFp = TrajectoryCachingApiFp(configuration);
|
|
7190
7391
|
return {
|
|
7191
7392
|
addTrajectory(cell, controller, addTrajectoryRequest, options) {
|
|
7192
|
-
return localVarFp.addTrajectory(cell, controller, addTrajectoryRequest, options).then((request) => request(axios$
|
|
7393
|
+
return localVarFp.addTrajectory(cell, controller, addTrajectoryRequest, options).then((request) => request(axios$155, basePath));
|
|
7193
7394
|
},
|
|
7194
7395
|
clearTrajectories(cell, controller, options) {
|
|
7195
|
-
return localVarFp.clearTrajectories(cell, controller, options).then((request) => request(axios$
|
|
7396
|
+
return localVarFp.clearTrajectories(cell, controller, options).then((request) => request(axios$155, basePath));
|
|
7196
7397
|
},
|
|
7197
7398
|
deleteTrajectory(cell, controller, trajectory, options) {
|
|
7198
|
-
return localVarFp.deleteTrajectory(cell, controller, trajectory, options).then((request) => request(axios$
|
|
7399
|
+
return localVarFp.deleteTrajectory(cell, controller, trajectory, options).then((request) => request(axios$155, basePath));
|
|
7199
7400
|
},
|
|
7200
7401
|
getTrajectory(cell, controller, trajectory, options) {
|
|
7201
|
-
return localVarFp.getTrajectory(cell, controller, trajectory, options).then((request) => request(axios$
|
|
7402
|
+
return localVarFp.getTrajectory(cell, controller, trajectory, options).then((request) => request(axios$155, basePath));
|
|
7202
7403
|
},
|
|
7203
7404
|
listTrajectories(cell, controller, options) {
|
|
7204
|
-
return localVarFp.listTrajectories(cell, controller, options).then((request) => request(axios$
|
|
7405
|
+
return localVarFp.listTrajectories(cell, controller, options).then((request) => request(axios$155, basePath));
|
|
7205
7406
|
}
|
|
7206
7407
|
};
|
|
7207
7408
|
};
|
|
@@ -7312,16 +7513,16 @@ const TrajectoryExecutionApiFp = function(configuration) {
|
|
|
7312
7513
|
const localVarAxiosArgs = await localVarAxiosParamCreator.executeTrajectory(cell, controller, executeTrajectoryRequest, options);
|
|
7313
7514
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
7314
7515
|
const localVarOperationServerBasePath = operationServerMap["TrajectoryExecutionApi.executeTrajectory"]?.[localVarOperationServerIndex]?.url;
|
|
7315
|
-
return (axios$
|
|
7516
|
+
return (axios$156, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$156, localVarOperationServerBasePath || basePath);
|
|
7316
7517
|
} };
|
|
7317
7518
|
};
|
|
7318
7519
|
/**
|
|
7319
7520
|
* TrajectoryExecutionApi - factory interface
|
|
7320
7521
|
*/
|
|
7321
|
-
const TrajectoryExecutionApiFactory = function(configuration, basePath, axios$
|
|
7522
|
+
const TrajectoryExecutionApiFactory = function(configuration, basePath, axios$157) {
|
|
7322
7523
|
const localVarFp = TrajectoryExecutionApiFp(configuration);
|
|
7323
7524
|
return { executeTrajectory(cell, controller, executeTrajectoryRequest, options) {
|
|
7324
|
-
return localVarFp.executeTrajectory(cell, controller, executeTrajectoryRequest, options).then((request) => request(axios$
|
|
7525
|
+
return localVarFp.executeTrajectory(cell, controller, executeTrajectoryRequest, options).then((request) => request(axios$157, basePath));
|
|
7325
7526
|
} };
|
|
7326
7527
|
};
|
|
7327
7528
|
/**
|
|
@@ -7474,45 +7675,45 @@ const TrajectoryPlanningApiFp = function(configuration) {
|
|
|
7474
7675
|
const localVarAxiosArgs = await localVarAxiosParamCreator.mergeTrajectories(cell, mergeTrajectoriesRequest, options);
|
|
7475
7676
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
7476
7677
|
const localVarOperationServerBasePath = operationServerMap["TrajectoryPlanningApi.mergeTrajectories"]?.[localVarOperationServerIndex]?.url;
|
|
7477
|
-
return (axios$
|
|
7678
|
+
return (axios$158, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$158, localVarOperationServerBasePath || basePath);
|
|
7478
7679
|
},
|
|
7479
7680
|
async planCollisionFree(cell, planCollisionFreeRequest, options) {
|
|
7480
7681
|
const localVarAxiosArgs = await localVarAxiosParamCreator.planCollisionFree(cell, planCollisionFreeRequest, options);
|
|
7481
7682
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
7482
7683
|
const localVarOperationServerBasePath = operationServerMap["TrajectoryPlanningApi.planCollisionFree"]?.[localVarOperationServerIndex]?.url;
|
|
7483
|
-
return (axios$
|
|
7684
|
+
return (axios$159, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$159, localVarOperationServerBasePath || basePath);
|
|
7484
7685
|
},
|
|
7485
7686
|
async planTrajectory(cell, planTrajectoryRequest, options) {
|
|
7486
7687
|
const localVarAxiosArgs = await localVarAxiosParamCreator.planTrajectory(cell, planTrajectoryRequest, options);
|
|
7487
7688
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
7488
7689
|
const localVarOperationServerBasePath = operationServerMap["TrajectoryPlanningApi.planTrajectory"]?.[localVarOperationServerIndex]?.url;
|
|
7489
|
-
return (axios$
|
|
7690
|
+
return (axios$160, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$160, localVarOperationServerBasePath || basePath);
|
|
7490
7691
|
},
|
|
7491
7692
|
async searchCollisionFreeMultiMotionGroup(cell, multiSearchCollisionFreeRequest, options) {
|
|
7492
7693
|
const localVarAxiosArgs = await localVarAxiosParamCreator.searchCollisionFreeMultiMotionGroup(cell, multiSearchCollisionFreeRequest, options);
|
|
7493
7694
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
7494
7695
|
const localVarOperationServerBasePath = operationServerMap["TrajectoryPlanningApi.searchCollisionFreeMultiMotionGroup"]?.[localVarOperationServerIndex]?.url;
|
|
7495
|
-
return (axios$
|
|
7696
|
+
return (axios$161, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$161, localVarOperationServerBasePath || basePath);
|
|
7496
7697
|
}
|
|
7497
7698
|
};
|
|
7498
7699
|
};
|
|
7499
7700
|
/**
|
|
7500
7701
|
* TrajectoryPlanningApi - factory interface
|
|
7501
7702
|
*/
|
|
7502
|
-
const TrajectoryPlanningApiFactory = function(configuration, basePath, axios$
|
|
7703
|
+
const TrajectoryPlanningApiFactory = function(configuration, basePath, axios$162) {
|
|
7503
7704
|
const localVarFp = TrajectoryPlanningApiFp(configuration);
|
|
7504
7705
|
return {
|
|
7505
7706
|
mergeTrajectories(cell, mergeTrajectoriesRequest, options) {
|
|
7506
|
-
return localVarFp.mergeTrajectories(cell, mergeTrajectoriesRequest, options).then((request) => request(axios$
|
|
7707
|
+
return localVarFp.mergeTrajectories(cell, mergeTrajectoriesRequest, options).then((request) => request(axios$162, basePath));
|
|
7507
7708
|
},
|
|
7508
7709
|
planCollisionFree(cell, planCollisionFreeRequest, options) {
|
|
7509
|
-
return localVarFp.planCollisionFree(cell, planCollisionFreeRequest, options).then((request) => request(axios$
|
|
7710
|
+
return localVarFp.planCollisionFree(cell, planCollisionFreeRequest, options).then((request) => request(axios$162, basePath));
|
|
7510
7711
|
},
|
|
7511
7712
|
planTrajectory(cell, planTrajectoryRequest, options) {
|
|
7512
|
-
return localVarFp.planTrajectory(cell, planTrajectoryRequest, options).then((request) => request(axios$
|
|
7713
|
+
return localVarFp.planTrajectory(cell, planTrajectoryRequest, options).then((request) => request(axios$162, basePath));
|
|
7513
7714
|
},
|
|
7514
7715
|
searchCollisionFreeMultiMotionGroup(cell, multiSearchCollisionFreeRequest, options) {
|
|
7515
|
-
return localVarFp.searchCollisionFreeMultiMotionGroup(cell, multiSearchCollisionFreeRequest, options).then((request) => request(axios$
|
|
7716
|
+
return localVarFp.searchCollisionFreeMultiMotionGroup(cell, multiSearchCollisionFreeRequest, options).then((request) => request(axios$162, basePath));
|
|
7516
7717
|
}
|
|
7517
7718
|
};
|
|
7518
7719
|
};
|
|
@@ -7603,16 +7804,16 @@ const VersionApiFp = function(configuration) {
|
|
|
7603
7804
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getApiVersion(options);
|
|
7604
7805
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
7605
7806
|
const localVarOperationServerBasePath = operationServerMap["VersionApi.getApiVersion"]?.[localVarOperationServerIndex]?.url;
|
|
7606
|
-
return (axios$
|
|
7807
|
+
return (axios$163, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$163, localVarOperationServerBasePath || basePath);
|
|
7607
7808
|
} };
|
|
7608
7809
|
};
|
|
7609
7810
|
/**
|
|
7610
7811
|
* VersionApi - factory interface
|
|
7611
7812
|
*/
|
|
7612
|
-
const VersionApiFactory = function(configuration, basePath, axios$
|
|
7813
|
+
const VersionApiFactory = function(configuration, basePath, axios$164) {
|
|
7613
7814
|
const localVarFp = VersionApiFp(configuration);
|
|
7614
7815
|
return { getApiVersion(options) {
|
|
7615
|
-
return localVarFp.getApiVersion(options).then((request) => request(axios$
|
|
7816
|
+
return localVarFp.getApiVersion(options).then((request) => request(axios$164, basePath));
|
|
7616
7817
|
} };
|
|
7617
7818
|
};
|
|
7618
7819
|
/**
|
|
@@ -8221,189 +8422,189 @@ const VirtualControllerApiFp = function(configuration) {
|
|
|
8221
8422
|
const localVarAxiosArgs = await localVarAxiosParamCreator.addVirtualControllerCoordinateSystem(cell, controller, coordinateSystem, coordinateSystemData, options);
|
|
8222
8423
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
8223
8424
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerApi.addVirtualControllerCoordinateSystem"]?.[localVarOperationServerIndex]?.url;
|
|
8224
|
-
return (axios$
|
|
8425
|
+
return (axios$165, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$165, localVarOperationServerBasePath || basePath);
|
|
8225
8426
|
},
|
|
8226
8427
|
async addVirtualControllerMotionGroup(cell, controller, addVirtualControllerMotionGroupRequest, options) {
|
|
8227
8428
|
const localVarAxiosArgs = await localVarAxiosParamCreator.addVirtualControllerMotionGroup(cell, controller, addVirtualControllerMotionGroupRequest, options);
|
|
8228
8429
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
8229
8430
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerApi.addVirtualControllerMotionGroup"]?.[localVarOperationServerIndex]?.url;
|
|
8230
|
-
return (axios$
|
|
8431
|
+
return (axios$166, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$166, localVarOperationServerBasePath || basePath);
|
|
8231
8432
|
},
|
|
8232
8433
|
async addVirtualControllerSafetyZone(cell, controller, safetyZone, options) {
|
|
8233
8434
|
const localVarAxiosArgs = await localVarAxiosParamCreator.addVirtualControllerSafetyZone(cell, controller, safetyZone, options);
|
|
8234
8435
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
8235
8436
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerApi.addVirtualControllerSafetyZone"]?.[localVarOperationServerIndex]?.url;
|
|
8236
|
-
return (axios$
|
|
8437
|
+
return (axios$167, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$167, localVarOperationServerBasePath || basePath);
|
|
8237
8438
|
},
|
|
8238
8439
|
async addVirtualControllerTcp(cell, controller, motionGroup, tcp, robotTcpData, options) {
|
|
8239
8440
|
const localVarAxiosArgs = await localVarAxiosParamCreator.addVirtualControllerTcp(cell, controller, motionGroup, tcp, robotTcpData, options);
|
|
8240
8441
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
8241
8442
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerApi.addVirtualControllerTcp"]?.[localVarOperationServerIndex]?.url;
|
|
8242
|
-
return (axios$
|
|
8443
|
+
return (axios$168, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$168, localVarOperationServerBasePath || basePath);
|
|
8243
8444
|
},
|
|
8244
8445
|
async deleteVirtualControllerCoordinateSystem(cell, controller, coordinateSystem, deleteDependent, options) {
|
|
8245
8446
|
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteVirtualControllerCoordinateSystem(cell, controller, coordinateSystem, deleteDependent, options);
|
|
8246
8447
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
8247
8448
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerApi.deleteVirtualControllerCoordinateSystem"]?.[localVarOperationServerIndex]?.url;
|
|
8248
|
-
return (axios$
|
|
8449
|
+
return (axios$169, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$169, localVarOperationServerBasePath || basePath);
|
|
8249
8450
|
},
|
|
8250
8451
|
async deleteVirtualControllerMotionGroup(cell, controller, motionGroup, options) {
|
|
8251
8452
|
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteVirtualControllerMotionGroup(cell, controller, motionGroup, options);
|
|
8252
8453
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
8253
8454
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerApi.deleteVirtualControllerMotionGroup"]?.[localVarOperationServerIndex]?.url;
|
|
8254
|
-
return (axios$
|
|
8455
|
+
return (axios$170, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$170, localVarOperationServerBasePath || basePath);
|
|
8255
8456
|
},
|
|
8256
8457
|
async deleteVirtualControllerSafetyZone(cell, controller, id, options) {
|
|
8257
8458
|
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteVirtualControllerSafetyZone(cell, controller, id, options);
|
|
8258
8459
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
8259
8460
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerApi.deleteVirtualControllerSafetyZone"]?.[localVarOperationServerIndex]?.url;
|
|
8260
|
-
return (axios$
|
|
8461
|
+
return (axios$171, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$171, localVarOperationServerBasePath || basePath);
|
|
8261
8462
|
},
|
|
8262
8463
|
async deleteVirtualControllerTcp(cell, controller, motionGroup, tcp, options) {
|
|
8263
8464
|
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteVirtualControllerTcp(cell, controller, motionGroup, tcp, options);
|
|
8264
8465
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
8265
8466
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerApi.deleteVirtualControllerTcp"]?.[localVarOperationServerIndex]?.url;
|
|
8266
|
-
return (axios$
|
|
8467
|
+
return (axios$172, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$172, localVarOperationServerBasePath || basePath);
|
|
8267
8468
|
},
|
|
8268
8469
|
async getEmergencyStop(cell, controller, options) {
|
|
8269
8470
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getEmergencyStop(cell, controller, options);
|
|
8270
8471
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
8271
8472
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerApi.getEmergencyStop"]?.[localVarOperationServerIndex]?.url;
|
|
8272
|
-
return (axios$
|
|
8473
|
+
return (axios$173, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$173, localVarOperationServerBasePath || basePath);
|
|
8273
8474
|
},
|
|
8274
8475
|
async getMotionGroupState(cell, controller, motionGroup, options) {
|
|
8275
8476
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getMotionGroupState(cell, controller, motionGroup, options);
|
|
8276
8477
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
8277
8478
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerApi.getMotionGroupState"]?.[localVarOperationServerIndex]?.url;
|
|
8278
|
-
return (axios$
|
|
8479
|
+
return (axios$174, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$174, localVarOperationServerBasePath || basePath);
|
|
8279
8480
|
},
|
|
8280
8481
|
async getMotionGroups(cell, controller, options) {
|
|
8281
8482
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getMotionGroups(cell, controller, options);
|
|
8282
8483
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
8283
8484
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerApi.getMotionGroups"]?.[localVarOperationServerIndex]?.url;
|
|
8284
|
-
return (axios$
|
|
8485
|
+
return (axios$175, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$175, localVarOperationServerBasePath || basePath);
|
|
8285
8486
|
},
|
|
8286
8487
|
async getOperationMode(cell, controller, options) {
|
|
8287
8488
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getOperationMode(cell, controller, options);
|
|
8288
8489
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
8289
8490
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerApi.getOperationMode"]?.[localVarOperationServerIndex]?.url;
|
|
8290
|
-
return (axios$
|
|
8491
|
+
return (axios$176, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$176, localVarOperationServerBasePath || basePath);
|
|
8291
8492
|
},
|
|
8292
8493
|
async getVirtualControllerMounting(cell, controller, motionGroup, options) {
|
|
8293
8494
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getVirtualControllerMounting(cell, controller, motionGroup, options);
|
|
8294
8495
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
8295
8496
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerApi.getVirtualControllerMounting"]?.[localVarOperationServerIndex]?.url;
|
|
8296
|
-
return (axios$
|
|
8497
|
+
return (axios$177, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$177, localVarOperationServerBasePath || basePath);
|
|
8297
8498
|
},
|
|
8298
8499
|
async getVirtualControllerSafetyZones(cell, controller, options) {
|
|
8299
8500
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getVirtualControllerSafetyZones(cell, controller, options);
|
|
8300
8501
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
8301
8502
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerApi.getVirtualControllerSafetyZones"]?.[localVarOperationServerIndex]?.url;
|
|
8302
|
-
return (axios$
|
|
8503
|
+
return (axios$178, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$178, localVarOperationServerBasePath || basePath);
|
|
8303
8504
|
},
|
|
8304
8505
|
async listVirtualControllerCoordinateSystems(cell, controller, options) {
|
|
8305
8506
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listVirtualControllerCoordinateSystems(cell, controller, options);
|
|
8306
8507
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
8307
8508
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerApi.listVirtualControllerCoordinateSystems"]?.[localVarOperationServerIndex]?.url;
|
|
8308
|
-
return (axios$
|
|
8509
|
+
return (axios$179, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$179, localVarOperationServerBasePath || basePath);
|
|
8309
8510
|
},
|
|
8310
8511
|
async listVirtualControllerTcps(cell, controller, motionGroup, options) {
|
|
8311
8512
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listVirtualControllerTcps(cell, controller, motionGroup, options);
|
|
8312
8513
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
8313
8514
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerApi.listVirtualControllerTcps"]?.[localVarOperationServerIndex]?.url;
|
|
8314
|
-
return (axios$
|
|
8515
|
+
return (axios$180, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$180, localVarOperationServerBasePath || basePath);
|
|
8315
8516
|
},
|
|
8316
8517
|
async setEmergencyStop(cell, controller, active, options) {
|
|
8317
8518
|
const localVarAxiosArgs = await localVarAxiosParamCreator.setEmergencyStop(cell, controller, active, options);
|
|
8318
8519
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
8319
8520
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerApi.setEmergencyStop"]?.[localVarOperationServerIndex]?.url;
|
|
8320
|
-
return (axios$
|
|
8521
|
+
return (axios$181, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$181, localVarOperationServerBasePath || basePath);
|
|
8321
8522
|
},
|
|
8322
8523
|
async setMotionGroupState(cell, controller, motionGroup, motionGroupJoints, options) {
|
|
8323
8524
|
const localVarAxiosArgs = await localVarAxiosParamCreator.setMotionGroupState(cell, controller, motionGroup, motionGroupJoints, options);
|
|
8324
8525
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
8325
8526
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerApi.setMotionGroupState"]?.[localVarOperationServerIndex]?.url;
|
|
8326
|
-
return (axios$
|
|
8527
|
+
return (axios$182, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$182, localVarOperationServerBasePath || basePath);
|
|
8327
8528
|
},
|
|
8328
8529
|
async setOperationMode(cell, controller, mode, options) {
|
|
8329
8530
|
const localVarAxiosArgs = await localVarAxiosParamCreator.setOperationMode(cell, controller, mode, options);
|
|
8330
8531
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
8331
8532
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerApi.setOperationMode"]?.[localVarOperationServerIndex]?.url;
|
|
8332
|
-
return (axios$
|
|
8533
|
+
return (axios$183, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$183, localVarOperationServerBasePath || basePath);
|
|
8333
8534
|
},
|
|
8334
8535
|
async setVirtualControllerMounting(cell, controller, motionGroup, coordinateSystem, options) {
|
|
8335
8536
|
const localVarAxiosArgs = await localVarAxiosParamCreator.setVirtualControllerMounting(cell, controller, motionGroup, coordinateSystem, options);
|
|
8336
8537
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
8337
8538
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerApi.setVirtualControllerMounting"]?.[localVarOperationServerIndex]?.url;
|
|
8338
|
-
return (axios$
|
|
8539
|
+
return (axios$184, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$184, localVarOperationServerBasePath || basePath);
|
|
8339
8540
|
}
|
|
8340
8541
|
};
|
|
8341
8542
|
};
|
|
8342
8543
|
/**
|
|
8343
8544
|
* VirtualControllerApi - factory interface
|
|
8344
8545
|
*/
|
|
8345
|
-
const VirtualControllerApiFactory = function(configuration, basePath, axios$
|
|
8546
|
+
const VirtualControllerApiFactory = function(configuration, basePath, axios$185) {
|
|
8346
8547
|
const localVarFp = VirtualControllerApiFp(configuration);
|
|
8347
8548
|
return {
|
|
8348
8549
|
addVirtualControllerCoordinateSystem(cell, controller, coordinateSystem, coordinateSystemData, options) {
|
|
8349
|
-
return localVarFp.addVirtualControllerCoordinateSystem(cell, controller, coordinateSystem, coordinateSystemData, options).then((request) => request(axios$
|
|
8550
|
+
return localVarFp.addVirtualControllerCoordinateSystem(cell, controller, coordinateSystem, coordinateSystemData, options).then((request) => request(axios$185, basePath));
|
|
8350
8551
|
},
|
|
8351
8552
|
addVirtualControllerMotionGroup(cell, controller, addVirtualControllerMotionGroupRequest, options) {
|
|
8352
|
-
return localVarFp.addVirtualControllerMotionGroup(cell, controller, addVirtualControllerMotionGroupRequest, options).then((request) => request(axios$
|
|
8553
|
+
return localVarFp.addVirtualControllerMotionGroup(cell, controller, addVirtualControllerMotionGroupRequest, options).then((request) => request(axios$185, basePath));
|
|
8353
8554
|
},
|
|
8354
8555
|
addVirtualControllerSafetyZone(cell, controller, safetyZone, options) {
|
|
8355
|
-
return localVarFp.addVirtualControllerSafetyZone(cell, controller, safetyZone, options).then((request) => request(axios$
|
|
8556
|
+
return localVarFp.addVirtualControllerSafetyZone(cell, controller, safetyZone, options).then((request) => request(axios$185, basePath));
|
|
8356
8557
|
},
|
|
8357
8558
|
addVirtualControllerTcp(cell, controller, motionGroup, tcp, robotTcpData, options) {
|
|
8358
|
-
return localVarFp.addVirtualControllerTcp(cell, controller, motionGroup, tcp, robotTcpData, options).then((request) => request(axios$
|
|
8559
|
+
return localVarFp.addVirtualControllerTcp(cell, controller, motionGroup, tcp, robotTcpData, options).then((request) => request(axios$185, basePath));
|
|
8359
8560
|
},
|
|
8360
8561
|
deleteVirtualControllerCoordinateSystem(cell, controller, coordinateSystem, deleteDependent, options) {
|
|
8361
|
-
return localVarFp.deleteVirtualControllerCoordinateSystem(cell, controller, coordinateSystem, deleteDependent, options).then((request) => request(axios$
|
|
8562
|
+
return localVarFp.deleteVirtualControllerCoordinateSystem(cell, controller, coordinateSystem, deleteDependent, options).then((request) => request(axios$185, basePath));
|
|
8362
8563
|
},
|
|
8363
8564
|
deleteVirtualControllerMotionGroup(cell, controller, motionGroup, options) {
|
|
8364
|
-
return localVarFp.deleteVirtualControllerMotionGroup(cell, controller, motionGroup, options).then((request) => request(axios$
|
|
8565
|
+
return localVarFp.deleteVirtualControllerMotionGroup(cell, controller, motionGroup, options).then((request) => request(axios$185, basePath));
|
|
8365
8566
|
},
|
|
8366
8567
|
deleteVirtualControllerSafetyZone(cell, controller, id, options) {
|
|
8367
|
-
return localVarFp.deleteVirtualControllerSafetyZone(cell, controller, id, options).then((request) => request(axios$
|
|
8568
|
+
return localVarFp.deleteVirtualControllerSafetyZone(cell, controller, id, options).then((request) => request(axios$185, basePath));
|
|
8368
8569
|
},
|
|
8369
8570
|
deleteVirtualControllerTcp(cell, controller, motionGroup, tcp, options) {
|
|
8370
|
-
return localVarFp.deleteVirtualControllerTcp(cell, controller, motionGroup, tcp, options).then((request) => request(axios$
|
|
8571
|
+
return localVarFp.deleteVirtualControllerTcp(cell, controller, motionGroup, tcp, options).then((request) => request(axios$185, basePath));
|
|
8371
8572
|
},
|
|
8372
8573
|
getEmergencyStop(cell, controller, options) {
|
|
8373
|
-
return localVarFp.getEmergencyStop(cell, controller, options).then((request) => request(axios$
|
|
8574
|
+
return localVarFp.getEmergencyStop(cell, controller, options).then((request) => request(axios$185, basePath));
|
|
8374
8575
|
},
|
|
8375
8576
|
getMotionGroupState(cell, controller, motionGroup, options) {
|
|
8376
|
-
return localVarFp.getMotionGroupState(cell, controller, motionGroup, options).then((request) => request(axios$
|
|
8577
|
+
return localVarFp.getMotionGroupState(cell, controller, motionGroup, options).then((request) => request(axios$185, basePath));
|
|
8377
8578
|
},
|
|
8378
8579
|
getMotionGroups(cell, controller, options) {
|
|
8379
|
-
return localVarFp.getMotionGroups(cell, controller, options).then((request) => request(axios$
|
|
8580
|
+
return localVarFp.getMotionGroups(cell, controller, options).then((request) => request(axios$185, basePath));
|
|
8380
8581
|
},
|
|
8381
8582
|
getOperationMode(cell, controller, options) {
|
|
8382
|
-
return localVarFp.getOperationMode(cell, controller, options).then((request) => request(axios$
|
|
8583
|
+
return localVarFp.getOperationMode(cell, controller, options).then((request) => request(axios$185, basePath));
|
|
8383
8584
|
},
|
|
8384
8585
|
getVirtualControllerMounting(cell, controller, motionGroup, options) {
|
|
8385
|
-
return localVarFp.getVirtualControllerMounting(cell, controller, motionGroup, options).then((request) => request(axios$
|
|
8586
|
+
return localVarFp.getVirtualControllerMounting(cell, controller, motionGroup, options).then((request) => request(axios$185, basePath));
|
|
8386
8587
|
},
|
|
8387
8588
|
getVirtualControllerSafetyZones(cell, controller, options) {
|
|
8388
|
-
return localVarFp.getVirtualControllerSafetyZones(cell, controller, options).then((request) => request(axios$
|
|
8589
|
+
return localVarFp.getVirtualControllerSafetyZones(cell, controller, options).then((request) => request(axios$185, basePath));
|
|
8389
8590
|
},
|
|
8390
8591
|
listVirtualControllerCoordinateSystems(cell, controller, options) {
|
|
8391
|
-
return localVarFp.listVirtualControllerCoordinateSystems(cell, controller, options).then((request) => request(axios$
|
|
8592
|
+
return localVarFp.listVirtualControllerCoordinateSystems(cell, controller, options).then((request) => request(axios$185, basePath));
|
|
8392
8593
|
},
|
|
8393
8594
|
listVirtualControllerTcps(cell, controller, motionGroup, options) {
|
|
8394
|
-
return localVarFp.listVirtualControllerTcps(cell, controller, motionGroup, options).then((request) => request(axios$
|
|
8595
|
+
return localVarFp.listVirtualControllerTcps(cell, controller, motionGroup, options).then((request) => request(axios$185, basePath));
|
|
8395
8596
|
},
|
|
8396
8597
|
setEmergencyStop(cell, controller, active, options) {
|
|
8397
|
-
return localVarFp.setEmergencyStop(cell, controller, active, options).then((request) => request(axios$
|
|
8598
|
+
return localVarFp.setEmergencyStop(cell, controller, active, options).then((request) => request(axios$185, basePath));
|
|
8398
8599
|
},
|
|
8399
8600
|
setMotionGroupState(cell, controller, motionGroup, motionGroupJoints, options) {
|
|
8400
|
-
return localVarFp.setMotionGroupState(cell, controller, motionGroup, motionGroupJoints, options).then((request) => request(axios$
|
|
8601
|
+
return localVarFp.setMotionGroupState(cell, controller, motionGroup, motionGroupJoints, options).then((request) => request(axios$185, basePath));
|
|
8401
8602
|
},
|
|
8402
8603
|
setOperationMode(cell, controller, mode, options) {
|
|
8403
|
-
return localVarFp.setOperationMode(cell, controller, mode, options).then((request) => request(axios$
|
|
8604
|
+
return localVarFp.setOperationMode(cell, controller, mode, options).then((request) => request(axios$185, basePath));
|
|
8404
8605
|
},
|
|
8405
8606
|
setVirtualControllerMounting(cell, controller, motionGroup, coordinateSystem, options) {
|
|
8406
|
-
return localVarFp.setVirtualControllerMounting(cell, controller, motionGroup, coordinateSystem, options).then((request) => request(axios$
|
|
8607
|
+
return localVarFp.setVirtualControllerMounting(cell, controller, motionGroup, coordinateSystem, options).then((request) => request(axios$185, basePath));
|
|
8407
8608
|
}
|
|
8408
8609
|
};
|
|
8409
8610
|
};
|
|
@@ -8783,45 +8984,45 @@ const VirtualControllerBehaviorApiFp = function(configuration) {
|
|
|
8783
8984
|
const localVarAxiosArgs = await localVarAxiosParamCreator.externalJointsStream(cell, controller, externalJointStreamRequest, options);
|
|
8784
8985
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
8785
8986
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerBehaviorApi.externalJointsStream"]?.[localVarOperationServerIndex]?.url;
|
|
8786
|
-
return (axios$
|
|
8987
|
+
return (axios$186, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$186, localVarOperationServerBasePath || basePath);
|
|
8787
8988
|
},
|
|
8788
8989
|
async getCycleTime(cell, controller, options) {
|
|
8789
8990
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getCycleTime(cell, controller, options);
|
|
8790
8991
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
8791
8992
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerBehaviorApi.getCycleTime"]?.[localVarOperationServerIndex]?.url;
|
|
8792
|
-
return (axios$
|
|
8993
|
+
return (axios$187, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$187, localVarOperationServerBasePath || basePath);
|
|
8793
8994
|
},
|
|
8794
8995
|
async getVirtualControllerBehavior(cell, controller, options) {
|
|
8795
8996
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getVirtualControllerBehavior(cell, controller, options);
|
|
8796
8997
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
8797
8998
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerBehaviorApi.getVirtualControllerBehavior"]?.[localVarOperationServerIndex]?.url;
|
|
8798
|
-
return (axios$
|
|
8999
|
+
return (axios$188, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$188, localVarOperationServerBasePath || basePath);
|
|
8799
9000
|
},
|
|
8800
9001
|
async setVirtualControllerBehavior(cell, controller, behavior, options) {
|
|
8801
9002
|
const localVarAxiosArgs = await localVarAxiosParamCreator.setVirtualControllerBehavior(cell, controller, behavior, options);
|
|
8802
9003
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
8803
9004
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerBehaviorApi.setVirtualControllerBehavior"]?.[localVarOperationServerIndex]?.url;
|
|
8804
|
-
return (axios$
|
|
9005
|
+
return (axios$189, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$189, localVarOperationServerBasePath || basePath);
|
|
8805
9006
|
}
|
|
8806
9007
|
};
|
|
8807
9008
|
};
|
|
8808
9009
|
/**
|
|
8809
9010
|
* VirtualControllerBehaviorApi - factory interface
|
|
8810
9011
|
*/
|
|
8811
|
-
const VirtualControllerBehaviorApiFactory = function(configuration, basePath, axios$
|
|
9012
|
+
const VirtualControllerBehaviorApiFactory = function(configuration, basePath, axios$190) {
|
|
8812
9013
|
const localVarFp = VirtualControllerBehaviorApiFp(configuration);
|
|
8813
9014
|
return {
|
|
8814
9015
|
externalJointsStream(cell, controller, externalJointStreamRequest, options) {
|
|
8815
|
-
return localVarFp.externalJointsStream(cell, controller, externalJointStreamRequest, options).then((request) => request(axios$
|
|
9016
|
+
return localVarFp.externalJointsStream(cell, controller, externalJointStreamRequest, options).then((request) => request(axios$190, basePath));
|
|
8816
9017
|
},
|
|
8817
9018
|
getCycleTime(cell, controller, options) {
|
|
8818
|
-
return localVarFp.getCycleTime(cell, controller, options).then((request) => request(axios$
|
|
9019
|
+
return localVarFp.getCycleTime(cell, controller, options).then((request) => request(axios$190, basePath));
|
|
8819
9020
|
},
|
|
8820
9021
|
getVirtualControllerBehavior(cell, controller, options) {
|
|
8821
|
-
return localVarFp.getVirtualControllerBehavior(cell, controller, options).then((request) => request(axios$
|
|
9022
|
+
return localVarFp.getVirtualControllerBehavior(cell, controller, options).then((request) => request(axios$190, basePath));
|
|
8822
9023
|
},
|
|
8823
9024
|
setVirtualControllerBehavior(cell, controller, behavior, options) {
|
|
8824
|
-
return localVarFp.setVirtualControllerBehavior(cell, controller, behavior, options).then((request) => request(axios$
|
|
9025
|
+
return localVarFp.setVirtualControllerBehavior(cell, controller, behavior, options).then((request) => request(axios$190, basePath));
|
|
8825
9026
|
}
|
|
8826
9027
|
};
|
|
8827
9028
|
};
|
|
@@ -8983,36 +9184,36 @@ const VirtualControllerInputsOutputsApiFp = function(configuration) {
|
|
|
8983
9184
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listIOs(cell, controller, ios, options);
|
|
8984
9185
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
8985
9186
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerInputsOutputsApi.listIOs"]?.[localVarOperationServerIndex]?.url;
|
|
8986
|
-
return (axios$
|
|
9187
|
+
return (axios$191, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$191, localVarOperationServerBasePath || basePath);
|
|
8987
9188
|
},
|
|
8988
9189
|
async listVirtualControllerIODescriptions(cell, controller, ios, direction, valueType, group, options) {
|
|
8989
9190
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listVirtualControllerIODescriptions(cell, controller, ios, direction, valueType, group, options);
|
|
8990
9191
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
8991
9192
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerInputsOutputsApi.listVirtualControllerIODescriptions"]?.[localVarOperationServerIndex]?.url;
|
|
8992
|
-
return (axios$
|
|
9193
|
+
return (axios$192, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$192, localVarOperationServerBasePath || basePath);
|
|
8993
9194
|
},
|
|
8994
9195
|
async setIOValues(cell, controller, iOValue, options) {
|
|
8995
9196
|
const localVarAxiosArgs = await localVarAxiosParamCreator.setIOValues(cell, controller, iOValue, options);
|
|
8996
9197
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
8997
9198
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerInputsOutputsApi.setIOValues"]?.[localVarOperationServerIndex]?.url;
|
|
8998
|
-
return (axios$
|
|
9199
|
+
return (axios$193, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$193, localVarOperationServerBasePath || basePath);
|
|
8999
9200
|
}
|
|
9000
9201
|
};
|
|
9001
9202
|
};
|
|
9002
9203
|
/**
|
|
9003
9204
|
* VirtualControllerInputsOutputsApi - factory interface
|
|
9004
9205
|
*/
|
|
9005
|
-
const VirtualControllerInputsOutputsApiFactory = function(configuration, basePath, axios$
|
|
9206
|
+
const VirtualControllerInputsOutputsApiFactory = function(configuration, basePath, axios$194) {
|
|
9006
9207
|
const localVarFp = VirtualControllerInputsOutputsApiFp(configuration);
|
|
9007
9208
|
return {
|
|
9008
9209
|
listIOs(cell, controller, ios, options) {
|
|
9009
|
-
return localVarFp.listIOs(cell, controller, ios, options).then((request) => request(axios$
|
|
9210
|
+
return localVarFp.listIOs(cell, controller, ios, options).then((request) => request(axios$194, basePath));
|
|
9010
9211
|
},
|
|
9011
9212
|
listVirtualControllerIODescriptions(cell, controller, ios, direction, valueType, group, options) {
|
|
9012
|
-
return localVarFp.listVirtualControllerIODescriptions(cell, controller, ios, direction, valueType, group, options).then((request) => request(axios$
|
|
9213
|
+
return localVarFp.listVirtualControllerIODescriptions(cell, controller, ios, direction, valueType, group, options).then((request) => request(axios$194, basePath));
|
|
9013
9214
|
},
|
|
9014
9215
|
setIOValues(cell, controller, iOValue, options) {
|
|
9015
|
-
return localVarFp.setIOValues(cell, controller, iOValue, options).then((request) => request(axios$
|
|
9216
|
+
return localVarFp.setIOValues(cell, controller, iOValue, options).then((request) => request(axios$194, basePath));
|
|
9016
9217
|
}
|
|
9017
9218
|
};
|
|
9018
9219
|
};
|
|
@@ -9221,7 +9422,9 @@ exports.CloudConnectionErrorNatsFailedCodeEnum = CloudConnectionErrorNatsFailedC
|
|
|
9221
9422
|
exports.CloudConnectionErrorUnexpectedResponseCodeEnum = CloudConnectionErrorUnexpectedResponseCodeEnum;
|
|
9222
9423
|
exports.CloudDisconnectionStatusDisconnectedStatusEnum = CloudDisconnectionStatusDisconnectedStatusEnum;
|
|
9223
9424
|
exports.CloudDisconnectionStatusDisconnectingStatusEnum = CloudDisconnectionStatusDisconnectingStatusEnum;
|
|
9425
|
+
exports.ColliderValueSourceEnum = ColliderValueSourceEnum;
|
|
9224
9426
|
exports.CollisionErrorKindEnum = CollisionErrorKindEnum;
|
|
9427
|
+
exports.CollisionSetupValueSourceEnum = CollisionSetupValueSourceEnum;
|
|
9225
9428
|
exports.Comparator = Comparator;
|
|
9226
9429
|
exports.Configuration = Configuration;
|
|
9227
9430
|
exports.ConfigurationArchiveStatusCreatingStatusEnum = ConfigurationArchiveStatusCreatingStatusEnum;
|
|
@@ -9293,6 +9496,8 @@ exports.JointLimitExceededErrorKindEnum = JointLimitExceededErrorKindEnum;
|
|
|
9293
9496
|
exports.JointTypeEnum = JointTypeEnum;
|
|
9294
9497
|
exports.JointVelocityRequestMessageTypeEnum = JointVelocityRequestMessageTypeEnum;
|
|
9295
9498
|
exports.JointVelocityResponseKindEnum = JointVelocityResponseKindEnum;
|
|
9499
|
+
exports.JointWaypointsRequestMessageTypeEnum = JointWaypointsRequestMessageTypeEnum;
|
|
9500
|
+
exports.JointWaypointsResponseKindEnum = JointWaypointsResponseKindEnum;
|
|
9296
9501
|
exports.KinematicBranchElbow = KinematicBranchElbow;
|
|
9297
9502
|
exports.KinematicBranchShoulder = KinematicBranchShoulder;
|
|
9298
9503
|
exports.KinematicBranchWrist = KinematicBranchWrist;
|
|
@@ -9306,6 +9511,7 @@ exports.LicenseApiAxiosParamCreator = LicenseApiAxiosParamCreator;
|
|
|
9306
9511
|
exports.LicenseApiFactory = LicenseApiFactory;
|
|
9307
9512
|
exports.LicenseApiFp = LicenseApiFp;
|
|
9308
9513
|
exports.LicenseStatusEnum = LicenseStatusEnum;
|
|
9514
|
+
exports.LinkChainValueSourceEnum = LinkChainValueSourceEnum;
|
|
9309
9515
|
exports.Manufacturer = Manufacturer;
|
|
9310
9516
|
exports.MidpointInsertionAlgorithmAlgorithmNameEnum = MidpointInsertionAlgorithmAlgorithmNameEnum;
|
|
9311
9517
|
exports.ModbusIOArea = ModbusIOArea;
|
|
@@ -9343,6 +9549,8 @@ exports.PauseMovementResponseKindEnum = PauseMovementResponseKindEnum;
|
|
|
9343
9549
|
exports.PlaneShapeTypeEnum = PlaneShapeTypeEnum;
|
|
9344
9550
|
exports.PlaybackSpeedRequestMessageTypeEnum = PlaybackSpeedRequestMessageTypeEnum;
|
|
9345
9551
|
exports.PlaybackSpeedResponseKindEnum = PlaybackSpeedResponseKindEnum;
|
|
9552
|
+
exports.PoseWaypointsRequestMessageTypeEnum = PoseWaypointsRequestMessageTypeEnum;
|
|
9553
|
+
exports.PoseWaypointsResponseKindEnum = PoseWaypointsResponseKindEnum;
|
|
9346
9554
|
exports.ProfinetIODirection = ProfinetIODirection;
|
|
9347
9555
|
exports.ProfinetIOTypeEnum = ProfinetIOTypeEnum;
|
|
9348
9556
|
exports.ProgramApi = ProgramApi;
|
|
@@ -9376,6 +9584,7 @@ exports.Snap7IOTypeEnum = Snap7IOTypeEnum;
|
|
|
9376
9584
|
exports.SphereShapeTypeEnum = SphereShapeTypeEnum;
|
|
9377
9585
|
exports.StartMovementRequestMessageTypeEnum = StartMovementRequestMessageTypeEnum;
|
|
9378
9586
|
exports.StartMovementResponseKindEnum = StartMovementResponseKindEnum;
|
|
9587
|
+
exports.StorageKeySourceEnum = StorageKeySourceEnum;
|
|
9379
9588
|
exports.StoreCollisionComponentsApi = StoreCollisionComponentsApi;
|
|
9380
9589
|
exports.StoreCollisionComponentsApiAxiosParamCreator = StoreCollisionComponentsApiAxiosParamCreator;
|
|
9381
9590
|
exports.StoreCollisionComponentsApiFactory = StoreCollisionComponentsApiFactory;
|
|
@@ -9395,6 +9604,7 @@ exports.SystemApiFp = SystemApiFp;
|
|
|
9395
9604
|
exports.TcpRequiredErrorKindEnum = TcpRequiredErrorKindEnum;
|
|
9396
9605
|
exports.TcpVelocityRequestMessageTypeEnum = TcpVelocityRequestMessageTypeEnum;
|
|
9397
9606
|
exports.TcpVelocityResponseKindEnum = TcpVelocityResponseKindEnum;
|
|
9607
|
+
exports.ToolValueSourceEnum = ToolValueSourceEnum;
|
|
9398
9608
|
exports.TorqueExceededErrorKindEnum = TorqueExceededErrorKindEnum;
|
|
9399
9609
|
exports.TrajectoryCachingApi = TrajectoryCachingApi;
|
|
9400
9610
|
exports.TrajectoryCachingApiAxiosParamCreator = TrajectoryCachingApiAxiosParamCreator;
|