@wandelbots/nova-api 26.4.0-dev.50 → 26.4.0-dev.52
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/v1/index.cjs +2 -2
- package/dist/v1/index.d.cts +8 -8
- package/dist/v1/index.d.ts +8 -8
- package/dist/v1/index.js +2 -2
- package/dist/v2/index.cjs +340 -225
- package/dist/v2/index.d.cts +275 -10
- package/dist/v2/index.d.ts +275 -10
- package/dist/v2/index.js +114 -3
- 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$187 = axios.default) {
|
|
15
15
|
this.basePath = basePath;
|
|
16
|
-
this.axios = axios$
|
|
16
|
+
this.axios = axios$187;
|
|
17
17
|
require_defineProperty._defineProperty(this, "configuration", void 0);
|
|
18
18
|
if (configuration) {
|
|
19
19
|
this.configuration = configuration;
|
|
@@ -157,6 +157,7 @@ const ErrorJointPositionCollisionErrorFeedbackNameEnum = { ErrorJointPositionCol
|
|
|
157
157
|
const ErrorMaxIterationsExceededErrorFeedbackNameEnum = { ErrorMaxIterationsExceeded: "ErrorMaxIterationsExceeded" };
|
|
158
158
|
const ErrorUnsupportedOperationErrorFeedbackNameEnum = { ErrorUnsupportedOperation: "ErrorUnsupportedOperation" };
|
|
159
159
|
const FanucControllerKindEnum = { FanucController: "FanucController" };
|
|
160
|
+
const FeedbackAxisRangeExceededErrorFeedbackNameEnum = { FeedbackAxisRangeExceeded: "FeedbackAxisRangeExceeded" };
|
|
160
161
|
const FeedbackCollisionErrorFeedbackNameEnum = { FeedbackCollision: "FeedbackCollision" };
|
|
161
162
|
const FeedbackCommandsMissingErrorFeedbackNameEnum = { FeedbackCommandsMissing: "FeedbackCommandsMissing" };
|
|
162
163
|
const FeedbackCubicSplineIsNotIncreasingErrorFeedbackNameEnum = { FeedbackCubicSplineIsNotIncreasing: "FeedbackCubicSplineIsNotIncreasing" };
|
|
@@ -220,6 +221,18 @@ const JointTypeEnum = {
|
|
|
220
221
|
};
|
|
221
222
|
const JointVelocityRequestMessageTypeEnum = { JointVelocityRequest: "JointVelocityRequest" };
|
|
222
223
|
const JointVelocityResponseKindEnum = { JointVelocityReceived: "JOINT_VELOCITY_RECEIVED" };
|
|
224
|
+
const KinematicBranchElbow = {
|
|
225
|
+
Up: "UP",
|
|
226
|
+
Down: "DOWN"
|
|
227
|
+
};
|
|
228
|
+
const KinematicBranchShoulder = {
|
|
229
|
+
Front: "FRONT",
|
|
230
|
+
Back: "BACK"
|
|
231
|
+
};
|
|
232
|
+
const KinematicBranchWrist = {
|
|
233
|
+
Flip: "FLIP",
|
|
234
|
+
NoFlip: "NO_FLIP"
|
|
235
|
+
};
|
|
223
236
|
const KukaControllerKindEnum = { KukaController: "KukaController" };
|
|
224
237
|
const LicenseStatusEnum = {
|
|
225
238
|
Ok: "OK",
|
|
@@ -3474,6 +3487,64 @@ var JoggingApi = class extends BaseAPI {
|
|
|
3474
3487
|
*/
|
|
3475
3488
|
const KinematicsApiAxiosParamCreator = function(configuration) {
|
|
3476
3489
|
return {
|
|
3490
|
+
configuredPoseInverse: async (cell, configuredPoseInverseRequest, options = {}) => {
|
|
3491
|
+
assertParamExists("configuredPoseInverse", "cell", cell);
|
|
3492
|
+
assertParamExists("configuredPoseInverse", "configuredPoseInverseRequest", configuredPoseInverseRequest);
|
|
3493
|
+
const localVarPath = `/experimental/cells/{cell}/kinematic/configured-pose-inverse`.replace(`{cell}`, encodeURIComponent(String(cell)));
|
|
3494
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
3495
|
+
let baseOptions;
|
|
3496
|
+
if (configuration) baseOptions = configuration.baseOptions;
|
|
3497
|
+
const localVarRequestOptions = {
|
|
3498
|
+
method: "POST",
|
|
3499
|
+
...baseOptions,
|
|
3500
|
+
...options
|
|
3501
|
+
};
|
|
3502
|
+
const localVarHeaderParameter = {};
|
|
3503
|
+
const localVarQueryParameter = {};
|
|
3504
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
3505
|
+
localVarHeaderParameter["Content-Type"] = "application/json";
|
|
3506
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
3507
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3508
|
+
localVarRequestOptions.headers = {
|
|
3509
|
+
...localVarHeaderParameter,
|
|
3510
|
+
...headersFromBaseOptions,
|
|
3511
|
+
...options.headers
|
|
3512
|
+
};
|
|
3513
|
+
localVarRequestOptions.data = serializeDataIfNeeded(configuredPoseInverseRequest, localVarRequestOptions, configuration);
|
|
3514
|
+
return {
|
|
3515
|
+
url: toPathString(localVarUrlObj),
|
|
3516
|
+
options: localVarRequestOptions
|
|
3517
|
+
};
|
|
3518
|
+
},
|
|
3519
|
+
convertVendorConfiguredPose: async (cell, convertVendorConfiguredPoseRequest, options = {}) => {
|
|
3520
|
+
assertParamExists("convertVendorConfiguredPose", "cell", cell);
|
|
3521
|
+
assertParamExists("convertVendorConfiguredPose", "convertVendorConfiguredPoseRequest", convertVendorConfiguredPoseRequest);
|
|
3522
|
+
const localVarPath = `/experimental/cells/{cell}/kinematic/convert-vendor-configured-pose`.replace(`{cell}`, encodeURIComponent(String(cell)));
|
|
3523
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
3524
|
+
let baseOptions;
|
|
3525
|
+
if (configuration) baseOptions = configuration.baseOptions;
|
|
3526
|
+
const localVarRequestOptions = {
|
|
3527
|
+
method: "POST",
|
|
3528
|
+
...baseOptions,
|
|
3529
|
+
...options
|
|
3530
|
+
};
|
|
3531
|
+
const localVarHeaderParameter = {};
|
|
3532
|
+
const localVarQueryParameter = {};
|
|
3533
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
3534
|
+
localVarHeaderParameter["Content-Type"] = "application/json";
|
|
3535
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
3536
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3537
|
+
localVarRequestOptions.headers = {
|
|
3538
|
+
...localVarHeaderParameter,
|
|
3539
|
+
...headersFromBaseOptions,
|
|
3540
|
+
...options.headers
|
|
3541
|
+
};
|
|
3542
|
+
localVarRequestOptions.data = serializeDataIfNeeded(convertVendorConfiguredPoseRequest, localVarRequestOptions, configuration);
|
|
3543
|
+
return {
|
|
3544
|
+
url: toPathString(localVarUrlObj),
|
|
3545
|
+
options: localVarRequestOptions
|
|
3546
|
+
};
|
|
3547
|
+
},
|
|
3477
3548
|
forwardKinematics: async (cell, forwardKinematicsRequest, options = {}) => {
|
|
3478
3549
|
assertParamExists("forwardKinematics", "cell", cell);
|
|
3479
3550
|
assertParamExists("forwardKinematics", "forwardKinematicsRequest", forwardKinematicsRequest);
|
|
@@ -3569,40 +3640,58 @@ const KinematicsApiAxiosParamCreator = function(configuration) {
|
|
|
3569
3640
|
const KinematicsApiFp = function(configuration) {
|
|
3570
3641
|
const localVarAxiosParamCreator = KinematicsApiAxiosParamCreator(configuration);
|
|
3571
3642
|
return {
|
|
3643
|
+
async configuredPoseInverse(cell, configuredPoseInverseRequest, options) {
|
|
3644
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.configuredPoseInverse(cell, configuredPoseInverseRequest, options);
|
|
3645
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
3646
|
+
const localVarOperationServerBasePath = operationServerMap["KinematicsApi.configuredPoseInverse"]?.[localVarOperationServerIndex]?.url;
|
|
3647
|
+
return (axios$65, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$65, localVarOperationServerBasePath || basePath);
|
|
3648
|
+
},
|
|
3649
|
+
async convertVendorConfiguredPose(cell, convertVendorConfiguredPoseRequest, options) {
|
|
3650
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.convertVendorConfiguredPose(cell, convertVendorConfiguredPoseRequest, options);
|
|
3651
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
3652
|
+
const localVarOperationServerBasePath = operationServerMap["KinematicsApi.convertVendorConfiguredPose"]?.[localVarOperationServerIndex]?.url;
|
|
3653
|
+
return (axios$66, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$66, localVarOperationServerBasePath || basePath);
|
|
3654
|
+
},
|
|
3572
3655
|
async forwardKinematics(cell, forwardKinematicsRequest, options) {
|
|
3573
3656
|
const localVarAxiosArgs = await localVarAxiosParamCreator.forwardKinematics(cell, forwardKinematicsRequest, options);
|
|
3574
3657
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
3575
3658
|
const localVarOperationServerBasePath = operationServerMap["KinematicsApi.forwardKinematics"]?.[localVarOperationServerIndex]?.url;
|
|
3576
|
-
return (axios$
|
|
3659
|
+
return (axios$67, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$67, localVarOperationServerBasePath || basePath);
|
|
3577
3660
|
},
|
|
3578
3661
|
async inverseKinematics(cell, inverseKinematicsRequest, options) {
|
|
3579
3662
|
const localVarAxiosArgs = await localVarAxiosParamCreator.inverseKinematics(cell, inverseKinematicsRequest, options);
|
|
3580
3663
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
3581
3664
|
const localVarOperationServerBasePath = operationServerMap["KinematicsApi.inverseKinematics"]?.[localVarOperationServerIndex]?.url;
|
|
3582
|
-
return (axios$
|
|
3665
|
+
return (axios$68, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$68, localVarOperationServerBasePath || basePath);
|
|
3583
3666
|
},
|
|
3584
3667
|
async projectJointPositionDirectionConstraint(cell, projectJointPositionDirectionConstraintRequest, options) {
|
|
3585
3668
|
const localVarAxiosArgs = await localVarAxiosParamCreator.projectJointPositionDirectionConstraint(cell, projectJointPositionDirectionConstraintRequest, options);
|
|
3586
3669
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
3587
3670
|
const localVarOperationServerBasePath = operationServerMap["KinematicsApi.projectJointPositionDirectionConstraint"]?.[localVarOperationServerIndex]?.url;
|
|
3588
|
-
return (axios$
|
|
3671
|
+
return (axios$69, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$69, localVarOperationServerBasePath || basePath);
|
|
3589
3672
|
}
|
|
3590
3673
|
};
|
|
3591
3674
|
};
|
|
3592
3675
|
/**
|
|
3593
3676
|
* KinematicsApi - factory interface
|
|
3594
3677
|
*/
|
|
3595
|
-
const KinematicsApiFactory = function(configuration, basePath, axios$
|
|
3678
|
+
const KinematicsApiFactory = function(configuration, basePath, axios$70) {
|
|
3596
3679
|
const localVarFp = KinematicsApiFp(configuration);
|
|
3597
3680
|
return {
|
|
3681
|
+
configuredPoseInverse(cell, configuredPoseInverseRequest, options) {
|
|
3682
|
+
return localVarFp.configuredPoseInverse(cell, configuredPoseInverseRequest, options).then((request) => request(axios$70, basePath));
|
|
3683
|
+
},
|
|
3684
|
+
convertVendorConfiguredPose(cell, convertVendorConfiguredPoseRequest, options) {
|
|
3685
|
+
return localVarFp.convertVendorConfiguredPose(cell, convertVendorConfiguredPoseRequest, options).then((request) => request(axios$70, basePath));
|
|
3686
|
+
},
|
|
3598
3687
|
forwardKinematics(cell, forwardKinematicsRequest, options) {
|
|
3599
|
-
return localVarFp.forwardKinematics(cell, forwardKinematicsRequest, options).then((request) => request(axios$
|
|
3688
|
+
return localVarFp.forwardKinematics(cell, forwardKinematicsRequest, options).then((request) => request(axios$70, basePath));
|
|
3600
3689
|
},
|
|
3601
3690
|
inverseKinematics(cell, inverseKinematicsRequest, options) {
|
|
3602
|
-
return localVarFp.inverseKinematics(cell, inverseKinematicsRequest, options).then((request) => request(axios$
|
|
3691
|
+
return localVarFp.inverseKinematics(cell, inverseKinematicsRequest, options).then((request) => request(axios$70, basePath));
|
|
3603
3692
|
},
|
|
3604
3693
|
projectJointPositionDirectionConstraint(cell, projectJointPositionDirectionConstraintRequest, options) {
|
|
3605
|
-
return localVarFp.projectJointPositionDirectionConstraint(cell, projectJointPositionDirectionConstraintRequest, options).then((request) => request(axios$
|
|
3694
|
+
return localVarFp.projectJointPositionDirectionConstraint(cell, projectJointPositionDirectionConstraintRequest, options).then((request) => request(axios$70, basePath));
|
|
3606
3695
|
}
|
|
3607
3696
|
};
|
|
3608
3697
|
};
|
|
@@ -3610,6 +3699,28 @@ const KinematicsApiFactory = function(configuration, basePath, axios$68) {
|
|
|
3610
3699
|
* KinematicsApi - object-oriented interface
|
|
3611
3700
|
*/
|
|
3612
3701
|
var KinematicsApi = class extends BaseAPI {
|
|
3702
|
+
/**
|
|
3703
|
+
* **Required permissions:** `can_plan_motion` - Plan robot motions and trajectories ___ Returns the reachable joint positions for a list of given poses.
|
|
3704
|
+
* @summary Inverse kinematics configured pose
|
|
3705
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
3706
|
+
* @param {ConfiguredPoseInverseRequest} configuredPoseInverseRequest
|
|
3707
|
+
* @param {*} [options] Override http request option.
|
|
3708
|
+
* @throws {RequiredError}
|
|
3709
|
+
*/
|
|
3710
|
+
configuredPoseInverse(cell, configuredPoseInverseRequest, options) {
|
|
3711
|
+
return KinematicsApiFp(this.configuration).configuredPoseInverse(cell, configuredPoseInverseRequest, options).then((request) => request(this.axios, this.basePath));
|
|
3712
|
+
}
|
|
3713
|
+
/**
|
|
3714
|
+
* **Required permissions:** `can_plan_motion` - Plan robot motions and trajectories ___ Converts a vendor-specific pose with configuration data to a vendor-independent pose with kinematic configuration.
|
|
3715
|
+
* @summary Convert vendor-configured pose
|
|
3716
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
3717
|
+
* @param {ConvertVendorConfiguredPoseRequest} convertVendorConfiguredPoseRequest
|
|
3718
|
+
* @param {*} [options] Override http request option.
|
|
3719
|
+
* @throws {RequiredError}
|
|
3720
|
+
*/
|
|
3721
|
+
convertVendorConfiguredPose(cell, convertVendorConfiguredPoseRequest, options) {
|
|
3722
|
+
return KinematicsApiFp(this.configuration).convertVendorConfiguredPose(cell, convertVendorConfiguredPoseRequest, options).then((request) => request(this.axios, this.basePath));
|
|
3723
|
+
}
|
|
3613
3724
|
/**
|
|
3614
3725
|
* **Required permissions:** `can_plan_motion` - Plan robot motions and trajectories ___ Returns the TCP poses for a list of given joint positions.
|
|
3615
3726
|
* @summary Forward kinematics
|
|
@@ -3760,45 +3871,45 @@ const LicenseApiFp = function(configuration) {
|
|
|
3760
3871
|
const localVarAxiosArgs = await localVarAxiosParamCreator.activateLicense(activateLicenseRequest, options);
|
|
3761
3872
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
3762
3873
|
const localVarOperationServerBasePath = operationServerMap["LicenseApi.activateLicense"]?.[localVarOperationServerIndex]?.url;
|
|
3763
|
-
return (axios$
|
|
3874
|
+
return (axios$71, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$71, localVarOperationServerBasePath || basePath);
|
|
3764
3875
|
},
|
|
3765
3876
|
async deactivateLicense(options) {
|
|
3766
3877
|
const localVarAxiosArgs = await localVarAxiosParamCreator.deactivateLicense(options);
|
|
3767
3878
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
3768
3879
|
const localVarOperationServerBasePath = operationServerMap["LicenseApi.deactivateLicense"]?.[localVarOperationServerIndex]?.url;
|
|
3769
|
-
return (axios$
|
|
3880
|
+
return (axios$72, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$72, localVarOperationServerBasePath || basePath);
|
|
3770
3881
|
},
|
|
3771
3882
|
async getLicense(options) {
|
|
3772
3883
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getLicense(options);
|
|
3773
3884
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
3774
3885
|
const localVarOperationServerBasePath = operationServerMap["LicenseApi.getLicense"]?.[localVarOperationServerIndex]?.url;
|
|
3775
|
-
return (axios$
|
|
3886
|
+
return (axios$73, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$73, localVarOperationServerBasePath || basePath);
|
|
3776
3887
|
},
|
|
3777
3888
|
async getLicenseStatus(options) {
|
|
3778
3889
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getLicenseStatus(options);
|
|
3779
3890
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
3780
3891
|
const localVarOperationServerBasePath = operationServerMap["LicenseApi.getLicenseStatus"]?.[localVarOperationServerIndex]?.url;
|
|
3781
|
-
return (axios$
|
|
3892
|
+
return (axios$74, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$74, localVarOperationServerBasePath || basePath);
|
|
3782
3893
|
}
|
|
3783
3894
|
};
|
|
3784
3895
|
};
|
|
3785
3896
|
/**
|
|
3786
3897
|
* LicenseApi - factory interface
|
|
3787
3898
|
*/
|
|
3788
|
-
const LicenseApiFactory = function(configuration, basePath, axios$
|
|
3899
|
+
const LicenseApiFactory = function(configuration, basePath, axios$75) {
|
|
3789
3900
|
const localVarFp = LicenseApiFp(configuration);
|
|
3790
3901
|
return {
|
|
3791
3902
|
activateLicense(activateLicenseRequest, options) {
|
|
3792
|
-
return localVarFp.activateLicense(activateLicenseRequest, options).then((request) => request(axios$
|
|
3903
|
+
return localVarFp.activateLicense(activateLicenseRequest, options).then((request) => request(axios$75, basePath));
|
|
3793
3904
|
},
|
|
3794
3905
|
deactivateLicense(options) {
|
|
3795
|
-
return localVarFp.deactivateLicense(options).then((request) => request(axios$
|
|
3906
|
+
return localVarFp.deactivateLicense(options).then((request) => request(axios$75, basePath));
|
|
3796
3907
|
},
|
|
3797
3908
|
getLicense(options) {
|
|
3798
|
-
return localVarFp.getLicense(options).then((request) => request(axios$
|
|
3909
|
+
return localVarFp.getLicense(options).then((request) => request(axios$75, basePath));
|
|
3799
3910
|
},
|
|
3800
3911
|
getLicenseStatus(options) {
|
|
3801
|
-
return localVarFp.getLicenseStatus(options).then((request) => request(axios$
|
|
3912
|
+
return localVarFp.getLicenseStatus(options).then((request) => request(axios$75, basePath));
|
|
3802
3913
|
}
|
|
3803
3914
|
};
|
|
3804
3915
|
};
|
|
@@ -3826,7 +3937,7 @@ var LicenseApi = class extends BaseAPI {
|
|
|
3826
3937
|
return LicenseApiFp(this.configuration).deactivateLicense(options).then((request) => request(this.axios, this.basePath));
|
|
3827
3938
|
}
|
|
3828
3939
|
/**
|
|
3829
|
-
* **Required permissions:** `
|
|
3940
|
+
* **Required permissions:** `can_access_license` - View license status ___ Get information on the license used with the Wandelbots NOVA instance, e.g., licensed product, expiration date, license status.
|
|
3830
3941
|
* @summary Get license
|
|
3831
3942
|
* @param {*} [options] Override http request option.
|
|
3832
3943
|
* @throws {RequiredError}
|
|
@@ -3948,36 +4059,36 @@ const MotionGroupApiFp = function(configuration) {
|
|
|
3948
4059
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getCurrentMotionGroupState(cell, controller, motionGroup, responseCoordinateSystem, options);
|
|
3949
4060
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
3950
4061
|
const localVarOperationServerBasePath = operationServerMap["MotionGroupApi.getCurrentMotionGroupState"]?.[localVarOperationServerIndex]?.url;
|
|
3951
|
-
return (axios$
|
|
4062
|
+
return (axios$76, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$76, localVarOperationServerBasePath || basePath);
|
|
3952
4063
|
},
|
|
3953
4064
|
async getMotionGroupDescription(cell, controller, motionGroup, options) {
|
|
3954
4065
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getMotionGroupDescription(cell, controller, motionGroup, options);
|
|
3955
4066
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
3956
4067
|
const localVarOperationServerBasePath = operationServerMap["MotionGroupApi.getMotionGroupDescription"]?.[localVarOperationServerIndex]?.url;
|
|
3957
|
-
return (axios$
|
|
4068
|
+
return (axios$77, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$77, localVarOperationServerBasePath || basePath);
|
|
3958
4069
|
},
|
|
3959
4070
|
async streamMotionGroupState(cell, controller, motionGroup, responseRate, responseCoordinateSystem, options) {
|
|
3960
4071
|
const localVarAxiosArgs = await localVarAxiosParamCreator.streamMotionGroupState(cell, controller, motionGroup, responseRate, responseCoordinateSystem, options);
|
|
3961
4072
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
3962
4073
|
const localVarOperationServerBasePath = operationServerMap["MotionGroupApi.streamMotionGroupState"]?.[localVarOperationServerIndex]?.url;
|
|
3963
|
-
return (axios$
|
|
4074
|
+
return (axios$78, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$78, localVarOperationServerBasePath || basePath);
|
|
3964
4075
|
}
|
|
3965
4076
|
};
|
|
3966
4077
|
};
|
|
3967
4078
|
/**
|
|
3968
4079
|
* MotionGroupApi - factory interface
|
|
3969
4080
|
*/
|
|
3970
|
-
const MotionGroupApiFactory = function(configuration, basePath, axios$
|
|
4081
|
+
const MotionGroupApiFactory = function(configuration, basePath, axios$79) {
|
|
3971
4082
|
const localVarFp = MotionGroupApiFp(configuration);
|
|
3972
4083
|
return {
|
|
3973
4084
|
getCurrentMotionGroupState(cell, controller, motionGroup, responseCoordinateSystem, options) {
|
|
3974
|
-
return localVarFp.getCurrentMotionGroupState(cell, controller, motionGroup, responseCoordinateSystem, options).then((request) => request(axios$
|
|
4085
|
+
return localVarFp.getCurrentMotionGroupState(cell, controller, motionGroup, responseCoordinateSystem, options).then((request) => request(axios$79, basePath));
|
|
3975
4086
|
},
|
|
3976
4087
|
getMotionGroupDescription(cell, controller, motionGroup, options) {
|
|
3977
|
-
return localVarFp.getMotionGroupDescription(cell, controller, motionGroup, options).then((request) => request(axios$
|
|
4088
|
+
return localVarFp.getMotionGroupDescription(cell, controller, motionGroup, options).then((request) => request(axios$79, basePath));
|
|
3978
4089
|
},
|
|
3979
4090
|
streamMotionGroupState(cell, controller, motionGroup, responseRate, responseCoordinateSystem, options) {
|
|
3980
|
-
return localVarFp.streamMotionGroupState(cell, controller, motionGroup, responseRate, responseCoordinateSystem, options).then((request) => request(axios$
|
|
4091
|
+
return localVarFp.streamMotionGroupState(cell, controller, motionGroup, responseRate, responseCoordinateSystem, options).then((request) => request(axios$79, basePath));
|
|
3981
4092
|
}
|
|
3982
4093
|
};
|
|
3983
4094
|
};
|
|
@@ -4170,54 +4281,54 @@ const MotionGroupModelsApiFp = function(configuration) {
|
|
|
4170
4281
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getMotionGroupCollisionModel(motionGroupModel, options);
|
|
4171
4282
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
4172
4283
|
const localVarOperationServerBasePath = operationServerMap["MotionGroupModelsApi.getMotionGroupCollisionModel"]?.[localVarOperationServerIndex]?.url;
|
|
4173
|
-
return (axios$
|
|
4284
|
+
return (axios$80, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$80, localVarOperationServerBasePath || basePath);
|
|
4174
4285
|
},
|
|
4175
4286
|
async getMotionGroupGlbModel(motionGroupModel, options) {
|
|
4176
4287
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getMotionGroupGlbModel(motionGroupModel, options);
|
|
4177
4288
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
4178
4289
|
const localVarOperationServerBasePath = operationServerMap["MotionGroupModelsApi.getMotionGroupGlbModel"]?.[localVarOperationServerIndex]?.url;
|
|
4179
|
-
return (axios$
|
|
4290
|
+
return (axios$81, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$81, localVarOperationServerBasePath || basePath);
|
|
4180
4291
|
},
|
|
4181
4292
|
async getMotionGroupKinematicModel(motionGroupModel, options) {
|
|
4182
4293
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getMotionGroupKinematicModel(motionGroupModel, options);
|
|
4183
4294
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
4184
4295
|
const localVarOperationServerBasePath = operationServerMap["MotionGroupModelsApi.getMotionGroupKinematicModel"]?.[localVarOperationServerIndex]?.url;
|
|
4185
|
-
return (axios$
|
|
4296
|
+
return (axios$82, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$82, localVarOperationServerBasePath || basePath);
|
|
4186
4297
|
},
|
|
4187
4298
|
async getMotionGroupModels(options) {
|
|
4188
4299
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getMotionGroupModels(options);
|
|
4189
4300
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
4190
4301
|
const localVarOperationServerBasePath = operationServerMap["MotionGroupModelsApi.getMotionGroupModels"]?.[localVarOperationServerIndex]?.url;
|
|
4191
|
-
return (axios$
|
|
4302
|
+
return (axios$83, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$83, localVarOperationServerBasePath || basePath);
|
|
4192
4303
|
},
|
|
4193
4304
|
async getMotionGroupUsdModel(motionGroupModel, options) {
|
|
4194
4305
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getMotionGroupUsdModel(motionGroupModel, options);
|
|
4195
4306
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
4196
4307
|
const localVarOperationServerBasePath = operationServerMap["MotionGroupModelsApi.getMotionGroupUsdModel"]?.[localVarOperationServerIndex]?.url;
|
|
4197
|
-
return (axios$
|
|
4308
|
+
return (axios$84, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$84, localVarOperationServerBasePath || basePath);
|
|
4198
4309
|
}
|
|
4199
4310
|
};
|
|
4200
4311
|
};
|
|
4201
4312
|
/**
|
|
4202
4313
|
* MotionGroupModelsApi - factory interface
|
|
4203
4314
|
*/
|
|
4204
|
-
const MotionGroupModelsApiFactory = function(configuration, basePath, axios$
|
|
4315
|
+
const MotionGroupModelsApiFactory = function(configuration, basePath, axios$85) {
|
|
4205
4316
|
const localVarFp = MotionGroupModelsApiFp(configuration);
|
|
4206
4317
|
return {
|
|
4207
4318
|
getMotionGroupCollisionModel(motionGroupModel, options) {
|
|
4208
|
-
return localVarFp.getMotionGroupCollisionModel(motionGroupModel, options).then((request) => request(axios$
|
|
4319
|
+
return localVarFp.getMotionGroupCollisionModel(motionGroupModel, options).then((request) => request(axios$85, basePath));
|
|
4209
4320
|
},
|
|
4210
4321
|
getMotionGroupGlbModel(motionGroupModel, options) {
|
|
4211
|
-
return localVarFp.getMotionGroupGlbModel(motionGroupModel, options).then((request) => request(axios$
|
|
4322
|
+
return localVarFp.getMotionGroupGlbModel(motionGroupModel, options).then((request) => request(axios$85, basePath));
|
|
4212
4323
|
},
|
|
4213
4324
|
getMotionGroupKinematicModel(motionGroupModel, options) {
|
|
4214
|
-
return localVarFp.getMotionGroupKinematicModel(motionGroupModel, options).then((request) => request(axios$
|
|
4325
|
+
return localVarFp.getMotionGroupKinematicModel(motionGroupModel, options).then((request) => request(axios$85, basePath));
|
|
4215
4326
|
},
|
|
4216
4327
|
getMotionGroupModels(options) {
|
|
4217
|
-
return localVarFp.getMotionGroupModels(options).then((request) => request(axios$
|
|
4328
|
+
return localVarFp.getMotionGroupModels(options).then((request) => request(axios$85, basePath));
|
|
4218
4329
|
},
|
|
4219
4330
|
getMotionGroupUsdModel(motionGroupModel, options) {
|
|
4220
|
-
return localVarFp.getMotionGroupUsdModel(motionGroupModel, options).then((request) => request(axios$
|
|
4331
|
+
return localVarFp.getMotionGroupUsdModel(motionGroupModel, options).then((request) => request(axios$85, basePath));
|
|
4221
4332
|
}
|
|
4222
4333
|
};
|
|
4223
4334
|
};
|
|
@@ -4368,36 +4479,36 @@ const NOVACloudApiFp = function(configuration) {
|
|
|
4368
4479
|
const localVarAxiosArgs = await localVarAxiosParamCreator.connectToNovaCloud(completionTimeout, cloudConnectionRequest, options);
|
|
4369
4480
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
4370
4481
|
const localVarOperationServerBasePath = operationServerMap["NOVACloudApi.connectToNovaCloud"]?.[localVarOperationServerIndex]?.url;
|
|
4371
|
-
return (axios$
|
|
4482
|
+
return (axios$86, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$86, localVarOperationServerBasePath || basePath);
|
|
4372
4483
|
},
|
|
4373
4484
|
async disconnectFromNovaCloud(completionTimeout, options) {
|
|
4374
4485
|
const localVarAxiosArgs = await localVarAxiosParamCreator.disconnectFromNovaCloud(completionTimeout, options);
|
|
4375
4486
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
4376
4487
|
const localVarOperationServerBasePath = operationServerMap["NOVACloudApi.disconnectFromNovaCloud"]?.[localVarOperationServerIndex]?.url;
|
|
4377
|
-
return (axios$
|
|
4488
|
+
return (axios$87, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$87, localVarOperationServerBasePath || basePath);
|
|
4378
4489
|
},
|
|
4379
4490
|
async getNovaCloudConfig(options) {
|
|
4380
4491
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getNovaCloudConfig(options);
|
|
4381
4492
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
4382
4493
|
const localVarOperationServerBasePath = operationServerMap["NOVACloudApi.getNovaCloudConfig"]?.[localVarOperationServerIndex]?.url;
|
|
4383
|
-
return (axios$
|
|
4494
|
+
return (axios$88, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$88, localVarOperationServerBasePath || basePath);
|
|
4384
4495
|
}
|
|
4385
4496
|
};
|
|
4386
4497
|
};
|
|
4387
4498
|
/**
|
|
4388
4499
|
* NOVACloudApi - factory interface
|
|
4389
4500
|
*/
|
|
4390
|
-
const NOVACloudApiFactory = function(configuration, basePath, axios$
|
|
4501
|
+
const NOVACloudApiFactory = function(configuration, basePath, axios$89) {
|
|
4391
4502
|
const localVarFp = NOVACloudApiFp(configuration);
|
|
4392
4503
|
return {
|
|
4393
4504
|
connectToNovaCloud(completionTimeout, cloudConnectionRequest, options) {
|
|
4394
|
-
return localVarFp.connectToNovaCloud(completionTimeout, cloudConnectionRequest, options).then((request) => request(axios$
|
|
4505
|
+
return localVarFp.connectToNovaCloud(completionTimeout, cloudConnectionRequest, options).then((request) => request(axios$89, basePath));
|
|
4395
4506
|
},
|
|
4396
4507
|
disconnectFromNovaCloud(completionTimeout, options) {
|
|
4397
|
-
return localVarFp.disconnectFromNovaCloud(completionTimeout, options).then((request) => request(axios$
|
|
4508
|
+
return localVarFp.disconnectFromNovaCloud(completionTimeout, options).then((request) => request(axios$89, basePath));
|
|
4398
4509
|
},
|
|
4399
4510
|
getNovaCloudConfig(options) {
|
|
4400
|
-
return localVarFp.getNovaCloudConfig(options).then((request) => request(axios$
|
|
4511
|
+
return localVarFp.getNovaCloudConfig(options).then((request) => request(axios$89, basePath));
|
|
4401
4512
|
}
|
|
4402
4513
|
};
|
|
4403
4514
|
};
|
|
@@ -4563,45 +4674,45 @@ const ProgramApiFp = function(configuration) {
|
|
|
4563
4674
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getProgram(cell, program, options);
|
|
4564
4675
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
4565
4676
|
const localVarOperationServerBasePath = operationServerMap["ProgramApi.getProgram"]?.[localVarOperationServerIndex]?.url;
|
|
4566
|
-
return (axios$
|
|
4677
|
+
return (axios$90, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$90, localVarOperationServerBasePath || basePath);
|
|
4567
4678
|
},
|
|
4568
4679
|
async listPrograms(cell, options) {
|
|
4569
4680
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listPrograms(cell, options);
|
|
4570
4681
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
4571
4682
|
const localVarOperationServerBasePath = operationServerMap["ProgramApi.listPrograms"]?.[localVarOperationServerIndex]?.url;
|
|
4572
|
-
return (axios$
|
|
4683
|
+
return (axios$91, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$91, localVarOperationServerBasePath || basePath);
|
|
4573
4684
|
},
|
|
4574
4685
|
async startProgram(cell, program, programStartRequest, options) {
|
|
4575
4686
|
const localVarAxiosArgs = await localVarAxiosParamCreator.startProgram(cell, program, programStartRequest, options);
|
|
4576
4687
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
4577
4688
|
const localVarOperationServerBasePath = operationServerMap["ProgramApi.startProgram"]?.[localVarOperationServerIndex]?.url;
|
|
4578
|
-
return (axios$
|
|
4689
|
+
return (axios$92, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$92, localVarOperationServerBasePath || basePath);
|
|
4579
4690
|
},
|
|
4580
4691
|
async stopProgram(cell, program, options) {
|
|
4581
4692
|
const localVarAxiosArgs = await localVarAxiosParamCreator.stopProgram(cell, program, options);
|
|
4582
4693
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
4583
4694
|
const localVarOperationServerBasePath = operationServerMap["ProgramApi.stopProgram"]?.[localVarOperationServerIndex]?.url;
|
|
4584
|
-
return (axios$
|
|
4695
|
+
return (axios$93, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$93, localVarOperationServerBasePath || basePath);
|
|
4585
4696
|
}
|
|
4586
4697
|
};
|
|
4587
4698
|
};
|
|
4588
4699
|
/**
|
|
4589
4700
|
* ProgramApi - factory interface
|
|
4590
4701
|
*/
|
|
4591
|
-
const ProgramApiFactory = function(configuration, basePath, axios$
|
|
4702
|
+
const ProgramApiFactory = function(configuration, basePath, axios$94) {
|
|
4592
4703
|
const localVarFp = ProgramApiFp(configuration);
|
|
4593
4704
|
return {
|
|
4594
4705
|
getProgram(cell, program, options) {
|
|
4595
|
-
return localVarFp.getProgram(cell, program, options).then((request) => request(axios$
|
|
4706
|
+
return localVarFp.getProgram(cell, program, options).then((request) => request(axios$94, basePath));
|
|
4596
4707
|
},
|
|
4597
4708
|
listPrograms(cell, options) {
|
|
4598
|
-
return localVarFp.listPrograms(cell, options).then((request) => request(axios$
|
|
4709
|
+
return localVarFp.listPrograms(cell, options).then((request) => request(axios$94, basePath));
|
|
4599
4710
|
},
|
|
4600
4711
|
startProgram(cell, program, programStartRequest, options) {
|
|
4601
|
-
return localVarFp.startProgram(cell, program, programStartRequest, options).then((request) => request(axios$
|
|
4712
|
+
return localVarFp.startProgram(cell, program, programStartRequest, options).then((request) => request(axios$94, basePath));
|
|
4602
4713
|
},
|
|
4603
4714
|
stopProgram(cell, program, options) {
|
|
4604
|
-
return localVarFp.stopProgram(cell, program, options).then((request) => request(axios$
|
|
4715
|
+
return localVarFp.stopProgram(cell, program, options).then((request) => request(axios$94, basePath));
|
|
4605
4716
|
}
|
|
4606
4717
|
};
|
|
4607
4718
|
};
|
|
@@ -4722,27 +4833,27 @@ const RobotConfigurationsApiFp = function(configuration) {
|
|
|
4722
4833
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getControllerConfigFromArpScan(robotControllerConfigurationRequest, options);
|
|
4723
4834
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
4724
4835
|
const localVarOperationServerBasePath = operationServerMap["RobotConfigurationsApi.getControllerConfigFromArpScan"]?.[localVarOperationServerIndex]?.url;
|
|
4725
|
-
return (axios$
|
|
4836
|
+
return (axios$95, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$95, localVarOperationServerBasePath || basePath);
|
|
4726
4837
|
},
|
|
4727
4838
|
async getRobotConfigurations(options) {
|
|
4728
4839
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getRobotConfigurations(options);
|
|
4729
4840
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
4730
4841
|
const localVarOperationServerBasePath = operationServerMap["RobotConfigurationsApi.getRobotConfigurations"]?.[localVarOperationServerIndex]?.url;
|
|
4731
|
-
return (axios$
|
|
4842
|
+
return (axios$96, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$96, localVarOperationServerBasePath || basePath);
|
|
4732
4843
|
}
|
|
4733
4844
|
};
|
|
4734
4845
|
};
|
|
4735
4846
|
/**
|
|
4736
4847
|
* RobotConfigurationsApi - factory interface
|
|
4737
4848
|
*/
|
|
4738
|
-
const RobotConfigurationsApiFactory = function(configuration, basePath, axios$
|
|
4849
|
+
const RobotConfigurationsApiFactory = function(configuration, basePath, axios$97) {
|
|
4739
4850
|
const localVarFp = RobotConfigurationsApiFp(configuration);
|
|
4740
4851
|
return {
|
|
4741
4852
|
getControllerConfigFromArpScan(robotControllerConfigurationRequest, options) {
|
|
4742
|
-
return localVarFp.getControllerConfigFromArpScan(robotControllerConfigurationRequest, options).then((request) => request(axios$
|
|
4853
|
+
return localVarFp.getControllerConfigFromArpScan(robotControllerConfigurationRequest, options).then((request) => request(axios$97, basePath));
|
|
4743
4854
|
},
|
|
4744
4855
|
getRobotConfigurations(options) {
|
|
4745
|
-
return localVarFp.getRobotConfigurations(options).then((request) => request(axios$
|
|
4856
|
+
return localVarFp.getRobotConfigurations(options).then((request) => request(axios$97, basePath));
|
|
4746
4857
|
}
|
|
4747
4858
|
};
|
|
4748
4859
|
};
|
|
@@ -4808,16 +4919,16 @@ const SessionApiFp = function(configuration) {
|
|
|
4808
4919
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getSession(options);
|
|
4809
4920
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
4810
4921
|
const localVarOperationServerBasePath = operationServerMap["SessionApi.getSession"]?.[localVarOperationServerIndex]?.url;
|
|
4811
|
-
return (axios$
|
|
4922
|
+
return (axios$98, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$98, localVarOperationServerBasePath || basePath);
|
|
4812
4923
|
} };
|
|
4813
4924
|
};
|
|
4814
4925
|
/**
|
|
4815
4926
|
* SessionApi - factory interface
|
|
4816
4927
|
*/
|
|
4817
|
-
const SessionApiFactory = function(configuration, basePath, axios$
|
|
4928
|
+
const SessionApiFactory = function(configuration, basePath, axios$99) {
|
|
4818
4929
|
const localVarFp = SessionApiFp(configuration);
|
|
4819
4930
|
return { getSession(options) {
|
|
4820
|
-
return localVarFp.getSession(options).then((request) => request(axios$
|
|
4931
|
+
return localVarFp.getSession(options).then((request) => request(axios$99, basePath));
|
|
4821
4932
|
} };
|
|
4822
4933
|
};
|
|
4823
4934
|
/**
|
|
@@ -5259,144 +5370,144 @@ const StoreCollisionComponentsApiFp = function(configuration) {
|
|
|
5259
5370
|
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteStoredCollider(cell, collider, options);
|
|
5260
5371
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
5261
5372
|
const localVarOperationServerBasePath = operationServerMap["StoreCollisionComponentsApi.deleteStoredCollider"]?.[localVarOperationServerIndex]?.url;
|
|
5262
|
-
return (axios$
|
|
5373
|
+
return (axios$100, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$100, localVarOperationServerBasePath || basePath);
|
|
5263
5374
|
},
|
|
5264
5375
|
async deleteStoredCollisionLinkChain(cell, linkChain, options) {
|
|
5265
5376
|
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteStoredCollisionLinkChain(cell, linkChain, options);
|
|
5266
5377
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
5267
5378
|
const localVarOperationServerBasePath = operationServerMap["StoreCollisionComponentsApi.deleteStoredCollisionLinkChain"]?.[localVarOperationServerIndex]?.url;
|
|
5268
|
-
return (axios$
|
|
5379
|
+
return (axios$101, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$101, localVarOperationServerBasePath || basePath);
|
|
5269
5380
|
},
|
|
5270
5381
|
async deleteStoredCollisionTool(cell, tool, options) {
|
|
5271
5382
|
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteStoredCollisionTool(cell, tool, options);
|
|
5272
5383
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
5273
5384
|
const localVarOperationServerBasePath = operationServerMap["StoreCollisionComponentsApi.deleteStoredCollisionTool"]?.[localVarOperationServerIndex]?.url;
|
|
5274
|
-
return (axios$
|
|
5385
|
+
return (axios$102, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$102, localVarOperationServerBasePath || basePath);
|
|
5275
5386
|
},
|
|
5276
5387
|
async getStoredCollider(cell, collider, options) {
|
|
5277
5388
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getStoredCollider(cell, collider, options);
|
|
5278
5389
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
5279
5390
|
const localVarOperationServerBasePath = operationServerMap["StoreCollisionComponentsApi.getStoredCollider"]?.[localVarOperationServerIndex]?.url;
|
|
5280
|
-
return (axios$
|
|
5391
|
+
return (axios$103, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$103, localVarOperationServerBasePath || basePath);
|
|
5281
5392
|
},
|
|
5282
5393
|
async getStoredCollisionLinkChain(cell, linkChain, options) {
|
|
5283
5394
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getStoredCollisionLinkChain(cell, linkChain, options);
|
|
5284
5395
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
5285
5396
|
const localVarOperationServerBasePath = operationServerMap["StoreCollisionComponentsApi.getStoredCollisionLinkChain"]?.[localVarOperationServerIndex]?.url;
|
|
5286
|
-
return (axios$
|
|
5397
|
+
return (axios$104, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$104, localVarOperationServerBasePath || basePath);
|
|
5287
5398
|
},
|
|
5288
5399
|
async getStoredCollisionTool(cell, tool, options) {
|
|
5289
5400
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getStoredCollisionTool(cell, tool, options);
|
|
5290
5401
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
5291
5402
|
const localVarOperationServerBasePath = operationServerMap["StoreCollisionComponentsApi.getStoredCollisionTool"]?.[localVarOperationServerIndex]?.url;
|
|
5292
|
-
return (axios$
|
|
5403
|
+
return (axios$105, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$105, localVarOperationServerBasePath || basePath);
|
|
5293
5404
|
},
|
|
5294
5405
|
async listCollisionLinkChains(cell, options) {
|
|
5295
5406
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listCollisionLinkChains(cell, options);
|
|
5296
5407
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
5297
5408
|
const localVarOperationServerBasePath = operationServerMap["StoreCollisionComponentsApi.listCollisionLinkChains"]?.[localVarOperationServerIndex]?.url;
|
|
5298
|
-
return (axios$
|
|
5409
|
+
return (axios$106, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$106, localVarOperationServerBasePath || basePath);
|
|
5299
5410
|
},
|
|
5300
5411
|
async listCollisionLinkChainsKeys(cell, options) {
|
|
5301
5412
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listCollisionLinkChainsKeys(cell, options);
|
|
5302
5413
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
5303
5414
|
const localVarOperationServerBasePath = operationServerMap["StoreCollisionComponentsApi.listCollisionLinkChainsKeys"]?.[localVarOperationServerIndex]?.url;
|
|
5304
|
-
return (axios$
|
|
5415
|
+
return (axios$107, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$107, localVarOperationServerBasePath || basePath);
|
|
5305
5416
|
},
|
|
5306
5417
|
async listStoredColliders(cell, options) {
|
|
5307
5418
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listStoredColliders(cell, options);
|
|
5308
5419
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
5309
5420
|
const localVarOperationServerBasePath = operationServerMap["StoreCollisionComponentsApi.listStoredColliders"]?.[localVarOperationServerIndex]?.url;
|
|
5310
|
-
return (axios$
|
|
5421
|
+
return (axios$108, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$108, localVarOperationServerBasePath || basePath);
|
|
5311
5422
|
},
|
|
5312
5423
|
async listStoredCollidersKeys(cell, options) {
|
|
5313
5424
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listStoredCollidersKeys(cell, options);
|
|
5314
5425
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
5315
5426
|
const localVarOperationServerBasePath = operationServerMap["StoreCollisionComponentsApi.listStoredCollidersKeys"]?.[localVarOperationServerIndex]?.url;
|
|
5316
|
-
return (axios$
|
|
5427
|
+
return (axios$109, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$109, localVarOperationServerBasePath || basePath);
|
|
5317
5428
|
},
|
|
5318
5429
|
async listStoredCollisionTools(cell, options) {
|
|
5319
5430
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listStoredCollisionTools(cell, options);
|
|
5320
5431
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
5321
5432
|
const localVarOperationServerBasePath = operationServerMap["StoreCollisionComponentsApi.listStoredCollisionTools"]?.[localVarOperationServerIndex]?.url;
|
|
5322
|
-
return (axios$
|
|
5433
|
+
return (axios$110, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$110, localVarOperationServerBasePath || basePath);
|
|
5323
5434
|
},
|
|
5324
5435
|
async listStoredCollisionToolsKeys(cell, options) {
|
|
5325
5436
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listStoredCollisionToolsKeys(cell, options);
|
|
5326
5437
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
5327
5438
|
const localVarOperationServerBasePath = operationServerMap["StoreCollisionComponentsApi.listStoredCollisionToolsKeys"]?.[localVarOperationServerIndex]?.url;
|
|
5328
|
-
return (axios$
|
|
5439
|
+
return (axios$111, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$111, localVarOperationServerBasePath || basePath);
|
|
5329
5440
|
},
|
|
5330
5441
|
async storeCollider(cell, collider, collider2, options) {
|
|
5331
5442
|
const localVarAxiosArgs = await localVarAxiosParamCreator.storeCollider(cell, collider, collider2, options);
|
|
5332
5443
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
5333
5444
|
const localVarOperationServerBasePath = operationServerMap["StoreCollisionComponentsApi.storeCollider"]?.[localVarOperationServerIndex]?.url;
|
|
5334
|
-
return (axios$
|
|
5445
|
+
return (axios$112, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$112, localVarOperationServerBasePath || basePath);
|
|
5335
5446
|
},
|
|
5336
5447
|
async storeCollisionLinkChain(cell, linkChain, collider, options) {
|
|
5337
5448
|
const localVarAxiosArgs = await localVarAxiosParamCreator.storeCollisionLinkChain(cell, linkChain, collider, options);
|
|
5338
5449
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
5339
5450
|
const localVarOperationServerBasePath = operationServerMap["StoreCollisionComponentsApi.storeCollisionLinkChain"]?.[localVarOperationServerIndex]?.url;
|
|
5340
|
-
return (axios$
|
|
5451
|
+
return (axios$113, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$113, localVarOperationServerBasePath || basePath);
|
|
5341
5452
|
},
|
|
5342
5453
|
async storeCollisionTool(cell, tool, requestBody, options) {
|
|
5343
5454
|
const localVarAxiosArgs = await localVarAxiosParamCreator.storeCollisionTool(cell, tool, requestBody, options);
|
|
5344
5455
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
5345
5456
|
const localVarOperationServerBasePath = operationServerMap["StoreCollisionComponentsApi.storeCollisionTool"]?.[localVarOperationServerIndex]?.url;
|
|
5346
|
-
return (axios$
|
|
5457
|
+
return (axios$114, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$114, localVarOperationServerBasePath || basePath);
|
|
5347
5458
|
}
|
|
5348
5459
|
};
|
|
5349
5460
|
};
|
|
5350
5461
|
/**
|
|
5351
5462
|
* StoreCollisionComponentsApi - factory interface
|
|
5352
5463
|
*/
|
|
5353
|
-
const StoreCollisionComponentsApiFactory = function(configuration, basePath, axios$
|
|
5464
|
+
const StoreCollisionComponentsApiFactory = function(configuration, basePath, axios$115) {
|
|
5354
5465
|
const localVarFp = StoreCollisionComponentsApiFp(configuration);
|
|
5355
5466
|
return {
|
|
5356
5467
|
deleteStoredCollider(cell, collider, options) {
|
|
5357
|
-
return localVarFp.deleteStoredCollider(cell, collider, options).then((request) => request(axios$
|
|
5468
|
+
return localVarFp.deleteStoredCollider(cell, collider, options).then((request) => request(axios$115, basePath));
|
|
5358
5469
|
},
|
|
5359
5470
|
deleteStoredCollisionLinkChain(cell, linkChain, options) {
|
|
5360
|
-
return localVarFp.deleteStoredCollisionLinkChain(cell, linkChain, options).then((request) => request(axios$
|
|
5471
|
+
return localVarFp.deleteStoredCollisionLinkChain(cell, linkChain, options).then((request) => request(axios$115, basePath));
|
|
5361
5472
|
},
|
|
5362
5473
|
deleteStoredCollisionTool(cell, tool, options) {
|
|
5363
|
-
return localVarFp.deleteStoredCollisionTool(cell, tool, options).then((request) => request(axios$
|
|
5474
|
+
return localVarFp.deleteStoredCollisionTool(cell, tool, options).then((request) => request(axios$115, basePath));
|
|
5364
5475
|
},
|
|
5365
5476
|
getStoredCollider(cell, collider, options) {
|
|
5366
|
-
return localVarFp.getStoredCollider(cell, collider, options).then((request) => request(axios$
|
|
5477
|
+
return localVarFp.getStoredCollider(cell, collider, options).then((request) => request(axios$115, basePath));
|
|
5367
5478
|
},
|
|
5368
5479
|
getStoredCollisionLinkChain(cell, linkChain, options) {
|
|
5369
|
-
return localVarFp.getStoredCollisionLinkChain(cell, linkChain, options).then((request) => request(axios$
|
|
5480
|
+
return localVarFp.getStoredCollisionLinkChain(cell, linkChain, options).then((request) => request(axios$115, basePath));
|
|
5370
5481
|
},
|
|
5371
5482
|
getStoredCollisionTool(cell, tool, options) {
|
|
5372
|
-
return localVarFp.getStoredCollisionTool(cell, tool, options).then((request) => request(axios$
|
|
5483
|
+
return localVarFp.getStoredCollisionTool(cell, tool, options).then((request) => request(axios$115, basePath));
|
|
5373
5484
|
},
|
|
5374
5485
|
listCollisionLinkChains(cell, options) {
|
|
5375
|
-
return localVarFp.listCollisionLinkChains(cell, options).then((request) => request(axios$
|
|
5486
|
+
return localVarFp.listCollisionLinkChains(cell, options).then((request) => request(axios$115, basePath));
|
|
5376
5487
|
},
|
|
5377
5488
|
listCollisionLinkChainsKeys(cell, options) {
|
|
5378
|
-
return localVarFp.listCollisionLinkChainsKeys(cell, options).then((request) => request(axios$
|
|
5489
|
+
return localVarFp.listCollisionLinkChainsKeys(cell, options).then((request) => request(axios$115, basePath));
|
|
5379
5490
|
},
|
|
5380
5491
|
listStoredColliders(cell, options) {
|
|
5381
|
-
return localVarFp.listStoredColliders(cell, options).then((request) => request(axios$
|
|
5492
|
+
return localVarFp.listStoredColliders(cell, options).then((request) => request(axios$115, basePath));
|
|
5382
5493
|
},
|
|
5383
5494
|
listStoredCollidersKeys(cell, options) {
|
|
5384
|
-
return localVarFp.listStoredCollidersKeys(cell, options).then((request) => request(axios$
|
|
5495
|
+
return localVarFp.listStoredCollidersKeys(cell, options).then((request) => request(axios$115, basePath));
|
|
5385
5496
|
},
|
|
5386
5497
|
listStoredCollisionTools(cell, options) {
|
|
5387
|
-
return localVarFp.listStoredCollisionTools(cell, options).then((request) => request(axios$
|
|
5498
|
+
return localVarFp.listStoredCollisionTools(cell, options).then((request) => request(axios$115, basePath));
|
|
5388
5499
|
},
|
|
5389
5500
|
listStoredCollisionToolsKeys(cell, options) {
|
|
5390
|
-
return localVarFp.listStoredCollisionToolsKeys(cell, options).then((request) => request(axios$
|
|
5501
|
+
return localVarFp.listStoredCollisionToolsKeys(cell, options).then((request) => request(axios$115, basePath));
|
|
5391
5502
|
},
|
|
5392
5503
|
storeCollider(cell, collider, collider2, options) {
|
|
5393
|
-
return localVarFp.storeCollider(cell, collider, collider2, options).then((request) => request(axios$
|
|
5504
|
+
return localVarFp.storeCollider(cell, collider, collider2, options).then((request) => request(axios$115, basePath));
|
|
5394
5505
|
},
|
|
5395
5506
|
storeCollisionLinkChain(cell, linkChain, collider, options) {
|
|
5396
|
-
return localVarFp.storeCollisionLinkChain(cell, linkChain, collider, options).then((request) => request(axios$
|
|
5507
|
+
return localVarFp.storeCollisionLinkChain(cell, linkChain, collider, options).then((request) => request(axios$115, basePath));
|
|
5397
5508
|
},
|
|
5398
5509
|
storeCollisionTool(cell, tool, requestBody, options) {
|
|
5399
|
-
return localVarFp.storeCollisionTool(cell, tool, requestBody, options).then((request) => request(axios$
|
|
5510
|
+
return localVarFp.storeCollisionTool(cell, tool, requestBody, options).then((request) => request(axios$115, basePath));
|
|
5400
5511
|
}
|
|
5401
5512
|
};
|
|
5402
5513
|
};
|
|
@@ -5720,54 +5831,54 @@ const StoreCollisionSetupsApiFp = function(configuration) {
|
|
|
5720
5831
|
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteStoredCollisionSetup(cell, setup, options);
|
|
5721
5832
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
5722
5833
|
const localVarOperationServerBasePath = operationServerMap["StoreCollisionSetupsApi.deleteStoredCollisionSetup"]?.[localVarOperationServerIndex]?.url;
|
|
5723
|
-
return (axios$
|
|
5834
|
+
return (axios$116, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$116, localVarOperationServerBasePath || basePath);
|
|
5724
5835
|
},
|
|
5725
5836
|
async getStoredCollisionSetup(cell, setup, options) {
|
|
5726
5837
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getStoredCollisionSetup(cell, setup, options);
|
|
5727
5838
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
5728
5839
|
const localVarOperationServerBasePath = operationServerMap["StoreCollisionSetupsApi.getStoredCollisionSetup"]?.[localVarOperationServerIndex]?.url;
|
|
5729
|
-
return (axios$
|
|
5840
|
+
return (axios$117, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$117, localVarOperationServerBasePath || basePath);
|
|
5730
5841
|
},
|
|
5731
5842
|
async listStoredCollisionSetups(cell, options) {
|
|
5732
5843
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listStoredCollisionSetups(cell, options);
|
|
5733
5844
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
5734
5845
|
const localVarOperationServerBasePath = operationServerMap["StoreCollisionSetupsApi.listStoredCollisionSetups"]?.[localVarOperationServerIndex]?.url;
|
|
5735
|
-
return (axios$
|
|
5846
|
+
return (axios$118, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$118, localVarOperationServerBasePath || basePath);
|
|
5736
5847
|
},
|
|
5737
5848
|
async listStoredCollisionSetupsKeys(cell, options) {
|
|
5738
5849
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listStoredCollisionSetupsKeys(cell, options);
|
|
5739
5850
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
5740
5851
|
const localVarOperationServerBasePath = operationServerMap["StoreCollisionSetupsApi.listStoredCollisionSetupsKeys"]?.[localVarOperationServerIndex]?.url;
|
|
5741
|
-
return (axios$
|
|
5852
|
+
return (axios$119, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$119, localVarOperationServerBasePath || basePath);
|
|
5742
5853
|
},
|
|
5743
5854
|
async storeCollisionSetup(cell, setup, collisionSetup, options) {
|
|
5744
5855
|
const localVarAxiosArgs = await localVarAxiosParamCreator.storeCollisionSetup(cell, setup, collisionSetup, options);
|
|
5745
5856
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
5746
5857
|
const localVarOperationServerBasePath = operationServerMap["StoreCollisionSetupsApi.storeCollisionSetup"]?.[localVarOperationServerIndex]?.url;
|
|
5747
|
-
return (axios$
|
|
5858
|
+
return (axios$120, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$120, localVarOperationServerBasePath || basePath);
|
|
5748
5859
|
}
|
|
5749
5860
|
};
|
|
5750
5861
|
};
|
|
5751
5862
|
/**
|
|
5752
5863
|
* StoreCollisionSetupsApi - factory interface
|
|
5753
5864
|
*/
|
|
5754
|
-
const StoreCollisionSetupsApiFactory = function(configuration, basePath, axios$
|
|
5865
|
+
const StoreCollisionSetupsApiFactory = function(configuration, basePath, axios$121) {
|
|
5755
5866
|
const localVarFp = StoreCollisionSetupsApiFp(configuration);
|
|
5756
5867
|
return {
|
|
5757
5868
|
deleteStoredCollisionSetup(cell, setup, options) {
|
|
5758
|
-
return localVarFp.deleteStoredCollisionSetup(cell, setup, options).then((request) => request(axios$
|
|
5869
|
+
return localVarFp.deleteStoredCollisionSetup(cell, setup, options).then((request) => request(axios$121, basePath));
|
|
5759
5870
|
},
|
|
5760
5871
|
getStoredCollisionSetup(cell, setup, options) {
|
|
5761
|
-
return localVarFp.getStoredCollisionSetup(cell, setup, options).then((request) => request(axios$
|
|
5872
|
+
return localVarFp.getStoredCollisionSetup(cell, setup, options).then((request) => request(axios$121, basePath));
|
|
5762
5873
|
},
|
|
5763
5874
|
listStoredCollisionSetups(cell, options) {
|
|
5764
|
-
return localVarFp.listStoredCollisionSetups(cell, options).then((request) => request(axios$
|
|
5875
|
+
return localVarFp.listStoredCollisionSetups(cell, options).then((request) => request(axios$121, basePath));
|
|
5765
5876
|
},
|
|
5766
5877
|
listStoredCollisionSetupsKeys(cell, options) {
|
|
5767
|
-
return localVarFp.listStoredCollisionSetupsKeys(cell, options).then((request) => request(axios$
|
|
5878
|
+
return localVarFp.listStoredCollisionSetupsKeys(cell, options).then((request) => request(axios$121, basePath));
|
|
5768
5879
|
},
|
|
5769
5880
|
storeCollisionSetup(cell, setup, collisionSetup, options) {
|
|
5770
|
-
return localVarFp.storeCollisionSetup(cell, setup, collisionSetup, options).then((request) => request(axios$
|
|
5881
|
+
return localVarFp.storeCollisionSetup(cell, setup, collisionSetup, options).then((request) => request(axios$121, basePath));
|
|
5771
5882
|
}
|
|
5772
5883
|
};
|
|
5773
5884
|
};
|
|
@@ -6012,63 +6123,63 @@ const StoreObjectApiFp = function(configuration) {
|
|
|
6012
6123
|
const localVarAxiosArgs = await localVarAxiosParamCreator.clearAllObjects(cell, options);
|
|
6013
6124
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6014
6125
|
const localVarOperationServerBasePath = operationServerMap["StoreObjectApi.clearAllObjects"]?.[localVarOperationServerIndex]?.url;
|
|
6015
|
-
return (axios$
|
|
6126
|
+
return (axios$122, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$122, localVarOperationServerBasePath || basePath);
|
|
6016
6127
|
},
|
|
6017
6128
|
async deleteObject(cell, key, options) {
|
|
6018
6129
|
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteObject(cell, key, options);
|
|
6019
6130
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6020
6131
|
const localVarOperationServerBasePath = operationServerMap["StoreObjectApi.deleteObject"]?.[localVarOperationServerIndex]?.url;
|
|
6021
|
-
return (axios$
|
|
6132
|
+
return (axios$123, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$123, localVarOperationServerBasePath || basePath);
|
|
6022
6133
|
},
|
|
6023
6134
|
async getObject(cell, key, options) {
|
|
6024
6135
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getObject(cell, key, options);
|
|
6025
6136
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6026
6137
|
const localVarOperationServerBasePath = operationServerMap["StoreObjectApi.getObject"]?.[localVarOperationServerIndex]?.url;
|
|
6027
|
-
return (axios$
|
|
6138
|
+
return (axios$124, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$124, localVarOperationServerBasePath || basePath);
|
|
6028
6139
|
},
|
|
6029
6140
|
async getObjectMetadata(cell, key, options) {
|
|
6030
6141
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getObjectMetadata(cell, key, options);
|
|
6031
6142
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6032
6143
|
const localVarOperationServerBasePath = operationServerMap["StoreObjectApi.getObjectMetadata"]?.[localVarOperationServerIndex]?.url;
|
|
6033
|
-
return (axios$
|
|
6144
|
+
return (axios$125, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$125, localVarOperationServerBasePath || basePath);
|
|
6034
6145
|
},
|
|
6035
6146
|
async listAllObjectKeys(cell, options) {
|
|
6036
6147
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listAllObjectKeys(cell, options);
|
|
6037
6148
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6038
6149
|
const localVarOperationServerBasePath = operationServerMap["StoreObjectApi.listAllObjectKeys"]?.[localVarOperationServerIndex]?.url;
|
|
6039
|
-
return (axios$
|
|
6150
|
+
return (axios$126, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$126, localVarOperationServerBasePath || basePath);
|
|
6040
6151
|
},
|
|
6041
6152
|
async storeObject(cell, key, xMetadata, anyValue, options) {
|
|
6042
6153
|
const localVarAxiosArgs = await localVarAxiosParamCreator.storeObject(cell, key, xMetadata, anyValue, options);
|
|
6043
6154
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6044
6155
|
const localVarOperationServerBasePath = operationServerMap["StoreObjectApi.storeObject"]?.[localVarOperationServerIndex]?.url;
|
|
6045
|
-
return (axios$
|
|
6156
|
+
return (axios$127, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$127, localVarOperationServerBasePath || basePath);
|
|
6046
6157
|
}
|
|
6047
6158
|
};
|
|
6048
6159
|
};
|
|
6049
6160
|
/**
|
|
6050
6161
|
* StoreObjectApi - factory interface
|
|
6051
6162
|
*/
|
|
6052
|
-
const StoreObjectApiFactory = function(configuration, basePath, axios$
|
|
6163
|
+
const StoreObjectApiFactory = function(configuration, basePath, axios$128) {
|
|
6053
6164
|
const localVarFp = StoreObjectApiFp(configuration);
|
|
6054
6165
|
return {
|
|
6055
6166
|
clearAllObjects(cell, options) {
|
|
6056
|
-
return localVarFp.clearAllObjects(cell, options).then((request) => request(axios$
|
|
6167
|
+
return localVarFp.clearAllObjects(cell, options).then((request) => request(axios$128, basePath));
|
|
6057
6168
|
},
|
|
6058
6169
|
deleteObject(cell, key, options) {
|
|
6059
|
-
return localVarFp.deleteObject(cell, key, options).then((request) => request(axios$
|
|
6170
|
+
return localVarFp.deleteObject(cell, key, options).then((request) => request(axios$128, basePath));
|
|
6060
6171
|
},
|
|
6061
6172
|
getObject(cell, key, options) {
|
|
6062
|
-
return localVarFp.getObject(cell, key, options).then((request) => request(axios$
|
|
6173
|
+
return localVarFp.getObject(cell, key, options).then((request) => request(axios$128, basePath));
|
|
6063
6174
|
},
|
|
6064
6175
|
getObjectMetadata(cell, key, options) {
|
|
6065
|
-
return localVarFp.getObjectMetadata(cell, key, options).then((request) => request(axios$
|
|
6176
|
+
return localVarFp.getObjectMetadata(cell, key, options).then((request) => request(axios$128, basePath));
|
|
6066
6177
|
},
|
|
6067
6178
|
listAllObjectKeys(cell, options) {
|
|
6068
|
-
return localVarFp.listAllObjectKeys(cell, options).then((request) => request(axios$
|
|
6179
|
+
return localVarFp.listAllObjectKeys(cell, options).then((request) => request(axios$128, basePath));
|
|
6069
6180
|
},
|
|
6070
6181
|
storeObject(cell, key, xMetadata, anyValue, options) {
|
|
6071
|
-
return localVarFp.storeObject(cell, key, xMetadata, anyValue, options).then((request) => request(axios$
|
|
6182
|
+
return localVarFp.storeObject(cell, key, xMetadata, anyValue, options).then((request) => request(axios$128, basePath));
|
|
6072
6183
|
}
|
|
6073
6184
|
};
|
|
6074
6185
|
};
|
|
@@ -6464,117 +6575,117 @@ const SystemApiFp = function(configuration) {
|
|
|
6464
6575
|
const localVarAxiosArgs = await localVarAxiosParamCreator.backupConfiguration(resources, metadata, options);
|
|
6465
6576
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6466
6577
|
const localVarOperationServerBasePath = operationServerMap["SystemApi.backupConfiguration"]?.[localVarOperationServerIndex]?.url;
|
|
6467
|
-
return (axios$
|
|
6578
|
+
return (axios$129, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$129, localVarOperationServerBasePath || basePath);
|
|
6468
6579
|
},
|
|
6469
6580
|
async checkNovaVersionUpdate(channel, options) {
|
|
6470
6581
|
const localVarAxiosArgs = await localVarAxiosParamCreator.checkNovaVersionUpdate(channel, options);
|
|
6471
6582
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6472
6583
|
const localVarOperationServerBasePath = operationServerMap["SystemApi.checkNovaVersionUpdate"]?.[localVarOperationServerIndex]?.url;
|
|
6473
|
-
return (axios$
|
|
6584
|
+
return (axios$130, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$130, localVarOperationServerBasePath || basePath);
|
|
6474
6585
|
},
|
|
6475
6586
|
async getArpScan(_interface, cidr, timeout, options) {
|
|
6476
6587
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getArpScan(_interface, cidr, timeout, options);
|
|
6477
6588
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6478
6589
|
const localVarOperationServerBasePath = operationServerMap["SystemApi.getArpScan"]?.[localVarOperationServerIndex]?.url;
|
|
6479
|
-
return (axios$
|
|
6590
|
+
return (axios$131, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$131, localVarOperationServerBasePath || basePath);
|
|
6480
6591
|
},
|
|
6481
6592
|
async getConfigurationBackupStatus(operationId, options) {
|
|
6482
6593
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getConfigurationBackupStatus(operationId, options);
|
|
6483
6594
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6484
6595
|
const localVarOperationServerBasePath = operationServerMap["SystemApi.getConfigurationBackupStatus"]?.[localVarOperationServerIndex]?.url;
|
|
6485
|
-
return (axios$
|
|
6596
|
+
return (axios$132, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$132, localVarOperationServerBasePath || basePath);
|
|
6486
6597
|
},
|
|
6487
6598
|
async getDiagnosePackage(options) {
|
|
6488
6599
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getDiagnosePackage(options);
|
|
6489
6600
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6490
6601
|
const localVarOperationServerBasePath = operationServerMap["SystemApi.getDiagnosePackage"]?.[localVarOperationServerIndex]?.url;
|
|
6491
|
-
return (axios$
|
|
6602
|
+
return (axios$133, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$133, localVarOperationServerBasePath || basePath);
|
|
6492
6603
|
},
|
|
6493
6604
|
async getNetworkInterfaces(options) {
|
|
6494
6605
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getNetworkInterfaces(options);
|
|
6495
6606
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6496
6607
|
const localVarOperationServerBasePath = operationServerMap["SystemApi.getNetworkInterfaces"]?.[localVarOperationServerIndex]?.url;
|
|
6497
|
-
return (axios$
|
|
6608
|
+
return (axios$134, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$134, localVarOperationServerBasePath || basePath);
|
|
6498
6609
|
},
|
|
6499
6610
|
async getNetworkState(options) {
|
|
6500
6611
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getNetworkState(options);
|
|
6501
6612
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6502
6613
|
const localVarOperationServerBasePath = operationServerMap["SystemApi.getNetworkState"]?.[localVarOperationServerIndex]?.url;
|
|
6503
|
-
return (axios$
|
|
6614
|
+
return (axios$135, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$135, localVarOperationServerBasePath || basePath);
|
|
6504
6615
|
},
|
|
6505
6616
|
async getSystemStatus(options) {
|
|
6506
6617
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getSystemStatus(options);
|
|
6507
6618
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6508
6619
|
const localVarOperationServerBasePath = operationServerMap["SystemApi.getSystemStatus"]?.[localVarOperationServerIndex]?.url;
|
|
6509
|
-
return (axios$
|
|
6620
|
+
return (axios$136, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$136, localVarOperationServerBasePath || basePath);
|
|
6510
6621
|
},
|
|
6511
6622
|
async getSystemVersion(options) {
|
|
6512
6623
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getSystemVersion(options);
|
|
6513
6624
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6514
6625
|
const localVarOperationServerBasePath = operationServerMap["SystemApi.getSystemVersion"]?.[localVarOperationServerIndex]?.url;
|
|
6515
|
-
return (axios$
|
|
6626
|
+
return (axios$137, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$137, localVarOperationServerBasePath || basePath);
|
|
6516
6627
|
},
|
|
6517
6628
|
async listConfigurationResources(options) {
|
|
6518
6629
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listConfigurationResources(options);
|
|
6519
6630
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6520
6631
|
const localVarOperationServerBasePath = operationServerMap["SystemApi.listConfigurationResources"]?.[localVarOperationServerIndex]?.url;
|
|
6521
|
-
return (axios$
|
|
6632
|
+
return (axios$138, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$138, localVarOperationServerBasePath || basePath);
|
|
6522
6633
|
},
|
|
6523
6634
|
async restoreConfiguration(body, resources, options) {
|
|
6524
6635
|
const localVarAxiosArgs = await localVarAxiosParamCreator.restoreConfiguration(body, resources, options);
|
|
6525
6636
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6526
6637
|
const localVarOperationServerBasePath = operationServerMap["SystemApi.restoreConfiguration"]?.[localVarOperationServerIndex]?.url;
|
|
6527
|
-
return (axios$
|
|
6638
|
+
return (axios$139, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$139, localVarOperationServerBasePath || basePath);
|
|
6528
6639
|
},
|
|
6529
6640
|
async updateNovaVersion(updateNovaVersionRequest, options) {
|
|
6530
6641
|
const localVarAxiosArgs = await localVarAxiosParamCreator.updateNovaVersion(updateNovaVersionRequest, options);
|
|
6531
6642
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6532
6643
|
const localVarOperationServerBasePath = operationServerMap["SystemApi.updateNovaVersion"]?.[localVarOperationServerIndex]?.url;
|
|
6533
|
-
return (axios$
|
|
6644
|
+
return (axios$140, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$140, localVarOperationServerBasePath || basePath);
|
|
6534
6645
|
}
|
|
6535
6646
|
};
|
|
6536
6647
|
};
|
|
6537
6648
|
/**
|
|
6538
6649
|
* SystemApi - factory interface
|
|
6539
6650
|
*/
|
|
6540
|
-
const SystemApiFactory = function(configuration, basePath, axios$
|
|
6651
|
+
const SystemApiFactory = function(configuration, basePath, axios$141) {
|
|
6541
6652
|
const localVarFp = SystemApiFp(configuration);
|
|
6542
6653
|
return {
|
|
6543
6654
|
backupConfiguration(resources, metadata, options) {
|
|
6544
|
-
return localVarFp.backupConfiguration(resources, metadata, options).then((request) => request(axios$
|
|
6655
|
+
return localVarFp.backupConfiguration(resources, metadata, options).then((request) => request(axios$141, basePath));
|
|
6545
6656
|
},
|
|
6546
6657
|
checkNovaVersionUpdate(channel, options) {
|
|
6547
|
-
return localVarFp.checkNovaVersionUpdate(channel, options).then((request) => request(axios$
|
|
6658
|
+
return localVarFp.checkNovaVersionUpdate(channel, options).then((request) => request(axios$141, basePath));
|
|
6548
6659
|
},
|
|
6549
6660
|
getArpScan(_interface, cidr, timeout, options) {
|
|
6550
|
-
return localVarFp.getArpScan(_interface, cidr, timeout, options).then((request) => request(axios$
|
|
6661
|
+
return localVarFp.getArpScan(_interface, cidr, timeout, options).then((request) => request(axios$141, basePath));
|
|
6551
6662
|
},
|
|
6552
6663
|
getConfigurationBackupStatus(operationId, options) {
|
|
6553
|
-
return localVarFp.getConfigurationBackupStatus(operationId, options).then((request) => request(axios$
|
|
6664
|
+
return localVarFp.getConfigurationBackupStatus(operationId, options).then((request) => request(axios$141, basePath));
|
|
6554
6665
|
},
|
|
6555
6666
|
getDiagnosePackage(options) {
|
|
6556
|
-
return localVarFp.getDiagnosePackage(options).then((request) => request(axios$
|
|
6667
|
+
return localVarFp.getDiagnosePackage(options).then((request) => request(axios$141, basePath));
|
|
6557
6668
|
},
|
|
6558
6669
|
getNetworkInterfaces(options) {
|
|
6559
|
-
return localVarFp.getNetworkInterfaces(options).then((request) => request(axios$
|
|
6670
|
+
return localVarFp.getNetworkInterfaces(options).then((request) => request(axios$141, basePath));
|
|
6560
6671
|
},
|
|
6561
6672
|
getNetworkState(options) {
|
|
6562
|
-
return localVarFp.getNetworkState(options).then((request) => request(axios$
|
|
6673
|
+
return localVarFp.getNetworkState(options).then((request) => request(axios$141, basePath));
|
|
6563
6674
|
},
|
|
6564
6675
|
getSystemStatus(options) {
|
|
6565
|
-
return localVarFp.getSystemStatus(options).then((request) => request(axios$
|
|
6676
|
+
return localVarFp.getSystemStatus(options).then((request) => request(axios$141, basePath));
|
|
6566
6677
|
},
|
|
6567
6678
|
getSystemVersion(options) {
|
|
6568
|
-
return localVarFp.getSystemVersion(options).then((request) => request(axios$
|
|
6679
|
+
return localVarFp.getSystemVersion(options).then((request) => request(axios$141, basePath));
|
|
6569
6680
|
},
|
|
6570
6681
|
listConfigurationResources(options) {
|
|
6571
|
-
return localVarFp.listConfigurationResources(options).then((request) => request(axios$
|
|
6682
|
+
return localVarFp.listConfigurationResources(options).then((request) => request(axios$141, basePath));
|
|
6572
6683
|
},
|
|
6573
6684
|
restoreConfiguration(body, resources, options) {
|
|
6574
|
-
return localVarFp.restoreConfiguration(body, resources, options).then((request) => request(axios$
|
|
6685
|
+
return localVarFp.restoreConfiguration(body, resources, options).then((request) => request(axios$141, basePath));
|
|
6575
6686
|
},
|
|
6576
6687
|
updateNovaVersion(updateNovaVersionRequest, options) {
|
|
6577
|
-
return localVarFp.updateNovaVersion(updateNovaVersionRequest, options).then((request) => request(axios$
|
|
6688
|
+
return localVarFp.updateNovaVersion(updateNovaVersionRequest, options).then((request) => request(axios$141, basePath));
|
|
6578
6689
|
}
|
|
6579
6690
|
};
|
|
6580
6691
|
};
|
|
@@ -6858,54 +6969,54 @@ const TrajectoryCachingApiFp = function(configuration) {
|
|
|
6858
6969
|
const localVarAxiosArgs = await localVarAxiosParamCreator.addTrajectory(cell, controller, addTrajectoryRequest, options);
|
|
6859
6970
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6860
6971
|
const localVarOperationServerBasePath = operationServerMap["TrajectoryCachingApi.addTrajectory"]?.[localVarOperationServerIndex]?.url;
|
|
6861
|
-
return (axios$
|
|
6972
|
+
return (axios$142, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$142, localVarOperationServerBasePath || basePath);
|
|
6862
6973
|
},
|
|
6863
6974
|
async clearTrajectories(cell, controller, options) {
|
|
6864
6975
|
const localVarAxiosArgs = await localVarAxiosParamCreator.clearTrajectories(cell, controller, options);
|
|
6865
6976
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6866
6977
|
const localVarOperationServerBasePath = operationServerMap["TrajectoryCachingApi.clearTrajectories"]?.[localVarOperationServerIndex]?.url;
|
|
6867
|
-
return (axios$
|
|
6978
|
+
return (axios$143, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$143, localVarOperationServerBasePath || basePath);
|
|
6868
6979
|
},
|
|
6869
6980
|
async deleteTrajectory(cell, controller, trajectory, options) {
|
|
6870
6981
|
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteTrajectory(cell, controller, trajectory, options);
|
|
6871
6982
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6872
6983
|
const localVarOperationServerBasePath = operationServerMap["TrajectoryCachingApi.deleteTrajectory"]?.[localVarOperationServerIndex]?.url;
|
|
6873
|
-
return (axios$
|
|
6984
|
+
return (axios$144, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$144, localVarOperationServerBasePath || basePath);
|
|
6874
6985
|
},
|
|
6875
6986
|
async getTrajectory(cell, controller, trajectory, options) {
|
|
6876
6987
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getTrajectory(cell, controller, trajectory, options);
|
|
6877
6988
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6878
6989
|
const localVarOperationServerBasePath = operationServerMap["TrajectoryCachingApi.getTrajectory"]?.[localVarOperationServerIndex]?.url;
|
|
6879
|
-
return (axios$
|
|
6990
|
+
return (axios$145, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$145, localVarOperationServerBasePath || basePath);
|
|
6880
6991
|
},
|
|
6881
6992
|
async listTrajectories(cell, controller, options) {
|
|
6882
6993
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listTrajectories(cell, controller, options);
|
|
6883
6994
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6884
6995
|
const localVarOperationServerBasePath = operationServerMap["TrajectoryCachingApi.listTrajectories"]?.[localVarOperationServerIndex]?.url;
|
|
6885
|
-
return (axios$
|
|
6996
|
+
return (axios$146, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$146, localVarOperationServerBasePath || basePath);
|
|
6886
6997
|
}
|
|
6887
6998
|
};
|
|
6888
6999
|
};
|
|
6889
7000
|
/**
|
|
6890
7001
|
* TrajectoryCachingApi - factory interface
|
|
6891
7002
|
*/
|
|
6892
|
-
const TrajectoryCachingApiFactory = function(configuration, basePath, axios$
|
|
7003
|
+
const TrajectoryCachingApiFactory = function(configuration, basePath, axios$147) {
|
|
6893
7004
|
const localVarFp = TrajectoryCachingApiFp(configuration);
|
|
6894
7005
|
return {
|
|
6895
7006
|
addTrajectory(cell, controller, addTrajectoryRequest, options) {
|
|
6896
|
-
return localVarFp.addTrajectory(cell, controller, addTrajectoryRequest, options).then((request) => request(axios$
|
|
7007
|
+
return localVarFp.addTrajectory(cell, controller, addTrajectoryRequest, options).then((request) => request(axios$147, basePath));
|
|
6897
7008
|
},
|
|
6898
7009
|
clearTrajectories(cell, controller, options) {
|
|
6899
|
-
return localVarFp.clearTrajectories(cell, controller, options).then((request) => request(axios$
|
|
7010
|
+
return localVarFp.clearTrajectories(cell, controller, options).then((request) => request(axios$147, basePath));
|
|
6900
7011
|
},
|
|
6901
7012
|
deleteTrajectory(cell, controller, trajectory, options) {
|
|
6902
|
-
return localVarFp.deleteTrajectory(cell, controller, trajectory, options).then((request) => request(axios$
|
|
7013
|
+
return localVarFp.deleteTrajectory(cell, controller, trajectory, options).then((request) => request(axios$147, basePath));
|
|
6903
7014
|
},
|
|
6904
7015
|
getTrajectory(cell, controller, trajectory, options) {
|
|
6905
|
-
return localVarFp.getTrajectory(cell, controller, trajectory, options).then((request) => request(axios$
|
|
7016
|
+
return localVarFp.getTrajectory(cell, controller, trajectory, options).then((request) => request(axios$147, basePath));
|
|
6906
7017
|
},
|
|
6907
7018
|
listTrajectories(cell, controller, options) {
|
|
6908
|
-
return localVarFp.listTrajectories(cell, controller, options).then((request) => request(axios$
|
|
7019
|
+
return localVarFp.listTrajectories(cell, controller, options).then((request) => request(axios$147, basePath));
|
|
6909
7020
|
}
|
|
6910
7021
|
};
|
|
6911
7022
|
};
|
|
@@ -7016,16 +7127,16 @@ const TrajectoryExecutionApiFp = function(configuration) {
|
|
|
7016
7127
|
const localVarAxiosArgs = await localVarAxiosParamCreator.executeTrajectory(cell, controller, executeTrajectoryRequest, options);
|
|
7017
7128
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
7018
7129
|
const localVarOperationServerBasePath = operationServerMap["TrajectoryExecutionApi.executeTrajectory"]?.[localVarOperationServerIndex]?.url;
|
|
7019
|
-
return (axios$
|
|
7130
|
+
return (axios$148, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$148, localVarOperationServerBasePath || basePath);
|
|
7020
7131
|
} };
|
|
7021
7132
|
};
|
|
7022
7133
|
/**
|
|
7023
7134
|
* TrajectoryExecutionApi - factory interface
|
|
7024
7135
|
*/
|
|
7025
|
-
const TrajectoryExecutionApiFactory = function(configuration, basePath, axios$
|
|
7136
|
+
const TrajectoryExecutionApiFactory = function(configuration, basePath, axios$149) {
|
|
7026
7137
|
const localVarFp = TrajectoryExecutionApiFp(configuration);
|
|
7027
7138
|
return { executeTrajectory(cell, controller, executeTrajectoryRequest, options) {
|
|
7028
|
-
return localVarFp.executeTrajectory(cell, controller, executeTrajectoryRequest, options).then((request) => request(axios$
|
|
7139
|
+
return localVarFp.executeTrajectory(cell, controller, executeTrajectoryRequest, options).then((request) => request(axios$149, basePath));
|
|
7029
7140
|
} };
|
|
7030
7141
|
};
|
|
7031
7142
|
/**
|
|
@@ -7178,45 +7289,45 @@ const TrajectoryPlanningApiFp = function(configuration) {
|
|
|
7178
7289
|
const localVarAxiosArgs = await localVarAxiosParamCreator.mergeTrajectories(cell, mergeTrajectoriesRequest, options);
|
|
7179
7290
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
7180
7291
|
const localVarOperationServerBasePath = operationServerMap["TrajectoryPlanningApi.mergeTrajectories"]?.[localVarOperationServerIndex]?.url;
|
|
7181
|
-
return (axios$
|
|
7292
|
+
return (axios$150, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$150, localVarOperationServerBasePath || basePath);
|
|
7182
7293
|
},
|
|
7183
7294
|
async planCollisionFree(cell, planCollisionFreeRequest, options) {
|
|
7184
7295
|
const localVarAxiosArgs = await localVarAxiosParamCreator.planCollisionFree(cell, planCollisionFreeRequest, options);
|
|
7185
7296
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
7186
7297
|
const localVarOperationServerBasePath = operationServerMap["TrajectoryPlanningApi.planCollisionFree"]?.[localVarOperationServerIndex]?.url;
|
|
7187
|
-
return (axios$
|
|
7298
|
+
return (axios$151, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$151, localVarOperationServerBasePath || basePath);
|
|
7188
7299
|
},
|
|
7189
7300
|
async planTrajectory(cell, planTrajectoryRequest, options) {
|
|
7190
7301
|
const localVarAxiosArgs = await localVarAxiosParamCreator.planTrajectory(cell, planTrajectoryRequest, options);
|
|
7191
7302
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
7192
7303
|
const localVarOperationServerBasePath = operationServerMap["TrajectoryPlanningApi.planTrajectory"]?.[localVarOperationServerIndex]?.url;
|
|
7193
|
-
return (axios$
|
|
7304
|
+
return (axios$152, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$152, localVarOperationServerBasePath || basePath);
|
|
7194
7305
|
},
|
|
7195
7306
|
async searchCollisionFreeMultiMotionGroup(cell, multiSearchCollisionFreeRequest, options) {
|
|
7196
7307
|
const localVarAxiosArgs = await localVarAxiosParamCreator.searchCollisionFreeMultiMotionGroup(cell, multiSearchCollisionFreeRequest, options);
|
|
7197
7308
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
7198
7309
|
const localVarOperationServerBasePath = operationServerMap["TrajectoryPlanningApi.searchCollisionFreeMultiMotionGroup"]?.[localVarOperationServerIndex]?.url;
|
|
7199
|
-
return (axios$
|
|
7310
|
+
return (axios$153, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$153, localVarOperationServerBasePath || basePath);
|
|
7200
7311
|
}
|
|
7201
7312
|
};
|
|
7202
7313
|
};
|
|
7203
7314
|
/**
|
|
7204
7315
|
* TrajectoryPlanningApi - factory interface
|
|
7205
7316
|
*/
|
|
7206
|
-
const TrajectoryPlanningApiFactory = function(configuration, basePath, axios$
|
|
7317
|
+
const TrajectoryPlanningApiFactory = function(configuration, basePath, axios$154) {
|
|
7207
7318
|
const localVarFp = TrajectoryPlanningApiFp(configuration);
|
|
7208
7319
|
return {
|
|
7209
7320
|
mergeTrajectories(cell, mergeTrajectoriesRequest, options) {
|
|
7210
|
-
return localVarFp.mergeTrajectories(cell, mergeTrajectoriesRequest, options).then((request) => request(axios$
|
|
7321
|
+
return localVarFp.mergeTrajectories(cell, mergeTrajectoriesRequest, options).then((request) => request(axios$154, basePath));
|
|
7211
7322
|
},
|
|
7212
7323
|
planCollisionFree(cell, planCollisionFreeRequest, options) {
|
|
7213
|
-
return localVarFp.planCollisionFree(cell, planCollisionFreeRequest, options).then((request) => request(axios$
|
|
7324
|
+
return localVarFp.planCollisionFree(cell, planCollisionFreeRequest, options).then((request) => request(axios$154, basePath));
|
|
7214
7325
|
},
|
|
7215
7326
|
planTrajectory(cell, planTrajectoryRequest, options) {
|
|
7216
|
-
return localVarFp.planTrajectory(cell, planTrajectoryRequest, options).then((request) => request(axios$
|
|
7327
|
+
return localVarFp.planTrajectory(cell, planTrajectoryRequest, options).then((request) => request(axios$154, basePath));
|
|
7217
7328
|
},
|
|
7218
7329
|
searchCollisionFreeMultiMotionGroup(cell, multiSearchCollisionFreeRequest, options) {
|
|
7219
|
-
return localVarFp.searchCollisionFreeMultiMotionGroup(cell, multiSearchCollisionFreeRequest, options).then((request) => request(axios$
|
|
7330
|
+
return localVarFp.searchCollisionFreeMultiMotionGroup(cell, multiSearchCollisionFreeRequest, options).then((request) => request(axios$154, basePath));
|
|
7220
7331
|
}
|
|
7221
7332
|
};
|
|
7222
7333
|
};
|
|
@@ -7307,16 +7418,16 @@ const VersionApiFp = function(configuration) {
|
|
|
7307
7418
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getApiVersion(options);
|
|
7308
7419
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
7309
7420
|
const localVarOperationServerBasePath = operationServerMap["VersionApi.getApiVersion"]?.[localVarOperationServerIndex]?.url;
|
|
7310
|
-
return (axios$
|
|
7421
|
+
return (axios$155, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$155, localVarOperationServerBasePath || basePath);
|
|
7311
7422
|
} };
|
|
7312
7423
|
};
|
|
7313
7424
|
/**
|
|
7314
7425
|
* VersionApi - factory interface
|
|
7315
7426
|
*/
|
|
7316
|
-
const VersionApiFactory = function(configuration, basePath, axios$
|
|
7427
|
+
const VersionApiFactory = function(configuration, basePath, axios$156) {
|
|
7317
7428
|
const localVarFp = VersionApiFp(configuration);
|
|
7318
7429
|
return { getApiVersion(options) {
|
|
7319
|
-
return localVarFp.getApiVersion(options).then((request) => request(axios$
|
|
7430
|
+
return localVarFp.getApiVersion(options).then((request) => request(axios$156, basePath));
|
|
7320
7431
|
} };
|
|
7321
7432
|
};
|
|
7322
7433
|
/**
|
|
@@ -7925,189 +8036,189 @@ const VirtualControllerApiFp = function(configuration) {
|
|
|
7925
8036
|
const localVarAxiosArgs = await localVarAxiosParamCreator.addVirtualControllerCoordinateSystem(cell, controller, coordinateSystem, coordinateSystemData, options);
|
|
7926
8037
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
7927
8038
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerApi.addVirtualControllerCoordinateSystem"]?.[localVarOperationServerIndex]?.url;
|
|
7928
|
-
return (axios$
|
|
8039
|
+
return (axios$157, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$157, localVarOperationServerBasePath || basePath);
|
|
7929
8040
|
},
|
|
7930
8041
|
async addVirtualControllerMotionGroup(cell, controller, addVirtualControllerMotionGroupRequest, options) {
|
|
7931
8042
|
const localVarAxiosArgs = await localVarAxiosParamCreator.addVirtualControllerMotionGroup(cell, controller, addVirtualControllerMotionGroupRequest, options);
|
|
7932
8043
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
7933
8044
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerApi.addVirtualControllerMotionGroup"]?.[localVarOperationServerIndex]?.url;
|
|
7934
|
-
return (axios$
|
|
8045
|
+
return (axios$158, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$158, localVarOperationServerBasePath || basePath);
|
|
7935
8046
|
},
|
|
7936
8047
|
async addVirtualControllerSafetyZone(cell, controller, safetyZone, options) {
|
|
7937
8048
|
const localVarAxiosArgs = await localVarAxiosParamCreator.addVirtualControllerSafetyZone(cell, controller, safetyZone, options);
|
|
7938
8049
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
7939
8050
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerApi.addVirtualControllerSafetyZone"]?.[localVarOperationServerIndex]?.url;
|
|
7940
|
-
return (axios$
|
|
8051
|
+
return (axios$159, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$159, localVarOperationServerBasePath || basePath);
|
|
7941
8052
|
},
|
|
7942
8053
|
async addVirtualControllerTcp(cell, controller, motionGroup, tcp, robotTcpData, options) {
|
|
7943
8054
|
const localVarAxiosArgs = await localVarAxiosParamCreator.addVirtualControllerTcp(cell, controller, motionGroup, tcp, robotTcpData, options);
|
|
7944
8055
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
7945
8056
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerApi.addVirtualControllerTcp"]?.[localVarOperationServerIndex]?.url;
|
|
7946
|
-
return (axios$
|
|
8057
|
+
return (axios$160, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$160, localVarOperationServerBasePath || basePath);
|
|
7947
8058
|
},
|
|
7948
8059
|
async deleteVirtualControllerCoordinateSystem(cell, controller, coordinateSystem, deleteDependent, options) {
|
|
7949
8060
|
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteVirtualControllerCoordinateSystem(cell, controller, coordinateSystem, deleteDependent, options);
|
|
7950
8061
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
7951
8062
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerApi.deleteVirtualControllerCoordinateSystem"]?.[localVarOperationServerIndex]?.url;
|
|
7952
|
-
return (axios$
|
|
8063
|
+
return (axios$161, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$161, localVarOperationServerBasePath || basePath);
|
|
7953
8064
|
},
|
|
7954
8065
|
async deleteVirtualControllerMotionGroup(cell, controller, motionGroup, options) {
|
|
7955
8066
|
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteVirtualControllerMotionGroup(cell, controller, motionGroup, options);
|
|
7956
8067
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
7957
8068
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerApi.deleteVirtualControllerMotionGroup"]?.[localVarOperationServerIndex]?.url;
|
|
7958
|
-
return (axios$
|
|
8069
|
+
return (axios$162, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$162, localVarOperationServerBasePath || basePath);
|
|
7959
8070
|
},
|
|
7960
8071
|
async deleteVirtualControllerSafetyZone(cell, controller, id, options) {
|
|
7961
8072
|
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteVirtualControllerSafetyZone(cell, controller, id, options);
|
|
7962
8073
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
7963
8074
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerApi.deleteVirtualControllerSafetyZone"]?.[localVarOperationServerIndex]?.url;
|
|
7964
|
-
return (axios$
|
|
8075
|
+
return (axios$163, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$163, localVarOperationServerBasePath || basePath);
|
|
7965
8076
|
},
|
|
7966
8077
|
async deleteVirtualControllerTcp(cell, controller, motionGroup, tcp, options) {
|
|
7967
8078
|
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteVirtualControllerTcp(cell, controller, motionGroup, tcp, options);
|
|
7968
8079
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
7969
8080
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerApi.deleteVirtualControllerTcp"]?.[localVarOperationServerIndex]?.url;
|
|
7970
|
-
return (axios$
|
|
8081
|
+
return (axios$164, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$164, localVarOperationServerBasePath || basePath);
|
|
7971
8082
|
},
|
|
7972
8083
|
async getEmergencyStop(cell, controller, options) {
|
|
7973
8084
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getEmergencyStop(cell, controller, options);
|
|
7974
8085
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
7975
8086
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerApi.getEmergencyStop"]?.[localVarOperationServerIndex]?.url;
|
|
7976
|
-
return (axios$
|
|
8087
|
+
return (axios$165, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$165, localVarOperationServerBasePath || basePath);
|
|
7977
8088
|
},
|
|
7978
8089
|
async getMotionGroupState(cell, controller, motionGroup, options) {
|
|
7979
8090
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getMotionGroupState(cell, controller, motionGroup, options);
|
|
7980
8091
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
7981
8092
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerApi.getMotionGroupState"]?.[localVarOperationServerIndex]?.url;
|
|
7982
|
-
return (axios$
|
|
8093
|
+
return (axios$166, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$166, localVarOperationServerBasePath || basePath);
|
|
7983
8094
|
},
|
|
7984
8095
|
async getMotionGroups(cell, controller, options) {
|
|
7985
8096
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getMotionGroups(cell, controller, options);
|
|
7986
8097
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
7987
8098
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerApi.getMotionGroups"]?.[localVarOperationServerIndex]?.url;
|
|
7988
|
-
return (axios$
|
|
8099
|
+
return (axios$167, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$167, localVarOperationServerBasePath || basePath);
|
|
7989
8100
|
},
|
|
7990
8101
|
async getOperationMode(cell, controller, options) {
|
|
7991
8102
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getOperationMode(cell, controller, options);
|
|
7992
8103
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
7993
8104
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerApi.getOperationMode"]?.[localVarOperationServerIndex]?.url;
|
|
7994
|
-
return (axios$
|
|
8105
|
+
return (axios$168, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$168, localVarOperationServerBasePath || basePath);
|
|
7995
8106
|
},
|
|
7996
8107
|
async getVirtualControllerMounting(cell, controller, motionGroup, options) {
|
|
7997
8108
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getVirtualControllerMounting(cell, controller, motionGroup, options);
|
|
7998
8109
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
7999
8110
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerApi.getVirtualControllerMounting"]?.[localVarOperationServerIndex]?.url;
|
|
8000
|
-
return (axios$
|
|
8111
|
+
return (axios$169, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$169, localVarOperationServerBasePath || basePath);
|
|
8001
8112
|
},
|
|
8002
8113
|
async getVirtualControllerSafetyZones(cell, controller, options) {
|
|
8003
8114
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getVirtualControllerSafetyZones(cell, controller, options);
|
|
8004
8115
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
8005
8116
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerApi.getVirtualControllerSafetyZones"]?.[localVarOperationServerIndex]?.url;
|
|
8006
|
-
return (axios$
|
|
8117
|
+
return (axios$170, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$170, localVarOperationServerBasePath || basePath);
|
|
8007
8118
|
},
|
|
8008
8119
|
async listVirtualControllerCoordinateSystems(cell, controller, options) {
|
|
8009
8120
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listVirtualControllerCoordinateSystems(cell, controller, options);
|
|
8010
8121
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
8011
8122
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerApi.listVirtualControllerCoordinateSystems"]?.[localVarOperationServerIndex]?.url;
|
|
8012
|
-
return (axios$
|
|
8123
|
+
return (axios$171, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$171, localVarOperationServerBasePath || basePath);
|
|
8013
8124
|
},
|
|
8014
8125
|
async listVirtualControllerTcps(cell, controller, motionGroup, options) {
|
|
8015
8126
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listVirtualControllerTcps(cell, controller, motionGroup, options);
|
|
8016
8127
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
8017
8128
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerApi.listVirtualControllerTcps"]?.[localVarOperationServerIndex]?.url;
|
|
8018
|
-
return (axios$
|
|
8129
|
+
return (axios$172, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$172, localVarOperationServerBasePath || basePath);
|
|
8019
8130
|
},
|
|
8020
8131
|
async setEmergencyStop(cell, controller, active, options) {
|
|
8021
8132
|
const localVarAxiosArgs = await localVarAxiosParamCreator.setEmergencyStop(cell, controller, active, options);
|
|
8022
8133
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
8023
8134
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerApi.setEmergencyStop"]?.[localVarOperationServerIndex]?.url;
|
|
8024
|
-
return (axios$
|
|
8135
|
+
return (axios$173, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$173, localVarOperationServerBasePath || basePath);
|
|
8025
8136
|
},
|
|
8026
8137
|
async setMotionGroupState(cell, controller, motionGroup, motionGroupJoints, options) {
|
|
8027
8138
|
const localVarAxiosArgs = await localVarAxiosParamCreator.setMotionGroupState(cell, controller, motionGroup, motionGroupJoints, options);
|
|
8028
8139
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
8029
8140
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerApi.setMotionGroupState"]?.[localVarOperationServerIndex]?.url;
|
|
8030
|
-
return (axios$
|
|
8141
|
+
return (axios$174, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$174, localVarOperationServerBasePath || basePath);
|
|
8031
8142
|
},
|
|
8032
8143
|
async setOperationMode(cell, controller, mode, options) {
|
|
8033
8144
|
const localVarAxiosArgs = await localVarAxiosParamCreator.setOperationMode(cell, controller, mode, options);
|
|
8034
8145
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
8035
8146
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerApi.setOperationMode"]?.[localVarOperationServerIndex]?.url;
|
|
8036
|
-
return (axios$
|
|
8147
|
+
return (axios$175, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$175, localVarOperationServerBasePath || basePath);
|
|
8037
8148
|
},
|
|
8038
8149
|
async setVirtualControllerMounting(cell, controller, motionGroup, coordinateSystem, options) {
|
|
8039
8150
|
const localVarAxiosArgs = await localVarAxiosParamCreator.setVirtualControllerMounting(cell, controller, motionGroup, coordinateSystem, options);
|
|
8040
8151
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
8041
8152
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerApi.setVirtualControllerMounting"]?.[localVarOperationServerIndex]?.url;
|
|
8042
|
-
return (axios$
|
|
8153
|
+
return (axios$176, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$176, localVarOperationServerBasePath || basePath);
|
|
8043
8154
|
}
|
|
8044
8155
|
};
|
|
8045
8156
|
};
|
|
8046
8157
|
/**
|
|
8047
8158
|
* VirtualControllerApi - factory interface
|
|
8048
8159
|
*/
|
|
8049
|
-
const VirtualControllerApiFactory = function(configuration, basePath, axios$
|
|
8160
|
+
const VirtualControllerApiFactory = function(configuration, basePath, axios$177) {
|
|
8050
8161
|
const localVarFp = VirtualControllerApiFp(configuration);
|
|
8051
8162
|
return {
|
|
8052
8163
|
addVirtualControllerCoordinateSystem(cell, controller, coordinateSystem, coordinateSystemData, options) {
|
|
8053
|
-
return localVarFp.addVirtualControllerCoordinateSystem(cell, controller, coordinateSystem, coordinateSystemData, options).then((request) => request(axios$
|
|
8164
|
+
return localVarFp.addVirtualControllerCoordinateSystem(cell, controller, coordinateSystem, coordinateSystemData, options).then((request) => request(axios$177, basePath));
|
|
8054
8165
|
},
|
|
8055
8166
|
addVirtualControllerMotionGroup(cell, controller, addVirtualControllerMotionGroupRequest, options) {
|
|
8056
|
-
return localVarFp.addVirtualControllerMotionGroup(cell, controller, addVirtualControllerMotionGroupRequest, options).then((request) => request(axios$
|
|
8167
|
+
return localVarFp.addVirtualControllerMotionGroup(cell, controller, addVirtualControllerMotionGroupRequest, options).then((request) => request(axios$177, basePath));
|
|
8057
8168
|
},
|
|
8058
8169
|
addVirtualControllerSafetyZone(cell, controller, safetyZone, options) {
|
|
8059
|
-
return localVarFp.addVirtualControllerSafetyZone(cell, controller, safetyZone, options).then((request) => request(axios$
|
|
8170
|
+
return localVarFp.addVirtualControllerSafetyZone(cell, controller, safetyZone, options).then((request) => request(axios$177, basePath));
|
|
8060
8171
|
},
|
|
8061
8172
|
addVirtualControllerTcp(cell, controller, motionGroup, tcp, robotTcpData, options) {
|
|
8062
|
-
return localVarFp.addVirtualControllerTcp(cell, controller, motionGroup, tcp, robotTcpData, options).then((request) => request(axios$
|
|
8173
|
+
return localVarFp.addVirtualControllerTcp(cell, controller, motionGroup, tcp, robotTcpData, options).then((request) => request(axios$177, basePath));
|
|
8063
8174
|
},
|
|
8064
8175
|
deleteVirtualControllerCoordinateSystem(cell, controller, coordinateSystem, deleteDependent, options) {
|
|
8065
|
-
return localVarFp.deleteVirtualControllerCoordinateSystem(cell, controller, coordinateSystem, deleteDependent, options).then((request) => request(axios$
|
|
8176
|
+
return localVarFp.deleteVirtualControllerCoordinateSystem(cell, controller, coordinateSystem, deleteDependent, options).then((request) => request(axios$177, basePath));
|
|
8066
8177
|
},
|
|
8067
8178
|
deleteVirtualControllerMotionGroup(cell, controller, motionGroup, options) {
|
|
8068
|
-
return localVarFp.deleteVirtualControllerMotionGroup(cell, controller, motionGroup, options).then((request) => request(axios$
|
|
8179
|
+
return localVarFp.deleteVirtualControllerMotionGroup(cell, controller, motionGroup, options).then((request) => request(axios$177, basePath));
|
|
8069
8180
|
},
|
|
8070
8181
|
deleteVirtualControllerSafetyZone(cell, controller, id, options) {
|
|
8071
|
-
return localVarFp.deleteVirtualControllerSafetyZone(cell, controller, id, options).then((request) => request(axios$
|
|
8182
|
+
return localVarFp.deleteVirtualControllerSafetyZone(cell, controller, id, options).then((request) => request(axios$177, basePath));
|
|
8072
8183
|
},
|
|
8073
8184
|
deleteVirtualControllerTcp(cell, controller, motionGroup, tcp, options) {
|
|
8074
|
-
return localVarFp.deleteVirtualControllerTcp(cell, controller, motionGroup, tcp, options).then((request) => request(axios$
|
|
8185
|
+
return localVarFp.deleteVirtualControllerTcp(cell, controller, motionGroup, tcp, options).then((request) => request(axios$177, basePath));
|
|
8075
8186
|
},
|
|
8076
8187
|
getEmergencyStop(cell, controller, options) {
|
|
8077
|
-
return localVarFp.getEmergencyStop(cell, controller, options).then((request) => request(axios$
|
|
8188
|
+
return localVarFp.getEmergencyStop(cell, controller, options).then((request) => request(axios$177, basePath));
|
|
8078
8189
|
},
|
|
8079
8190
|
getMotionGroupState(cell, controller, motionGroup, options) {
|
|
8080
|
-
return localVarFp.getMotionGroupState(cell, controller, motionGroup, options).then((request) => request(axios$
|
|
8191
|
+
return localVarFp.getMotionGroupState(cell, controller, motionGroup, options).then((request) => request(axios$177, basePath));
|
|
8081
8192
|
},
|
|
8082
8193
|
getMotionGroups(cell, controller, options) {
|
|
8083
|
-
return localVarFp.getMotionGroups(cell, controller, options).then((request) => request(axios$
|
|
8194
|
+
return localVarFp.getMotionGroups(cell, controller, options).then((request) => request(axios$177, basePath));
|
|
8084
8195
|
},
|
|
8085
8196
|
getOperationMode(cell, controller, options) {
|
|
8086
|
-
return localVarFp.getOperationMode(cell, controller, options).then((request) => request(axios$
|
|
8197
|
+
return localVarFp.getOperationMode(cell, controller, options).then((request) => request(axios$177, basePath));
|
|
8087
8198
|
},
|
|
8088
8199
|
getVirtualControllerMounting(cell, controller, motionGroup, options) {
|
|
8089
|
-
return localVarFp.getVirtualControllerMounting(cell, controller, motionGroup, options).then((request) => request(axios$
|
|
8200
|
+
return localVarFp.getVirtualControllerMounting(cell, controller, motionGroup, options).then((request) => request(axios$177, basePath));
|
|
8090
8201
|
},
|
|
8091
8202
|
getVirtualControllerSafetyZones(cell, controller, options) {
|
|
8092
|
-
return localVarFp.getVirtualControllerSafetyZones(cell, controller, options).then((request) => request(axios$
|
|
8203
|
+
return localVarFp.getVirtualControllerSafetyZones(cell, controller, options).then((request) => request(axios$177, basePath));
|
|
8093
8204
|
},
|
|
8094
8205
|
listVirtualControllerCoordinateSystems(cell, controller, options) {
|
|
8095
|
-
return localVarFp.listVirtualControllerCoordinateSystems(cell, controller, options).then((request) => request(axios$
|
|
8206
|
+
return localVarFp.listVirtualControllerCoordinateSystems(cell, controller, options).then((request) => request(axios$177, basePath));
|
|
8096
8207
|
},
|
|
8097
8208
|
listVirtualControllerTcps(cell, controller, motionGroup, options) {
|
|
8098
|
-
return localVarFp.listVirtualControllerTcps(cell, controller, motionGroup, options).then((request) => request(axios$
|
|
8209
|
+
return localVarFp.listVirtualControllerTcps(cell, controller, motionGroup, options).then((request) => request(axios$177, basePath));
|
|
8099
8210
|
},
|
|
8100
8211
|
setEmergencyStop(cell, controller, active, options) {
|
|
8101
|
-
return localVarFp.setEmergencyStop(cell, controller, active, options).then((request) => request(axios$
|
|
8212
|
+
return localVarFp.setEmergencyStop(cell, controller, active, options).then((request) => request(axios$177, basePath));
|
|
8102
8213
|
},
|
|
8103
8214
|
setMotionGroupState(cell, controller, motionGroup, motionGroupJoints, options) {
|
|
8104
|
-
return localVarFp.setMotionGroupState(cell, controller, motionGroup, motionGroupJoints, options).then((request) => request(axios$
|
|
8215
|
+
return localVarFp.setMotionGroupState(cell, controller, motionGroup, motionGroupJoints, options).then((request) => request(axios$177, basePath));
|
|
8105
8216
|
},
|
|
8106
8217
|
setOperationMode(cell, controller, mode, options) {
|
|
8107
|
-
return localVarFp.setOperationMode(cell, controller, mode, options).then((request) => request(axios$
|
|
8218
|
+
return localVarFp.setOperationMode(cell, controller, mode, options).then((request) => request(axios$177, basePath));
|
|
8108
8219
|
},
|
|
8109
8220
|
setVirtualControllerMounting(cell, controller, motionGroup, coordinateSystem, options) {
|
|
8110
|
-
return localVarFp.setVirtualControllerMounting(cell, controller, motionGroup, coordinateSystem, options).then((request) => request(axios$
|
|
8221
|
+
return localVarFp.setVirtualControllerMounting(cell, controller, motionGroup, coordinateSystem, options).then((request) => request(axios$177, basePath));
|
|
8111
8222
|
}
|
|
8112
8223
|
};
|
|
8113
8224
|
};
|
|
@@ -8141,7 +8252,7 @@ var VirtualControllerApi = class extends BaseAPI {
|
|
|
8141
8252
|
return VirtualControllerApiFp(this.configuration).addVirtualControllerMotionGroup(cell, controller, addVirtualControllerMotionGroupRequest, options).then((request) => request(this.axios, this.basePath));
|
|
8142
8253
|
}
|
|
8143
8254
|
/**
|
|
8144
|
-
* **Required permissions:** `can_operate_virtual_controllers` - Operate and configure virtual controllers ___ Adds a new safety zone to the virtual robot controller. Safety zones define geometric boundaries that restrict or permit robot motion in 3D space. Each zone has a `geometry` that defines its shape, and two flags that control its behavior: - **`restricted: true`** the robot is not allowed to enter this zone. - **`inverted: true`** the zone applies to the **outside** of the shape, meaning the shape defines the *allowed* region; everything outside is the zone. Combined with `restricted: true`, the robot must stay **inside** the shape. Common combinations: | `restricted` | `inverted` | Effect | |---|---|---| | `true` | `false` | Keep-out zone, the robot cannot enter the shape, e.g., obstacle, table, wall | | `true` | `true` | Keep-in zone, the robot must stay inside the shape, e.g., workspace envelope / cell boundary | The `mg_uid` field specifies which motion group the safety zone is enforced for and must match an existing motion group UID on the controller. The `uid_ref_cs` field defines the coordinate system in which the geometry coordinates are expressed. The coordinate system must be defined on the controller beforehand. If empty (`\"\"`), the World coordinate system is used. Using an incorrect coordinate system places the safety zone in a different physical location. --- ## Geometry Shape Reference All coordinates are in **millimetres (mm)**. Choose the shape that best fits the physical boundary. --- ### Box A rectangular cuboid
|
|
8255
|
+
* **Required permissions:** `can_operate_virtual_controllers` - Operate and configure virtual controllers ___ Adds a new safety zone to the virtual robot controller. Safety zones define geometric boundaries that restrict or permit robot motion in 3D space. Each zone has a `geometry` that defines its shape, and two flags that control its behavior: - **`restricted: true`** the robot is not allowed to enter this zone. - **`inverted: true`** the zone applies to the **outside** of the shape, meaning the shape defines the *allowed* region; everything outside is the zone. Combined with `restricted: true`, the robot must stay **inside** the shape. Common combinations: | `restricted` | `inverted` | Effect | |---|---|---| | `true` | `false` | Keep-out zone, the robot cannot enter the shape, e.g., obstacle, table, wall | | `true` | `true` | Keep-in zone, the robot must stay inside the shape, e.g., workspace envelope / cell boundary | The `mg_uid` field specifies which motion group the safety zone is enforced for and must match an existing motion group UID on the controller. The `uid_ref_cs` field defines the coordinate system in which the geometry coordinates are expressed. The coordinate system must be defined on the controller beforehand. If empty (`\"\"`), the World coordinate system is used. Using an incorrect coordinate system places the safety zone in a different physical location. --- ## Geometry Shape Reference All coordinates are in **millimetres (mm)**. Choose the shape that best fits the physical boundary. --- ### Box A rectangular cuboid defined by one **corner point** (`center`) and **three adjacent corners** (`neighbour`). Despite the field name, `center` is not the geometric centroid but one corner of the box, and each `neighbour` is the corner directly connected to it by one edge. This format is used directly by robot controllers (FANUC, KUKA, etc.) and supports arbitrary orientations, including left-handed coordinate systems that parametric (size + quaternion) formats cannot represent. **When to use:** Cell workspace envelope, machine enclosure, table, rectangular obstacle, pallet zone. **How to define:** ``` center → one corner of the box [x, y, z] neighbour = [ x1, y1, z1, ← corner connected by the first edge x2, y2, z2, ← corner connected by the second edge x3, y3, z3 ← corner connected by the third edge ] edge_length_i = ||neighbour_i − corner|| ``` The three edge vectors and the geometric centroid are: ``` d0 = neighbour[0] − corner d1 = neighbour[1] − corner d2 = neighbour[2] − corner centroid = corner + (d0 + d1 + d2) / 2 ``` For an **axis-aligned** box with one corner at `[cx, cy, cz]` and edge lengths `[ex, ey, ez]`: ``` corner = [cx, cy, cz] neighbour = [cx+ex, cy, cz, cx, cy+ey, cz, cx, cy, cz+ez] ``` --- ### Prism An extruded polygon is a 2D closed polygon (defined in the XY plane) extruded vertically between `bottom` and `top` Z coordinates. The polygon can be convex or concave. **When to use:** Irregular floor-plan areas (aisles, loading bays, L-shaped zones), conveyor corridors, or any zone with a non-rectangular footprint. **How to define:** ``` point = [x1, y1, x2, y2, x3, y3, ...] ← 2D vertices (XY), flattened, ≥ 3 points top = upper Z bound [mm] bottom = lower Z bound [mm] ``` Points must form a closed polygon; the last point implicitly connects to the first. --- ### Sphere A perfect sphere defined by its **center point** and **radius**. **When to use:** Protection zones around sensors, cameras, workpieces, point-like obstacles, singularity avoidance zones around the robot base. **How to define:** ``` center = [x, y, z] ← center of the sphere [mm] radius ← radius [mm] ``` --- ### Capsule A cylinder with hemispherical caps at each end, defined by two axis endpoints (`top`, `bottom`) and a **radius**. The axis can have any orientation. **When to use:** Pipes, cable trays, vertical columns, horizontal beams, or tube-shaped obstacles. **How to define:** ``` top = [x, y, z] ← center of the top hemisphere [mm] bottom = [x, y, z] ← center of the bottom hemisphere [mm] radius ← cylinder + hemisphere radius [mm] ``` The total length of the capsule is `||top − bottom|| + 2 × radius`. --- ### Lozenge A rounded rectangle (stadium/discorectangle shape) in a plane, defined by a **center pose**, two **dimensions**, and a **corner radius**. The plane orientation is defined by the quaternion in `center`. **When to use:** Conveyor belt surfaces, worktables with rounded edges, or flat rectangular zones in arbitrary orientations. **How to define:** ``` center.x/y/z ← position of the center [mm] center.qx/qy/qz/qw ← orientation as unit quaternion (identity = XY plane) x_dimension ← total length along local X axis [mm] y_dimension ← total width along local Y axis [mm] radius ← corner rounding radius [mm] ``` For a horizontal lozenge, use identity quaternion `(qx=0, qy=0, qz=0, qw=1)`. --- ### Plane A mathematical half-space plane defined by its **3D vertices**. All vertices must be coplanar. The plane is unbounded (infinite extent in all directions parallel to the surface). The points define the plane\'s orientation and position only. **When to use:** Floor boundaries, virtual walls, tilted surfaces, e.g., ramps, inclined conveyors, or flat custom barriers. **How to define:** ``` point = [x1, y1, z1, x2, y2, z2, x3, y3, z3, ...] ← 3D vertices, flattened, ≥ 3 points ``` Points must be coplanar and form a closed polygon. --- <!-- theme: info --> > #### NOTE > > When a safety zone is added, **the virtual robot is restarted** to apply the new configuration. > > During this restart: > - All connections to the virtual robot are closed and re-established, introducing a short delay before the system is fully operational again. > - The safety checksum is automatically updated to reflect the configuration change. > > The API call **does not wait until the restart and re-synchronization are complete**.
|
|
8145
8256
|
* @summary Add Safety Zone
|
|
8146
8257
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
8147
8258
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
@@ -8487,45 +8598,45 @@ const VirtualControllerBehaviorApiFp = function(configuration) {
|
|
|
8487
8598
|
const localVarAxiosArgs = await localVarAxiosParamCreator.externalJointsStream(cell, controller, externalJointStreamRequest, options);
|
|
8488
8599
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
8489
8600
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerBehaviorApi.externalJointsStream"]?.[localVarOperationServerIndex]?.url;
|
|
8490
|
-
return (axios$
|
|
8601
|
+
return (axios$178, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$178, localVarOperationServerBasePath || basePath);
|
|
8491
8602
|
},
|
|
8492
8603
|
async getCycleTime(cell, controller, options) {
|
|
8493
8604
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getCycleTime(cell, controller, options);
|
|
8494
8605
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
8495
8606
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerBehaviorApi.getCycleTime"]?.[localVarOperationServerIndex]?.url;
|
|
8496
|
-
return (axios$
|
|
8607
|
+
return (axios$179, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$179, localVarOperationServerBasePath || basePath);
|
|
8497
8608
|
},
|
|
8498
8609
|
async getVirtualControllerBehavior(cell, controller, options) {
|
|
8499
8610
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getVirtualControllerBehavior(cell, controller, options);
|
|
8500
8611
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
8501
8612
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerBehaviorApi.getVirtualControllerBehavior"]?.[localVarOperationServerIndex]?.url;
|
|
8502
|
-
return (axios$
|
|
8613
|
+
return (axios$180, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$180, localVarOperationServerBasePath || basePath);
|
|
8503
8614
|
},
|
|
8504
8615
|
async setVirtualControllerBehavior(cell, controller, behavior, options) {
|
|
8505
8616
|
const localVarAxiosArgs = await localVarAxiosParamCreator.setVirtualControllerBehavior(cell, controller, behavior, options);
|
|
8506
8617
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
8507
8618
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerBehaviorApi.setVirtualControllerBehavior"]?.[localVarOperationServerIndex]?.url;
|
|
8508
|
-
return (axios$
|
|
8619
|
+
return (axios$181, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$181, localVarOperationServerBasePath || basePath);
|
|
8509
8620
|
}
|
|
8510
8621
|
};
|
|
8511
8622
|
};
|
|
8512
8623
|
/**
|
|
8513
8624
|
* VirtualControllerBehaviorApi - factory interface
|
|
8514
8625
|
*/
|
|
8515
|
-
const VirtualControllerBehaviorApiFactory = function(configuration, basePath, axios$
|
|
8626
|
+
const VirtualControllerBehaviorApiFactory = function(configuration, basePath, axios$182) {
|
|
8516
8627
|
const localVarFp = VirtualControllerBehaviorApiFp(configuration);
|
|
8517
8628
|
return {
|
|
8518
8629
|
externalJointsStream(cell, controller, externalJointStreamRequest, options) {
|
|
8519
|
-
return localVarFp.externalJointsStream(cell, controller, externalJointStreamRequest, options).then((request) => request(axios$
|
|
8630
|
+
return localVarFp.externalJointsStream(cell, controller, externalJointStreamRequest, options).then((request) => request(axios$182, basePath));
|
|
8520
8631
|
},
|
|
8521
8632
|
getCycleTime(cell, controller, options) {
|
|
8522
|
-
return localVarFp.getCycleTime(cell, controller, options).then((request) => request(axios$
|
|
8633
|
+
return localVarFp.getCycleTime(cell, controller, options).then((request) => request(axios$182, basePath));
|
|
8523
8634
|
},
|
|
8524
8635
|
getVirtualControllerBehavior(cell, controller, options) {
|
|
8525
|
-
return localVarFp.getVirtualControllerBehavior(cell, controller, options).then((request) => request(axios$
|
|
8636
|
+
return localVarFp.getVirtualControllerBehavior(cell, controller, options).then((request) => request(axios$182, basePath));
|
|
8526
8637
|
},
|
|
8527
8638
|
setVirtualControllerBehavior(cell, controller, behavior, options) {
|
|
8528
|
-
return localVarFp.setVirtualControllerBehavior(cell, controller, behavior, options).then((request) => request(axios$
|
|
8639
|
+
return localVarFp.setVirtualControllerBehavior(cell, controller, behavior, options).then((request) => request(axios$182, basePath));
|
|
8529
8640
|
}
|
|
8530
8641
|
};
|
|
8531
8642
|
};
|
|
@@ -8687,36 +8798,36 @@ const VirtualControllerInputsOutputsApiFp = function(configuration) {
|
|
|
8687
8798
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listIOs(cell, controller, ios, options);
|
|
8688
8799
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
8689
8800
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerInputsOutputsApi.listIOs"]?.[localVarOperationServerIndex]?.url;
|
|
8690
|
-
return (axios$
|
|
8801
|
+
return (axios$183, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$183, localVarOperationServerBasePath || basePath);
|
|
8691
8802
|
},
|
|
8692
8803
|
async listVirtualControllerIODescriptions(cell, controller, ios, direction, valueType, group, options) {
|
|
8693
8804
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listVirtualControllerIODescriptions(cell, controller, ios, direction, valueType, group, options);
|
|
8694
8805
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
8695
8806
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerInputsOutputsApi.listVirtualControllerIODescriptions"]?.[localVarOperationServerIndex]?.url;
|
|
8696
|
-
return (axios$
|
|
8807
|
+
return (axios$184, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$184, localVarOperationServerBasePath || basePath);
|
|
8697
8808
|
},
|
|
8698
8809
|
async setIOValues(cell, controller, iOValue, options) {
|
|
8699
8810
|
const localVarAxiosArgs = await localVarAxiosParamCreator.setIOValues(cell, controller, iOValue, options);
|
|
8700
8811
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
8701
8812
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerInputsOutputsApi.setIOValues"]?.[localVarOperationServerIndex]?.url;
|
|
8702
|
-
return (axios$
|
|
8813
|
+
return (axios$185, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$185, localVarOperationServerBasePath || basePath);
|
|
8703
8814
|
}
|
|
8704
8815
|
};
|
|
8705
8816
|
};
|
|
8706
8817
|
/**
|
|
8707
8818
|
* VirtualControllerInputsOutputsApi - factory interface
|
|
8708
8819
|
*/
|
|
8709
|
-
const VirtualControllerInputsOutputsApiFactory = function(configuration, basePath, axios$
|
|
8820
|
+
const VirtualControllerInputsOutputsApiFactory = function(configuration, basePath, axios$186) {
|
|
8710
8821
|
const localVarFp = VirtualControllerInputsOutputsApiFp(configuration);
|
|
8711
8822
|
return {
|
|
8712
8823
|
listIOs(cell, controller, ios, options) {
|
|
8713
|
-
return localVarFp.listIOs(cell, controller, ios, options).then((request) => request(axios$
|
|
8824
|
+
return localVarFp.listIOs(cell, controller, ios, options).then((request) => request(axios$186, basePath));
|
|
8714
8825
|
},
|
|
8715
8826
|
listVirtualControllerIODescriptions(cell, controller, ios, direction, valueType, group, options) {
|
|
8716
|
-
return localVarFp.listVirtualControllerIODescriptions(cell, controller, ios, direction, valueType, group, options).then((request) => request(axios$
|
|
8827
|
+
return localVarFp.listVirtualControllerIODescriptions(cell, controller, ios, direction, valueType, group, options).then((request) => request(axios$186, basePath));
|
|
8717
8828
|
},
|
|
8718
8829
|
setIOValues(cell, controller, iOValue, options) {
|
|
8719
|
-
return localVarFp.setIOValues(cell, controller, iOValue, options).then((request) => request(axios$
|
|
8830
|
+
return localVarFp.setIOValues(cell, controller, iOValue, options).then((request) => request(axios$186, basePath));
|
|
8720
8831
|
}
|
|
8721
8832
|
};
|
|
8722
8833
|
};
|
|
@@ -8951,6 +9062,7 @@ exports.ErrorJointPositionCollisionErrorFeedbackNameEnum = ErrorJointPositionCol
|
|
|
8951
9062
|
exports.ErrorMaxIterationsExceededErrorFeedbackNameEnum = ErrorMaxIterationsExceededErrorFeedbackNameEnum;
|
|
8952
9063
|
exports.ErrorUnsupportedOperationErrorFeedbackNameEnum = ErrorUnsupportedOperationErrorFeedbackNameEnum;
|
|
8953
9064
|
exports.FanucControllerKindEnum = FanucControllerKindEnum;
|
|
9065
|
+
exports.FeedbackAxisRangeExceededErrorFeedbackNameEnum = FeedbackAxisRangeExceededErrorFeedbackNameEnum;
|
|
8954
9066
|
exports.FeedbackCollisionErrorFeedbackNameEnum = FeedbackCollisionErrorFeedbackNameEnum;
|
|
8955
9067
|
exports.FeedbackCommandsMissingErrorFeedbackNameEnum = FeedbackCommandsMissingErrorFeedbackNameEnum;
|
|
8956
9068
|
exports.FeedbackCubicSplineIsNotIncreasingErrorFeedbackNameEnum = FeedbackCubicSplineIsNotIncreasingErrorFeedbackNameEnum;
|
|
@@ -8996,6 +9108,9 @@ exports.JointLimitExceededErrorKindEnum = JointLimitExceededErrorKindEnum;
|
|
|
8996
9108
|
exports.JointTypeEnum = JointTypeEnum;
|
|
8997
9109
|
exports.JointVelocityRequestMessageTypeEnum = JointVelocityRequestMessageTypeEnum;
|
|
8998
9110
|
exports.JointVelocityResponseKindEnum = JointVelocityResponseKindEnum;
|
|
9111
|
+
exports.KinematicBranchElbow = KinematicBranchElbow;
|
|
9112
|
+
exports.KinematicBranchShoulder = KinematicBranchShoulder;
|
|
9113
|
+
exports.KinematicBranchWrist = KinematicBranchWrist;
|
|
8999
9114
|
exports.KinematicsApi = KinematicsApi;
|
|
9000
9115
|
exports.KinematicsApiAxiosParamCreator = KinematicsApiAxiosParamCreator;
|
|
9001
9116
|
exports.KinematicsApiFactory = KinematicsApiFactory;
|